diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 5e6f7c9b..5530b919 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -21,7 +21,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v5
with:
- python-version: "3.8"
+ python-version: "3.11"
- name: Run pre-commit
uses: pre-commit/action@v3.0.1
@@ -39,7 +39,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v5
with:
- python-version: "3.8"
+ python-version: "3.11"
- name: Install poetry
uses: abatilo/actions-poetry@v3
@@ -76,7 +76,7 @@ jobs:
uses: docker/setup-buildx-action@v3
- name: Build
- uses: docker/bake-action@v4
+ uses: docker/bake-action@v5
with:
files: docker-compose.yml, docker-compose.dev.yml
set: |
@@ -92,7 +92,7 @@ jobs:
GIT_COMMIT: ${{ github.sha }}
run: |
printenv
- docker compose -f docker-compose.yml -f docker-compose.dev.yml up -d worker mongo redis minio mc goaws
+ docker compose -f docker-compose.yml -f docker-compose.dev.yml up -d worker mongo redis minio mc
- name: Dump docker logs before tests
uses: jwalton/gh-docker-logs@v2
@@ -117,7 +117,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v5
with:
- python-version: "3.8"
+ python-version: "3.11"
- name: Install poetry
uses: abatilo/actions-poetry@v3
@@ -128,7 +128,7 @@ jobs:
uses: docker/setup-buildx-action@v3
- name: Build
- uses: docker/bake-action@v4
+ uses: docker/bake-action@v5
with:
files: docker-compose.yml
set: |
@@ -196,7 +196,7 @@ jobs:
uses: docker/setup-buildx-action@v3
- name: Build
- uses: docker/bake-action@v4
+ uses: docker/bake-action@v5
with:
load: true
files: docker-compose.yml, docker-compose.dev.yml, docker-compose.historian.yml
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 4149a7c9..dde88a94 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -26,8 +26,8 @@ repos:
- id: requirements-txt-fixer
- id: mixed-line-ending
args: ["--fix=auto"]
- - repo: https://github.com/pre-commit/mirrors-autopep8
- rev: v2.0.1
+ - repo: https://github.com/hhatto/autopep8
+ rev: v2.3.1
hooks:
- id: autopep8
args:
diff --git a/alfalfa_web/server/api-v2.js b/alfalfa_web/server/api-v2.js
index 0a4f1b0b..8d542166 100644
--- a/alfalfa_web/server/api-v2.js
+++ b/alfalfa_web/server/api-v2.js
@@ -106,7 +106,7 @@ router.param("pointId", (req, res, next, id) => {
const error = validate(
{ id },
{
- id: "required|uuid"
+ id: "required|string"
}
);
if (error) return res.status(400).json({ message: error });
@@ -164,6 +164,13 @@ router.get("/runs/:runId/time", async (req, res, next) => {
.catch(next);
});
+router.get("/runs/:runId/log", async (req, res, next) => {
+ api
+ .getRunLog(req.run)
+ .then((log) => res.json({ payload: { log } }))
+ .catch(next);
+});
+
router.get("/runs/:runId/points", (req, res, next) => {
api
.getPointsByRun(req.run)
diff --git a/alfalfa_web/server/api.js b/alfalfa_web/server/api.js
index 3195897b..7986bf81 100644
--- a/alfalfa_web/server/api.js
+++ b/alfalfa_web/server/api.js
@@ -92,6 +92,11 @@ class AlfalfaAPI {
return await getHashValue(this.redis, run.ref_id, "sim_time");
};
+ getRunLog = async (run) => {
+ const log_lines = await this.redis.lRange(`run:${run.ref_id}:log`, -100, -1);
+ return log_lines.join("\n");
+ };
+
getPointsByRun = async (run) => {
const pointsCursor = this.points.find({ run: run._id });
return Promise.resolve(pointsCursor.toArray());
@@ -126,7 +131,8 @@ class AlfalfaAPI {
const pointDict = {
id: point.ref_id,
name: point.name,
- type: point.point_type
+ type: point.point_type,
+ units: point.units
};
return pointDict;
};
@@ -197,7 +203,7 @@ class AlfalfaAPI {
const { startDatetime, endDatetime, timescale, realtime, externalClock } = data;
- const job = `alfalfa_worker.jobs.${sim_type === "MODELICA" ? "modelica" : "openstudio"}.StepRun`;
+ const job = `alfalfa_worker.jobs.${sim_type === "MODELICA" ? "modelica" : "openstudio"}.step_run.StepRun`;
const params = {
run_id: run.ref_id,
start_datetime: startDatetime,
@@ -297,7 +303,9 @@ class AlfalfaAPI {
createRunFromModel = async (model) => {
const runId = uuidv1();
- const job = `alfalfa_worker.jobs.${model.model_name.endsWith(".fmu") ? "modelica" : "openstudio"}.CreateRun`;
+ const job = `alfalfa_worker.jobs.${
+ model.model_name.endsWith(".fmu") ? "modelica" : "openstudio"
+ }.create_run.CreateRun`;
const params = {
model_id: model.ref_id,
run_id: runId
diff --git a/alfalfa_worker/Dockerfile b/alfalfa_worker/Dockerfile
index 234fd882..f6ab7ec2 100644
--- a/alfalfa_worker/Dockerfile
+++ b/alfalfa_worker/Dockerfile
@@ -1,4 +1,4 @@
-FROM ghcr.io/nrel/alfalfa-dependencies:3.1.0 AS base
+FROM ghcr.io/nrel/alfalfa-dependencies:prepare_080 AS base
ENV HOME=/alfalfa
@@ -21,10 +21,7 @@ ENV PYTHONPATH="${HOME}:${PYTHONPATH}"
COPY ./alfalfa_worker ${HOME}/alfalfa_worker
-RUN pip3.8 install virtualenv \
- && pip3.8 install \
- scipy \
- symfit
+COPY ./alfalfa_worker /alfalfa/alfalfa_worker
COPY ./deploy /alfalfa/deploy
COPY ./deploy/wait-for-it.sh /usr/local/wait-for-it.sh
diff --git a/alfalfa_worker/__main__.py b/alfalfa_worker/__main__.py
index c37af6cd..841d09c9 100644
--- a/alfalfa_worker/__main__.py
+++ b/alfalfa_worker/__main__.py
@@ -3,14 +3,22 @@
import os
import sys
import traceback
+from logging import StreamHandler, basicConfig
from pathlib import Path
# Determine which worker to load based on the QUEUE.
# This may be temporary for now, not sure on how else
# to determine which worker gets launched
from alfalfa_worker.dispatcher import Dispatcher
+from alfalfa_worker.lib.constants import DATETIME_FORMAT
if __name__ == '__main__':
+
+ basicConfig(level=os.environ.get("LOGLEVEL", "INFO"),
+ handlers=[StreamHandler(sys.stdout)],
+ format='%(asctime)s - %(name)s - %(levelname)s: %(message)s',
+ datefmt=DATETIME_FORMAT)
+
try:
workdir = Path(os.environ.get('RUN_DIR', '/runs'))
dispatcher = Dispatcher(workdir)
diff --git a/alfalfa_worker/dispatcher.py b/alfalfa_worker/dispatcher.py
index 78e0c9f3..d1cdb0ca 100644
--- a/alfalfa_worker/dispatcher.py
+++ b/alfalfa_worker/dispatcher.py
@@ -53,7 +53,7 @@ def process_message(self, message):
"""
try:
message_body = json.loads(message)
- self.logger.info(f"Processing message of {message_body}")
+ self.logger.debug(f"Processing message of {message_body}")
job = message_body.get('job')
if job:
params = message_body.get('params', {})
diff --git a/alfalfa_worker/jobs/modelica/create_run.py b/alfalfa_worker/jobs/modelica/create_run.py
index f8a362a8..89f23342 100644
--- a/alfalfa_worker/jobs/modelica/create_run.py
+++ b/alfalfa_worker/jobs/modelica/create_run.py
@@ -1,9 +1,4 @@
-import json
-import os
from pathlib import Path
-from uuid import uuid4
-
-from pyfmi import load_fmu
from alfalfa_worker.lib.enums import RunStatus, SimType
from alfalfa_worker.lib.job import Job
@@ -19,7 +14,6 @@ def __init__(self, model_id, run_id=None):
# Define FMU specific attributes
self.upload_fmu: Path = self.dir / model_name
self.fmu_path = self.dir / 'model.fmu'
- self.fmu_json = self.dir / 'tags.json'
self.model_name = model_name
# Needs to be set after files are uploaded / parsed.
@@ -34,99 +28,11 @@ def exec(self):
"""
self.logger.info("add_fmu for {}".format(self.run.ref_id))
- # Create the FMU tags (no longer external now that python2 is deprecated)
- self.create_tags()
- # insert tags into db
- self.insert_fmu_tags()
self.upload_fmu.rename(self.fmu_path)
def validate(self) -> None:
assert (self.dir / 'model.fmu').exists(), "model file not created"
- assert (self.dir / 'tags.json').exists(), "tags file not created"
def cleanup(self) -> None:
super().cleanup()
self.set_run_status(RunStatus.READY)
-
- def get_site_ref(self, haystack_json):
- """
- Find the site given the haystack JSON file. Remove 'r:' from string.
- :param haystack_json: json serialized Haystack document
- :return: site_ref: id of site
- """
- site_ref = ''
- with open(haystack_json) as json_file:
- data = json.load(json_file)
- for entity in data:
- if 'site' in entity:
- if entity['site'] == 'm:':
- site_ref = entity['id'].replace('r:', '')
- break
- return site_ref
-
- def insert_fmu_tags(self):
- with open(self.fmu_json, 'r') as f:
- data = f.read()
- points_json = json.loads(data)
-
- self.run_manager.add_site_to_mongo(points_json, self.run)
-
- def create_tags(self):
- # 1.0 setup the inputs
- fmu = load_fmu(self.upload_fmu)
-
- # 2.0 get input/output variables from the FMU
- # causality = 1 is parameter, 2 is input, 3 is output
- input_names = fmu.get_model_variables(causality=2).keys()
- output_names = fmu.get_model_variables(causality=3).keys()
-
- # 3.0 add site tagging
- tags = []
-
- fmu_upload_name = os.path.basename(self.model_name) # without directories
- fmu_upload_name = os.path.splitext(fmu_upload_name)[0] # without extension
-
- # TODO: Figure out how to find geo_city
- sitetag = {
- "dis": "s:%s" % fmu_upload_name,
- "id": "r:%s" % self.run.ref_id,
- "site": "m:",
- "datetime": "s:",
- "simStatus": "s:Stopped",
- "simType": "s:fmu",
- "siteRef": "r:%s" % self.run.ref_id
- }
- tags.append(sitetag)
-
- # 4.0 add input tagging
- for var_input in input_names:
- if not var_input.endswith("_activate"):
- tag_input = {
- "id": "r:%s" % uuid4(),
- "dis": "s:%s" % var_input,
- "siteRef": "r:%s" % self.run.ref_id,
- "point": "m:",
- "writable": "m:",
- "writeStatus": "s:disabled",
- "kind": "s:Number",
- }
- tags.append(tag_input)
- tag_input = {}
-
- # 5.0 add output tagging
- for var_output in output_names:
- tag_output = {
- "id": "r:%s" % uuid4(),
- "dis": "s:%s" % var_output,
- "siteRef": "r:%s" % self.run.ref_id,
- "point": "m:",
- "cur": "m:",
- "curVal": "n:",
- "curStatus": "s:disabled",
- "kind": "s:Number",
- }
- tags.append(tag_output)
-
- # 6.0 write tags to the json file
- with open(self.fmu_json, 'w') as outfile:
- json.dump(tags, outfile)
diff --git a/alfalfa_worker/jobs/modelica/step_run.py b/alfalfa_worker/jobs/modelica/step_run.py
index c66667cf..bbb97493 100644
--- a/alfalfa_worker/jobs/modelica/step_run.py
+++ b/alfalfa_worker/jobs/modelica/step_run.py
@@ -1,4 +1,3 @@
-import json
from datetime import datetime, timedelta
from alfalfa_worker.jobs.step_run_base import StepRunBase
@@ -12,170 +11,121 @@ class StepRun(StepRunBase):
def __init__(self, run_id, realtime, timescale, external_clock, start_datetime: datetime, end_datetime) -> None:
self.checkout_run(run_id)
super().__init__(run_id, realtime, timescale, external_clock, start_datetime, end_datetime)
- self.logger.info(f"{start_datetime}, {end_datetime}")
- sim_year = self.start_datetime.year
- self.sim_start_time = (self.start_datetime - datetime(sim_year, 1, 1)) / timedelta(seconds=1)
- self.sim_end_time = (self.end_datetime - datetime(sim_year, 1, 1)) / timedelta(seconds=1)
- self.logger.info(f"current datetime at start of simulation: {self.start_datetime}")
-
- fmupath = self.dir / 'model.fmu'
- tagpath = self.dir / 'tags.json'
+ self.logger.info(f"current datetime at start of simulation: {self.options.start_datetime}")
# TODO: make configurable
# step_size in seconds
- self.step_size = 60
+ self.options.timestep_duration = timedelta(minutes=1)
- # TODO cleanup
- self.realworld_timedelta = timedelta(seconds=float(self.step_size) / self.step_sim_value)
- print("real time per step: %", self.realworld_timedelta)
+ # run the FMU simulation
+ self.set_run_time(self.options.start_datetime)
+
+ # Allow model to warm up in first timestep without failing due to falling behind timescale
+ self.options.warmup_is_first_step = True
+ def initialize_simulation(self) -> None:
+ fmupath = self.dir / 'model.fmu'
# Load fmu
config = {
'fmupath': fmupath,
- 'start_time': self.sim_start_time,
- 'step': self.step_size,
+ 'start_time': (self.options.start_datetime - datetime(self.options.start_datetime.year, 1, 1)) / timedelta(seconds=1),
+ 'step': self.options.timestep_duration / timedelta(seconds=1),
'kpipath': self.dir / 'resources' / 'kpis.json'
}
-
- (self.tagid_and_outputs, self.id_and_dis, self.default_input) = self.create_tag_dictionaries(tagpath)
-
# initiate the testcase -- NL make sure to flatten the config options to pass to kwargs correctly
self.tc = TestCase(**config)
- # run the FMU simulation
- self.simtime = self.sim_start_time
- self.set_run_time(self.start_datetime)
-
- # Allow model to warm up in first timestep without failing due to falling behind timescale
- self.first_step_warmup = True
-
- if self.historian_enabled:
- self.logger.info("Historian enabled")
-
- def create_tag_dictionaries(self, tag_filepath):
- '''
- Purpose: matching the haystack display-name and IDs
- Inputs: a json file containing all the tagged data
- Returns: a dictionary matching all outputs and IDs
- a dictionary matching all IDs and display-names
- a dictionary for every _enable input, set to value 0
- '''
- outputs_and_ID = {}
- id_and_dis = {}
- # default_input is a dictionary
- # with keys for every "_enable" input, set to value 0
- # in other words, disable everything
- default_input = {}
-
- # Get Haystack tag data, from tag_filepath
- tag_data = {}
- with open(tag_filepath) as json_data:
- tag_data = json.load(json_data)
-
- for point in tag_data:
- var_name = point['dis'].replace('s:', '')
- var_id = point['id'].replace('r:', '')
-
- id_and_dis[var_id] = var_name
-
- if 'writable' in point.keys():
- default_input[var_name.replace('_u', '_activate')] = 0
-
- if 'writable' not in point.keys() and 'point' in point.keys():
- outputs_and_ID[var_name] = var_id
-
- return (outputs_and_ID, id_and_dis, default_input)
+ self.setup_points()
def check_simulation_stop_conditions(self) -> bool:
return False
- def time_per_step(self):
- return timedelta(seconds=self.step_size)
+ def get_sim_time(self) -> datetime:
+ sim_time = datetime(self.options.start_datetime.year, 1, 1, 0, 0, 0) + timedelta(seconds=float(self.tc.final_time))
+ self.logger.info(f"Current Sim Time: {sim_time}")
+ return sim_time
- def update_sim_status(self):
- self.set_run_time(self.get_sim_time())
+ def setup_points(self):
+ fmu = self.tc.fmu
+ self.variables = {}
+ input_names: list[str] = fmu.get_model_variables(causality=2).keys()
+ output_names = fmu.get_model_variables(causality=3).keys()
- def get_sim_time(self) -> datetime:
- return datetime(self.start_datetime.year, 1, 1, 0, 0, 0) + timedelta(seconds=float(self.tc.final_time))
+ def name_to_id(name: str) -> str:
+ name.replace(" ", "_")
+ return name
+
+ for input in input_names:
+ activate = input.endswith("_activate")
+ name = input[0:-1 * (len("_activate"))] + "_u" if activate else input
+ id = name_to_id(name)
+
+ if id not in self.variables:
+ self.variables[id] = {}
+
+ if activate:
+ self.variables[id]["activate"] = input
+ else:
+ point = Point(ref_id=id, name=name, point_type=PointType.INPUT)
+ self.run.add_point(point)
+
+ for output in output_names:
+ point = Point(ref_id=name_to_id(output), name=output, point_type=PointType.OUTPUT)
+ self.run.add_point(point)
- def step(self):
+ self.run.save()
+
+ @message
+ def advance(self):
+ self.logger.info("advance called")
# u represents simulation input values
- u = self.default_input.copy()
- # look in redis for current writearrays which has an array of controller
- # input values, the first element in the array with a value
- # is what should be applied to the simulation according to Project Haystack
- # convention. If there is no value in the array, then it will not be passed to the
- # simulation.
+ u = {}
+
for point in self.run.input_points:
value = point.value
+ activate = "activate" in self.variables[point.ref_id]
if value is not None:
u[point.name] = value
- u[point.name.replace('_u', '_activate')] = 1
+ if activate:
+ u[point.name.replace('_u', '_activate')] = 1
+ elif activate:
+ u[point.name.replace('_u', '_activate')] = 0
y_output = self.tc.advance(u)
self.logger.debug(f"FMU output is {y_output}")
- self.update_sim_status()
+ self.update_run_time()
# get each of the simulation output values and feed to the database
+ influx_points = []
for point in self.run.output_points:
- point.value = y_output[point.name]
+ value = y_output[point.name]
+ point.value = y_output
+
+ if self.options.historian_enabled:
+ influx_points.append({"fields":
+ {
+ "value": value,
+ }, "tags":
+ {
+ "id": point.ref_id,
+ "point": True,
+ "source": "alfalfa"
+ },
+ "measurement": self.run.ref_id,
+ "time": self.run.sim_time,
+ })
if self.historian_enabled:
- self.write_outputs_to_influx(y_output)
-
- def write_outputs_to_influx(self, outputs):
- """
- Write output data to influx
- :return:
- """
- json_body = []
- base = {
- "measurement": self.run.ref_id,
- "time": "%s" % self.get_sim_time(),
- }
- response = False
- # get each of the simulation output values and feed to the database
- for key in outputs.keys():
- if key != 'time':
- output_id = self.tagid_and_outputs[key]
- value = outputs[key]
- dis = self.id_and_dis[output_id]
- base["fields"] = {
- "value": value
- }
- base["tags"] = {
- "id": output_id,
- "dis": dis,
- "siteRef": self.run.ref_id,
- "point": True,
- "source": 'alfalfa'
- }
- json_body.append(base.copy())
- try:
- print("Trying to write to influx")
- response = self.influx_client.write_points(points=json_body,
- time_precision='s',
- database=self.influx_db_name)
- if response:
- print("Influx response received %s" % response)
- except ConnectionError as e:
- print("Unable to write to influx: %s" % e)
-
- def setup_points(self):
- for id, dis in self.id_and_dis.items():
- point = Point(ref_id=id, name=dis)
- if dis in self.tagid_and_outputs.keys():
- point.point_type = PointType.OUTPUT
+ try:
+ response = self.influx_client.write_points(points=influx_points,
+ time_precision='s',
+ database=self.influx_db_name)
+ except ConnectionError as e:
+ self.logger.error(f"Influx ConnectionError on curVal write: {e}")
+ if not response:
+ self.logger.warning(f"Unsuccessful write to influx. Response: {response}")
+ self.logger.info(f"Attempted to write: {influx_points}")
else:
- point.point_type = PointType.INPUT
- self.run.add_point(point)
-
- @message
- def advance(self):
- self.logger.info("advance called")
- self.step()
-
- @message
- def stop(self):
- super().stop()
+ self.logger.info(
+ f"Successful write to influx. Length of JSON: {len(influx_points)}")
diff --git a/alfalfa_worker/jobs/openstudio/__init__.py b/alfalfa_worker/jobs/openstudio/__init__.py
index 40b629c8..b61fc6df 100644
--- a/alfalfa_worker/jobs/openstudio/__init__.py
+++ b/alfalfa_worker/jobs/openstudio/__init__.py
@@ -2,5 +2,5 @@
from pathlib import Path
lib_dir = Path(os.path.dirname(__file__), 'lib')
-from .create_run import CreateRun
-from .step_run import StepRun
+# from .create_run import CreateRun
+# from .step_run import StepRun
diff --git a/alfalfa_worker/jobs/openstudio/create_run.py b/alfalfa_worker/jobs/openstudio/create_run.py
index c6d0d676..ff391801 100644
--- a/alfalfa_worker/jobs/openstudio/create_run.py
+++ b/alfalfa_worker/jobs/openstudio/create_run.py
@@ -1,13 +1,11 @@
import json
import os
from pathlib import Path
-from subprocess import check_output
from alfalfa_worker.jobs.openstudio import lib_dir
-from alfalfa_worker.jobs.openstudio.lib.variables import Variables
from alfalfa_worker.lib.enums import RunStatus, SimType
-from alfalfa_worker.lib.job import Job, JobExceptionInvalidModel
-from alfalfa_worker.lib.tagutils import make_ids_unique, replace_site_id
+from alfalfa_worker.lib.job import Job
+from alfalfa_worker.lib.job_exception import JobExceptionInvalidModel
from alfalfa_worker.lib.utils import rel_symlink
@@ -33,18 +31,18 @@ def exec(self):
# If there are requirements.txt files in the model create a python virtual environment and install packaged there
requirements = self.run.glob("**/requirements.txt")
if len(requirements) > 0:
- check_output(["python3.8", "-m", "venv", "--system-site-packages", "--symlinks", str(self.dir / '.venv')])
+ self.log_subprocess(["python3.12", "-m", "venv", "--system-site-packages", "--symlinks", str(self.dir / '.venv')])
for requirements_file in requirements:
- check_output([str(self.dir / '.venv' / 'bin' / 'pip'), "install", "-r", str(requirements_file)])
+ self.log_subprocess([str(self.dir / '.venv' / 'bin' / 'pip'), "install", "-r", str(requirements_file)])
# locate the "default" workflow
default_workflow_path: str = lib_dir / 'workflow/workflow.osw'
# Merge the default workflow measures into the user submitted workflow
- check_output(['openstudio', str(lib_dir / 'merge_osws.rb'), str(default_workflow_path), str(submitted_osw_path)])
+ self.log_subprocess(['openstudio', str(lib_dir / 'merge_osws.rb'), str(default_workflow_path), str(submitted_osw_path)])
# run workflow
- check_output(['openstudio', '-I', '/alfalfa/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib', 'run', '-m', '-w', str(submitted_osw_path)])
+ self.log_subprocess(['openstudio', '--verbose', 'run', '--show-stdout', '-m', '-w', str(submitted_osw_path)])
self.logger.info('Loading Building Metadata')
metadata_json_path = submitted_workflow_path / 'reports' / 'alfalfa_metadata_report_metadata.json'
@@ -53,40 +51,11 @@ def exec(self):
else:
self.logger.info('Could not find Alfalfa Metadata Report')
- self.logger.info('Generating variables from measure reports')
- self.variables = Variables(self.run)
- self.variables.load_reports()
- self.variables.generate_points()
-
- points_json_path = submitted_workflow_path / 'reports/haystack_report_haystack.json'
- mapping_json_path = submitted_workflow_path / 'reports/haystack_report_mapping.json'
-
- self.logger.info("Inserting OpenStudio tags")
- self.insert_os_tags(points_json_path, mapping_json_path)
-
self.logger.info("Setting up symlinks")
idf_src_path = submitted_workflow_path / 'run' / 'in.idf'
idf_dest_path = simulation_dir / 'sim.idf'
rel_symlink(idf_src_path, idf_dest_path)
- haystack_src_path = submitted_workflow_path / 'reports' / 'haystack_report_mapping.json'
- haystack_dest_path = simulation_dir / 'haystack_report_mapping.json'
- rel_symlink(haystack_src_path, haystack_dest_path)
-
- haystack_src_path = submitted_workflow_path / 'reports' / 'haystack_report_haystack.json'
- haystack_dest_path = simulation_dir / 'haystack_report_haystack.json'
- rel_symlink(haystack_src_path, haystack_dest_path)
-
- variables_src_path = submitted_workflow_path / 'reports/export_bcvtb_report_variables.cfg'
- variables_dest_path = simulation_dir / 'variables.cfg'
- rel_symlink(variables_src_path, variables_dest_path)
-
- # variables.cfg also needs to be located next to the idf to satisfy EnergyPlus conventions
- idf_src_dir = idf_src_path.parents[0]
- variables_ep_path = idf_src_dir / 'variables.cfg'
- rel_symlink(variables_src_path, variables_ep_path)
- self.variables.write_files(simulation_dir)
-
# hack. need to find a more general approach to preserve osw resources that might be needed at simulation time
for file in self.run.glob(submitted_workflow_path / 'python' / '*'):
idfdir = idf_src_path.parents[0]
@@ -108,9 +77,6 @@ def exec(self):
def validate(self) -> None:
assert (self.dir / 'simulation' / 'sim.idf').exists(), "Idf was not created"
assert (self.dir / 'simulation' / 'sim.epw').exists(), "Weather file was not created"
- assert (self.dir / 'simulation' / 'haystack_report_mapping.json').exists(), "haystack report json was not created"
- assert (self.dir / 'simulation' / 'variables.cfg').exists(), "variables file was not created"
- assert (self.dir / 'simulation' / 'haystack_report_haystack.json').exists(), "haystack mapping json was not created"
def cleanup(self) -> None:
super().cleanup()
@@ -122,36 +88,3 @@ def load_metadata(self, metadata_json: Path):
if 'building_name' in metadata_dict:
self.run.name = metadata_dict['building_name']
self.run.save()
-
- def insert_os_tags(self, points_json_path, mapping_json_path):
- """
- Make unique ids and replace site_id. Upload to mongo and filestore.
- :return:
- """
- # load mapping and points json files generated by previous workflow
- with open(points_json_path, 'r') as f:
- data = f.read()
- points_json = json.loads(data)
-
- with open(mapping_json_path, 'r') as f:
- data = f.read()
- mapping_json = json.loads(data)
-
- # fixup tags
- # This is important to avoid duplicates in the case when a client submits the same model
- # more than one time
- points_json, mapping_json = make_ids_unique(points_json, mapping_json)
- points_json = replace_site_id(self.run.ref_id, points_json)
-
- # `return`` is a keyword and can't be in the mongoengine. The
- # renaming is handled in the object instantiation to `return_`
-
- # save "fixed up" json
- with open(points_json_path, 'w') as fp:
- json.dump(points_json, fp)
-
- with open(mapping_json_path, 'w') as fp:
- json.dump(mapping_json, fp)
-
- # add points to database
- # self.run_manager.add_site_to_mongo(points_json, self.run)
diff --git a/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/alfalfa-lib-gem.gemspec b/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/alfalfa-lib-gem.gemspec
deleted file mode 100644
index e91201fd..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/alfalfa-lib-gem.gemspec
+++ /dev/null
@@ -1,21 +0,0 @@
-lib = File.expand_path('lib', __dir__)
-$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
-require 'version'
-
-Gem::Specification.new do |spec|
- spec.name = 'alfalfa-lib'
- spec.version = OpenStudio::Alfalfa::VERSION
- spec.authors = ['Tobias Shapinsky']
- spec.email = ['tobias.shapinsky@nrel.gov']
-
- spec.summary = 'Create input and output points in Aflalfa'
- spec.description = 'Library and measures to create input and output points in Alfalfa'
- spec.homepage = 'https://github.com/NREL/alfalfa'
-
- # Specify which files should be added to the gem when it is released.
- spec.files = ["lib/alfalfa_mixin.rb", "lib/alfalfa.rb", "lib/energy_plus_mixin.rb", "lib/input.rb", "lib/openstudio_mixin.rb", "lib/output.rb", "lib/point.rb", "lib/utils.rb", "lib/version.rb"]
- spec.require_paths = ['lib']
-
- spec.required_ruby_version = '~> 2.7.0'
-
-end
diff --git a/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/alfalfa.rb b/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/alfalfa.rb
deleted file mode 100644
index 6b3b5eff..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/alfalfa.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-require 'alfalfa_mixin'
-require 'energy_plus_mixin'
-require 'input'
-require 'openstudio_mixin'
-require 'output'
-require 'point'
-
-# Module which contains all OpenStudio code
-module OpenStudio
- # Module which contains Alfalfa specific functionality
- module Alfalfa
- end
-end
diff --git a/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/alfalfa_mixin.rb b/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/alfalfa_mixin.rb
deleted file mode 100644
index f99b7395..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/alfalfa_mixin.rb
+++ /dev/null
@@ -1,100 +0,0 @@
-require_relative 'utils'
-require 'json'
-module OpenStudio
- module Alfalfa
- ##
- # Base mixin for managing alfalfa points
- #
- module AlfalfaMixin
- include OpenStudio::Alfalfa::Utils
- # Create reports of input and outputs for alfalfa
- # Must be executed at the end of the measure to expose points in alfalfa
- def report_inputs_outputs
- @inputs.each do |input|
- next if input.echo.nil?
- next if @outputs.include? input.echo
-
- @outputs.append(input.echo)
- end
-
- inputs_dict = {}
- outputs_dict = {}
- @inputs.each do |input|
- hash = input.to_dict
- inputs_dict[hash['id']] = hash
- end
- @outputs.each do |output|
- hash = output.to_dict
- outputs_dict[hash['id']] = hash
- end
-
- File.open('./report_inputs.json', 'w') do |f|
- JSON.dump(inputs_dict, f)
- end
- File.open('./report_outputs.json', 'w') do |f|
- JSON.dump(outputs_dict, f)
- end
- end
-
- # Register an input for inclusion in alfalfa
- #
- # @param [IdfObject, ModelObject, Input] input to register
- # May be:
- # - ExternalInterface:Actuator
- # - ExternalInterface:Variable
- # - ExternalInterface:Schedule
- # - OS:ExternalInterface:Variable
- # - OS:ExternalInterface:Schedule
- # - OS:ExternalInterface:Actuator
- # or:
- # - OpenStudio::Alfalfa::Input
- #
- # @return [Input]
- def register_input(input)
- if input.is_a? OpenStudio::Alfalfa::Input
- @inputs.append(input)
- else
- input = OpenStudio::Alfalfa::Input.new(input)
- register_input(input)
- end
- input
- end
-
- # Find an input by it's associated object name
- #
- # @param [String] name Name of input to find
- #
- # @return [Input]
- def get_input_by_name(name)
- @inputs.each do |input|
- next unless input.object.name.get == name
-
- return input
- end
- nil
- end
-
- # Register an output for inclusion in alfalfa
- #
- # @param output [IdfObject, ModelObject, Output] output to register
- # May be:
- # - Output:Variable
- # - EnergyManagementSystem:OutputVariable
- # - OS:Output:Variable
- # - OS:EnergyManagementSystem:OutputVariable
- # or:
- # - OpenStudio::Alfalfa::Output
- #
- # @return [Output]
- def register_output(output)
- if output.is_a? OpenStudio::Alfalfa::Output
- @outputs.append(output)
- else
- output = OpenStudio::Alfalfa::Output.new(output)
- register_output(output)
- end
- output
- end
- end
- end
-end
diff --git a/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/energy_plus_mixin.rb b/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/energy_plus_mixin.rb
deleted file mode 100644
index 655564df..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/energy_plus_mixin.rb
+++ /dev/null
@@ -1,167 +0,0 @@
-require_relative 'alfalfa_mixin'
-require_relative 'utils'
-module OpenStudio
- module Alfalfa
- ##
- # EnergyPlusMixin
- #
- # Mixin to include when developing an EnergyPlus Measure
- module EnergyPlusMixin
- include OpenStudio::Alfalfa::AlfalfaMixin
- include OpenStudio::Alfalfa::Utils
-
- # Get first node from NodeList
- #
- # @param [String] node NodeList id
- def get_node_from_nodelist(node)
- node_list_object = @workspace.getObjectByTypeAndName('NodeList'.to_IddObjectType, node)
- return node_list_object.get.getField(1).get if node_list_object.is_initialized
-
- node
- end
-
- # Create Output Variable
- #
- # @param [String] key Key of Output Variable
- # @param [String] var Variable of Output Variable
- #
- # @return [Output]
- def create_output_variable(key, var)
- output_variable_string = "
- Output:Variable,
- #{key},
- #{var},
- Timestep;"
- output_variable_object = OpenStudio::IdfObject.load(output_variable_string).get
- OpenStudio::Alfalfa::Output.new(@workspace.addObject(output_variable_object).get)
- end
-
- # Create EMS Output Variable
- #
- # @param [String] name Name of EMS Output Variable to create
- # @param [String] variable EMS name of variable to connect to Output Variable
- # @param [String] unit Unit of output
- #
- # @return [Output]
- def create_ems_output_variable(name, variable, unit = 'C')
- output_variable_string = "
- EnergyManagementSystem:OutputVariable,
- #{name},
- #{variable},
- Averaged,
- SystemTimestep,
- ,
- #{unit};"
- output_variable_object = OpenStudio::IdfObject.load(output_variable_string).get
- OpenStudio::Alfalfa::Output.new(@workspace.addObject(output_variable_object).get)
- end
-
- # Create External Interface Variable
- #
- # @param [String] name Name of external variable to create
- # @param [Number] initial_value Initial value of external variable
- #
- # @return [Input]
- def create_external_variable(name, initial_value = 0)
- new_external_variable_string = "
- ExternalInterface:Variable,
- #{create_ems_str(name)}, !- Name,
- #{initial_value}; !- Initial value
- "
- new_external_variable_object = OpenStudio::IdfObject.load(new_external_variable_string).get
- input = OpenStudio::Alfalfa::Input.new(@workspace.addObject(new_external_variable_object).get)
- input.display_name = name
- input
- end
-
- # Create enabled input to actuate an EMS variable.
- # This method creates an external variable with the specified name
- # and an EMS program to copy the value to the specified variable if enabled
- # or the default value otherwise
- #
- # @param [String] name Name of input to create
- # @param [String] variable_name EMS name of variable to control
- # @param [String] default Value to have when not enabled. Default to null for actuator control
- #
- # @return [Input]
- def create_enabled_input(name, variable_name, default = 'Null')
- program_name = create_ems_str("#{name}_program")
- alfalfa_input = create_external_variable(name)
- enable_name = create_ems_str("#{name}_Enable")
- alfalfa_input_enable = create_external_variable(enable_name)
- new_program_string = "
- EnergyManagementSystem:Program,
- #{program_name}, !- Name
- IF #{enable_name},
- SET #{variable_name} = #{name},
- ELSE,
- SET #{variable_name} = #{default},
- ENDIF;
- "
- new_program_object = OpenStudio::IdfObject.load(new_program_string).get
- @workspace.addObject(new_program_object)
- register_program(program_name)
- alfalfa_input.enable_variable = alfalfa_input_enable
- alfalfa_input
- end
-
- # Create actuator
- #
- # @param name [String] Name of actuator to create
- # @param component [String] Name of component to actuate
- # @param component_type [String] Type of component
- # @param control_type[String] Type of control
- # @param external [Boolean] When true an external interface variable with {name} will be created and returned
- #
- # @return [IdfObject, Input]
- def create_actuator(name, component, component_type, control_type, external = false)
- if external
- actuator_name = create_ems_str("#{name}_actuator")
- actuator_object = create_actuator(actuator_name, component, component_type, control_type)
- input = create_enabled_input(name, actuator_name)
- input.actuator = actuator_object
- echo_name = create_ems_str("#{actuator_name}_echo")
- output = create_ems_output_variable(echo_name, actuator_name)
- input.echo = output
- input
- else
- new_actuator_string = "
- EnergyManagementSystem:Actuator,
- #{name}, !- Name
- #{component}, !- Actuated Component Unique Name
- #{component_type}, !- Actuated Component Type
- #{control_type}; !- Actuated Component Control Type
- "
- new_actuator_object = OpenStudio::IdfObject.load(new_actuator_string).get
- @workspace.addObject(new_actuator_object).get
- end
- end
-
- def create_calling_point
- new_calling_manager_string = "
- EnergyManagementSystem:ProgramCallingManager,
- #{create_ems_str(name)}_calling_point, !- Name
- EndOfZoneTimestepBeforeZoneReporting; !- EnergyPlus Model Calling Point
- "
- new_calling_manager_object = OpenStudio::IdfObject.load(new_calling_manager_string).get
- @calling_point_manager = @workspace.addObject(new_calling_manager_object).get
- @program_count = 0
- end
-
- def register_program(program_name)
- create_calling_point if @calling_point_manager.nil?
-
- @calling_point_manager.setString(2 + @program_count, program_name)
- @program_count += 1
- end
-
- def run(workspace, runner, user_arguments)
- super(workspace, runner, user_arguments)
- @workspace = workspace
- @calling_point_manager = nil
- @inputs = []
- @outputs = []
- end
- end
- end
-end
diff --git a/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/input.rb b/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/input.rb
deleted file mode 100644
index 4ec15286..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/input.rb
+++ /dev/null
@@ -1,72 +0,0 @@
-require 'securerandom'
-require_relative 'utils'
-require_relative 'point'
-module OpenStudio
- module Alfalfa
- ##
- # Input
- #
- # Class which represents an Input point to Alfalfa
- class Input < Point
- include OpenStudio::Alfalfa::Utils
- attr_reader :input_object
-
- def initialize(input_object)
- super(input_object)
-
- input_type = get_idd_type(input_object)
- name = input_object.name.get
-
- case input_type
- when 'ExternalInterface:Actuator'.to_IddObjectType
- @hash['actuator'] = name
- self.actuator = input_object
- when 'ExternalInterface:Variable'.to_IddObjectType
- @hash['variable'] = name
- when 'ExternalInterface:Schedule'.to_IddObjectType
- @hash['schedule'] = name
- when 'OS:ExternalInterface:Variable'.to_IddObjectType
- @hash['variable'] = name
- when 'OS:ExternalInterface:Schedule'.to_IddObjectType
- @hash['schedule'] = name
- when 'OS:ExternalInterface:Actuator'.to_IddObjectType
- @hash['actuator'] = name
- self.actuator = input_object
- else
- raise "#{input_type.valueDescription} is not a valid input type"
- end
- self.display_name = name
- end
-
- def actuator=(actuator_object)
- actuator_type = get_idd_type(actuator_object)
-
- actuator_types = ['ExternalInterface:Actuator'.to_IddObjectType,
- 'OS:EnergyManagementSystem:Actuator'.to_IddObjectType,
- 'EnergyManagementSystem:Actuator'.to_IddObjectType]
-
- unless actuator_types.include? actuator_type
- raise "#{actuator_type.valueDescription} is not a valid actuator type"
- end
-
- @hash['actuated_component'] = actuator_object.getString(1).get
- @hash['actuated_component_type'] = actuator_object.getString(2).get
- @hash['actuated_component_control_type'] = actuator_object.getString(3).get
- end
-
- def enable_variable=(enable_variable)
- enable_variable = enable_variable.object if enable_variable.instance_of? OpenStudio::Alfalfa::Input
-
- enable_variable_type = get_idd_type(enable_variable)
- enable_variable_types = ['ExternalInterface:Variable'.to_IddObjectType,
- 'OS:ExternalInterface:Variable'.to_IddObjectType]
-
- unless enable_variable_types.include? enable_variable_type
- raise "#{enable_variable_type.valueDescription} is an invalid enable variable type"
- end
-
- @hash['enable_variable'] = enable_variable.name.get
- end
- end
- end
-end
diff --git a/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/openstudio_mixin.rb b/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/openstudio_mixin.rb
deleted file mode 100644
index 6f8b819f..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/openstudio_mixin.rb
+++ /dev/null
@@ -1,117 +0,0 @@
-require 'alfalfa_mixin'
-module OpenStudio
- module Alfalfa
- ##
- # OpenStudioMixin
- #
- # Mixin to include when developing an Model Measure
- module OpenStudioMixin
- include OpenStudio::Alfalfa::AlfalfaMixin
-
- # Create Output Variable
- #
- # @param [String] key Key of Output Variable
- # @param [String] var Variable of Output Variable
- #
- # @return [Output]
- def create_output_variable(key, var)
- output_variable = OpenStudio::Model::OutputVariable.new(create_ems_str("#{key}_#{var}"), @model)
- output_variable.setKeyValue(key)
- output_variable.setVariableName(var)
-
- OpenStudio::Alfalfa::Output.new(output_variable)
- end
-
- # Create EMS Output Variable
- #
- # @param [String, ModelObject] variable EMS name of variable to connect to Output Variable
- # @param [String] unit Unit of output
- #
- # @return [Output]
- def create_ems_output_variable(variable, unit = 'C')
- output_variable = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(@model, variable)
- output_variable.setUnits(unit)
- Output.new(output_variable)
- end
-
- # Create External Interface Variable
- #
- # @param [String] name Name of external variable to create
- # @param [Number] initial_value Initial value of external variable
- #
- # @return [Input]
- def create_external_variable(name, initial_value = 0)
- external_variable = OpenStudio::Model::ExternalInterfaceVariable.new(@model, create_ems_str(name),
- initial_value)
- external_variable.setExportToBCVTB(false)
- Input.new(external_variable)
- end
-
- # Create enabled input to actuate an EMS variable.
- # This method creates an external variable with the specified name
- # and an EMS program to copy the value to the specified variable if enabled
- # or the default value otherwise
- #
- # @param [String] name Name of input to create
- # @param [String] variable_name EMS name of variable to control
- # @param [String] default Value to have when not enabled. Default to null for actuator control
- #
- # @return [Input]
- def create_enabled_input(name, variable_name, default = 'Null')
- alfalfa_input = create_external_variable(name)
- enable_name = create_ems_str("#{name}_Enable")
- alfalfa_input_enable = create_external_variable(enable_name)
- new_program = OpenStudio::Model::EnergyManagementSystemProgram.new(@model)
- new_program.setLines(["IF #{enable_name},",
- "SET #{variable_name} = #{name},",
- 'ELSE,',
- "SET #{variable_name} = #{default},",
- 'ENDIF'])
- register_program(new_program)
- alfalfa_input.enable_variable = alfalfa_input_enable
- alfalfa_input
- end
-
- # Create actuator
- #
- # @param name [String] Name of actuator to create
- # @param component [ModelObject] component to actuate
- # @param component_type[String] Type of component
- # @param control_type [String] Type of control
- # @param external [Boolean] When true an external interface variable with {name} will be created and returned
- #
- # @return [ModelObject, Input]
- def create_actuator(name, component, component_type, control_type, external = false)
- if external
- actuator_name = create_ems_str("#{name}_actuator")
- actuator_object = create_actuator(actuator_name, component, component_type, control_type)
- input = create_enabled_input(name, actuator_name)
- input.actuator = actuator_object
- output = create_ems_output_variable(actuator_object)
- input.echo = output
- input
- else
- OpenStudio::Model::EnergyManagementSystemActuator.new(component, component_type, control_type)
- end
- end
-
- def create_calling_point
- @calling_point_manager = OpenStudio::Model::EnergyManagementSystemProgramCallingManager.new(@model)
- @calling_point_manager.setCallingPoint('EndOfZoneTimestepBeforeZoneReporting')
- end
-
- def register_program(program)
- create_calling_point if @calling_point_manager.nil?
- @calling_point_manager.addProgram(program)
- end
-
- def run(model, runner, user_arguments)
- super(model, runner, user_arguments)
- @model = model
- @calling_point_manager = nil
- @inputs = []
- @outputs = []
- end
- end
- end
-end
diff --git a/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/output.rb b/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/output.rb
deleted file mode 100644
index cc8059c2..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/output.rb
+++ /dev/null
@@ -1,48 +0,0 @@
-require 'securerandom'
-require 'openstudio'
-require_relative 'utils'
-require_relative 'point'
-module OpenStudio
- module Alfalfa
- ##
- # Output
- #
- # Class which represents an Output point to Alfalfa
- class Output < Point
- include OpenStudio::Alfalfa::Utils
- def initialize(output_object)
- super(output_object)
- output_type = get_idd_type(@object)
-
- case output_type
- when 'Output:Variable'.to_IddObjectType
- @hash['component'] = @object.getString(0).get
- @hash['variable'] = @object.getString(1).get
- when 'EnergyManagementSystem:OutputVariable'.to_IddObjectType
- @hash['component'] = 'EMS'
- self.display_name = @object.name.get
- @hash['variable'] = @object.getString(0).get
- self.units = @object.getString(5).get
- when 'OS:Output:Variable'.to_IddObjectType
- @hash['component'] = @object.keyValue
- @hash['variable'] = @object.variableName
- self.display_name = @object.name.get
- when 'OS:EnergyManagementSystem:OutputVariable'.to_IddObjectType
- @hash['component'] = 'EMS'
- @hash['variable'] = @object.name.get
- self.display_name = @object.name.get
- else
- raise "#{output_type.valueDescription} is not a valid output type"
- end
- end
-
- def component
- @hash['component']
- end
-
- def variable
- @hash['variable']
- end
- end
- end
-end
diff --git a/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/point.rb b/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/point.rb
deleted file mode 100644
index b94a6125..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/point.rb
+++ /dev/null
@@ -1,71 +0,0 @@
-require 'securerandom'
-module OpenStudio
- module Alfalfa
- ##
- # Point
- # Base type for input and output point in alfalfa
- class Point
- attr_reader :echo, :object
-
- # @param [IdfObject, ModelObject] object
- def initialize(object)
- @hash = {}
- @hash['id'] = SecureRandom.uuid
- @object = object
- end
-
- # Unique identifier of point
- #
- # @return [String]
- def id
- @hash['id']
- end
-
- # Display name used by Alfalfa
- #
- # @return [String]
- def display_name
- @hash['display_name']
- end
-
- def display_name=(display_name)
- @hash['display_name'] = display_name
- end
-
- def echo=(output)
- @echo = output
- @hash['echo_id'] = output.id
- end
-
- def units=(units)
- @hash['units'] = units
- end
-
- # Units for point
- #
- # @return [String]
- def units
- @hash['units']
- end
-
- # Add zone that point is related to
- #
- # @param zone [String]
- def add_zone(zone)
- if @hash.key? 'zone'
- @hash['zone'].append(zone)
- else
- @hash['zone'] = [zone]
- end
- end
-
- # Get dictionary of point
- # This is used when compiling reports
- #
- # @return [Hash]
- def to_dict
- @hash
- end
- end
- end
-end
diff --git a/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/utils.rb b/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/utils.rb
deleted file mode 100644
index 94281aa7..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/utils.rb
+++ /dev/null
@@ -1,37 +0,0 @@
-require 'openstudio'
-module OpenStudio
- module Alfalfa
- ##
- # This module provides utility functions
- # for alfalfa and openstudio
- module Utils
- # Get Idd Type
- # get the Idd type of objects in either an OSW of IDF context
- #
- # @param [ModelObject, IdfObject] object Object to get type of
- #
- # @return [IddType]
- def get_idd_type(object)
- if object.is_a? OpenStudio::Model::ModelObject
- object.iddObjectType
- elsif object.is_a? OpenStudio::IdfObject
- object.iddObject.type
- else
- raise "cannot get idd_type of #{object.class}"
- end
- end
-
- # return string formatted with no spaces or '-' (can be used as EMS var name)
- # strings beginning with numbers will be prepended with '_'
- # @param [String] id String to process into an EMS valid string
- #
- # @return [String]
- def create_ems_str(id)
- id = id.gsub(/[\s-]/, '_')
- id = id.gsub(/[^\w]/, '_')
- id = "_#{id}" if (id =~ /[0-9].*/) == 0
- id
- end
- end
- end
-end
diff --git a/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/version.rb b/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/version.rb
deleted file mode 100644
index 4eaba0a4..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/alfalfa-lib-gem/lib/version.rb
+++ /dev/null
@@ -1,6 +0,0 @@
-module OpenStudio
- module Alfalfa
- # Alfalfa Gem Version
- VERSION = '0.0.0'.freeze
- end
-end
diff --git a/alfalfa_worker/jobs/openstudio/lib/openstudio_component.py b/alfalfa_worker/jobs/openstudio/lib/openstudio_component.py
new file mode 100644
index 00000000..9f50cbb6
--- /dev/null
+++ b/alfalfa_worker/jobs/openstudio/lib/openstudio_component.py
@@ -0,0 +1,89 @@
+
+from dataclasses import dataclass
+from enum import Enum
+from typing import Callable
+
+from alfalfa_worker.lib.job_exception import JobException
+
+# import pyenergyplus
+
+
+class OpenStudioComponentType(Enum):
+ ACTUATOR = "Actuator"
+ CONSTANT = "Constant"
+ OUTPUT_VARIABLE = "OutputVariable"
+ GLOBAL_VARIABLE = "GlobalVariable"
+ METER = "Meter"
+
+
+@dataclass
+class OpenStudioComponent:
+ type: OpenStudioComponentType
+ parameters: dict
+ handle: int = None
+
+ def __init__(self, type: str, parameters: dict, handle: int = None, converter: Callable[[float], float] = None):
+ self.type = OpenStudioComponentType(type)
+ self.parameters = parameters
+ self.handle = handle
+
+ if converter:
+ self.converter = converter
+ else:
+ self.converter = lambda x: x
+
+ if self.type == OpenStudioComponentType.ACTUATOR:
+ self.reset = False
+
+ def pre_initialize(self, api, state):
+ if self.type == OpenStudioComponentType.OUTPUT_VARIABLE:
+ api.exchange.request_variable(state, **self.parameters)
+
+ def initialize(self, api, state):
+ if self.type == OpenStudioComponentType.GLOBAL_VARIABLE:
+ self.handle = api.exchange.get_ems_global_handle(state, var_name=self.parameters["variable_name"])
+ elif self.type == OpenStudioComponentType.OUTPUT_VARIABLE:
+ self.handle = api.exchange.get_variable_handle(state, **self.parameters)
+ elif self.type == OpenStudioComponentType.METER:
+ self.handle = api.exchange.get_meter_handle(state, **self.parameters)
+ elif self.type == OpenStudioComponentType.ACTUATOR:
+ self.handle = api.exchange.get_actuator_handle(state,
+ component_type=self.parameters["component_type"],
+ control_type=self.parameters["control_type"],
+ actuator_key=self.parameters["component_name"])
+ elif self.type == OpenStudioComponentType.CONSTANT:
+ return
+ else:
+ raise JobException(f"Unknown point type: {self.type}")
+
+ if self.handle == -1:
+ raise JobException(f"Handle not found for point of type: {self.type} and parameters: {self.parameters}")
+
+ def read_value(self, api, state):
+ if self.handle == -1 or self.handle is None:
+ return None
+ if self.type == OpenStudioComponentType.OUTPUT_VARIABLE:
+ value = api.exchange.get_variable_value(state, self.handle)
+ elif self.type == OpenStudioComponentType.GLOBAL_VARIABLE:
+ value = api.exchange.get_ems_global_value(state, self.handle)
+ elif self.type == OpenStudioComponentType.METER:
+ value = api.exchange.get_meter_value(state, self.handle)
+ elif self.type == OpenStudioComponentType.ACTUATOR:
+ value = api.exchange.get_actuator_value(state, self.handle)
+ elif self.type == OpenStudioComponentType.CONSTANT:
+ value = self.parameters["value"]
+
+ return self.converter(value)
+
+ def write_value(self, api, state, value):
+ if self.handle == -1 or self.handle is None:
+ return None
+ if self.type == OpenStudioComponentType.GLOBAL_VARIABLE and value is not None:
+ api.exchange.set_ems_global_value(state, self.handle, value)
+ if self.type == OpenStudioComponentType.ACTUATOR:
+ if value is not None:
+ api.exchange.set_actuator_value(state, self.handle, value)
+ self.reset = False
+ elif self.reset is False:
+ api.exchange.reset_actuator(state, self.handle)
+ self.reset = True
diff --git a/alfalfa_worker/jobs/openstudio/lib/openstudio_point.py b/alfalfa_worker/jobs/openstudio/lib/openstudio_point.py
new file mode 100644
index 00000000..2970b366
--- /dev/null
+++ b/alfalfa_worker/jobs/openstudio/lib/openstudio_point.py
@@ -0,0 +1,91 @@
+from dataclasses import dataclass
+
+from alfalfa_worker.jobs.openstudio.lib.openstudio_component import (
+ OpenStudioComponent
+)
+from alfalfa_worker.lib.enums import PointType
+from alfalfa_worker.lib.job_exception import JobException
+from alfalfa_worker.lib.models import Point, Run
+
+
+@dataclass
+class OpenStudioPoint:
+ id: str
+ name: str
+ optional: bool = False
+ units: str = None
+ input: OpenStudioComponent = None
+ output: OpenStudioComponent = None
+ point: Point = None
+
+ def __init__(self, id: str, name: str, optional: bool = False, units: str = None, input: dict = None, output: dict = None):
+ self.id = id
+ self.name = name
+ self.optional = optional
+ self.units = units
+ self.input = OpenStudioComponent(**input) if input else None
+ self.output = OpenStudioComponent(**output) if output else None
+
+ def create_point(self):
+ point_type = PointType.OUTPUT
+ if self.input is not None:
+ if self.output is not None:
+ point_type = PointType.BIDIRECTIONAL
+ else:
+ point_type = PointType.INPUT
+
+ self.point = Point(ref_id=self.id, point_type=point_type, name=self.name)
+ if self.units is not None:
+ self.point.units = self.units
+
+ def attach_run(self, run: Run):
+ if self.point is None:
+ self.create_point()
+
+ conflicting_points = Point.objects(ref_id=self.point.ref_id, run=run)
+ needs_rename = len(conflicting_points) > 0
+ if len(conflicting_points) == 1:
+ needs_rename = not (conflicting_points[0] == self.point)
+
+ if needs_rename:
+ self.point.ref_id = self.point.ref_id + "_1"
+ return self.attach_run(run)
+ else:
+ run.add_point(self.point)
+
+ def pre_initialize(self, api, state):
+ if self.input:
+ self.input.pre_initialize(api, state)
+
+ if self.output:
+ self.output.pre_initialize(api, state)
+
+ def initialize(self, api, state):
+ try:
+ if self.input:
+ self.input.initialize(api, state)
+
+ if self.output:
+ self.output.initialize(api, state)
+ except JobException as e:
+ if self.optional:
+ self.disable()
+ else:
+ raise e
+
+ def disable(self):
+ if self.point:
+ if self.point.run:
+ self.point.run = None
+
+ def update_input(self, api, state):
+ if self.input:
+ self.input.write_value(api, state, self.point.value)
+
+ def update_output(self, api, state) -> float:
+ if self.output:
+ value = self.output.read_value(api, state)
+ if self.point:
+ self.point.value = value
+ return value
+ return None
diff --git a/alfalfa_worker/jobs/openstudio/lib/translate_osm.rb b/alfalfa_worker/jobs/openstudio/lib/translate_osm.rb
deleted file mode 100644
index c5f512ca..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/translate_osm.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-osm = ARGV[0]
-idf = ARGV[1]
-
-vt = OpenStudio::OSVersion::VersionTranslator.new
-m = vt.loadModel osm
-
-if not m.empty?
- ft = OpenStudio::EnergyPlus::ForwardTranslator.new
- ws = ft.translateModel m.get
- ws.save(idf,true)
-end
diff --git a/alfalfa_worker/jobs/openstudio/lib/variables.py b/alfalfa_worker/jobs/openstudio/lib/variables.py
deleted file mode 100644
index 94246b2f..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/variables.py
+++ /dev/null
@@ -1,140 +0,0 @@
-import json
-from os import PathLike
-from pathlib import Path
-from typing import Dict, List
-from xml.etree import ElementTree
-
-from alfalfa_worker.lib.enums import PointType
-from alfalfa_worker.lib.models import Point, Run
-
-
-class Variables:
- inputs: Dict[str, Dict]
- outputs: Dict[str, Dict]
- day_index: int = 0
- hour_index: int = 1
- minute_index: int = 2
- month_index: int = 3
-
- def __init__(self, run: Run) -> None:
- self.run = run
- self.inputs = self._load_json('**/input_points.json')
- self.outputs = self._load_json('**/output_points.json')
-
- def _load_json(self, glob: str) -> List:
- result = {}
- files = self.run.glob(glob)
- for file in files:
- with open(str(file), 'r') as fp:
- result.update(json.load(fp))
-
- return result
-
- def load_reports(self):
- self.inputs = self._load_json('**/*_report_inputs.json')
- self.outputs = self._load_json('**/*_report_outputs.json')
-
- def generate_variables_cfg(self) -> str:
- bcvtb_variables_element = ElementTree.fromstring(
- """
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- """)
- input_index = 0
- for id, input in self.inputs.items():
- self.inputs[id]["index"] = input_index
- variable_element = ElementTree.Element('variable', {'source': 'Ptolemy'})
- ElementTree.SubElement(variable_element, 'EnergyPlus', {'variable': input['variable']})
- bcvtb_variables_element.append(variable_element)
- input_index += 1
-
- if "enable_variable" in input:
- self.inputs[id]["enable_index"] = input_index
- variable_element = ElementTree.Element('variable', {'source': 'Ptolemy'})
- ElementTree.SubElement(variable_element, 'EnergyPlus', {'variable': input['enable_variable']})
- bcvtb_variables_element.append(variable_element)
- input_index += 1
-
- output_index = 4
- for id, output in self.outputs.items():
- self.outputs[id]["index"] = output_index
- variable_element = ElementTree.Element('variable', {'source': 'EnergyPlus'})
- ElementTree.SubElement(variable_element, 'EnergyPlus', {'name': output['component'], 'type': output['variable']})
- bcvtb_variables_element.append(variable_element)
- output_index += 1
-
- return '\n' + ElementTree.tostring(bcvtb_variables_element, encoding="unicode")
-
- def write_files(self, dir_name: PathLike):
- dir = Path(dir_name)
- inputs_file = dir / 'input_points.json'
- outputs_file = dir / 'output_points.json'
- variables_file = dir / 'variables.cfg'
-
- with variables_file.open('w') as fp:
- fp.write(self.generate_variables_cfg())
-
- with inputs_file.open('w') as fp:
- json.dump(self.inputs, fp)
-
- with outputs_file.open('w') as fp:
- json.dump(self.outputs, fp)
-
- def generate_points(self):
- echo_ids = []
- for id, input in self.inputs.items():
- point = Point(ref_id=id, point_type=PointType.INPUT, name=input["variable"])
- if "display_name" in input:
- point.name = input["display_name"]
- if "echo_id" in input:
- point.point_type = PointType.BIDIRECTIONAL
- echo_ids.append(input['echo_id'])
- self.run.add_point(point)
-
- for id, output in self.outputs.items():
- if id in echo_ids:
- continue
- point = Point(ref_id=id, point_type=PointType.OUTPUT, name=f"{output['component']} {output['variable']}")
- if "display_name" in output:
- point.name = output["display_name"]
- self.run.add_point(point)
-
- self.run.save()
-
- def get_input_index(self, id):
- return self.inputs[id]["index"]
-
- def has_enable(self, id):
- return "enable_variable" in self.inputs[id]
-
- def get_input_enable_index(self, id):
- return self.inputs[id]["enable_index"]
-
- def get_output_index(self, id):
- if id in self.outputs.keys():
- return self.outputs[id]['index']
- elif id in self.inputs.keys():
- if 'echo_id' in self.inputs[id]:
- return self.get_output_index(self.inputs[id]['echo_id'])
-
- def get_num_inputs(self):
- if len(self.inputs) == 0:
- return 0
- num_inputs = 0
- for input in self.inputs.values():
- num_inputs = max(input['index'], num_inputs)
- if 'enable_index' in input:
- num_inputs = max(input['enable_index'], num_inputs)
- return num_inputs + 1
diff --git a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_metadata/measure.rb b/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_metadata/measure.rb
index d2d6261f..5258c4e6 100644
--- a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_metadata/measure.rb
+++ b/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_metadata/measure.rb
@@ -1,4 +1,5 @@
# start the measure
+require 'json'
class AlfalfaMetadata < OpenStudio::Measure::EnergyPlusMeasure
# human readable name
diff --git a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_prepare_idf/measure.rb b/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_prepare_idf/measure.rb
deleted file mode 100644
index 57f38731..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_prepare_idf/measure.rb
+++ /dev/null
@@ -1,89 +0,0 @@
-# *******************************************************************************
-# OpenStudio(R), Copyright (c) 2008-2020, Alliance for Sustainable Energy, LLC.
-# All rights reserved.
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are met:
-#
-# (1) Redistributions of source code must retain the above copyright notice,
-# this list of conditions and the following disclaimer.
-#
-# (2) Redistributions in binary form must reproduce the above copyright notice,
-# this list of conditions and the following disclaimer in the documentation
-# and/or other materials provided with the distribution.
-#
-# (3) Neither the name of the copyright holder nor the names of any contributors
-# may be used to endorse or promote products derived from this software without
-# specific prior written permission from the respective party.
-#
-# (4) Other than as required in clauses (1) and (2), distributions in any form
-# of modifications or other derivative works may not use the "OpenStudio"
-# trademark, "OS", "os", or any other confusingly similar designation without
-# specific prior written permission from Alliance for Sustainable Energy, LLC.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE
-# UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF
-# THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
-# OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
-# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-# *******************************************************************************
-
-# start the measure
-class AlfalfaPrepareIDF < OpenStudio::Ruleset::WorkspaceUserScript
-
- # human readable name
- def name
- return 'Alfalfa Prepare IDF'
- end
-
- # human readable description
- def description
- return 'Remove RunPeriod and Timestep IDF Objects in preparation for Alfalfa execution'
- end
-
- # human readable description of modeling approach
- def modeler_description
- return 'Remove RunPeriod and Timestep IDF Objects in preparation for Alfalfa execution'
- end
-
- # define the arguments that the user will input
- def arguments(workspace)
- args = OpenStudio::Ruleset::OSArgumentVector.new
- return args
- end
-
- # define what happens when the measure is run
- def run(ws, runner, user_args)
-
- # call the parent class method
- super(ws, runner, user_args)
-
- # use the built-in error checking
- return false unless runner.validateUserArguments(
- arguments(ws),
- user_args
- )
-
- timestep_objs = ws.getObjectsByType('Timestep'.to_IddObjectType)
- runperiod_objs = ws.getObjectsByType('RunPeriod'.to_IddObjectType)
-
- timestep_objs.each do |timestep|
- timestep.remove()
- end
-
- runperiod_objs.each do |runperiod|
- runperiod.remove()
- end
-
- return true
- end
-
-end
-
-# register the measure to be used by the application
-AlfalfaPrepareIDF.new.registerWithApplication
diff --git a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_prepare_idf/measure.xml b/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_prepare_idf/measure.xml
deleted file mode 100644
index 92cbe0c5..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_prepare_idf/measure.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
- 3.1
- alfalfa_prepare_idf
- 16125428-fcf9-4986-9d9b-3644225a2b6d
- ed0d5b56-97c3-4dde-bf4a-937d382043fe
- 2024-05-10T15:00:59Z
- 7A4781A5
- AlfalfaPrepareIDF
- Alfalfa Prepare IDF
- Remove RunPeriod and Timestep IDF Objects in preparation for Alfalfa execution
- Remove RunPeriod and Timestep IDF Objects in preparation for Alfalfa execution
-
-
-
-
- Tool.Alfalfa
-
-
-
- Measure Type
- EnergyPlusMeasure
- string
-
-
- Intended Software Tool
- OpenStudio Application
- string
-
-
-
-
-
- OpenStudio
- 2.3.0
- 2.3.0
-
- measure.rb
- rb
- script
- 0267B29F
-
-
-
diff --git a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_python_environment/measure.rb b/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_python_environment/measure.rb
deleted file mode 100644
index dd16b440..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_python_environment/measure.rb
+++ /dev/null
@@ -1,96 +0,0 @@
-# *******************************************************************************
-# OpenStudio(R), Copyright (c) 2008-2020, Alliance for Sustainable Energy, LLC.
-# All rights reserved.
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are met:
-#
-# (1) Redistributions of source code must retain the above copyright notice,
-# this list of conditions and the following disclaimer.
-#
-# (2) Redistributions in binary form must reproduce the above copyright notice,
-# this list of conditions and the following disclaimer in the documentation
-# and/or other materials provided with the distribution.
-#
-# (3) Neither the name of the copyright holder nor the names of any contributors
-# may be used to endorse or promote products derived from this software without
-# specific prior written permission from the respective party.
-#
-# (4) Other than as required in clauses (1) and (2), distributions in any form
-# of modifications or other derivative works may not use the "OpenStudio"
-# trademark, "OS", "os", or any other confusingly similar designation without
-# specific prior written permission from Alliance for Sustainable Energy, LLC.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE
-# UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF
-# THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
-# OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
-# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-# *******************************************************************************
-
-# start the measure
-class AlfalfaPythonEnvironment < OpenStudio::Ruleset::WorkspaceUserScript
-
- # human readable name
- def name
- return 'Alfalfa Python Environment'
- end
-
- # human readable description
- def description
- return 'Add alfalfa python environment to IDF'
- end
-
- # human readable description of modeling approach
- def modeler_description
- return 'Add python script path to IDF'
- end
-
- # define the arguments that the user will input
- def arguments(workspace)
- args = OpenStudio::Ruleset::OSArgumentVector.new
- return args
- end
-
- # define what happens when the measure is run
- def run(ws, runner, user_args)
-
- # call the parent class method
- super(ws, runner, user_args)
-
- # use the built-in error checking
- return false unless runner.validateUserArguments(
- arguments(ws),
- user_args
- )
-
- # modify python plugin search paths
- ws.getObjectsByType('PythonPlugin_SearchPaths'.to_IddObjectType).each do |o|
- # Create a list of python paths to be added to every SearchPaths idd object. By default we include the system python package path.
- python_paths = ["/usr/local/lib/python3.8/dist-packages"]
- # Find the root directory of the run. The .venv is located in that folder. This relies on runs being put in the same place between CreateRun and StepRun.
- run_dir_match = Dir.pwd.match("(.*/runs/[^/]*)/.*")
- if run_dir_match.size > 1
- python_paths.append(run_dir_match[1] + "/.venv/lib/python3.8/site-packages")
- end
-
- i = 4
- while python_paths.length() > 0 && i < 20 do
- if o.getString(i, false, true).empty?
- o.setString(i, python_paths.pop)
- end
- i += 1
- end
- end
- return true
- end
-
-end
-
-# register the measure to be used by the application
-AlfalfaPythonEnvironment.new.registerWithApplication
diff --git a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_python_environment/measure.xml b/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_python_environment/measure.xml
deleted file mode 100644
index e3645a9e..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_python_environment/measure.xml
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
- 3.1
- alfalfa_python_environment
- 16125428-fcf9-4986-9d9b-3644225a2b6d
- 39ffcfe8-5902-44dd-9d1a-5aae2502d8c7
- 2024-05-03T20:06:06Z
- 9D2F1A23
- AlfalfaPythonEnvironment
- Alfalfa Python Environment
- Add alfalfa python environment to IDF
- Add python script path to IDF
-
-
-
-
- Tool.Alfalfa
-
-
-
- Measure Type
- EnergyPlusMeasure
- string
-
-
- Intended Software Tool
- OpenStudio Application
- string
-
-
-
-
-
- OpenStudio
- 2.3.0
- 2.3.0
-
- measure.rb
- rb
- script
- 91260911
-
-
-
diff --git a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_setpoint_control/measure.rb b/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_setpoint_control/measure.rb
index d5d2bfbb..10dc6e9b 100644
--- a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_setpoint_control/measure.rb
+++ b/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_setpoint_control/measure.rb
@@ -1,8 +1,6 @@
-require 'alfalfa'
# start the measure
class AlfalfaSetpointControl < OpenStudio::Measure::EnergyPlusMeasure
- include OpenStudio::Alfalfa::EnergyPlusMixin
# human readable name
def name
# Measure name should be the title case of the class name.
@@ -26,16 +24,18 @@ def arguments(workspace)
return args
end
- def create_schedule_actuator(target_schedule)
- schedule_name = target_schedule.name.get
- actuator_input = create_actuator(create_ems_str("#{schedule_name}_setpoint"), schedule_name, target_schedule.idfObject.iddObject.type.valueDescription, "Schedule Value", true)
- schedule_value_output = create_output_variable(schedule_name, "Schedule Value")
- actuator_input.echo = schedule_value_output
- return actuator_input, schedule_value_output
- end
+ # define what happens when the measure is run
+ def run(workspace, runner, user_arguments)
+ super(workspace, runner, user_arguments)
+
+ alfalfa = runner.alfalfa
+
+ # use the built-in error checking
+ if !runner.validateUserArguments(arguments(workspace), user_arguments)
+ return false
+ end
- def control_thermostats
- zone_control_thermostats = @workspace.getObjectsByType('ZoneControl:Thermostat'.to_IddObjectType)
+ zone_control_thermostats = workspace.getObjectsByType('ZoneControl:Thermostat'.to_IddObjectType)
thermostats_to_zones = {}
zone_control_thermostats.each do |zone_control_thermostat|
@@ -54,7 +54,7 @@ def control_thermostats
schedules_to_zones = {}
thermostats_to_zones.each do |thermostat, zone_list|
thermostat.targets.each do |target|
- target_type = get_idd_type(target)
+ target_type = target.iddObject.type
schedule = nil
if target_type == 'Schedule:Compact'.to_IddObjectType
schedule = target
@@ -76,29 +76,10 @@ def control_thermostats
end
schedules_to_zones.each do |schedule, zone_list|
- schedule_input, schedule_echo = create_schedule_actuator(schedule)
- zone_list.each do |zone|
- schedule_input.add_zone(zone)
- schedule_echo.add_zone(zone)
- end
- schedule_input.display_name = schedule.name.get
- register_input(schedule_input)
- register_output(schedule_echo)
+ schedule_actuator = alfalfa.exposeActuator(schedule.name.get, schedule.idfObject.iddObject.type.valueDescription, "Schedule Value", schedule.name.get).get
+ schedule_value_output = OpenStudio::Alfalfa::AlfalfaOutputVariable.new(schedule.name.get, "Schedule Value")
+ schedule_actuator.setOutput(schedule_value_output)
end
- end
-
- # define what happens when the measure is run
- def run(workspace, runner, user_arguments)
- super(workspace, runner, user_arguments)
-
- # use the built-in error checking
- if !runner.validateUserArguments(arguments(workspace), user_arguments)
- return false
- end
-
- control_thermostats
-
- report_inputs_outputs
runner.registerFinalCondition("Done")
diff --git a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_site_sensors/measure.rb b/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_site_sensors/measure.rb
deleted file mode 100644
index a94ce392..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_site_sensors/measure.rb
+++ /dev/null
@@ -1,109 +0,0 @@
-require 'alfalfa'
-# start the measure
-class AlfalfaSiteSensors < OpenStudio::Measure::EnergyPlusMeasure
-
-
- FuelMeter = Struct.new(:fuel, :adjustment_factor)
-
- include OpenStudio::Alfalfa::EnergyPlusMixin
- # human readable name
- def name
- # Measure name should be the title case of the class name.
- return 'Alfalfa Site Sensors'
- end
-
- # human readable description
- def description
- return 'Add Site Sensors to Alfalfa'
- end
-
- # human readable description of modeling approach
- def modeler_description
- return 'Add Site Sensors to Alfalfa'
- end
-
- # define the arguments that the user will input
- def arguments(workspace)
- args = OpenStudio::Measure::OSArgumentVector.new
-
- return args
- end
-
- def create_output_meter(name, adjustment_factor=1)
- sensor_name = "#{create_ems_str(name)}_sensor"
- output_name = "#{create_ems_str(name)}_output"
- adjusted_name = "#{create_ems_str(name)}_sensor_adjusted"
- program_calling_manager_name = "#{create_ems_str(name)}_calling_point"
- program_name = "#{create_ems_str(name)}_program"
-
- new_meter_string = "
- Output:Meter,
- #{name};
- "
- new_meter_object = OpenStudio::IdfObject.load(new_meter_string).get
- @workspace.addObject(new_meter_object)
-
- new_sensor_string = "
- EnergyManagementSystem:Sensor,
- #{sensor_name},
- ,
- #{name};
- "
- new_sensor_object = OpenStudio::IdfObject.load(new_sensor_string).get
- @workspace.addObject(new_sensor_object)
-
- new_global_variable_string= "
- EnergyManagementSystem:GlobalVariable,
- #{adjusted_name}; !- Name
- "
-
- new_global_variable_object = OpenStudio::IdfObject.load(new_global_variable_string).get
- @workspace.addObject(new_global_variable_object)
-
- new_program_string = "
- EnergyManagementSystem:Program,
- #{program_name}, !- Name
- SET #{adjusted_name} = #{sensor_name}*#{adjustment_factor};
- "
- new_program_object = OpenStudio::IdfObject.load(new_program_string).get
- @workspace.addObject(new_program_object)
-
- new_calling_manager_string = "
- EnergyManagementSystem:ProgramCallingManager,
- #{program_calling_manager_name}, !- Name
- EndOfZoneTimestepAfterZoneReporting, !- EnergyPlus Model Calling Point
- #{program_name};
- "
- new_calling_manager_object = OpenStudio::IdfObject.load(new_calling_manager_string).get
- @workspace.addObject(new_calling_manager_object)
-
- create_ems_output_variable(output_name, adjusted_name)
- end
-
- # define what happens when the measure is run
- def run(workspace, runner, user_arguments)
- super(workspace, runner, user_arguments)
-
- # use the built-in error checking
- if !runner.validateUserArguments(arguments(workspace), user_arguments)
- return false
- end
-
- fuels = [
- FuelMeter.new('Electricity', 1.0/60)
- ]
-
- fuels.each do |fuel|
- register_output(create_output_meter("#{fuel.fuel}:Facility", fuel.adjustment_factor)).display_name = "Whole Building #{fuel.fuel}"
- end
-
- report_inputs_outputs
-
- runner.registerFinalCondition("Done")
-
- return true
- end
-end
-
-# register the measure to be used by the application
-AlfalfaSetpointControl.new.registerWithApplication
diff --git a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_site_sensors/measure.xml b/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_site_sensors/measure.xml
deleted file mode 100644
index e4070d78..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_site_sensors/measure.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
- 3.1
- Failed to infer measure name from '/Users/tshapins/Documents/Projects/alfalfa/alfalfa_worker/jobs/openstudio/lib/workflow/measures/./alfalfa_site_sensors/measure.rb'
- alfalfa_site_sensors
- 870213d3-36a2-4da2-9a04-c377a37fd4fe
- 40c05e7b-834f-41f7-857a-baf8e251ebf9
- 2024-05-03T20:06:06Z
- 70995EFB
- AlfalfaSiteSensors
- Alfalfa Site Sensors
- Add Site Sensors to Alfalfa
- Add Site Sensors to Alfalfa
-
-
-
-
- HVAC.HVAC Controls
-
-
-
- Measure Type
- EnergyPlusMeasure
- string
-
-
-
-
-
- OpenStudio
- 3.1.0
- 3.1.0
-
- measure.rb
- rb
- script
- FC5DA746
-
-
-
diff --git a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_zone_sensors/measure.rb b/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_zone_sensors/measure.rb
index 5cbb92f3..f46381ba 100644
--- a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_zone_sensors/measure.rb
+++ b/alfalfa_worker/jobs/openstudio/lib/workflow/measures/alfalfa_zone_sensors/measure.rb
@@ -1,8 +1,6 @@
-require 'alfalfa'
# start the measure
class AlfalfaZoneSensors < OpenStudio::Measure::EnergyPlusMeasure
- include OpenStudio::Alfalfa::EnergyPlusMixin
# human readable name
def name
# Measure name should be the title case of the class name.
@@ -33,32 +31,24 @@ def run(workspace, runner, user_arguments)
# use the built-in error checking
return false unless runner.validateUserArguments(arguments(workspace), user_arguments)
+ alfalfa = runner.alfalfa
+
zones = workspace.getObjectsByType('Zone'.to_IddObjectType)
zones.each do |zone|
zone_name = zone.name.get
- mean_air_temperature_output = create_output_variable(zone_name, 'Zone Mean Air Temperature')
- mean_air_temperature_output.display_name = "#{zone_name} Air Temperature"
- mean_air_temperature_output.add_zone(zone_name)
- register_output(mean_air_temperature_output)
+ alfalfa.exposeOutputVariable(zone_name, 'Zone Mean Air Temperature', "#{zone_name} Air Temperature")
- air_relative_humidity_output = create_output_variable(zone_name, 'Zone Air Relative Humidity')
- air_relative_humidity_output.display_name = "#{zone_name} Humidity"
- air_relative_humidity_output.add_zone(zone_name)
- register_output(air_relative_humidity_output)
+ alfalfa.exposeOutputVariable(zone_name, 'Zone Air Relative Humidity', "#{zone_name} Humidity")
zone_equip_connections = zone.getSources('ZoneHVAC:EquipmentConnections'.to_IddObjectType)
zone_equip_connections.each do |zone_equip_connection|
zone_air_node = zone_equip_connection.getString(4)
- setpoint_output = create_output_variable(zone_air_node, 'System Node Setpoint Temperature')
- setpoint_output.display_name = "#{zone_name} Temperature Setpoint"
- setpoint_output.add_zone(zone_name)
- register_output(setpoint_output)
+
+ alfalfa.exposeOutputVariable(zone_air_node.get, 'System Node Setpoint Temperature', "#{zone_name} Temperature Setpoint")
end
end
- report_inputs_outputs
-
runner.registerFinalCondition('Done')
true
diff --git a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/export_bcvtb/measure.rb b/alfalfa_worker/jobs/openstudio/lib/workflow/measures/export_bcvtb/measure.rb
deleted file mode 100644
index 3cc20fb3..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/export_bcvtb/measure.rb
+++ /dev/null
@@ -1,187 +0,0 @@
-########################################################################################################################
-# Copyright (c) 2008-2022, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
-# following conditions are met:
-#
-# (1) Redistributions of source code must retain the above copyright notice, this list of conditions and the following
-# disclaimer.
-#
-# (2) Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
-# disclaimer in the documentation and/or other materials provided with the distribution.
-#
-# (3) Neither the name of the copyright holder nor the names of any contributors may be used to endorse or promote products
-# derived from this software without specific prior written permission from the respective party.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
-# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE UNITED STATES GOVERNMENT, OR THE UNITED
-# STATES DEPARTMENT OF ENERGY, NOR ANY OF THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
-# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
-# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-########################################################################################################################
-
-require 'json'
-require 'openstudio'
-require 'rexml/document'
-require 'alfalfa'
-# start the measure
-class ExportBCVTB < OpenStudio::Ruleset::ModelUserScript
-
- include OpenStudio::Alfalfa::OpenStudioMixin
- include OpenStudio::Alfalfa::Utils
- # human readable name
- def name
- return "ExportBCVTB"
- end
-
- # human readable description
- def description
- return "This measure will create the variables.cfg xml file for BCVTB"
- end
-
- # human readable description of modeling approach
- def modeler_description
- return "This measure loops through output_variables, EMS:output_variables and ExternalInterface objects and will create the variables.cfg xml file for BCVTB.
- Those variables need to be in cfg file, being used for data exchange."
- end
-
- # define the arguments that the user will input
- def arguments(model)
- args = OpenStudio::Ruleset::OSArgumentVector.new
-
- return args
- end
-
-
- def run(model, runner, user_arguments)
- super(model, runner, user_arguments)
-
- # Use the built-in error checking
- if not runner.validateUserArguments(arguments(model), user_arguments)
- return false
- end
-
- # loop through output_variables
- output_variables = model.getOutputVariables
- output_variables = output_variables.sort_by { |m| [m.keyValue.to_s, m.name.to_s.downcase] }
- output_variables.each do |outvar|
- next if outvar.variableName.downcase.end_with? '_enable_value'
-
- register_output(outvar) if outvar.exportToBCVTB
- end
-
- # loop through ems_output_variables
- ems_output_variables = model.getEnergyManagementSystemOutputVariables
- # alphabetize
- ems_output_variables = ems_output_variables.sort_by { |m| m.name.to_s.downcase }
- ems_output_variables.each do |outvar|
- next unless outvar.exportToBCVTB
- next if outvar.emsVariableName.downcase.end_with? '_enable_value'
-
- register_output(outvar)
- end
-
- # find all EnergyManagementSystemGlobalVariable objects and
- # replace those that have exportToBCVTB set to true
- # We also have to swap handles in any ems programs
- ems_programs = model.getEnergyManagementSystemPrograms
- ems_subroutines = model.getEnergyManagementSystemSubroutines
-
- ems_globals = model.getEnergyManagementSystemGlobalVariables
-
- ems_globals.each do |emsvar|
- next unless emsvar.exportToBCVTB
-
- ems_global_name = emsvar.nameString
- ems_global_handle = emsvar.handle.to_s
- emsvar.remove
-
- eevar = OpenStudio::Model::ExternalInterfaceVariable.new(model, ems_global_name, 0)
- eevar_handle = eevar.handle.to_s
-
- ems_programs.each do |prog|
- body = prog.body
- body.gsub!(ems_global_handle, eevar_handle)
- prog.setBody(body)
- end
-
- ems_subroutines.each do |prog|
- body = prog.body
- body.gsub!(ems_global_handle, eevar_handle)
- prog.setBody(body)
- end
-
- ems_output_variables.each do |outvar|
- this_ems_var_name = outvar.emsVariableName
- outvar.setEMSVariableName(eevar_handle) if this_ems_var_name == ems_global_handle
- end
- end
-
- # loop through ExternalInterfaceVariables
- external_variables = model.getExternalInterfaceVariables
- # alphabetize
- external_variables = external_variables.sort_by { |m| m.name.to_s.downcase }
- external_variables.each_index do |index|
- outvar = external_variables[index]
- next unless outvar.exportToBCVTB
-
- var_name = outvar.name.to_s
-
- input_object = register_input(outvar)
- next unless index + 1 < external_variables.length
-
- next_variable = external_variables[index + 1]
- next_var_name = next_variable.name.to_s
- if next_var_name.start_with?(var_name) && next_var_name.gsub(var_name, '').downcase == '_enable'
- input_object.enable_variable = next_variable
- external_variables.delete_at(index + 1)
- end
- end
-
- # loop through ExternalInterfaceSchedule
- external_schedules = model.getExternalInterfaceSchedules
- # alphabetize
- external_schedules = external_schedules.sort_by { |m| m.name.to_s.downcase }
- external_schedules.each do |schedule|
- register_input(schedule) if schedule.exportToBCVTB
- end
-
- # loop through ExternalInterfaceActuators
- external_actuators = model.getExternalInterfaceActuators
- # alphabetize
- external_actuators = external_actuators.sort_by { |m| m.name.to_s.downcase }
- external_actuators.each do |actuator|
- register_input(actuator) if actuator.exportToBCVTB
- end
-
- @outputs.delete_if do |output|
- next unless output.component == 'EMS'
-
- variable_name = output.display_name
- if variable_name.downcase.end_with? '_value'
- variable_name = variable_name[0, variable_name.length - '_value'.length]
- end
-
- input_object = get_input_by_name(variable_name)
- input_object&.echo = output
- next unless input_object.nil?
-
- if variable_name.downcase.end_with? '_enable'
- variable_name = variable_name[0, variable_name.length - '_enable'.length]
- end
-
- input_object = get_input_by_name(variable_name)
- next if input_object.nil?
-
- true
- end
-
- report_inputs_outputs
-
- return true
- end
-end
-ExportBCVTB.new.registerWithApplication
diff --git a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/export_bcvtb/measure.xml b/alfalfa_worker/jobs/openstudio/lib/workflow/measures/export_bcvtb/measure.xml
deleted file mode 100644
index cc816017..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/export_bcvtb/measure.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
- 3.1
- Failed to infer measure name from '/Users/tshapins/Documents/Projects/alfalfa/alfalfa_worker/jobs/openstudio/lib/workflow/measures/./export_bcvtb/measure.rb'
- export_bcvtb
- 7fb36b3a-5591-4627-a2b0-7709fbeae593
- c92aa95d-9707-4ff9-8bc0-8ea7fbdf532c
- 2024-05-03T20:06:07Z
- A9D5932A
- ExportBCVTB
- ExportBCVTB
- This measure will create the variables.cfg xml file for BCVTB
- This measure loops through outputvariables, EMS:outputvariables and ExternalInterface objects and will create the variables.cfg xml file for BCVTB.
-
-
-
-
- HVAC.Whole System
-
-
-
- Measure Type
- ModelMeasure
- string
-
-
- Intended Software Tool
- Apply Measure Now
- string
-
-
- Intended Software Tool
- OpenStudio Application
- string
-
-
- Intended Software Tool
- Parametric Analysis Tool
- string
-
-
- Intended Use Case
- Model Articulation
- string
-
-
- Intended Use Case
- New Construction EE
- string
-
-
-
-
-
- OpenStudio
- 1.12.2
- 1.12.2
-
- measure.rb
- rb
- script
- F60B3189
-
-
-
diff --git a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/expose_time_variables/measure.rb b/alfalfa_worker/jobs/openstudio/lib/workflow/measures/expose_time_variables/measure.rb
deleted file mode 100644
index 3581987b..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/expose_time_variables/measure.rb
+++ /dev/null
@@ -1,136 +0,0 @@
-# see the URL below for information on how to write OpenStudio measures
-# http://nrel.github.io/OpenStudio-user-documentation/reference/measure_writing_guide/
-
-# insert your copyright here
-# Yanfei Li
-# Yanfei.Li@nrel.gov
-# Commercial Buildings Group
-
-
-# start the measure
-class ExposeTimeVariable240 < OpenStudio::Measure::ModelMeasure
-
- # human readable name
- def name
- return "ExposeTimeVariable240"
- end
-
- # human readable description
- def description
- return "This measure will output the built-in variables through EMS modules."
- end
-
- # human readable description of modeling approach
- def modeler_description
- return "EMS:GlobalVariable; EMS:Subroutine; EMS:Program; EMS:ProgramCallingManager; EMS:OutputVariable; and Output:Variable "
- end
-
- # define the arguments that the user will input
- def arguments(model)
- args = OpenStudio::Measure::OSArgumentVector.new
-
- # the name of the space to add to the model
- expose_time_choices = OpenStudio::Measure::OSArgument.makeStringArgument('ExposeTime', true)
- expose_time_choices.setDisplayName('ExposeTimeChoice?')
- expose_time_choices.setDescription("Default=Yes")
- expose_time_choices.setDefaultValue('Yes')
- args << expose_time_choices
-
- return args
- end
-
- # define what happens when the measure is run
- def run(model, runner, user_arguments)
- super(model, runner, user_arguments)
-
- # use the built-in error checking
- if !runner.validateUserArguments(arguments(model), user_arguments)
- return false
- end
-
- # assign the user inputs to variables
- expose_time_choices = runner.getStringArgumentValue('ExposeTime', user_arguments)
-
- # check the expose_time_choices for reasonableness
- if expose_time_choices.empty?
- runner.registerError('Empty expose_time_choices name was entered.')
- return false
- end
-
- # Add EMS-GlobalVariable
- ems_global_month = OpenStudio::Model::EnergyManagementSystemGlobalVariable.new(model, "cur_month")
- ems_global_day = OpenStudio::Model::EnergyManagementSystemGlobalVariable.new(model, "cur_day")
- ems_global_hour = OpenStudio::Model::EnergyManagementSystemGlobalVariable.new(model, "cur_hour")
- ems_global_minute = OpenStudio::Model::EnergyManagementSystemGlobalVariable.new(model, "cur_minute")
-
- # Add EMS-Subroutines-Month
- ems_subroutine_month = OpenStudio::Model::EnergyManagementSystemSubroutine.new(model)
- ems_subroutine_month.setName("set_Month")
- month_body = "set cur_month=Month"
- ems_subroutine_month.setBody(month_body)
-
- # Add EMS-Subroutines-Day
- ems_subroutine_day = OpenStudio::Model::EnergyManagementSystemSubroutine.new(model)
- ems_subroutine_day.setName("set_Day")
- month_body = "set cur_day=DayOfMonth"
- ems_subroutine_day.setBody(month_body)
-
- # Add EMS-Subroutines-hour
- ems_subroutine_hour = OpenStudio::Model::EnergyManagementSystemSubroutine.new(model)
- ems_subroutine_hour.setName("set_Hour")
- month_body = "set cur_hour=Hour"
- ems_subroutine_hour.setBody(month_body)
-
- # Add EMS-Subroutines-minute
- ems_subroutine_minute = OpenStudio::Model::EnergyManagementSystemSubroutine.new(model)
- ems_subroutine_minute.setName("set_Minute")
- month_body = "set cur_minute=Minute"
- ems_subroutine_minute.setBody(month_body)
-
- # Add EMS-Program
- ems_program = OpenStudio::Model::EnergyManagementSystemProgram.new(model)
- ems_program.setName("ems_main")
- program_body="run set_Month
- run set_Day
- run set_Hour
- run set_Minute"
- ems_program.setBody(program_body)
-
- # Add EMS-CallingManager
- ems_program_calling_manager = OpenStudio::Model::EnergyManagementSystemProgramCallingManager.new(model)
- ems_program_calling_manager.addProgram(ems_program)
- ems_program_calling_manager.setName("callingpoint_main")
- ems_program_calling_manager.setCallingPoint("EndOfSystemTimestepAfterHVACReporting")
-
- # Add EMS-OutputVariable
- ems_output_variable_month = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, ems_global_month)
- ems_output_variable_month.setName("current_month")
- ems_output_variable_month.setEMSVariableName(ems_global_month)
- ems_output_variable_month.setTypeOfDataInVariable("Averaged")
- ems_output_variable_month.setUpdateFrequency("ZoneTimeStep")
-
- ems_output_variable_day = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, ems_global_day)
- ems_output_variable_day.setName("current_day")
- ems_output_variable_day.setEMSVariableName(ems_global_day)
- ems_output_variable_day.setTypeOfDataInVariable("Averaged")
- ems_output_variable_day.setUpdateFrequency("ZoneTimeStep")
-
- ems_output_variable_hour = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, ems_global_hour)
- ems_output_variable_hour.setName("current_hour")
- ems_output_variable_hour.setEMSVariableName(ems_global_hour)
- ems_output_variable_hour.setTypeOfDataInVariable("Averaged")
- ems_output_variable_hour.setUpdateFrequency("ZoneTimeStep")
-
- ems_output_variable_minute = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, ems_global_minute)
- ems_output_variable_minute.setName("current_minute")
- ems_output_variable_minute.setEMSVariableName(ems_global_minute)
- ems_output_variable_minute.setTypeOfDataInVariable("Averaged")
- ems_output_variable_minute.setUpdateFrequency("ZoneTimeStep")
- return true
-
- end
-
-end
-
-# register the measure to be used by the application
-ExposeTimeVariable240.new.registerWithApplication
diff --git a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/expose_time_variables/measure.xml b/alfalfa_worker/jobs/openstudio/lib/workflow/measures/expose_time_variables/measure.xml
deleted file mode 100644
index c238daa0..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/expose_time_variables/measure.xml
+++ /dev/null
@@ -1,64 +0,0 @@
-
-
- 3.1
- expose_time_variable_240
- f31b5fc3-a70a-45de-ae01-b953f7a9b694
- 31f3866c-d4b3-4be0-8042-60108cf4646f
- 2024-05-03T20:06:07Z
- FC9586A7
- ExposeTimeVariable240
- ExposeTimeVariable240
- This measure will output the built-in variables through EMS modules.
- EMS:GlobalVariable; EMS:Subroutine; EMS:Program; EMS:ProgramCallingManager; EMS:OutputVariable; and Output:Variable
-
-
- ExposeTime
- ExposeTimeChoice?
- Default=Yes
- String
- true
- false
- Yes
-
-
-
-
-
- Whole Building.Whole Building Schedules
-
-
-
- Measure Type
- ModelMeasure
- string
-
-
- Intended Software Tool
- Apply Measure Now
- string
-
-
- Intended Software Tool
- OpenStudio Application
- string
-
-
- Intended Software Tool
- Parametric Analysis Tool
- string
-
-
-
-
-
- OpenStudio
- 2.4.0
- 2.4.0
-
- measure.rb
- rb
- script
- 21A50C12
-
-
-
diff --git a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/haystack/measure.rb b/alfalfa_worker/jobs/openstudio/lib/workflow/measures/haystack/measure.rb
deleted file mode 100644
index 7aedc7ea..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/haystack/measure.rb
+++ /dev/null
@@ -1,841 +0,0 @@
-########################################################################################################################
-# Copyright (c) 2008-2022, Alliance for Sustainable Energy, LLC, and other contributors. All rights reserved.
-#
-# Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
-# following conditions are met:
-#
-# (1) Redistributions of source code must retain the above copyright notice, this list of conditions and the following
-# disclaimer.
-#
-# (2) Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
-# disclaimer in the documentation and/or other materials provided with the distribution.
-#
-# (3) Neither the name of the copyright holder nor the names of any contributors may be used to endorse or promote products
-# derived from this software without specific prior written permission from the respective party.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
-# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE UNITED STATES GOVERNMENT, OR THE UNITED
-# STATES DEPARTMENT OF ENERGY, NOR ANY OF THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
-# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
-# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-########################################################################################################################
-
-require 'json'
-
-# start the measure
-class Haystack < OpenStudio::Ruleset::ModelUserScript
-
- # human readable name
- def name
- return "Haystack"
- end
-
- # human readable description
- def description
- return "This measure will find economizers on airloops and add haystack tags."
- end
-
- # human readable description of modeling approach
- def modeler_description
- return "This measure loops through the existing airloops, looking for loops that have outdoor airsystems with economizers"
- end
-
- def create_uuid(dummyinput)
- return "r:#{OpenStudio.removeBraces(OpenStudio.createUUID)}"
- end
-
- def create_ref(id)
- #return string formatted for Ref (ie, "r:xxxxx") with uuid of object
- #return "r:#{id.gsub(/[\s-]/,'_')}"
- return "r:#{OpenStudio.removeBraces(id)}"
- end
-
- def create_ref_name(id)
- #return string formatted for Ref (ie, "r:xxxxx") with uuid of object
- return "r:#{id.gsub(/[\s-]/,'_')}"
- end
-
- def create_str(str)
- #return string formatted for strings (ie, "s:xxxxx")
- return "s:#{str}"
- end
-
- def create_num(str)
- #return string formatted for numbers (ie, "n:xxxxx")
- return "n:#{str}"
- end
-
- def create_ems_str(id)
- #return string formatted with no spaces or '-' (can be used as EMS var name)
- return "#{id.gsub(/[\s-]/,'_')}"
- end
-
- def create_point_timevars(outvar_time, siteRef)
- #this function will add haystack tag to the time-variables created by user.
- #the time-variables are also written to variables.cfg file to coupling energyplus
- #the uuid is unique to be used for mapping purpose
- #the point_json generated here caontains the tags for the tim-variables
- point_json = Hash.new
- #id = outvar_time.keyValue.to_s + outvar_time.name.to_s
- uuid = create_uuid("")
- point_json[:id]=uuid
- #point_json[:source] = create_str("EnergyPlus")
- #point_json[:type] = "Output:Variable"
- #point_json[:name] = create_str(outvar_time.name.to_s)
- #point_json[:variable] = create_str(outvar_time.name)
- point_json[:dis] = create_str(outvar_time.nameString)
- point_json[:siteRef]=create_ref(siteRef)
- point_json[:point]="m:"
- point_json[:cur]="m:"
- point_json[:curStatus] = "s:disabled"
-
- return point_json, uuid
- end # end of create_point_timevar
-
- def create_mapping_timevars(outvar_time, uuid)
- #this function will use the uuid generated from create_point_timevars(), to make a mapping.
- #the uuid is unique to be used for mapping purpose; uuid is the belt to connect point_json and mapping_json
- #the mapping_json below contains all the necessary tags
- mapping_json = Hash.new
- mapping_json[:id] = uuid
- mapping_json[:source] = "EnergyPlus"
- mapping_json[:name] = "EMS"
- mapping_json[:type] = outvar_time.nameString
- mapping_json[:variable] = ""
-
- return mapping_json
- end
-
-
- def create_point_uuid(type, id, siteRef, equipRef, floorRef, where,what,measurement,kind,unit)
- point_json = Hash.new
- uuid = create_uuid(id)
- point_json[:id] = uuid
- point_json[:dis] = create_str(id)
- point_json[:siteRef] = create_ref(siteRef)
- point_json[:equipRef] = create_ref(equipRef)
- point_json[:floorRef] = create_ref(floorRef)
- point_json[:point] = "m:"
- point_json["#{type}"] = "m:"
- point_json["#{measurement}"] = "m:"
- point_json["#{where}"] = "m:"
- point_json["#{what}"] = "m:"
- point_json[:kind] = create_str(kind)
- point_json[:unit] = create_str(unit)
- point_json[:cur] = "m:"
- point_json[:curStatus] = "s:disabled"
- return point_json, uuid
- end
-
- def create_point2_uuid(type, type2, id, siteRef, equipRef, floorRef, where,what,measurement,kind,unit)
- point_json = Hash.new
- uuid = create_uuid(id)
- point_json[:id] = uuid
- point_json[:dis] = create_str(id)
- point_json[:siteRef] = create_ref(siteRef)
- point_json[:equipRef] = create_ref(equipRef)
- point_json[:floorRef] = create_ref(floorRef)
- point_json[:point] = "m:"
- point_json["#{type}"] = "m:"
- point_json["#{type2}"] = "m:"
- point_json["#{measurement}"] = "m:"
- point_json["#{where}"] = "m:"
- point_json["#{what}"] = "m:"
- point_json[:kind] = create_str(kind)
- point_json[:unit] = create_str(unit)
- point_json[:cur] = "m:"
- point_json[:curStatus] = "s:disabled"
- return point_json, uuid
- end
-
- def create_controlpoint2(type, type2, id, uuid, siteRef, equipRef, floorRef, where,what,measurement,kind,unit)
- point_json = Hash.new
- point_json[:id] = create_ref(uuid)
- point_json[:dis] = create_str(id)
- point_json[:siteRef] = create_ref(siteRef)
- point_json[:equipRef] = create_ref(equipRef)
- point_json[:floorRef] = create_ref(floorRef)
- point_json[:point] = "m:"
- point_json["#{type}"] = "m:"
- point_json["#{type2}"] = "m:"
- point_json["#{measurement}"] = "m:"
- point_json["#{where}"] = "m:"
- point_json["#{what}"] = "m:"
- point_json[:kind] = create_str(kind)
- point_json[:unit] = create_str(unit)
- if type2 == "writable"
- point_json[:writeStatus] = "s:ok"
- end
- return point_json
- end
-
- def create_fan(id, name, siteRef, equipRef, floorRef, variable)
- point_json = Hash.new
- point_json[:id] = create_ref(id)
- point_json[:dis] = create_str(name)
- point_json[:siteRef] = create_ref(siteRef)
- point_json[:equipRef] = create_ref(equipRef)
- point_json[:floorRef] = create_ref(floorRef)
- point_json[:equip] = "m:"
- point_json[:fan] = "m:"
- if variable
- point_json[:vfd] = "m:"
- point_json[:variableVolume] = "m:"
- else
- point_json[:constantVolume] = "m:"
- end
- return point_json
- end
-
- def create_ahu(id, name, siteRef, floorRef)
- ahu_json = Hash.new
- ahu_json[:id] = create_ref(id)
- ahu_json[:dis] = create_str(name)
- ahu_json[:ahu] = "m:"
- ahu_json[:hvac] = "m:"
- ahu_json[:equip] = "m:"
- ahu_json[:siteRef] = create_ref(siteRef)
- ahu_json[:floorRef] = create_ref(floorRef)
- return ahu_json
- end
-
- def create_vav(id, name, siteRef, equipRef, floorRef)
- vav_json = Hash.new
- vav_json[:id] = create_ref(id)
- vav_json[:dis] = create_str(name)
- vav_json[:hvac] = "m:"
- vav_json[:vav] = "m:"
- vav_json[:equip] = "m:"
- vav_json[:equipRef] = create_ref(equipRef)
- vav_json[:ahuRef] = create_ref(equipRef)
- vav_json[:siteRef] = create_ref(siteRef)
- vav_json[:floorRef] = create_ref(floorRef)
- return vav_json
- end
-
- def create_mapping_output_uuid(emsName, uuid)
- json = Hash.new
- json[:id] = create_ref(uuid)
- json[:source] = "Ptolemy"
- json[:name] = ""
- json[:type] = ""
- json[:variable] = emsName
- return json
- end
-
- def create_EMS_sensor_bcvtb(outVarName, key, emsName, uuid, report_freq, model)
- outputVariable = OpenStudio::Model::OutputVariable.new(outVarName,model)
- outputVariable.setKeyValue("#{key.name.to_s}")
- outputVariable.setReportingFrequency(report_freq)
- outputVariable.setName(emsName)
- outputVariable.setExportToBCVTB(true)
-
- sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, outputVariable)
- sensor.setKeyName(key.handle.to_s)
- sensor.setName(create_ems_str(emsName))
-
- json = Hash.new
- json[:id] = uuid
- json[:source] = "EnergyPlus"
- json[:type] = outVarName
- json[:name] = key.name.to_s
- json[:variable] = ""
- return sensor, json
- end
-
- #will get deprecated by 'create_EMS_sensor_bcvtb' once Master Algo debugged (dont clutter up the json's with unused points right now)
- def create_EMS_sensor(outVarName, key, emsName, report_freq, model)
- outputVariable = OpenStudio::Model::OutputVariable.new(outVarName,model)
- outputVariable.setKeyValue("#{key.name.to_s}")
- outputVariable.setReportingFrequency(report_freq)
- outputVariable.setName(outVarName)
- sensor = OpenStudio::Model::EnergyManagementSystemSensor.new(model, outputVariable)
- sensor.setKeyName(key.handle.to_s)
- sensor.setName(create_ems_str(emsName))
- return sensor
- end
-
- #define the arguments that the user will input
- def arguments(model)
- args = OpenStudio::Ruleset::OSArgumentVector.new
-
- local_test = OpenStudio::Ruleset::OSArgument::makeBoolArgument("local_test", false)
- local_test.setDisplayName("Local Test")
- local_test.setDescription("Use EMS for Local Testing")
- local_test.setDefaultValue(true)
- args << local_test
-
- return args
- end #end the arguments method
-
- #define what happens when the measure is run
- def run(model, runner, user_arguments)
- super(model, runner, user_arguments)
-
- # Use the built-in error checking
- if not runner.validateUserArguments(arguments(model), user_arguments)
- return false
- end
-
- local_test = runner.getBoolArgumentValue("local_test",user_arguments)
- runner.registerInfo("local_test = #{local_test}")
-
- #Global Vars
- report_freq = "timestep"
-
- #initialize variables
- haystack_json = []
- mapping_json = []
- num_economizers = 0
- airloops = []
-
- #Master Enable
- if local_test == false
- #External Interface version
- runner.registerInitialCondition("Initializing ExternalInterface")
- master_enable = OpenStudio::Model::ExternalInterfaceVariable.new(model, "MasterEnable", 1)
- #TODO uncomment out for real use
- externalInterface = model.getExternalInterface
- externalInterface.setNameofExternalInterface("PtolemyServer")
- else
- #EMS Version
- runner.registerInitialCondition("Initializing EnergyManagementSystem")
- master_enable = OpenStudio::Model::EnergyManagementSystemGlobalVariable.new(model, "MasterEnable")
- end
-
- #initialization program
- program = OpenStudio::Model::EnergyManagementSystemProgram.new(model)
- program.setName("Master_Enable")
- program.addLine("SET #{master_enable.handle.to_s} = 1")
-
- pcm = OpenStudio::Model::EnergyManagementSystemProgramCallingManager.new(model)
- pcm.setName("Master_Enable_Prgm_Mgr")
- pcm.setCallingPoint("BeginNewEnvironment")
- pcm.addProgram(program)
-
- #Site and WeatherFile Data
- if model.weatherFile.is_initialized
- site_json = Hash.new
- weather_json = Hash.new
- floor_json = Hash.new
-
- wf = model.weatherFile.get
- building = model.getBuilding
-
- site_json[:id] = create_ref(building.handle)
- site_json[:dis] = create_str(building.name.to_s)
- site_json[:site] = "m:"
- site_json[:area] = create_num(building.floorArea)
- site_json[:weatherRef] = create_ref(wf.handle)
- site_json[:tz] = create_num(wf.timeZone)
- site_json[:geoCity] = create_str(wf.city)
- site_json[:geoState] = create_str(wf.stateProvinceRegion)
- site_json[:geoCountry] = create_str(wf.country)
- site_json[:geoCoord] = "c:#{wf.latitude},#{wf.longitude}"
- site_json[:simStatus] = "s:Stopped"
- site_json[:simType] = "s:osm"
- haystack_json << site_json
-
- weather_json[:id] = create_ref(wf.handle)
- weather_json[:dis] = create_str(wf.city)
- weather_json[:weather] = "m:"
- weather_json[:tz] = create_num(wf.timeZone)
- weather_json[:geoCoord] = "c:#{wf.latitude},#{wf.longitude}"
- haystack_json << weather_json
-
- #floor tag
- simCon = model.getSimulationControl #use this for now until floors are defined
- floor_json[:id] = create_ref(simCon.handle)
- floor_json[:dis] = create_str("floor discription")
- floor_json[:floor] = "m:"
- haystack_json << floor_json
- end
-
- ## Add tags to the time-variable outputs
- ##output_vars = model.getOutputVariables
- #output_vars = model.getEnergyManagementSystemOutputVariables
- #output_vars_sorted = output_vars.sort_by{ |m| [ m.nameString.downcase]}
- #output_vars_sorted.each do |outvar|
- # #if (outvar.keyValue.to_s == "*")
- # #print outvar
- # print "\n The haystack tag is beding added to time-variables!!!"
- # haystack_temp_json, temp_uuid = create_point_timevars(outvar, model.getBuilding.handle)
- # haystack_json << haystack_temp_json
- # temp_mapping = create_mapping_timevars(outvar,temp_uuid)
- # mapping_json << temp_mapping
- # #end
- #
- #end # end of do loop
-
- # Export all user defined OutputVariable objects
- # as haystack sensor points
- building = model.getBuilding
- output_vars = model.getOutputVariables
- output_vars.each do |outvar|
- if outvar.exportToBCVTB
- uuid = create_ref(outvar.handle)
-
- var_haystack_json = Hash.new
- var_haystack_json[:id] = uuid
- var_haystack_json[:dis] = create_str(outvar.nameString)
- var_haystack_json[:siteRef] = create_ref(building.handle)
- var_haystack_json[:point]="m:"
- var_haystack_json[:cur]="m:"
- var_haystack_json[:curStatus] = "s:disabled"
- haystack_json << var_haystack_json
-
- var_map_json = Hash.new
- var_map_json[:id] = uuid
- var_map_json[:source] = "EnergyPlus"
- var_map_json[:type] = outvar.variableName
- var_map_json[:name] = outvar.keyValue
- var_map_json[:variable] = ""
- mapping_json << var_map_json
- end
- end
-
- # Export all user defined EnergyManagementSystemGlobalVariable objects
- # as haystack writable points
- global_vars = model.getEnergyManagementSystemGlobalVariables
- global_vars.each do |globalvar|
- if globalvar.exportToBCVTB
- uuid = create_ref(globalvar.handle)
-
- if not globalvar.nameString.end_with?("_Enable")
- var_haystack_json = Hash.new
- var_haystack_json[:id] = uuid
- var_haystack_json[:dis] = create_str(globalvar.nameString)
- var_haystack_json[:siteRef] = create_ref(building.handle)
- var_haystack_json[:point]="m:"
- var_haystack_json[:writable]="m:"
- var_haystack_json[:writeStatus] = "s:ok"
- haystack_json << var_haystack_json
- end
-
- var_mapping_json = Hash.new
- var_mapping_json[:id] = uuid
- var_mapping_json[:source] = "Ptolemy"
- var_mapping_json[:name] = ""
- var_mapping_json[:type] = ""
- var_mapping_json[:variable] = globalvar.nameString
- mapping_json << var_mapping_json
- end
- end
-
- #loop through air loops and find economizers
- model.getAirLoopHVACs.each do |airloop|
- supply_components = airloop.supplyComponents
- #find AirLoopHVACOutdoorAirSystem on loop
- supply_components.each do |supply_component|
- sc = supply_component.to_AirLoopHVACOutdoorAirSystem
- if sc.is_initialized
- sc = sc.get
- #get ControllerOutdoorAir
- controller_oa = sc.getControllerOutdoorAir
- #log initial economizer type
- if not controller_oa.getEconomizerControlType == "NoEconomizer"
- runner.registerInfo("found economizer on airloop #{airloop.name.to_s}")
- #puts "found economizer on airloop #{airloop.name.to_s}"
- num_economizers += 1
- end
- end
- end
- end
-
- #loop through economizer loops and find fans and cooling coils
- model.getAirLoopHVACs.each do |airloop|
- ahu_json = create_ahu(airloop.handle,airloop.name.to_s, building.handle, simCon.handle)
-
- #AHU discharge sensors
- #discharge air node
- discharge_air_node = airloop.supplyOutletNode
- #Temp Sensor
- haystack_temp_json, temp_uuid = create_point_uuid("sensor", "#{airloop.name.to_s} Discharge Air Temp Sensor", building.handle, airloop.handle, simCon.handle, "discharge", "air", "temp", "Number", "C")
- haystack_json << haystack_temp_json
- discharge_air_temp_sensor, temp_json = create_EMS_sensor_bcvtb("System Node Temperature", discharge_air_node, "#{airloop.name.to_s} Discharge Air Temp Sensor", temp_uuid, report_freq, model)
- mapping_json << temp_json
- #Pressure Sensor
- haystack_temp_json, temp_uuid = create_point_uuid("sensor", "#{airloop.name.to_s} Discharge Air Pressure Sensor", building.handle, airloop.handle, simCon.handle, "discharge", "air", "pressure", "Number", "Pa")
- haystack_json << haystack_temp_json
- discharge_air_pressure_sensor = create_EMS_sensor("System Node Pressure", discharge_air_node, "#{airloop.name.to_s} Discharge Air Pressure Sensor", report_freq, model)
- #Humidity Sensor
- haystack_temp_json, temp_uuid = create_point_uuid("sensor", "#{airloop.name.to_s} Discharge Air Humidity Sensor", building.handle, airloop.handle, simCon.handle, "discharge", "air", "humidity", "Number", "%")
- haystack_json << haystack_temp_json
- discharge_air_humidity_sensor = create_EMS_sensor("System Node Relative Humidity", discharge_air_node, "#{airloop.name.to_s} Discharge Air Humidity Sensor", report_freq, model)
- #Flow Sensor
- haystack_temp_json, temp_uuid = create_point_uuid("sensor", "#{airloop.name.to_s} Discharge Air Flow Sensor", building.handle, airloop.handle, simCon.handle, "discharge", "air", "flow", "Number", "Kg/s")
- haystack_json << haystack_temp_json
- discharge_air_flow_sensor, temp_json = create_EMS_sensor_bcvtb("System Node Mass Flow Rate", discharge_air_node, "#{airloop.name.to_s} Discharge Air Flow Sensor", temp_uuid, report_freq, model)
- mapping_json << temp_json
-
- supply_components = airloop.supplyComponents
-
- #find fan, cooling coil and heating coil on loop
- supply_components.each do |sc|
- #get economizer on outdoor air system
- if sc.to_AirLoopHVACOutdoorAirSystem.is_initialized
- sc = sc.to_AirLoopHVACOutdoorAirSystem.get
- #get ControllerOutdoorAir
- controller_oa = sc.getControllerOutdoorAir
- #create damper sensor and cmd points
- damper_command = create_ems_str("#{airloop.name.to_s} Outside Air Damper CMD")
- damper_command_enable = create_ems_str("#{airloop.name.to_s} Outside Air Damper CMD Enable")
- damper_position = create_ems_str("#{airloop.name.to_s} Outside Air Damper Sensor position")
- #Damper Sensor
- haystack_temp_json, temp_uuid = create_point2_uuid("sensor", "position", damper_position, building.handle, airloop.handle, simCon.handle, "outside", "air", "damper", "Number", "%")
- haystack_json << haystack_temp_json
- outside_air_damper_sensor, temp_json = create_EMS_sensor_bcvtb("Air System Outdoor Air Flow Fraction", airloop, "#{airloop.name.to_s} Outside Air Damper Sensor", temp_uuid, report_freq, model)
- mapping_json << temp_json
-
- #add EMS Actuator for Damper
- damper_actuator = OpenStudio::Model::EnergyManagementSystemActuator.new(controller_oa,"Outdoor Air Controller","Air Mass Flow Rate")
- damper_actuator.setName(create_ems_str("#{airloop.name.to_s} Outside Air Mass Flow Rate"))
- #Variable to read the Damper CMD
- if local_test == false
- #ExternalInterfaceVariables
- damper_variable_enable = OpenStudio::Model::ExternalInterfaceVariable.new(model, damper_command_enable, 1)
- mapping_json << create_mapping_output_uuid(damper_command_enable, damper_variable_enable.handle)
- damper_variable = OpenStudio::Model::ExternalInterfaceVariable.new(model, damper_command, 0.5)
- mapping_json << create_mapping_output_uuid(damper_command, damper_variable.handle)
- #Damper CMD
- haystack_temp_json = create_controlpoint2("cmd", "writable", damper_command, damper_variable.handle, building.handle, airloop.handle, simCon.handle, "outside", "air", "damper", "Number", "%")
- haystack_json << haystack_temp_json
- else
- #EnergyManagementSystemVariables
- damper_variable_enable = OpenStudio::Model::EnergyManagementSystemGlobalVariable.new(model, "#{damper_command_enable}")
- mapping_json << create_mapping_output_uuid(damper_command_enable, damper_variable_enable.handle)
- damper_variable = OpenStudio::Model::EnergyManagementSystemGlobalVariable.new(model, "#{damper_command}")
- mapping_json << create_mapping_output_uuid(damper_command, damper_variable.handle)
- #Damper CMD
- haystack_temp_json = create_controlpoint2("cmd", "writable", damper_command, damper_variable.handle, building.handle, airloop.handle, simCon.handle, "outside", "air", "damper", "Number", "%")
- haystack_json << haystack_temp_json
- #initialization program
- program = OpenStudio::Model::EnergyManagementSystemProgram.new(model)
- program.setName("#{damper_command}_Prgm_init")
- #Turn off for now
- program.addLine("SET #{damper_variable_enable.handle.to_s} = 0")
- program.addLine("SET #{damper_variable.handle.to_s} = 0.5")
-
- pcm = OpenStudio::Model::EnergyManagementSystemProgramCallingManager.new(model)
- pcm.setName("#{damper_command}_Prgm_Mgr_init")
- pcm.setCallingPoint("BeginNewEnvironment")
- pcm.addProgram(program)
- end
- #mixed air node
- if sc.mixedAirModelObject.is_initialized
- #AHU mixed sensors
- #mixed air node
- mix_air_node = sc.mixedAirModelObject.get.to_Node.get
- runner.registerInfo("found mixed air node #{mix_air_node.name.to_s} on airloop #{airloop.name.to_s}")
- #Temp Sensor
- haystack_temp_json, temp_uuid = create_point_uuid("sensor", "#{airloop.name.to_s} Mixed Air Temp Sensor", building.handle, airloop.handle, simCon.handle, "mixed", "air", "temp", "Number", "C")
- haystack_json << haystack_temp_json
- mixed_air_temp_sensor, temp_json = create_EMS_sensor_bcvtb("System Node Temperature", mix_air_node, "#{airloop.name.to_s} Mixed Air Temp Sensor", temp_uuid, report_freq, model)
- mapping_json << temp_json
- #Pressure Sensor
- haystack_temp_json, temp_uuid = create_point_uuid("sensor", "#{airloop.name.to_s} Mixed Air Pressure Sensor", building.handle, airloop.handle, simCon.handle, "mixed", "air", "pressure", "Number", "Pa")
- haystack_json << haystack_temp_json
- mixed_air_pressure_sensor = create_EMS_sensor("System Node Pressure", mix_air_node, "#{airloop.name.to_s} Mixed Air Pressure Sensor", report_freq, model)
- #Humidity Sensor
- haystack_temp_json, temp_uuid = create_point_uuid("sensor", "#{airloop.name.to_s} Mixed Air Humidity Sensor", building.handle, airloop.handle, simCon.handle, "mixed", "air", "humidity", "Number", "%")
- haystack_json << haystack_temp_json
- mixed_air_humidity_sensor = create_EMS_sensor("System Node Relative Humidity", mix_air_node, "#{airloop.name.to_s} Mixed Air Humidity Sensor", report_freq, model)
- #Flow Sensor
- haystack_temp_json, temp_uuid = create_point_uuid("sensor", "#{airloop.name.to_s} Mixed Air Flow Sensor", building.handle, airloop.handle, simCon.handle, "mixed", "air", "flow", "Number", "Kg/s")
- haystack_json << haystack_temp_json
- mixed_air_flow_sensor, temp_json = create_EMS_sensor_bcvtb("System Node Mass Flow Rate", mix_air_node, "#{airloop.name.to_s} Mixed Air Flow Sensor", temp_uuid, report_freq, model)
- mapping_json << temp_json
- end
- #outdoor air node
- if sc.outdoorAirModelObject.is_initialized
- #AHU outside sensors
- #outdoor air node
- outdoor_air_node = sc.outdoorAirModelObject.get.to_Node.get
- runner.registerInfo("found outdoor air node #{outdoor_air_node.name.to_s} on airloop #{airloop.name.to_s}")
- #Temp Sensor
- haystack_temp_json, temp_uuid = create_point_uuid("sensor", "#{airloop.name.to_s} Outside Air Temp Sensor", building.handle, airloop.handle, simCon.handle, "outside", "air", "temp", "Number", "C")
- haystack_json << haystack_temp_json
- outside_air_temp_sensor, temp_json = create_EMS_sensor_bcvtb("System Node Temperature", outdoor_air_node, "#{airloop.name.to_s} Outside Air Temp Sensor", temp_uuid, report_freq, model)
- mapping_json << temp_json
- #Pressure Sensor
- haystack_temp_json, temp_uuid = create_point_uuid("sensor", "#{airloop.name.to_s} Outside Air Pressure Sensor", building.handle, airloop.handle, simCon.handle, "outside", "air", "pressure", "Number", "Pa")
- haystack_json << haystack_temp_json
- outside_air_pressure_sensor = create_EMS_sensor("System Node Pressure", outdoor_air_node, "#{airloop.name.to_s} Outside Air Pressure Sensor", report_freq, model)
- #Humidity Sensor
- haystack_temp_json, temp_uuid = create_point_uuid("sensor", "#{airloop.name.to_s} Outside Air Humidity Sensor", building.handle, airloop.handle, simCon.handle, "outside", "air", "humidity", "Number", "%")
- haystack_json << haystack_temp_json
- outside_air_humidity_sensor = create_EMS_sensor("System Node Relative Humidity", outdoor_air_node, "#{airloop.name.to_s} Outside Air Humidity Sensor", report_freq, model)
- #Flow Sensor
- haystack_temp_json, temp_uuid = create_point_uuid("sensor", "#{airloop.name.to_s} Outside Air Flow Sensor", building.handle, airloop.handle, simCon.handle, "outside", "air", "flow", "Number", "Kg/s")
- haystack_json << haystack_temp_json
- outside_air_flow_sensor, temp_json = create_EMS_sensor_bcvtb("System Node Mass Flow Rate", outdoor_air_node, "#{airloop.name.to_s} Outside Air Flow Sensor", temp_uuid, report_freq, model)
- mapping_json << temp_json
- end
- #return air node
- if sc.returnAirModelObject.is_initialized
- #AHU return sensors
- #return air node
- return_air_node = sc.returnAirModelObject.get.to_Node.get
- runner.registerInfo("found return air node #{return_air_node.name.to_s} on airloop #{airloop.name.to_s}")
- #Temp Sensor
- haystack_temp_json, temp_uuid = create_point_uuid("sensor", "#{airloop.name.to_s} Return Air Temp Sensor", building.handle, airloop.handle, simCon.handle, "return", "air", "temp", "Number", "C")
- haystack_json << haystack_temp_json
- return_air_temp_sensor, temp_json = create_EMS_sensor_bcvtb("System Node Temperature", return_air_node, "#{airloop.name.to_s} Return Air Temp Sensor", temp_uuid, report_freq, model)
- mapping_json << temp_json
- #Pressure Sensor
- haystack_temp_json, temp_uuid = create_point_uuid("sensor", "#{airloop.name.to_s} Return Air Pressure Sensor", building.handle, airloop.handle, simCon.handle, "return", "air", "pressure", "Number", "Pa")
- haystack_json << haystack_temp_json
- return_air_pressure_sensor = create_EMS_sensor("System Node Pressure", return_air_node, "#{airloop.name.to_s} Return Air Pressure Sensor", report_freq, model)
- #Humidity Sensor
- haystack_temp_json, temp_uuid = create_point_uuid("sensor", "#{airloop.name.to_s} Return Air Humidity Sensor", building.handle, airloop.handle, simCon.handle, "return", "air", "humidity", "Number", "%")
- haystack_json << haystack_temp_json
- return_air_humidity_sensor = create_EMS_sensor("System Node Relative Humidity", return_air_node, "#{airloop.name.to_s} Return Air Humidity Sensor", report_freq, model)
- #Flow Sensor
- haystack_temp_json, temp_uuid = create_point_uuid("sensor", "#{airloop.name.to_s} Return Air Flow Sensor", building.handle, airloop.handle, simCon.handle, "return", "air", "flow", "Number", "Kg/s")
- haystack_json << haystack_temp_json
- return_air_flow_sensor, temp_json = create_EMS_sensor_bcvtb("System Node Mass Flow Rate", return_air_node, "#{airloop.name.to_s} Return Air Flow Sensor", temp_uuid, report_freq, model)
- mapping_json << temp_json
- end
- #relief air node
- if sc.reliefAirModelObject.is_initialized
- #AHU exhaust sensors
- #exhaust air node
- exhaust_air_node = sc.reliefAirModelObject.get.to_Node.get
- runner.registerInfo("found relief air node #{exhaust_air_node.name.to_s} on airloop #{airloop.name.to_s}")
- #Temp Sensor
- haystack_temp_json, temp_uuid = create_point_uuid("sensor", "#{airloop.name.to_s} Exhaust Air Temp Sensor", building.handle, airloop.handle, simCon.handle, "exhaust", "air", "temp", "Number", "C")
- haystack_json << haystack_temp_json
- exhaust_air_temp_sensor, temp_json = create_EMS_sensor_bcvtb("System Node Temperature", exhaust_air_node, "#{airloop.name.to_s} Exhaust Air Temp Sensor", temp_uuid, report_freq, model)
- mapping_json << temp_json
- #Pressure Sensor
- haystack_temp_json, temp_uuid = create_point_uuid("sensor", "#{airloop.name.to_s} Exhaust Air Pressure Sensor", building.handle, airloop.handle, simCon.handle, "exhaust", "air", "pressure", "Number", "Pa")
- haystack_json << haystack_temp_json
- exhaust_air_pressure_sensor = create_EMS_sensor("System Node Pressure", exhaust_air_node, "#{airloop.name.to_s} Exhaust Air Pressure Sensor", report_freq, model)
- #Humidity Sensor
- haystack_temp_json, temp_uuid = create_point_uuid("sensor", "#{airloop.name.to_s} Exhaust Air Humidity Sensor", building.handle, airloop.handle, simCon.handle, "exhaust", "air", "humidity", "Number", "%")
- haystack_json << haystack_temp_json
- exhaust_air_humidity_sensor = create_EMS_sensor("System Node Relative Humidity", exhaust_air_node, "#{airloop.name.to_s} Exhaust Air Humidity Sensor", report_freq, model)
- #Flow Sensor
- haystack_temp_json, temp_uuid = create_point_uuid("sensor", "#{airloop.name.to_s} Exhaust Air Flow Sensor", building.handle, airloop.handle, simCon.handle, "exhaust", "air", "flow", "Number", "Kg/s")
- haystack_json << haystack_temp_json
- exhaust_air_flow_sensor, temp_json = create_EMS_sensor_bcvtb("System Node Mass Flow Rate", exhaust_air_node, "#{airloop.name.to_s} Exhaust Air Flow Sensor", temp_uuid, report_freq, model)
- mapping_json << temp_json
- end
-
- #Program to set the Damper Position
- program = OpenStudio::Model::EnergyManagementSystemProgram.new(model)
- program.setName("#{damper_command}_Prgm")
- program.addLine("SET #{damper_actuator.handle.to_s} = Null")
- program.addLine("IF #{master_enable.handle.to_s} == 1")
- program.addLine(" SET DampPos = #{damper_variable.handle.to_s}")
- program.addLine(" SET MixAir = #{mixed_air_flow_sensor.handle.to_s}")
- program.addLine(" IF #{damper_variable_enable.handle.to_s} == 1")
- program.addLine(" SET #{damper_actuator.handle.to_s} = DampPos*MixAir")
- program.addLine(" ENDIF")
- program.addLine("ENDIF")
-
- pcm = OpenStudio::Model::EnergyManagementSystemProgramCallingManager.new(model)
- pcm.setName("#{damper_command}_Prgm_Mgr")
- pcm.setCallingPoint("AfterPredictorAfterHVACManagers")
- pcm.addProgram(program)
-
- #its a UnitarySystem so get sub components
- elsif sc.to_AirLoopHVACUnitarySystem.is_initialized
- sc = sc.to_AirLoopHVACUnitarySystem.get
- runner.registerInfo("found #{sc.name.to_s} on airloop #{airloop.name.to_s}")
- ahu_json[:rooftop] = "m:"
- fan = sc.supplyFan
- if fan.is_initialized
- #AHU FAN equip
- if fan.get.to_FanVariableVolume.is_initialized
- runner.registerInfo("found VAV #{fan.get.name.to_s} on airloop #{airloop.name.to_s}")
- ahu_json[:variableVolume] = "m:"
- haystack_json << create_fan(fan.get.handle, "#{fan.get.name.to_s}", building.handle, airloop.handle, simCon.handle, true)
- else
- runner.registerInfo("found CAV #{fan.get.name.to_s} on airloop #{airloop.name.to_s}")
- ahu_json[:constantVolume] = "m:"
- haystack_json << create_fan(fan.get.handle, "#{fan.get.name.to_s}", building.handle, airloop.handle, simCon.handle, false)
- end
- end
- cc = sc.coolingCoil
- if cc.is_initialized
- if cc.get.to_CoilCoolingWater.is_initialized || cc.get.to_CoilCoolingWaterToAirHeatPumpEquationFit.is_initialized
- runner.registerInfo("found WATER #{cc.get.name.to_s} on airloop #{airloop.name.to_s}")
- ahu_json[:chilledWaterCool] = "m:"
- if cc.get.plantLoop.is_initialized
- pl = cc.get.plantLoop.get
- ahu_json[:chilledWaterPlantRef] = create_ref(pl.handle)
- end
- if cc.get.to_CoilCoolingWaterToAirHeatPumpEquationFit.is_initialized
- ahu_json[:heatPump] = "m:"
- end
- else
- runner.registerInfo("found DX #{cc.get.name.to_s} on airloop #{airloop.name.to_s}")
- ahu_json[:dxCool] = "m:"
- end
- end
- hc = sc.heatingCoil
- if hc.is_initialized
- if hc.get.to_CoilHeatingElectric.is_initialized
- runner.registerInfo("found ELECTRIC #{hc.get.name.to_s} on airloop #{airloop.name.to_s}")
- ahu_json[:elecHeat] = "m:"
- elsif hc.get.to_CoilHeatingGas.is_initialized
- runner.registerInfo("found GAS #{hc.get.name.to_s} on airloop #{airloop.name.to_s}")
- ahu_json[:gasHeat] = "m:"
- elsif hc.get.to_CoilHeatingWater.is_initialized || hc.get.to_CoilHeatingWaterToAirHeatPumpEquationFit.is_initialized
- runner.registerInfo("found WATER #{hc.get.name.to_s} on airloop #{airloop.name.to_s}")
- ahu_json[:hotWaterHeat] = "m:"
- if hc.get.plantLoop.is_initialized
- pl = hc.get.plantLoop.get
- ahu_json[:hotWaterPlantRef] = create_ref(pl.handle)
- end
- if hc.get.to_CoilHeatingWaterToAirHeatPumpEquationFit.is_initialized
- ahu_json[:heatPump] = "m:"
- end
- end
- end
- #END UnitarySystem
- elsif sc.to_FanConstantVolume.is_initialized
- sc = sc.to_FanConstantVolume.get
- runner.registerInfo("found #{sc.name.to_s} on airloop #{airloop.name.to_s}")
- ahu_json[:constantVolume] = "m:"
- haystack_json << create_fan(sc.handle, "#{sc.name.to_s}", building.handle, airloop.handle, simCon.handle, false)
- elsif sc.to_FanVariableVolume.is_initialized
- sc = sc.to_FanVariableVolume.get
- runner.registerInfo("found #{sc.name.to_s} on airloop #{airloop.name.to_s}")
- ahu_json[:variableVolume] = "m:"
- haystack_json << create_fan(sc.handle, "#{sc.name.to_s}", building.handle, airloop.handle, simCon.handle, true)
- elsif sc.to_FanOnOff.is_initialized
- sc = sc.to_FanOnOff.get
- runner.registerInfo("found #{sc.name.to_s} on airloop #{airloop.name.to_s}")
- ahu_json[:constantVolume] = "m:"
- haystack_json << create_fan(sc.handle, "#{sc.name.to_s}", building.handle, airloop.handle, simCon.handle, false)
- elsif sc.to_CoilCoolingWater.is_initialized
- sc = sc.to_CoilCoolingWater.get
- runner.registerInfo("found #{sc.name.to_s} on airloop #{airloop.name.to_s}")
- ahu_json[:chilledWaterCool] = "m:"
- if sc.plantLoop.is_initialized
- pl = sc.plantLoop.get
- ahu_json[:chilledWaterPlantRef] = create_ref(pl.handle)
- end
- elsif sc.to_CoilHeatingWater.is_initialized
- sc = sc.to_CoilHeatingWater.get
- runner.registerInfo("found #{sc.name.to_s} on airloop #{airloop.name.to_s}")
- ahu_json[:hotWaterHeat] = "m:"
- if sc.plantLoop.is_initialized
- pl = sc.plantLoop.get
- ahu_json[:hotWaterPlantRef] = create_ref(pl.handle)
- end
- elsif sc.to_CoilHeatingElectric.is_initialized
- sc = sc.to_CoilHeatingElectric.get
- runner.registerInfo("found #{sc.name.to_s} on airloop #{airloop.name.to_s}")
- ahu_json[:elecHeat] = "m:"
- end
-
- end #end supplycomponents
-
- demand_components = airloop.demandComponents
- demand_components.each do |dc|
- if dc.to_ThermalZone.is_initialized
- tz = dc.to_ThermalZone.get
- #create sensor points
- zone_json_temp, dummyvar = create_point_uuid("sensor", "#{tz.name.to_s} Zone Air Temp Sensor", building.handle, airloop.handle, simCon.handle, "zone", "air", "temp", "Number", "C")
- zone_json_humidity, dummyvar = create_point_uuid("sensor", "#{tz.name.to_s} Zone Air Humidity Sensor", building.handle, airloop.handle, simCon.handle, "zone", "air", "humidity", "Number", "%")
-
- if tz.thermostatSetpointDualSetpoint.is_initialized
- if tz.thermostatSetpointDualSetpoint.get.coolingSetpointTemperatureSchedule.is_initialized
- cool_thermostat = tz.thermostatSetpointDualSetpoint.get.coolingSetpointTemperatureSchedule.get
- runner.registerInfo("found #{cool_thermostat.name.to_s} on airloop #{airloop.name.to_s} in thermalzone #{tz.name.to_s}")
- zone_json_cooling, dummyvar = create_point_uuid("sp", "#{tz.name.to_s} Zone Air Cooling sp", building.handle, airloop.handle, simCon.handle, "zone", "air", "temp", "Number", "C")
- zone_json_cooling[:cooling] = "m:"
- end
- if tz.thermostatSetpointDualSetpoint.get.heatingSetpointTemperatureSchedule.is_initialized
- heat_thermostat = tz.thermostatSetpointDualSetpoint.get.heatingSetpointTemperatureSchedule.get
- runner.registerInfo("found #{heat_thermostat.name.to_s} on airloop #{airloop.name.to_s} in thermalzone #{tz.name.to_s}")
- zone_json_heating, dummyvar = create_point_uuid("sp", "#{tz.name.to_s} Zone Air Heating sp", building.handle, airloop.handle, simCon.handle, "zone", "air", "temp", "Number", "C")
- zone_json_heating[:heating] = "m:"
- end
- end
- zone_json_temp[:area] = create_num(tz.floorArea)
- if tz.volume.is_initialized
- zone_json_temp[:volume] = create_num(tz.volume)
- else
- zone_json_temp[:volume] = create_num(0)
- end
- zone_json_humidity[:area] = create_num(tz.floorArea)
- if tz.volume.is_initialized
- zone_json_humidity[:volume] = create_num(tz.volume)
- else
- zone_json_humidity[:volume] = create_num(0)
- end
-
- tz.equipment.each do |equip|
- if equip.to_AirTerminalSingleDuctVAVReheat.is_initialized
- zone_json_temp[:vav] = "m:"
- zone_json_humidity[:vav] = "m:"
- zone_json_cooling[:vav] = "m:"
- zone_json_heating[:vav] = "m:"
- ahu_json[:vavZone] = "m:"
-
- vav_json = create_vav(equip.handle, equip.name.to_s, building.handle, airloop.handle, simCon.handle)
-
- #check reheat coil
- rc = equip.to_AirTerminalSingleDuctVAVReheat.get.reheatCoil
- if rc.to_CoilHeatingWater.is_initialized
- rc = rc.to_CoilHeatingWater.get
- runner.registerInfo("found #{rc.name.to_s} on airloop #{airloop.name.to_s}")
- vav_json[:hotWaterReheat] = "m:"
- if rc.plantLoop.is_initialized
- pl = rc.plantLoop.get
- vav_json[:hotWaterPlantRef] = create_ref(pl.handle)
- end
- elsif rc.to_CoilHeatingElectric.is_initialized
- rc = rc.to_CoilHeatingElectric.get
- runner.registerInfo("found #{rc.name.to_s} on airloop #{airloop.name.to_s}")
- vav_json[:elecReheat] = "m:"
- end
- haystack_json << vav_json
- #entering and discharge sensors
- entering_node = equip.to_AirTerminalSingleDuctVAVReheat.get.inletModelObject.get.to_Node
- haystack_json_temp, temp_uuid = create_point_uuid("sensor", "#{equip.name.to_s} Entering Air Temp Sensor", building.handle, equip.handle, simCon.handle, "entering", "air", "temp", "Number", "C")
- haystack_json << haystack_json_temp
- discharge_node = equip.to_AirTerminalSingleDuctVAVReheat.get.outletModelObject.get.to_Node
- haystack_json_temp, temp_uuid = create_point_uuid("sensor", "#{equip.name.to_s} Discharge Air Temp Sensor", building.handle, equip.handle, simCon.handle, "discharge", "air", "temp", "Number", "C")
- haystack_json << haystack_json_temp
- avail_sch = discharge_node = equip.to_AirTerminalSingleDuctVAVReheat.get.availabilitySchedule
- #TODO 'reheat cmd'
- elsif equip.to_AirTerminalSingleDuctUncontrolled.is_initialized
- ahu_json[:directZone] = "m:"
- end
- end
- haystack_json << zone_json_temp
- haystack_json << zone_json_humidity
- haystack_json << zone_json_cooling
- haystack_json << zone_json_heating
- end #end thermalzone
- end #end demandcomponents
- haystack_json << ahu_json
-
- end #end airloops
-
- runner.registerFinalCondition("The building has #{num_economizers} economizers")
- #write out the haystack json
- File.open("./report_haystack.json","w") do |f|
- f.write(haystack_json.to_json)
- end
- #write out the mapping json
- File.open("./report_mapping.json","w") do |f|
- f.write(mapping_json.to_json)
- end
-
- return true
-
- end #end the run method
-
-end #end the measure
-
-# register the measure to be used by the application
-Haystack.new.registerWithApplication
diff --git a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/haystack/measure.xml b/alfalfa_worker/jobs/openstudio/lib/workflow/measures/haystack/measure.xml
deleted file mode 100644
index 15d02b2c..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/workflow/measures/haystack/measure.xml
+++ /dev/null
@@ -1,84 +0,0 @@
-
-
- 3.1
- haystack
- a3201f8c-bc3d-4fe1-a945-4a4f22471c06
- 267bef8f-bfdf-4784-872d-8bde1ca3d509
- 2024-05-03T20:06:06Z
- A9D5932A
- Haystack
- Haystack
- This measure will find economizers on airloops and add haystack tags.
- This measure loops through the existing airloops, looking for loops that have outdoor airsystems with economizers
-
-
- local_test
- Local Test
- Use EMS for Local Testing
- Boolean
- false
- false
- true
-
-
- true
- true
-
-
- false
- false
-
-
-
-
-
-
-
- HVAC.Whole System
-
-
-
- Measure Type
- ModelMeasure
- string
-
-
- Intended Software Tool
- Apply Measure Now
- string
-
-
- Intended Software Tool
- OpenStudio Application
- string
-
-
- Intended Software Tool
- Parametric Analysis Tool
- string
-
-
- Intended Use Case
- Model Articulation
- string
-
-
- Intended Use Case
- New Construction EE
- string
-
-
-
-
-
- OpenStudio
- 1.12.2
- 1.12.2
-
- measure.rb
- rb
- script
- 931D5261
-
-
-
diff --git a/alfalfa_worker/jobs/openstudio/lib/workflow/workflow.osw b/alfalfa_worker/jobs/openstudio/lib/workflow/workflow.osw
index bb57955f..2f3c0fb5 100644
--- a/alfalfa_worker/jobs/openstudio/lib/workflow/workflow.osw
+++ b/alfalfa_worker/jobs/openstudio/lib/workflow/workflow.osw
@@ -2,22 +2,6 @@
"created_at" : "20170522T165538Z",
"seed_file" : "../seed.osm",
"steps" : [
- {
- "arguments" : {},
- "description" : "This measure will output the built-in variables through EMS modules.",
- "measure_dir_name" : "expose_time_variables",
- "modeler_description" : "EMS:GlobalVariable; EMS:Subroutine; EMS:Program; EMS:ProgramCallingManager; EMS:OutputVariable; and Output:Variable",
- "name" : "ExposeTimeVariable240"
- },
- {
- "arguments" : {
- "local_test" : false
- },
- "description" : "This measure will find economizers on airloops and add haystack tags.",
- "measure_dir_name" : "haystack",
- "modeler_description" : "This measure loops through the existing airloops, looking for loops that have outdoor airsystems with economizers",
- "name" : "Haystack"
- },
{
"arguments" : {},
"measure_dir_name" : "alfalfa_setpoint_control",
@@ -32,40 +16,12 @@
"description" : "Add Zone Sensors",
"modeler_description" : "Add Zone Sensors"
},
- {
- "arguments" : {},
- "measure_dir_name" : "alfalfa_site_sensors",
- "name" : "Alfalfa Site Sensors",
- "description" : "Add Site Sensors",
- "modeler_description" : "Add Site Sensors"
- },
- {
- "arguments" : {},
- "description" : "This measure will create the variables.cfg xml file for BCVTB",
- "measure_dir_name" : "export_bcvtb",
- "modeler_description" : "This measure loops through outputvariables, EMS:outputvariables and ExternalInterface objects and will create the variables.cfg xml file for BCVTB.",
- "name" : "ExportBCVTB"
- },
- {
- "arguments" : {},
- "measure_dir_name" : "alfalfa_python_environment",
- "name" : "Python",
- "description" : "Add python to IDF",
- "modeler_description" : "Add python script path to IDF"
- },
{
"arguments" : {},
"measure_dir_name" : "alfalfa_metadata",
"name" : "Metadata",
"description" : "Generate metadata report for Alfalfa",
"modeler_description" : "Generate metadata report for Alfalfa"
- },
- {
- "arguments" : {},
- "measure_dir_name" : "alfalfa_prepare_idf",
- "name": "Alfalfa Prepare IDF",
- "description" : "Remove RunPeriod and Timestep IDF Objects in preparation for Alfalfa execution",
- "modeler_description" : "Remove RunPeriod and Timestep IDF Objects in preparation for Alfalfa execution"
}
],
"updated_at" : "20170606T230145Z",
diff --git a/alfalfa_worker/jobs/openstudio/lib/workflow/workflow_origin.osw b/alfalfa_worker/jobs/openstudio/lib/workflow/workflow_origin.osw
deleted file mode 100644
index fd3c1c95..00000000
--- a/alfalfa_worker/jobs/openstudio/lib/workflow/workflow_origin.osw
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- "created_at" : "20170522T165538Z",
- "seed_file" : "../seed.osm",
- "steps" : [
- {
- "arguments" : {
- "local_test" : false
- },
- "description" : "This measure will find economizers on airloops and add haystack tags.",
- "measure_dir_name" : "haystack",
- "modeler_description" : "This measure loops through the existing airloops, looking for loops that have outdoor airsystems with economizers",
- "name" : "Haystack"
- },
- {
- "arguments" : {},
- "description" : "This measure will create the variables.cfg xml file for BCVTB",
- "measure_dir_name" : "export_bcvtb",
- "modeler_description" : "This measure loops through outputvariables, EMS:outputvariables and ExternalInterface objects and will create the variables.cfg xml file for BCVTB.",
- "name" : "ExportBCVTB"
- }
- ],
- "updated_at" : "20170606T230145Z",
- "weather_file" : "weather.epw"
-}
diff --git a/alfalfa_worker/jobs/openstudio/step_run.py b/alfalfa_worker/jobs/openstudio/step_run.py
index d013a36d..45efd3d0 100644
--- a/alfalfa_worker/jobs/openstudio/step_run.py
+++ b/alfalfa_worker/jobs/openstudio/step_run.py
@@ -1,25 +1,37 @@
+import json
import os
-import socket
from datetime import datetime, timedelta
-from time import sleep, time
+from typing import Callable
-import mlep
+import openstudio
+from pyenergyplus.api import EnergyPlusAPI
-from alfalfa_worker.jobs.openstudio.lib.variables import Variables
-from alfalfa_worker.jobs.step_run_base import StepRunBase
-from alfalfa_worker.lib.job import (
+from alfalfa_worker.jobs.openstudio.lib.openstudio_component import (
+ OpenStudioComponent
+)
+from alfalfa_worker.jobs.openstudio.lib.openstudio_point import OpenStudioPoint
+from alfalfa_worker.jobs.step_run_process import StepRunProcess
+from alfalfa_worker.lib.job_exception import (
JobException,
- JobExceptionExternalProcess,
- message
+ JobExceptionExternalProcess
)
-class StepRun(StepRunBase):
+def callback_wrapper(func):
+ def wrapped_func(self: "StepRun", state):
+ try:
+ return func(self, state)
+ except Exception:
+ self.report_exception()
+ return wrapped_func
+
+
+class StepRun(StepRunProcess):
+
def __init__(self, run_id, realtime, timescale, external_clock, start_datetime, end_datetime) -> None:
self.checkout_run(run_id)
super().__init__(run_id, realtime, timescale, external_clock, start_datetime, end_datetime)
- self.logger.info(f"{start_datetime}, {end_datetime}")
- self.time_steps_per_hour = 60 # Default to 1-min E+ step intervals (i.e. 60/hr)
+ self.options.timestep_duration = timedelta(minutes=1)
# If idf_file is named "in.idf" we need to change the name because in.idf is not accepted by mlep
# (likely mlep is using that name internally)
@@ -31,340 +43,232 @@ def __init__(self, run_id, realtime, timescale, external_clock, start_datetime,
dst_idf_file.rename(self.idf_file)
self.weather_file = os.path.realpath(self.dir / 'simulation' / 'sim.epw')
- self.str_format = "%Y-%m-%d %H:%M:%S"
-
- # EnergyPlus MLEP initializations
- self.ep = mlep.MlepProcess()
- self.ep.bcvtbDir = '/alfalfa/bcvtb/'
- self.ep.env = {'BCVTB_HOME': '/alfalfa/bcvtb'}
- self.ep.accept_timeout = 5000 # The number of milliseconds to wait every time we attempt to connect to e+
- self.ep.mapping = os.path.realpath(self.dir / 'simulation' / 'haystack_report_mapping.json')
- self.ep.workDir = os.path.split(self.idf_file)[0]
- self.ep.arguments = (self.idf_file, self.weather_file)
- self.ep.kStep = 1 # simulation step indexed at 1
- self.ep.deltaT = 60 # the simulation step size represented in seconds - on 'step', the model will advance 1min
-
- # Parse variables after Haystack measure
- self.variables_file = os.path.realpath(self.dir / 'simulation' / 'variables.cfg')
- self.haystack_json_file = os.path.realpath(self.dir / 'simulation' / 'haystack_report_haystack.json')
- self.variables = Variables(self.run)
-
- # Define MLEP inputs
- self.ep.inputs = [0] * (self.variables.get_num_inputs())
-
- # The idf RunPeriod is manipulated in order to get close to the desired start time,
- # but we can only get within 24 hours. We use "bypass" steps to quickly get to the
- # exact right start time. This flag indicates we are iterating in bypass mode
- # it will be set to False once the desired start time is reach
- self.master_enable_bypass = True
- self.first_timestep = True
- # Job will wait this number of seconds for an energyplus model to start before throwing an error
- self.model_start_timeout = 300
-
- def time_per_step(self):
- return timedelta(seconds=3600.0 / self.time_steps_per_hour)
-
- def check_simulation_stop_conditions(self) -> bool:
- if self.ep.status != 0:
- return True
- if not self.ep.is_running:
- return True
- return False
-
- def init_sim(self):
- """
- Initialize EnergyPlus co-simulation.
- :return:
- """
- self.osm_idf_files_prep()
- (self.ep.status, self.ep.msg) = self.ep.start()
- if self.ep.status != 0:
- raise JobExceptionExternalProcess('Could not start EnergyPlus: {}'.format(self.ep.msg))
+ self.logger.info('Generating variables from Openstudio output')
+ self.ep_points: list[OpenStudioPoint] = []
+ for alfalfa_json in self.run.dir.glob('**/run/alfalfa.json'):
+ self.ep_points += [OpenStudioPoint(**point) for point in json.load(alfalfa_json.open())]
- start_time = time()
+ def add_additional_meter(fuel: str, units: str, converter: Callable[[float], float]):
+ meter_component = OpenStudioComponent("Meter", {"meter_name": f"{fuel}:Building"}, converter)
+ meter_point = OpenStudioPoint(id=f"whole_building_{fuel.lower()}", name=f"Whole Building {fuel}", units=units)
+ meter_point.output = meter_component
+ self.ep_points.append(meter_point)
- while time() < start_time + self.model_start_timeout and not self.ep.is_running:
- self.check_error_log()
-
- try:
- [self.ep.status, self.ep.msg] = self.ep.accept_socket()
- except socket.timeout:
- pass
-
- if not self.ep.is_running:
- raise JobExceptionExternalProcess('Timedout waiting for EnergyPlus')
-
- self.set_run_time(self.start_datetime)
-
- def advance_to_start_time(self):
- """ We get near the requested start time by manipulating the idf file,
- however the idf start time is limited to the resolution of 1 day.
- The purpose of this function is to move the simulation to the requested
- start minute.
- This is accomplished by advancing the simulation as quickly as possible. Data is not
- published to database during this process
- """
- self.update_outputs_from_ep()
-
- current_ep_time = self.get_sim_time()
- self.logger.info(
- 'current_ep_time: {}, start_datetime: {}'.format(current_ep_time, self.start_datetime))
- while True:
- current_ep_time = self.get_sim_time()
- if current_ep_time < self.start_datetime:
- self.logger.info(
- 'current_ep_time: {}, start_datetime: {}'.format(current_ep_time, self.start_datetime))
- self.step()
- else:
- self.logger.info(f"current_ep_time: {current_ep_time} reached desired start_datetime: {self.start_datetime}")
- break
- self.master_enable_bypass = False
- self.update_db()
-
- def update_outputs_from_ep(self):
- """Reads outputs from E+ step"""
- self.check_error_log()
- packet = self.ep.read()
-
- _flag, _, outputs = mlep.mlep_decode_packet(packet)
- if _flag == -1:
- self.check_error_log()
- raise JobExceptionExternalProcess("EnergyPlus experienced unknown error")
- elif _flag == -10:
- self.check_error_log()
- raise JobExceptionExternalProcess("EnergyPlus experienced initialization error")
- elif _flag == -20:
- self.check_error_log()
- raise JobExceptionExternalProcess("EnergyPlus experienced time integration error")
-
- self.ep.outputs = outputs
-
- def step(self):
- """
- Write inputs to simulation and get updated outputs.
- This will advance the simulation one timestep.
- """
+ add_additional_meter("Electricity", "W", lambda x: x / self.options.timesteps_per_hour)
+ add_additional_meter("NaturalGas", "W", lambda x: x / self.options.timesteps_per_hour)
- # This doesn't really do anything. Energyplus does not check the timestep value coming from the external interface
- self.ep.kStep += 1
- # Begin Step
- inputs = self.read_write_arrays_and_prep_inputs()
- # Send packet to E+ via ExternalInterface Socket.
- # Any writes to this socket trigger a model advance.
- # First Arg: "2" - The version of the communication protocol
- # Second Arg: "0" - The communication flag, 0 means normal communication
- # Third Arg: "(self.ep.kStep - 1) * self.ep.deltaT" - The simulation time, this isn't actually checked or used on the E+ side
- packet = mlep.mlep_encode_real_data(2, 0, (self.ep.kStep - 1) * self.ep.deltaT, inputs)
- self.ep.write(packet)
- self.first_timestep = False
-
- # After Step
- self.update_outputs_from_ep()
-
- def update_db(self):
- """
- Update database with current ep outputs and simulation time
- """
- self.write_outputs_to_redis()
+ [point.attach_run(self.run) for point in self.ep_points]
- if self.historian_enabled:
- self.write_outputs_to_influx()
- self.update_sim_time_in_mongo()
+ self.ep_api: EnergyPlusAPI = None
+ self.ep_state = None
- def get_sim_time(self):
+ def simulation_process_entrypoint(self):
"""
- Return the current time in EnergyPlus
+ Initialize and start EnergyPlus co-simulation.
:return:
- :rtype datetime()
"""
- month_index = self.variables.month_index
- day_index = self.variables.day_index
- hour_index = self.variables.hour_index
- minute_index = self.variables.minute_index
-
- day = int(round(self.ep.outputs[day_index]))
- hour = int(round(self.ep.outputs[hour_index]))
- minute = int(round(self.ep.outputs[minute_index]))
- month = int(round(self.ep.outputs[month_index]))
- year = self.start_datetime.year
-
- sim_time = datetime(year, month, day, 0, 0)
-
- if minute == 60 and hour == 23:
- # The first timestep of simulation will have the incorrect day
- if self.first_timestep:
- hour = 0
- else:
- hour += 1
-
- elif minute == 60 and hour != 23:
- hour += 1
-
- return sim_time + timedelta(hours=hour, minutes=minute % 60)
-
- def replace_timestep_and_run_period_idf_settings(self):
-
+ self.prepare_idf()
+
+ self.ep_api = EnergyPlusAPI()
+ self.ep_state = self.ep_api.state_manager.new_state()
+ self.ep_api.runtime.callback_begin_new_environment(self.ep_state,
+ self.initialize_handles)
+ self.ep_api.runtime.callback_end_zone_timestep_after_zone_reporting(self.ep_state,
+ self.ep_begin_timestep)
+ self.ep_api.runtime.callback_message(self.ep_state, self.callback_message)
+ self.ep_api.functional.callback_error(self.ep_state, self.callback_error)
+
+ for point in self.ep_points:
+ point.pre_initialize(self.ep_api, self.ep_state)
+
+ return_code = self.ep_api.runtime.run_energyplus(state=self.ep_state, command_line_args=['-w', str(self.weather_file), '-d', str(self.dir / 'simulation'), '-r', str(self.idf_file)])
+ self.logger.info(f"Exited simulation with code: {return_code}")
+ if return_code != 0:
+ self.check_for_errors()
+ raise JobExceptionExternalProcess(f"EnergyPlus Exited with a non-zero exit code: {return_code}")
+
+ def callback_message(self, message: bytes) -> None:
+ """Callback for when energyplus records a messaage to the log"""
try:
- runperiod_str = f"""
-RunPeriod,
- Alfalfa Run Period,
- {self.start_datetime.month}, !- Begin Month
- {self.start_datetime.day}, !- Begin Day of Month
- {self.start_datetime.year}, !- Begin Year
- {self.end_datetime.month}, !- End Month
- {self.end_datetime.day}, !- End Day of Month
- {self.end_datetime.year}, !- End Year
- {self.start_datetime.strftime("%A")}, !- Day of Week for Start Day
- , !- Use Weather File Holidays and Special Days
- , !- Use Weather File Daylight Saving Period
- , !- Apply Weekend Holiday Rule
- , !- Use Weather File Rain Indicators
- , !- Use Weather File Snow Indicators
- , !- Treat Weather as Actual
- ; !- First Hour Interpolation Starting Values"""
-
- timestep_str = f"""
-Timestep,
- {self.time_steps_per_hour}; !- Number of Timesteps per Hour"""
-
- with self.idf_file.open("a") as idf_file:
- idf_file.write(runperiod_str)
- idf_file.write(timestep_str)
- except BaseException as e:
- self.logger.error('Unsuccessful in replacing values in idf file. Exception: {}'.format(e))
- raise JobException('Unsuccessful in replacing values in idf file. Exception: {}'.format(e))
-
- def osm_idf_files_prep(self):
- """
- Replace the timestep and starting and ending year, month, day, day of week in the idf file.
+ self.logger.info(message.decode())
+ except Exception:
+ self.report_exception()
- :return:
- """
- self.replace_timestep_and_run_period_idf_settings()
+ def callback_error(self, state, message: bytes) -> None:
+ """Callback for when energyplus records an error to the log.
+ These 'Errors' include warnings and non-critical errors."""
+ try:
+ self.logger.error(message.decode())
+ except Exception:
+ self.report_exception()
- def read_write_arrays_and_prep_inputs(self):
- """Read the write arrays from redis and format them correctly to pass
- to the EnergyPlus simulation.
+ @callback_wrapper
+ def initialize_handles(self, state):
+ """Callback called at begin_new_environment. Enumerates Alfalfa points to connect
+ them with handles that can be used to transact data with energyplus."""
+ exceptions = []
- Returns:
- tuple: list of inputs to set
- """
- # master_index = self.variables.input_index_from_variable_name("MasterEnable")
- # if self.master_enable_bypass:
- # self.ep.inputs[master_index] = 0
- # else:
- self.ep.inputs = [0] * (self.variables.get_num_inputs())
- # self.ep.inputs[master_index] = 1
-
- for point in self.run.input_points:
- value = point.value
- index = self.variables.get_input_index(point.ref_id)
- if index == -1:
- self.logger.error('bad input index for: %s' % point.ref_id)
- elif value is None:
- if self.variables.has_enable(point.ref_id):
- self.ep.inputs[self.variables.get_input_enable_index(point.ref_id)] = 0
- else:
- self.ep.inputs[index] = value
- if self.variables.has_enable(point.ref_id):
- self.ep.inputs[self.variables.get_input_enable_index(point.ref_id)] = 1
-
- # Convert to tuple
- inputs = tuple(self.ep.inputs)
- return inputs
-
- def write_outputs_to_redis(self):
- """Placeholder for updating the current values exposed through Redis AFTER a simulation timestep"""
- for point in self.run.output_points:
- output_index = self.variables.get_output_index(point.ref_id)
- if output_index == -1:
- self.logger.error('bad output index for: %s' % (point.ref_id))
+ for point in self.ep_points:
+ try:
+ point.initialize(self.ep_api, state)
+ except JobException as e:
+ exceptions.append(e)
+
+ if len(exceptions) > 0:
+ ExceptionGroup("Exceptions generated while initializing EP handles", exceptions)
+ self.run.save()
+
+ @callback_wrapper
+ def ep_begin_timestep(self, state):
+ """Callback called at end_zone_timestep_after_zone_reporting. This is responsible for
+ controlling simulation advancement, as well as """
+
+ # If simulation is not 'Running' yet and energyplus is still warming up, short circuit method and return
+ if not self.running_event.is_set():
+ warmup = self.ep_api.exchange.warmup_flag(state)
+ kind_of_sim = self.ep_api.exchange.kind_of_sim(state)
+ if warmup or kind_of_sim == 1:
+ return
+
+ # If execution makes it here it means the simulation has left warmup and needs to be readied for regular running
+ self.update_run_time()
+ self.running_event.set()
+
+ # Update outputs from simulation
+ self.ep_read_outputs()
+ self.update_run_time()
+
+ # Wait for event from main process
+ self.advance_event.clear()
+ while not self.advance_event.is_set() and not self.stop_event.is_set():
+ self.advance_event.wait(1)
+
+ # Handle stop event
+ if self.stop_event.is_set():
+ self.logger.info("Stop Event Set, stopping simulation")
+ self.ep_api.runtime.stop_simulation(state)
+
+ # Write inputs to energyplus
+ self.ep_write_inputs()
+
+ def get_sim_time(self) -> datetime:
+ sim_time = self.options.start_datetime.replace(hour=0, minute=0) + timedelta(hours=self.ep_api.exchange.current_sim_time(self.ep_state))
+ sim_time -= timedelta(minutes=1) # Energyplus gives time at the end of current timestep, we want the beginning
+ return sim_time
+
+ def ep_read_outputs(self):
+ """Reads outputs from E+ state"""
+ influx_points = []
+ for point in self.ep_points:
+ value = point.update_output(self.ep_api, self.ep_state)
+ if self.options.historian_enabled and value is not None:
+ influx_points.append({"fields":
+ {
+ "value": value
+ }, "tags":
+ {
+ "id": point.point.ref_id,
+ "point": True,
+ "source": "alfalfa"
+ },
+ "measurement": self.run.ref_id,
+ "time": self.run.sim_time,
+ })
+ if self.historian_enabled:
+ try:
+ response = self.influx_client.write_points(points=influx_points,
+ time_precision='s',
+ database=self.influx_db_name)
+ except ConnectionError as e:
+ self.logger.error(f"Influx ConnectionError on curVal write: {e}")
+ if not response:
+ self.logger.warning(f"Unsuccessful write to influx. Response: {response}")
+ self.logger.info(f"Attempted to write: {influx_points}")
else:
- output_value = self.ep.outputs[output_index]
-
- point.value = output_value
+ self.logger.info(
+ f"Successful write to influx. Length of JSON: {len(influx_points)}")
- def update_sim_time_in_mongo(self):
- """Placeholder for updating the datetime in Mongo to current simulation time"""
- output_time_string = "s:" + str(self.get_sim_time())
- self.logger.info(f"updating db time to: {output_time_string}")
- self.set_run_time(self.get_sim_time())
+ def ep_write_inputs(self):
+ """Writes inputs to E+ state"""
+ for point in self.ep_points:
+ point.update_input(self.ep_api, self.ep_state)
- def write_outputs_to_influx(self):
+ def prepare_idf(self):
"""
- Write output data to influx
+ Replace the timestep and starting and ending year, month, day, day of week in the idf file.
+
:return:
"""
- json_body = []
- base = {
- "measurement": self.run.ref_id,
- "time": f"{self.get_sim_time()}",
- }
- response = False
- for output_point in self.run.output_points:
- output_id = output_point.ref_id
- output_index = self.variables.get_output_index(output_id)
- if output_index == -1:
- self.logger.error('bad output index for: %s' % output_id)
- else:
- output_value = self.ep.outputs[output_index]
- dis = output_point.name
- base["fields"] = {
- "value": output_value
- }
- base["tags"] = {
- "id": output_id,
- "dis": dis,
- "siteRef": self.run.ref_id,
- "point": True,
- "source": 'alfalfa'
- }
- json_body.append(base.copy())
- try:
- response = self.influx_client.write_points(points=json_body,
- time_precision='s',
- database=self.influx_db_name)
-
- except ConnectionError as e:
- self.logger.error(f"Influx ConnectionError on curVal write: {e}")
- if not response:
- self.logger.warning(f"Unsuccessful write to influx. Response: {response}")
- self.logger.info(f"Attempted to write: {json_body}")
- else:
- self.logger.info(
- f"Successful write to influx. Length of JSON: {len(json_body)}")
-
- def check_error_log(self):
- mlep_logs = self.dir.glob('**/mlep.log')
- eplus_err = False
- for mlep_log in mlep_logs:
- if "===== EnergyPlus terminated with error =====" in mlep_log.read_text():
- eplus_err = True
- break
- if eplus_err:
- error_concat = ""
- error_logs = self.dir.glob('**/*.err')
- for error_log in error_logs:
- error_concat += f"{error_log}:\n"
- error_concat += error_log.read_text() + "\n"
- raise JobExceptionExternalProcess(f"Energy plus terminated with error:\n {error_concat}")
-
- @message
- def advance(self):
- self.logger.info(f"advance called at time {self.get_sim_time()}")
- self.step()
- self.update_db()
-
- @message
- def stop(self):
- super().stop()
-
- # Call some OpenStudio specific stop methods
- self.ep.stop(True)
- self.ep.is_running = 0
-
- # If E+ doesn't exit properly it can spin and delete/create files during tarring.
- # This causes an error when files that were added to the archive disappear.
- sleep(5)
+ idf_path = openstudio.path(str(self.idf_file))
+ workspace = openstudio.Workspace.load(idf_path)
+ if not workspace.is_initialized():
+ raise JobException("Cannot load idf file into workspace")
+ workspace = workspace.get()
+
+ delete_objects = [*workspace.getObjectsByType(openstudio.IddObjectType("RunPeriod")),
+ *workspace.getObjectsByType(openstudio.IddObjectType("Timestep"))]
+ for object in delete_objects:
+ workspace.removeObject(object.handle())
+
+ runperiod_object = openstudio.IdfObject(openstudio.IddObjectType("RunPeriod"))
+ runperiod_object.setString(0, "Alfalfa Run Period")
+ runperiod_object.setInt(1, self.options.start_datetime.month)
+ runperiod_object.setInt(2, self.options.start_datetime.day)
+ runperiod_object.setInt(3, self.options.start_datetime.year)
+ runperiod_object.setInt(4, self.options.end_datetime.month)
+ runperiod_object.setInt(5, self.options.end_datetime.day)
+ runperiod_object.setInt(6, self.options.end_datetime.year)
+ runperiod_object.setString(7, str(self.options.start_datetime.strftime("%A")))
+
+ timestep_object = openstudio.IdfObject(openstudio.IddObjectType("Timestep"))
+ timestep_object.setInt(0, self.options.timesteps_per_hour)
+
+ workspace.addObject(runperiod_object)
+ workspace.addObject(timestep_object)
+
+ paths_objects = workspace.getObjectsByType(openstudio.IddObjectType("PythonPlugin:SearchPaths"))
+ python_paths = openstudio.IdfObject(openstudio.IddObjectType("PythonPlugin:SearchPaths"))
+ python_paths.setString(0, "Alfalfa Virtual Environment Path")
+ python_paths.setString(1, 'No')
+ python_paths.setString(2, 'No')
+ python_paths.setString(3, 'No')
+ n = 4
+
+ if (self.run.dir / '.venv').exists():
+ python_paths.setString(n, str(self.run.dir / '.venv' / 'lib' / 'python3.12' / 'site-packages'))
+ n += 1
+
+ for path in paths_objects:
+ for field_idx in range(4, path.numFields()):
+ python_paths.setString(n, path.getString(field_idx).get())
+ n += 1
+ workspace.removeObject(path.handle())
+
+ workspace.addObject(python_paths)
+
+ workspace.save(idf_path, True)
+
+ def report_exception(self) -> None:
+ super().report_exception(self.read_error_logs())
+ if self.ep_state is not None:
+ self.ep_api.runtime.stop_simulation(self.ep_state)
+
+ def read_error_logs(self) -> list[str]:
+ error_logs = []
+ for error_file in self.dir.glob('**/*.err'):
+ error_log = f"{error_file}:\n"
+ error_log += error_file.read_text()
+ error_logs.append(error_log)
+ return error_logs
+
+ def check_for_errors(self):
+ error_logs = self.read_error_logs()
+ exception = JobExceptionExternalProcess("Energy plus terminated with error")
+ for error_log in error_logs:
+ exception.add_note(error_log)
+
+ if "EnergyPlus Terminated" in '\n'.join(error_logs):
+ raise exception
+ super().check_for_errors()
diff --git a/alfalfa_worker/jobs/step_run_base.py b/alfalfa_worker/jobs/step_run_base.py
index df0a103e..5db6b50e 100644
--- a/alfalfa_worker/jobs/step_run_base.py
+++ b/alfalfa_worker/jobs/step_run_base.py
@@ -1,19 +1,106 @@
-import datetime
+import logging
import os
+from dataclasses import dataclass
+from datetime import datetime, timedelta
+from enum import auto
-from influxdb import InfluxDBClient
-
-from alfalfa_worker.lib.enums import RunStatus
-from alfalfa_worker.lib.job import (
- Job,
+from alfalfa_worker.lib.alfalfa_connections_manager import (
+ AlafalfaConnectionsManager
+)
+from alfalfa_worker.lib.constants import DATETIME_FORMAT
+from alfalfa_worker.lib.enums import AutoName, RunStatus
+from alfalfa_worker.lib.job import Job, message
+from alfalfa_worker.lib.job_exception import (
JobException,
- JobExceptionSimulation,
- message
+ JobExceptionSimulation
)
+from alfalfa_worker.lib.utils import to_bool
+
+
+class ClockSource(AutoName):
+ INTERNAL = auto()
+ EXTERNAL = auto()
+
+
+@dataclass
+class Options:
+ clock_source: ClockSource
+
+ start_datetime: datetime
+ end_datetime: datetime
+
+ # Ammount of time passed in the simulation during a single simulation step
+ timestep_duration: timedelta
+
+ # Timescale that an internal clock simulation will advance at
+ timescale: int
+
+ # Is the first step of the simulation responsible for running warmup
+ warmup_is_first_step: bool = False
+
+ # Should points be logged to InfluxDB
+ historian_enabled: bool = os.environ.get('HISTORIAN_ENABLE', False) == 'true'
+
+ # Timeouts
+ # These are mostly used for the StepRunProcess class to clean up the subprocess
+ # when it hangs.
+
+ # How long can an advance call run before something bad is assumed to have happened.
+ advance_timeout: int = 45
+ # How long can it take a simulation to start before something bad is assumed to have happened.
+ start_timeout: int = 300
+ # Same as previous timeouts, but related to stopping
+ stop_timeout: int = 45
+
+ # How many timesteps can a timescale run lag behind before being stopped
+ timescale_lag_limit: int = 2
+
+ def __init__(self, realtime: bool, timescale: int, external_clock: bool, start_datetime: str, end_datetime: str):
+ self.logger = logging.getLogger(self.__class__.__name__)
+
+ if external_clock:
+ self.clock_source = ClockSource.EXTERNAL
+ else:
+ self.clock_source = ClockSource.INTERNAL
+
+ self.logger.debug(f"Clock Source: {self.clock_source}")
+
+ self.start_datetime = datetime.strptime(start_datetime, DATETIME_FORMAT)
+ self.end_datetime = datetime.strptime(end_datetime, DATETIME_FORMAT)
+ self.logger.debug(f"Start Datetime: {self.start_datetime}")
+ self.logger.debug(f"End Datetime: {self.end_datetime}")
+
+ if realtime:
+ self.timescale = 1
+ else:
+ self.timescale = timescale
+
+ if self.clock_source == ClockSource.INTERNAL:
+ self.logger.debug(f"Timescale: {self.timescale}")
+
+ # Check for at least one of the required parameters
+ if not realtime and not timescale and not external_clock:
+ raise JobException("At least one of 'external_clock', 'timescale', or 'realtime' must be specified")
+
+ @property
+ def advance_interval(self) -> timedelta:
+ """Get the timedelta for how often a simulation should be advanced
+ based on the timescale and timestep_duration
+ """
+ if self.timestep_duration and self.timescale:
+ return self.timestep_duration / self.timescale
+ return None
+
+ @property
+ def timesteps_per_hour(self) -> int:
+ """Get advance step time in terms of how many steps are requried
+ to advance the model one hour
+ """
+ return int(timedelta(hours=1) / self.timestep_duration)
class StepRunBase(Job):
- def __init__(self, run_id: str, realtime: bool, timescale: int, external_clock: bool, start_datetime: str, end_datetime: str, **kwargs) -> None:
+ def __init__(self, run_id: str, realtime: bool, timescale: int, external_clock: bool, start_datetime: str, end_datetime: str) -> None:
"""Base class for all jobs to step a run. The init handles the basic configuration needed
for the derived classes.
@@ -24,180 +111,97 @@ def __init__(self, run_id: str, realtime: bool, timescale: int, external_clock:
external_clock (bool): Use an external clock to step the simulation.
start_datetime (str): Start datetime. #TODO: this should be typed datetime
end_datetime (str): End datetime. #TODO: this should be typed datetime
- **skip_site_init (bool): Skip the initialization of the site database object. This is mainly used in testing.
- **skip_stop_db_writes (bool): Skip the writing of the stop results to the database. This is mainly used in testing.
"""
super().__init__()
self.set_run_status(RunStatus.STARTING)
- self.step_sim_type, self.step_sim_value, self.start_datetime, self.end_datetime = self.process_inputs(realtime, timescale, external_clock, start_datetime, end_datetime)
- self.logger.info(f"sim_type is {self.step_sim_type}")
- if self.step_sim_type == 'timescale':
- self.step_sim_value = self.step_sim_value
- elif self.step_sim_type == 'realtime':
- self.step_sim_value = 1
- else:
- self.step_sim_value = 5
+ self.options: Options = Options(to_bool(realtime), int(timescale), to_bool(external_clock), start_datetime, end_datetime)
- self.start_datetime = datetime.datetime.strptime(start_datetime, '%Y-%m-%d %H:%M:%S')
- self.end_datetime = datetime.datetime.strptime(end_datetime, '%Y-%m-%d %H:%M:%S')
+ self.warmup_cleared = not self.options.warmup_is_first_step
- self.historian_enabled = os.environ.get('HISTORIAN_ENABLE', False) == 'true'
+ connections_manager = AlafalfaConnectionsManager()
+ self.influx_db_name = connections_manager.influx_db_name
+ self.influx_client = connections_manager.influx_client
+ self.historian_enabled = connections_manager.historian_enabled
- self.first_step_warmup = False
+ def exec(self) -> None:
+ self.logger.info("Initializing simulation...")
+ self.initialize_simulation()
+ self.logger.info("Simulation initialized.")
self.set_run_status(RunStatus.STARTED)
- self.setup_connections()
-
- self.skip_stop_db_writes = kwargs.get('skip_stop_db_writes', False)
-
- def process_inputs(self, realtime, timescale, external_clock, start_datetime, end_datetime):
- # TODO change server side message: startDatetime to start_datetime
- timescale = False if timescale == 'undefined' else timescale
-
- # make sure the inputs are typed correctly
- try:
- timescale = int(timescale)
- except ValueError:
- self.logger.info(f"timescale is not an integer, continuing as sim_type=timescale. Value was {timescale}")
-
- if not isinstance(realtime, bool):
- realtime = True if realtime and realtime.lower() == 'true' else False
- if not isinstance(external_clock, bool):
- external_clock = True if external_clock and external_clock.lower() == 'true' else False
-
- self.logger.debug(f"start_datetime type: {type(start_datetime)}\tstart_datetime: {start_datetime}")
- self.logger.debug(f"end_datetime type: {type(end_datetime)}\tend_datetime: {end_datetime}")
- self.logger.debug(f"realtime type: {type(realtime)}\trealtime: {realtime}")
- self.logger.debug(f"timescale type: {type(timescale)}\ttimescale: {timescale}")
- self.logger.debug(f"external_clock type: {type(external_clock)}\texternal_clock: {external_clock}")
-
- # Check for at least one of the required parameters
- if not realtime and not timescale and not external_clock:
- self.logger.error("At least one of 'external_clock', 'timescale', or 'realtime' must be specified")
- raise JobException("At least one of 'external_clock', 'timescale', or 'realtime' must be specified")
-
- if external_clock:
- step_sim_type = "external_clock"
- step_sim_value = "true"
- elif realtime:
- step_sim_type = "realtime"
- step_sim_value = 1
- elif timescale:
- if str(timescale).isdigit():
- step_sim_type = "timescale"
- step_sim_value = int(timescale)
- else:
- self.logger.info(f"timescale: {timescale} must be an integer value")
- raise JobException(f"timescale: {timescale} must be an integer value")
-
- return (step_sim_type, step_sim_value, start_datetime, end_datetime)
-
- def exec(self) -> None:
- self.init_sim()
- self.setup_points()
+ self.logger.info("Advancing to start time...")
self.advance_to_start_time()
+ if not self.warmup_cleared and self.options.clock_source == ClockSource.INTERNAL:
+ self.advance()
+ self.logger.info("Advanced to start time.")
+
self.set_run_status(RunStatus.RUNNING)
- if self.step_sim_type == 'timescale' or self.step_sim_type == 'realtime':
- self.logger.info("Running timescale / realtime")
+ if self.options.clock_source == ClockSource.INTERNAL:
+ self.logger.info("Running Simulation with Internal Clock.")
self.run_timescale()
- elif self.step_sim_type == 'external_clock':
- self.logger.info("Running external_clock")
+ elif self.options.clock_source == ClockSource.EXTERNAL:
+ self.logger.info("Running Simulations with External Clock.")
self.start_message_loop()
- def init_sim(self):
+ def initialize_simulation(self) -> None:
"""Placeholder for all things necessary to initialize simulation"""
-
- def step(self):
- """Placeholder for making a step through simulation time
-
- Step should consist of the following:
- - Reading write arrays from mongo
- - check_sim_status_stop
- - if not self.stop
- - Update model inputs
- - Advancing the simulation
- - Check that advancing the simulation results in the correct expected timestep
- - Read output vals from simulation
- - Update Mongo with values
- """
+ raise NotImplementedError
def advance_to_start_time(self):
- """Placeholder to advance sim to start time for job"""
-
- def update_model_inputs_from_write_arrays(self):
- """Placeholder for getting write values from Mongo and writing into simulation BEFORE a simulation timestep"""
-
- def write_outputs_to_redis(self):
- """Placeholder for updating the current values exposed through Redis AFTER a simulation timestep"""
-
- def update_sim_time_in_mongo(self):
- """Placeholder for updating the datetime in Mongo to current simulation time"""
-
- def create_tag_dictionaries(self):
- """Placeholder for method necessary to create Haystack entities and records"""
-
- def config_paths_for_model(self):
- """Placeholder for configuring necessary files for running model"""
-
- def run_external_clock(self):
- """Placeholder for running using an external_clock"""
+ while self.run.sim_time < self.options.start_datetime:
+ self.advance()
+ self.warmup_cleared = True
def run_timescale(self):
- if self.first_step_warmup:
- # Do first step outside of loop so warmup time is not counted against steps_behind
- self.advance()
- next_step_time = datetime.datetime.now() + self.timescale_step_interval()
+ """Run simulation at timescale"""
+ next_advance_time = datetime.now() + self.options.advance_interval
+ self.logger.debug(f"Advance interval is: {self.options.advance_interval}")
+ self.logger.debug(f"Next step time: {next_advance_time}")
+
while self.is_running:
- if datetime.datetime.now() >= next_step_time:
- steps_behind = (datetime.datetime.now() - next_step_time) / self.timescale_step_interval()
- if steps_behind > 2.0:
- raise JobExceptionSimulation("Timescale too high. Simulation more than 2 timesteps behind")
- next_step_time = next_step_time + self.timescale_step_interval()
+ if datetime.now() >= next_advance_time:
+ steps_behind = (datetime.now() - next_advance_time) / self.options.advance_interval
+ if steps_behind > self.options.timescale_lag_limit:
+ raise JobExceptionSimulation(f"Timescale too high. Simulation more than {self.options.timescale_lag_limit} timesteps behind")
+ next_advance_time = next_advance_time + self.options.advance_interval
+
+ self.logger.debug(f"Internal clock called advance at {self.run.sim_time}")
+ self.logger.debug(f"Next advance time: {next_advance_time}")
self.advance()
- if self.check_simulation_stop_conditions() or self.get_sim_time() >= self.end_datetime:
+ if self.check_simulation_stop_conditions() or self.run.sim_time >= self.options.end_datetime:
+ self.logger.debug(f"Stopping at time: {self.run.sim_time}")
self.stop()
+ break
self._check_messages()
+ self.logger.info("Internal clock simulation has exited.")
- def timescale_step_interval(self):
- return (self.time_per_step() / self.step_sim_value)
-
- def time_per_step(self) -> datetime.timedelta:
+ def get_sim_time(self) -> datetime:
+ """Placeholder for method which retrieves time in the simulation"""
raise NotImplementedError
- def get_sim_time(self) -> datetime.datetime:
- raise NotImplementedError
+ def update_run_time(self) -> None:
+ """Update the sim_time in the Run object to match the most up to date sim_time"""
+ self.set_run_time(self.get_sim_time())
def check_simulation_stop_conditions(self) -> bool:
- """Placeholder to determine whether a simulation should stop"""
+ """Placeholder to determine whether a simulation should stop.
+ This can be used to signal that the simulation has exited and the job can now continue
+ to clean up."""
return False
- def setup_points(self):
- """Placeholder for setting up points for I/O"""
-
- def setup_connections(self):
- """Placeholder until all db/connections operations can be completely moved out of the job"""
- # InfluxDB
- self.historian_enabled = os.environ.get('HISTORIAN_ENABLE', False) == 'true'
- if self.historian_enabled:
- self.influx_db_name = os.environ['INFLUXDB_DB']
- self.influx_client = InfluxDBClient(host=os.environ['INFLUXDB_HOST'],
- username=os.environ['INFLUXDB_ADMIN_USER'],
- password=os.environ['INFLUXDB_ADMIN_PASSWORD'])
- else:
- self.influx_db_name = None
- self.influx_client = None
-
- @message
- def advance(self) -> None:
- self.step()
-
@message
def stop(self) -> None:
+ self.logger.info("Stopping simulation.")
super().stop()
self.set_run_status(RunStatus.STOPPING)
def cleanup(self) -> None:
super().cleanup()
self.set_run_status(RunStatus.COMPLETE)
+
+ @message
+ def advance(self) -> None:
+ """Placeholder for method which advances the simulation one timestep"""
+ raise NotImplementedError
diff --git a/alfalfa_worker/jobs/step_run_process.py b/alfalfa_worker/jobs/step_run_process.py
new file mode 100644
index 00000000..22ed219b
--- /dev/null
+++ b/alfalfa_worker/jobs/step_run_process.py
@@ -0,0 +1,154 @@
+import threading
+from ctypes import c_wchar_p
+from datetime import datetime
+from multiprocessing import Manager, Process
+from time import time
+
+from alfalfa_worker.jobs.step_run_base import StepRunBase
+from alfalfa_worker.lib.constants import DATETIME_FORMAT
+from alfalfa_worker.lib.job import message
+from alfalfa_worker.lib.job_exception import (
+ JobExceptionExternalProcess,
+ JobExceptionMessageHandler
+)
+from alfalfa_worker.lib.utils import exc_to_str
+
+
+class StepRunProcess(StepRunBase):
+ """Extension of StepRunBase with added functionality to handle cases where the simulation being run wants to be in control of the
+ process instead of the other way round."""
+
+ def __init__(self, run_id: str, realtime: bool, timescale: int, external_clock: bool, start_datetime: str, end_datetime: str, **kwargs) -> None:
+ super().__init__(run_id, realtime, timescale, external_clock, start_datetime, end_datetime)
+
+ # Create manager to handle communication between main process and simulation process
+ self.manager = Manager()
+ # advance_event: set by main process to signal simulation process to advance.
+ # Cleared by simulation process immediately before waiting for a new advance event.
+ self.advance_event = self.manager.Event()
+
+ # stop_event: set by main process to signal simulation process to stop
+ self.stop_event = self.manager.Event()
+
+ # running_event: is set by simulation process when the simulation moves out of the warmup stage
+ self.running_event = self.manager.Event()
+
+ # error_event: set by simulation process to signal that an error has occurred
+ self.error_event = self.manager.Event()
+ # error_log: contains string serialized errors
+ self.error_log = self.manager.Value(c_wchar_p, '')
+
+ # timestamp: string serialized sim_time, set by simulation process after advancing
+ self.timestamp = self.manager.Value(c_wchar_p, '')
+
+ # simulation_process: object to contain simulation process
+ self.simulation_process: Process
+
+ # in_process: whether the current context is within simulation process or not
+ self.in_subprocess = False
+
+ def initialize_simulation(self) -> None:
+ """Starts simulation process. Waits for running event to be set. And then records updated time."""
+ self.simulation_process = Process(target=StepRunProcess._start_simulation_process, args=(self,))
+ self.simulation_process.start()
+
+ self._wait_for_event(self.running_event, self.options.start_timeout, desired_event_set=True)
+ self.update_run_time()
+
+ def set_run_time(self, sim_time: datetime) -> None:
+ """In simulation process the sim_time is saved to the shared timestamp.
+ In main process this calls the default implementation."""
+ if self.in_subprocess:
+ self.timestamp.value = sim_time.strftime(DATETIME_FORMAT)
+ else:
+ return super().set_run_time(sim_time)
+
+ def update_run_time(self) -> None:
+ """In simulation process calls default implementation.
+ In main process sets run_time to the serialized timestamp from the simulation process."""
+ if self.in_subprocess:
+ super().update_run_time()
+ else:
+ self.set_run_time(datetime.strptime(self.timestamp.value, DATETIME_FORMAT))
+
+ def _start_simulation_process(self) -> None:
+ try:
+ self.in_subprocess = True
+ return self.simulation_process_entrypoint()
+ except Exception:
+ self.report_exception()
+
+ def simulation_process_entrypoint(self) -> None:
+ """Placeholder for spinning up the simulation"""
+ raise NotImplementedError
+
+ def handle_process_error(self) -> None:
+ """This method is called in the main process when an error has been detected in the simulation process.
+ It kills the simulation process if it is still alive and raises an exception with the contents of the process
+ error log."""
+ if self.simulation_process.is_alive():
+ self.simulation_process.kill()
+ raise JobExceptionExternalProcess(self.error_log.value)
+
+ def report_exception(self, notes: list[str]) -> None:
+ """This method should be called by the subclass, when an exception has occurred
+ within the simulation process, to properly record the error log and signal that an error has occurred."""
+ if self.in_subprocess:
+ exception_log = exc_to_str()
+ self.error_log.value = exception_log
+ if len(notes) > 0:
+ self.error_log.value += "\n\n" + '\n'.join(notes)
+ self.error_event.set()
+
+ def check_simulation_stop_conditions(self) -> bool:
+ return not self.simulation_process.is_alive()
+
+ def check_for_errors(self) -> None:
+ """Checks for errors with the simulation_process and raises an exception if any are detected.
+ This method should be overridden to add additional checks specific to a given process."""
+ exit_code = self.simulation_process.exitcode
+ if exit_code:
+ raise JobExceptionExternalProcess(f"Simulation process exited with non-zero exit code: {exit_code}")
+
+ def _wait_for_event(self, event: threading.Event, timeout: float, desired_event_set: bool = False) -> None:
+ """Wait for a given event to go be set or cleared within a given amount of time"""
+ wait_until = time() + timeout
+ while (event.is_set() != desired_event_set
+ and time() < wait_until
+ and self.simulation_process.is_alive()
+ and not self.error_event.is_set()):
+ self.check_for_errors()
+ if desired_event_set:
+ event.wait(1)
+ if self.error_event.is_set():
+ self.handle_process_error()
+ if not self.simulation_process.is_alive():
+ self.check_for_errors()
+ raise JobExceptionExternalProcess("Simulation process exited without returning an error")
+ if time() > wait_until:
+ self.simulation_process.kill()
+ raise TimeoutError("Timedout waiting for simulation process to toggle event")
+
+ @message
+ def advance(self) -> None:
+ self.logger.info(f"Advance called at {self.run.sim_time}")
+ if self.advance_event.is_set():
+ raise JobExceptionMessageHandler("Cannot advance, simulation is already advancing")
+ self.advance_event.set()
+ self._wait_for_event(self.advance_event, timeout=self.options.advance_timeout, desired_event_set=False)
+ self.update_run_time()
+
+ @message
+ def stop(self):
+ if not self.stop_event.is_set():
+ stop_start_time = time()
+ self.stop_event.set()
+ while (self.simulation_process.is_alive()
+ and time() - stop_start_time < self.options.stop_timeout
+ and not self.error_event.is_set()):
+ pass
+ if time() - stop_start_time > self.options.stop_timeout and self.simulation_process.is_alive():
+ self.simulation_process.kill()
+ raise JobExceptionExternalProcess("Simulation process stopped responding and was killed.")
+ if self.error_event.is_set():
+ self.handle_process_error()
diff --git a/alfalfa_worker/lib/alfalfa_connections_manager.py b/alfalfa_worker/lib/alfalfa_connections_manager.py
index 365aca73..a6faeefd 100644
--- a/alfalfa_worker/lib/alfalfa_connections_manager.py
+++ b/alfalfa_worker/lib/alfalfa_connections_manager.py
@@ -1,6 +1,7 @@
import os
import boto3
+from influxdb import InfluxDBClient
from mongoengine import connect
from redis import Redis
@@ -19,3 +20,14 @@ def __init__(self) -> None:
# Redis
self.redis = Redis(host=os.environ['REDIS_HOST'])
+
+ # InfluxDB
+ self.historian_enabled = os.environ.get('HISTORIAN_ENABLE', False) == 'true'
+ if self.historian_enabled:
+ self.influx_db_name = os.environ['INFLUXDB_DB']
+ self.influx_client = InfluxDBClient(host=os.environ['INFLUXDB_HOST'],
+ username=os.environ['INFLUXDB_ADMIN_USER'],
+ password=os.environ['INFLUXDB_ADMIN_PASSWORD'])
+ else:
+ self.influx_db_name = None
+ self.influx_client = None
diff --git a/alfalfa_worker/lib/constants.py b/alfalfa_worker/lib/constants.py
new file mode 100644
index 00000000..12c4c1f9
--- /dev/null
+++ b/alfalfa_worker/lib/constants.py
@@ -0,0 +1 @@
+DATETIME_FORMAT = '%Y-%m-%d %H:%M:%S'
diff --git a/alfalfa_worker/lib/job.py b/alfalfa_worker/lib/job.py
index fc4a4679..442a10f1 100644
--- a/alfalfa_worker/lib/job.py
+++ b/alfalfa_worker/lib/job.py
@@ -1,19 +1,26 @@
import json
import logging
-import os
-import time
-import traceback
+from datetime import datetime
from enum import Enum
from json.decoder import JSONDecodeError
from pathlib import Path
-from subprocess import CalledProcessError
-from xmlrpc.client import Boolean
+from subprocess import PIPE, Popen
+from time import time
from alfalfa_worker.lib.alfalfa_connections_manager import (
AlafalfaConnectionsManager
)
from alfalfa_worker.lib.enums import RunStatus, SimType
+from alfalfa_worker.lib.job_exception import (
+ JobExceptionExternalProcess,
+ JobExceptionFailedValidation,
+ JobExceptionInvalidRun,
+ JobExceptionMessageHandler,
+ JobExceptionTimeout
+)
from alfalfa_worker.lib.models import Run
+from alfalfa_worker.lib.redis_log_handler import RedisLogHandler
+from alfalfa_worker.lib.utils import exc_to_str
def message(func):
@@ -68,7 +75,6 @@ def __new_init__(self: "Job", *args, **kwargs):
# Redis
self.redis = connections_manager.redis
self.redis_pubsub = self.redis.pubsub(ignore_subscribe_messages=True)
- logging.basicConfig(level=os.environ.get("LOGLEVEL", "INFO"))
self.logger = logging.getLogger(self.__class__.__name__)
# Message Handlers
@@ -95,43 +101,41 @@ def __new_init__(self: "Job", *args, **kwargs):
return class_
+def error_wrapper(func):
+ def wrapped_func(self, *args, **kwargs):
+ try:
+ return func(self, *args, **kwargs)
+ except Exception:
+ exc_str = exc_to_str()
+ self.logger.error("Terminating Job with Error:")
+ self.logger.error(exc_str)
+ self.record_run_error(exc_str)
+ self.set_job_status(JobStatus.ERROR)
+ self.checkin_run()
+ return wrapped_func
+
+
class Job(metaclass=JobMetaclass):
"""Job Base Class"""
+ @error_wrapper
def start(self) -> None:
"""Job workflow"""
+ self.set_job_status(JobStatus.RUNNING)
+ self.exec()
+ if self.status == JobStatus.ERROR:
+ return
+ if self.is_running:
+ self.set_job_status(JobStatus.STOPPING)
+ self.stop()
+ self.set_job_status(JobStatus.VALIDATING)
try:
- self.set_job_status(JobStatus.RUNNING)
- self.exec()
- if self.is_running:
- self.set_job_status(JobStatus.STOPPING)
- self.stop()
- self.set_job_status(JobStatus.VALIDATING)
- try:
- self.validate()
- except AssertionError as e:
- raise JobExceptionFailedValidation(e)
- self.set_job_status(JobStatus.CLEANING_UP)
- self.cleanup()
- self.set_job_status(JobStatus.STOPPED)
-
- except CalledProcessError as e:
- if e.output:
- self.logger.error(e, exc_info=True)
- self.logger.error(e.output.decode('utf-8'))
- self.record_run_error(e.output.decode('utf-8'))
- else:
- self.logger.error(e, exc_info=True)
- self.logger.error(str(traceback.format_exc()))
- self.record_run_error(traceback.format_exc())
- self.set_job_status(JobStatus.ERROR)
- self.checkin_run()
- except Exception as e:
- self.logger.error(e, exc_info=True)
- self.logger.error(str(traceback.format_exc()))
- self.record_run_error(traceback.format_exc())
- self.set_job_status(JobStatus.ERROR)
- self.checkin_run()
+ self.validate()
+ except AssertionError as e:
+ raise JobExceptionFailedValidation(e)
+ self.set_job_status(JobStatus.CLEANING_UP)
+ self.cleanup()
+ self.set_job_status(JobStatus.STOPPED)
def exec(self) -> None:
"""Runs job
@@ -162,7 +166,8 @@ def status(self) -> "JobStatus":
return self._status
@property
- def is_running(self) -> Boolean:
+ def is_running(self) -> bool:
+ """Easily check if the state of the job is running or not"""
return self._status.value < JobStatus.STOPPING.value
@property
@@ -170,7 +175,7 @@ def is_running(self) -> Boolean:
def dir(self) -> Path:
return self.run.dir
- def set_job_status(self, status: "JobStatus"):
+ def set_job_status(self, status: "JobStatus") -> None:
if self._status is status:
return
# Once stopping we can't go back
@@ -180,22 +185,22 @@ def set_job_status(self, status: "JobStatus"):
self.logger.info(f"Job Status: {status.name}")
# A callback could be added here to tell the client what the status is
self._status = status
+ if self.run:
+ self.redis.hset(self.run.ref_id, 'job_status', status.name)
- def start_message_loop(self, timeout=None):
+ def start_message_loop(self, timeout: float = None) -> None:
# Should the timeout be total time since loop started? or time since last message?
- start_time = time.time()
+ start_time = time()
while self.is_running and self.run is not None:
- if timeout is not None and time.time() - start_time > timeout:
+ if timeout is not None and time() - start_time > timeout:
break
self.set_job_status(JobStatus.WAITING)
self._check_messages()
self.logger.info("message loop over")
@with_run()
- def _check_messages(self):
+ def _check_messages(self) -> None:
message = self.redis_pubsub.get_message()
- self.redis.hset(self.run.ref_id, 'control', 'idle')
- # self.logger.info(message)
try:
if message and message['data'].__class__ == bytes:
self.logger.info(f"received message: {message}")
@@ -203,6 +208,7 @@ def _check_messages(self):
message_id = data.get('message_id')
method = data.get('method', None)
if method == "stop":
+ self.logger.info("Received stop message")
self.set_job_status(JobStatus.STOPPING)
if method in self._message_handlers.keys():
if self.is_running:
@@ -211,15 +217,17 @@ def _check_messages(self):
try:
response['response'] = self._message_handlers[data['method']](**data.get('params', {}))
response['status'] = 'ok'
- except JobExceptionMessageHandler as e:
+ except JobExceptionMessageHandler:
# JobExceptionMessageHandler errors are thrown when the operation fails but the job isn't tainted.
# They are caught here so they don't cause the job to exit.
- self.logger.error(e)
+ exc_str = exc_to_str()
+ self.logger.error(exc_str)
response['status'] = 'error'
- response['response'] = str(e)
+ response['response'] = exc_str
except Exception as e:
+ exc_str = exc_to_str()
response['status'] = 'error'
- response['response'] = str(e)
+ response['response'] = exc_str
raise e
finally:
self.redis.hset(self.run.ref_id, message_id, json.dumps(response))
@@ -233,44 +241,75 @@ def checkout_run(self, run_id: str) -> Run:
return run
@with_run()
- def checkin_run(self):
+ def checkin_run(self) -> tuple[bool, str]:
return self.run_manager.checkin_run(self.run)
def create_run_from_model(self, model_id: str, sim_type=SimType.OPENSTUDIO, run_id=None) -> None:
run = self.run_manager.create_run_from_model(model_id, sim_type, run_id=run_id)
self.register_run(run)
- def create_empty_run(self):
+ def create_empty_run(self) -> None:
run = self.run_manager.create_empty_run()
self.register_run(run)
@with_run()
- def set_run_status(self, status: RunStatus):
+ def set_run_status(self, status: RunStatus) -> None:
self.logger.info(f"Setting run status to {status.name}")
self.run.status = status
self.run.save()
@with_run()
- def set_run_time(self, sim_time):
+ def set_run_time(self, sim_time: datetime) -> None:
self.run.sim_time = sim_time
@with_run(return_on_fail=True)
- def record_run_error(self, error_log: str):
+ def record_run_error(self, error_log: str) -> None:
self.set_run_status(RunStatus.ERROR)
self.run.error_log = error_log
self.run.save()
- def register_run(self, run: Run):
+ def register_run(self, run: Run) -> None:
self.run = run
self.run.job_history.append(self.job_path())
self.run.save()
- self.logger.info(run.dir)
+ self.logger.debug(f"Attaching to run in directory: {run.dir}")
+
self.redis_pubsub.subscribe(run.ref_id)
formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
fh = logging.FileHandler(self.dir / 'jobs.log')
fh.setFormatter(formatter)
self.logger.addHandler(fh)
+ redis_handler = RedisLogHandler(self.run, logging.INFO)
+ redis_handler.setFormatter(formatter)
+ self.logger.addHandler(redis_handler)
+
+ def log_subprocess(self, args: list[str], timeout: int = 300):
+ self.logger.info(f"Executing process with args: '{args}'")
+
+ process_log = []
+ process = Popen(args, stdout=PIPE, stderr=PIPE, encoding='utf-8')
+ wait_until = time() + timeout
+ while (time() < wait_until and process.poll() is None):
+ line = process.stdout.readline().rstrip()
+ if len(line) > 0:
+ process_log.append(line)
+ self.logger.info(line)
+ line = process.stderr.readline().rstrip()
+ if len(line) > 0:
+ process_log.append(line)
+ self.logger.error(line)
+ if time() > wait_until:
+ process.kill()
+ exception = JobExceptionTimeout(f"Process timedout after: {timeout} seconds")
+ exception.add_note(process_log)
+ raise exception
+ exitcode = process.returncode
+ if exitcode != 0:
+ exception = JobExceptionExternalProcess(f"Process returned non-zero exit code: {exitcode}")
+ exception.add_note('\n'.join(process_log))
+ raise exception
+
@classmethod
def job_path(cls):
return f'{cls.__module__}.{cls.__name__}'
@@ -287,37 +326,3 @@ class JobStatus(Enum):
CLEANING_UP = 10
STOPPED = 11
ERROR = 63
-
-
-class JobException(Exception):
- pass
-
-
-class JobExceptionMessageHandler(JobException):
- """Thrown when there is an exception that occurs in an message handler.
- This is caught and reported back to the caller via redis."""
-
-
-class JobExceptionInvalidModel(JobException):
- """Thrown when working on a model.
- ex: missing osw"""
-
-
-class JobExceptionInvalidRun(JobException):
- """Thrown when working on run.
- ex. run does not have necessary files"""
-
-
-class JobExceptionExternalProcess(JobException):
- """Thrown when an external process throws an error.
- ex. E+ can't run idf"""
-
-
-class JobExceptionFailedValidation(JobException):
- """Thrown when the job fails validation for any reason.
- ex. file that should have been generated was not"""
-
-
-class JobExceptionSimulation(JobException):
- """Thrown when there is a simulation issue.
- ex. Simulation falls too far behind in timescale run"""
diff --git a/alfalfa_worker/lib/job_exception.py b/alfalfa_worker/lib/job_exception.py
new file mode 100644
index 00000000..a7103eb7
--- /dev/null
+++ b/alfalfa_worker/lib/job_exception.py
@@ -0,0 +1,36 @@
+class JobException(Exception):
+ pass
+
+
+class JobExceptionMessageHandler(JobException):
+ """Thrown when there is an exception that occurs in an message handler.
+ This is caught and reported back to the caller via redis."""
+
+
+class JobExceptionInvalidModel(JobException):
+ """Thrown when working on a model.
+ ex: missing osw"""
+
+
+class JobExceptionInvalidRun(JobException):
+ """Thrown when working on run.
+ ex. run does not have necessary files"""
+
+
+class JobExceptionExternalProcess(JobException):
+ """Thrown when an external process throws an error.
+ ex. E+ can't run idf"""
+
+
+class JobExceptionFailedValidation(JobException):
+ """Thrown when the job fails validation for any reason.
+ ex. file that should have been generated was not"""
+
+
+class JobExceptionSimulation(JobException):
+ """Thrown when there is a simulation issue.
+ ex. Simulation falls too far behind in timescale run"""
+
+
+class JobExceptionTimeout(JobException):
+ """Thrown when a timeout is triggered in the job"""
diff --git a/alfalfa_worker/lib/logger_mixins.py b/alfalfa_worker/lib/logger_mixins.py
index 0c11e107..93eee495 100644
--- a/alfalfa_worker/lib/logger_mixins.py
+++ b/alfalfa_worker/lib/logger_mixins.py
@@ -1,7 +1,6 @@
from __future__ import print_function
import logging
-import os
class LoggerMixinBase(object):
@@ -14,50 +13,13 @@ def __init__(self, logger_name, *args, **kwargs) -> None:
# Need to call parent since this is a mixin
super().__init__(*args, **kwargs)
- logging.basicConfig(level=os.environ.get("LOGLEVEL", "INFO"))
self.logger = logging.getLogger(logger_name)
- self.formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
-
self.fh = logging.FileHandler(f"{logger_name}.log")
- self.fh.setFormatter(self.formatter)
self.logger.addHandler(self.fh)
- self.sh = logging.StreamHandler()
- self.sh.setFormatter(self.formatter)
- self.logger.addHandler(self.sh)
-
class DispatcherLoggerMixin(LoggerMixinBase):
"""A logger specific for the tasks of the Dispatcher"""
def __init__(self, *args, **kwargs):
super().__init__('alfalfa_dispatcher', *args, **kwargs)
-
-
-class WorkerLoggerMixin(LoggerMixinBase):
- """A logger specific for the tasks of the Worker"""
-
- def __init__(self, *args, **kwargs):
- super().__init__('alfalfa_worker', *args, **kwargs)
-
-
-class AddSiteLoggerMixin(LoggerMixinBase):
- """A logger specific for the tasks of adding a site"""
-
- def __init__(self, *args, **kwargs):
- super().__init__('add_site', *args, **kwargs)
-
-
-class ModelLoggerMixin(object):
- """A logger specific for the tasks of the ModelAdvancer, does not stream"""
-
- def __init__(self, *args, **kwargs):
- # Need to call parent since this is a mixin
- super().__init__(*args, **kwargs)
-
- logging.basicConfig(level=os.environ.get("LOGLEVEL", "INFO"))
- self.logger = logging.getLogger('simulation')
- self.formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s')
- self.fh = logging.FileHandler('simulation.log')
- self.fh.setFormatter(self.formatter)
- self.logger.addHandler(self.fh)
diff --git a/alfalfa_worker/lib/models.py b/alfalfa_worker/lib/models.py
index d7c48750..3cc429aa 100644
--- a/alfalfa_worker/lib/models.py
+++ b/alfalfa_worker/lib/models.py
@@ -461,6 +461,7 @@ def redis_key(self):
ref_id = StringField(default=uuid4_str, unique_with=['run'])
run = ReferenceField('Run')
name = StringField(default="", max_length=255)
+ units = StringField(default="", max_length=10)
point_type = EnumField(PointType, required=True)
@@ -470,18 +471,13 @@ class Run(TimestampedDocument):
'indexes': ['ref_id'],
}
- def __init__(self, dir: Path = None, *args, **values):
+ def __init__(self, dir: Path = None, *args, **values) -> None:
super().__init__(*args, **values)
self.dir = dir
connections_manager = AlafalfaConnectionsManager()
self.redis = connections_manager.redis
- redis_entry = self.redis.hget(self.ref_id, "sim_time")
- if redis_entry:
- self._sim_time = datetime.datetime.strptime(redis_entry.decode('UTF-8'), '%Y-%m-%d %H:%M:%S')
- else:
- self._sim_time = None
- def get_point_by_id(self, id):
+ def get_point_by_id(self, id) -> Point:
return Point.objects.get(ref_id=id, run=self)
def glob(self, search_str, recursive=True):
@@ -501,7 +497,11 @@ def output_points(self) -> List[Point]:
@property
def sim_time(self):
- return self._sim_time
+ redis_entry = self.redis.hget(self.ref_id, "sim_time")
+ if redis_entry:
+ return datetime.datetime.strptime(redis_entry.decode('UTF-8'), '%Y-%m-%d %H:%M:%S')
+ else:
+ return None
@sim_time.setter
def sim_time(self, value):
diff --git a/alfalfa_worker/lib/redis_log_handler.py b/alfalfa_worker/lib/redis_log_handler.py
new file mode 100644
index 00000000..ee3fb052
--- /dev/null
+++ b/alfalfa_worker/lib/redis_log_handler.py
@@ -0,0 +1,17 @@
+from logging import Handler, LogRecord
+
+from alfalfa_worker.lib.alfalfa_connections_manager import (
+ AlafalfaConnectionsManager
+)
+from alfalfa_worker.lib.models import Run
+
+
+class RedisLogHandler(Handler):
+ def __init__(self, run: Run, level: int | str = 0) -> None:
+ super().__init__(level)
+ connections_manager = AlafalfaConnectionsManager()
+ self.redis = connections_manager.redis
+ self.run = run
+
+ def emit(self, record: LogRecord) -> None:
+ self.redis.rpush(f"run:{self.run.ref_id}:log", self.format(record))
diff --git a/alfalfa_worker/lib/run_manager.py b/alfalfa_worker/lib/run_manager.py
index 2aa86b5c..ce0a2b10 100644
--- a/alfalfa_worker/lib/run_manager.py
+++ b/alfalfa_worker/lib/run_manager.py
@@ -7,14 +7,13 @@
from uuid import uuid4
import boto3
-from mongoengine import connect
from alfalfa_worker.lib.alfalfa_connections_manager import (
AlafalfaConnectionsManager
)
from alfalfa_worker.lib.enums import SimType
from alfalfa_worker.lib.logger_mixins import LoggerMixinBase
-from alfalfa_worker.lib.models import Model, Rec, RecInstance, Run, Site
+from alfalfa_worker.lib.models import Model, Run, Site
class RunManager(LoggerMixinBase):
@@ -24,7 +23,6 @@ def __init__(self, run_dir: os.PathLike):
super().__init__("RunManager")
connections_manager = AlafalfaConnectionsManager()
- connect(host=f"{os.environ['MONGO_URL']}/{os.environ['MONGO_DB_NAME']}", uuidrepresentation='standard')
# Setup S3
self.s3 = connections_manager.s3
@@ -98,7 +96,7 @@ def create_empty_run(self) -> Run:
run.save()
return run
- def checkin_run(self, run: Run):
+ def checkin_run(self, run: Run) -> tuple[bool, str]:
"""Upload Run to s3 and delete local files"""
run.save()
@@ -150,74 +148,6 @@ def checkout_run(self, run_id: str) -> Run:
run.dir = run_path
return run
- def add_site_to_mongo(self, haystack_json: dict, run: Run):
- """Upload JSON documents to mongo. The documents look as follows:
- {
- '_id': '...', # this maps to the 'id' below, the unique id of the entity record.
- 'rec': {
- 'id': '...',
- 'siteRef': '...'
- ...other Haystack tags for rec
- }
- }
- :param haystack_json: json Haystack document
- :param run: id of the run
- :return: None
- """
- # Create a site obj here to keep the variable active, but it is
- # really set as index 0 of the haystack_json
- site = None
-
- # create all of the recs for this site
- for index, entity in enumerate(haystack_json):
- id = entity['id'].replace('r:', '')
-
- # Create default writearray objects for the site. Create this on the backend
- # to ensure that the links are created correctly and accessible from the frontend.
- # Only check for records tagged with writable.
- # This may need to be expanded to other types in the future.
- cur_status = entity.pop('curStatus', None)
- cur_val = entity.pop('curVal', None)
- if entity.get('writable') == 'm:':
- mapping = {}
- if cur_status is not None:
- mapping['curStatus'] = cur_status
- if cur_val is not None:
- mapping['curVal'] = cur_val
- if mapping:
- # Note that run.ref_id is currently the same as site.ref_id, but
- # this won't be the case in the future.
- self.redis.hset(f'site:{run.ref_id}:rec:{id}', mapping=mapping)
-
- if index == 0:
- # this is the site record, store it on the site object of the
- # database (as well as in the recs collection, for now).
- # TODO: convert to actual data types (which requires updating the mongo schema too)
- # TODO: FMU's might not have this data?
- name = f"{entity.get('dis', 'Test Case').replace('s:','')} in {entity.get('geoCity', 'Unknown City').replace('s:','')}"
- # there might be the case where the ref_id was added to the record during
- # a "checkin" but the rest of that is not know. So get or create the Site.
- site = Site(ref_id=run.ref_id)
- site.name = name
- site.haystack_raw = haystack_json
- site.dis = entity.get('dis')
- site.site = entity.get('site')
- site.area = entity.get('area')
- site.weather_ref = entity.get('weatherRef')
- site.tz = entity.get('tz')
- site.geo_city = entity.get('geoCity')
- site.geo_state = entity.get('geoState')
- site.geo_country = entity.get('geoCountry')
- site.geo_coord = entity.get('geoCoord')
- site.sim_status = entity.get('simStatus')
- site.sim_type = entity.get('simType')
- site.save()
-
- rec = Rec(ref_id=id, site=site).save()
- rec_instance = RecInstance(**entity)
- rec.rec = rec_instance
- rec.save()
-
def add_model(self, model_path: os.PathLike):
upload_id = str(uuid4())
model_path = Path(model_path)
diff --git a/alfalfa_worker/lib/testcase.py b/alfalfa_worker/lib/testcase.py
index d3b99c0e..62181995 100644
--- a/alfalfa_worker/lib/testcase.py
+++ b/alfalfa_worker/lib/testcase.py
@@ -86,7 +86,7 @@ def __init__(self, **kwargs):
self.u_store = copy.deepcopy(self.u)
# Set default options
self.options = self.fmu.simulate_options()
- self.options['CVode_options']['rtol'] = 1e-6
+ # self.options['CVode_options']['rtol'] = 1e-6
# Set default communication step
self.set_step(init_options['step'])
# Set initial simulation start
diff --git a/alfalfa_worker/lib/utils.py b/alfalfa_worker/lib/utils.py
index 96ce6a04..e20f5553 100644
--- a/alfalfa_worker/lib/utils.py
+++ b/alfalfa_worker/lib/utils.py
@@ -1,23 +1,6 @@
import os
import sys
-from datetime import datetime
-
-
-def process_datetime_string(dt, logger=None):
- """
- Check that datetime string has been correctly passed.
- Should be passed as: "%Y-%m-%d %H:%M:%S"
-
- :param str dt: datetime string
- :return: formatted time string
- """
- try:
- dt = datetime.strptime(dt, "%Y-%m-%d %H:%M:%S")
- return (dt.strftime("%Y-%m-%d %H:%M:%S"))
- except ValueError:
- if logger:
- logger.info("Invalid datetime string passed: {}".format(dt))
- sys.exit(1)
+import traceback
def rel_symlink(src, dst):
@@ -28,3 +11,24 @@ def rel_symlink(src, dst):
"""
src = os.path.relpath(src, os.path.dirname(dst))
os.symlink(src, dst)
+
+
+def exc_to_str():
+ tb = traceback.format_exception(*sys.exc_info())
+
+ return ''.join(tb)
+
+
+def to_bool(value: str):
+ false_strings = ["false", "no", "0"]
+ true_strings = ["true", "yes", "1"]
+ if isinstance(value, bool):
+ return value
+ if value is None:
+ return False
+ if isinstance(value, str):
+ if value.lower() in false_strings:
+ return False
+ elif value.lower() in true_strings:
+ return True
+ raise ValueError(f"Invalid string \"{value}\" provided for boolean conversion")
diff --git a/docker-compose.dev.yml b/docker-compose.dev.yml
index 8cd5b5f5..56655b20 100644
--- a/docker-compose.dev.yml
+++ b/docker-compose.dev.yml
@@ -5,7 +5,6 @@
# Usage:
# docker-compose -f docker-compose.yml -f docker-compose.dev.yml up --build
-version: "3.4"
services:
web: # main haystack application
container_name: alfalfa_web
@@ -16,32 +15,8 @@ services:
context: .
# The dev instance still needs works, so default to base for now
target: dev
- image: ${REGISTRY_BASE_URI}/web:${VERSION_TAG}
- ports:
- - target: 80
- published: 80
- protocol: tcp
- mode: host
- - "29043:29043"
environment:
- - AWS_ACCESS_KEY_ID
- - AWS_SECRET_ACCESS_KEY
- - GIT_COMMIT
- - JOB_QUEUE_URL
- - MONGO_DB_NAME
- - MONGO_URL
- NODE_ENV=development
- - REDIS_HOST
- - REGION
- - S3_BUCKET
- - S3_URL
- - S3_URL_EXTERNAL
- depends_on:
- - goaws
- - mc
- - mongo
- - redis
- - worker
volumes:
- ./alfalfa_web:/srv/alfalfa
# create volumes for the build and node_modules so that
@@ -56,29 +31,6 @@ services:
dockerfile: alfalfa_worker/Dockerfile
context: .
target: dev
- image: ${REGISTRY_BASE_URI}/worker:${VERSION_TAG}
- environment:
- - AWS_ACCESS_KEY_ID
- - AWS_SECRET_ACCESS_KEY
- - HISTORIAN_ENABLE
- - INFLUXDB_ADMIN_PASSWORD
- - INFLUXDB_ADMIN_USER
- - INFLUXDB_DB
- - INFLUXDB_HOST
- - JOB_QUEUE_URL
- - LOGLEVEL=INFO
- - MONGO_DB_NAME
- - MONGO_URL
- - NODE_ENV
- - REDIS_HOST
- - REGION
- - S3_BUCKET
- - S3_URL
- depends_on:
- - goaws
- - mc
- - mongo
- - redis
volumes:
- ./alfalfa_worker:/alfalfa/alfalfa_worker
- ./tests:/alfalfa/tests
diff --git a/docker-compose.yml b/docker-compose.yml
index 3251db73..7d556239 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -1,4 +1,3 @@
-version: "3.4"
services:
web: # main haystack application
container_name: alfalfa_web
@@ -16,7 +15,6 @@ services:
published: 80
protocol: tcp
mode: host
- - "29043:29043"
environment:
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
@@ -31,17 +29,10 @@ services:
- S3_URL
- S3_URL_EXTERNAL
depends_on:
- - goaws
- mc
- mongo
- redis
- worker
- # Provides a local queue, conforming to AWS Queue (SQS) API
- goaws:
- container_name: alfalfa_goaws
- image: pafortin/goaws:v0.3.1
- ports:
- - "4100:4100"
# Local implementation of s3
minio:
container_name: alfalfa_minio
@@ -96,7 +87,6 @@ services:
- S3_BUCKET
- S3_URL
depends_on:
- - goaws
- mc
- mongo
- redis
diff --git a/poetry.lock b/poetry.lock
index c334034f..85c87e37 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -1,4 +1,4 @@
-# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand.
+# This file is automatically @generated by Poetry 2.0.1 and should not be changed by hand.
[[package]]
name = "alfalfa-client"
@@ -6,35 +6,42 @@ version = "0.7.0"
description = "A standalone client for the NREL Alfalfa application"
optional = false
python-versions = ">=3.8"
-files = [
- {file = "alfalfa_client-0.7.0-py3-none-any.whl", hash = "sha256:47719e75b864c38a8de2c49ffa45abe55df0d4fdcbce2bdea1cde30b3bb81e8f"},
- {file = "alfalfa_client-0.7.0.tar.gz", hash = "sha256:934f1d7fedff626bb692df61fa4bc863e4cbdf40f2b919db028ccace618135a4"},
-]
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
+files = []
+develop = false
[package.dependencies]
-requests-toolbelt = ">=1.0,<1.1"
+requests-toolbelt = "~1.0"
+
+[package.source]
+type = "git"
+url = "https://github.com/NREL/alfalfa-client.git"
+reference = "enhance_file_operations"
+resolved_reference = "81ca5c63f0e3774fb8a5d38c8f6f3b56e6b7feb8"
[[package]]
name = "anyio"
-version = "4.4.0"
+version = "4.8.0"
description = "High level compatibility layer for multiple asynchronous event loop implementations"
optional = false
-python-versions = ">=3.8"
+python-versions = ">=3.9"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "anyio-4.4.0-py3-none-any.whl", hash = "sha256:c1b2d8f46a8a812513012e1107cb0e68c17159a7a594208005a57dc776e1bdc7"},
- {file = "anyio-4.4.0.tar.gz", hash = "sha256:5aadc6a1bbb7cdb0bede386cac5e2940f5e2ff3aa20277e991cf028e0585ce94"},
+ {file = "anyio-4.8.0-py3-none-any.whl", hash = "sha256:b5011f270ab5eb0abf13385f851315585cc37ef330dd88e27ec3d34d651fd47a"},
+ {file = "anyio-4.8.0.tar.gz", hash = "sha256:1d9fe889df5212298c0c0723fa20479d1b94883a2df44bd3897aa91083316f7a"},
]
[package.dependencies]
-exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""}
idna = ">=2.8"
sniffio = ">=1.1"
-typing-extensions = {version = ">=4.1", markers = "python_version < \"3.11\""}
+typing_extensions = {version = ">=4.5", markers = "python_version < \"3.13\""}
[package.extras]
-doc = ["Sphinx (>=7)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"]
-test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"]
-trio = ["trio (>=0.23)"]
+doc = ["Sphinx (>=7.4,<8.0)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx_rtd_theme"]
+test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "trustme", "truststore (>=0.9.1)", "uvloop (>=0.21)"]
+trio = ["trio (>=0.26.1)"]
[[package]]
name = "appnope"
@@ -42,6 +49,8 @@ version = "0.1.4"
description = "Disable App Nap on macOS >= 10.9"
optional = false
python-versions = ">=3.6"
+groups = ["dev"]
+markers = "python_version == \"3.11\" and platform_system == \"Darwin\" or python_version >= \"3.12\" and platform_system == \"Darwin\""
files = [
{file = "appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c"},
{file = "appnope-0.1.4.tar.gz", hash = "sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee"},
@@ -53,6 +62,8 @@ version = "23.1.0"
description = "Argon2 for Python"
optional = false
python-versions = ">=3.7"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "argon2_cffi-23.1.0-py3-none-any.whl", hash = "sha256:c670642b78ba29641818ab2e68bd4e6a78ba53b7eff7b4c3815ae16abf91c7ea"},
{file = "argon2_cffi-23.1.0.tar.gz", hash = "sha256:879c3e79a2729ce768ebb7d36d4609e3a78a4ca2ec3a9f12286ca057e3d0db08"},
@@ -73,6 +84,8 @@ version = "21.2.0"
description = "Low-level CFFI bindings for Argon2"
optional = false
python-versions = ">=3.6"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "argon2-cffi-bindings-21.2.0.tar.gz", hash = "sha256:bb89ceffa6c791807d1305ceb77dbfacc5aa499891d2c55661c6459651fc39e3"},
{file = "argon2_cffi_bindings-21.2.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ccb949252cb2ab3a08c02024acb77cfb179492d5701c7cbdbfd776124d4d2367"},
@@ -110,6 +123,8 @@ version = "1.3.0"
description = "Better dates & times for Python"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "arrow-1.3.0-py3-none-any.whl", hash = "sha256:c728b120ebc00eb84e01882a6f5e7927a53960aa990ce7dd2b10f39005a67f80"},
{file = "arrow-1.3.0.tar.gz", hash = "sha256:d4540617648cb5f895730f1ad8c82a65f2dad0166f57b75f3ca54759c4d67a85"},
@@ -125,21 +140,20 @@ test = ["dateparser (==1.*)", "pre-commit", "pytest", "pytest-cov", "pytest-mock
[[package]]
name = "asttokens"
-version = "2.4.1"
+version = "3.0.0"
description = "Annotate AST trees with source code positions"
optional = false
-python-versions = "*"
+python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "asttokens-2.4.1-py2.py3-none-any.whl", hash = "sha256:051ed49c3dcae8913ea7cd08e46a606dba30b79993209636c4875bc1d637bc24"},
- {file = "asttokens-2.4.1.tar.gz", hash = "sha256:b03869718ba9a6eb027e134bfdf69f38a236d681c83c160d510768af11254ba0"},
+ {file = "asttokens-3.0.0-py3-none-any.whl", hash = "sha256:e3078351a059199dd5138cb1c706e6430c05eff2ff136af5eb4790f9d28932e2"},
+ {file = "asttokens-3.0.0.tar.gz", hash = "sha256:0dcd8baa8d62b0c1d118b399b2ddba3c4aff271d0d7a9e0d4c1681c79035bbc7"},
]
-[package.dependencies]
-six = ">=1.12.0"
-
[package.extras]
-astroid = ["astroid (>=1,<2)", "astroid (>=2,<4)"]
-test = ["astroid (>=1,<2)", "astroid (>=2,<4)", "pytest"]
+astroid = ["astroid (>=2,<4)"]
+test = ["astroid (>=2,<4)", "pytest", "pytest-cov", "pytest-xdist"]
[[package]]
name = "async-lru"
@@ -147,40 +161,43 @@ version = "2.0.4"
description = "Simple LRU cache for asyncio"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "async-lru-2.0.4.tar.gz", hash = "sha256:b8a59a5df60805ff63220b2a0c5b5393da5521b113cd5465a44eb037d81a5627"},
{file = "async_lru-2.0.4-py3-none-any.whl", hash = "sha256:ff02944ce3c288c5be660c42dbcca0742b32c3b279d6dceda655190240b99224"},
]
-[package.dependencies]
-typing-extensions = {version = ">=4.0.0", markers = "python_version < \"3.11\""}
-
[[package]]
name = "async-timeout"
-version = "4.0.3"
+version = "5.0.1"
description = "Timeout context manager for asyncio programs"
optional = false
-python-versions = ">=3.7"
+python-versions = ">=3.8"
+groups = ["main"]
+markers = "python_version == \"3.11\" and python_full_version <= \"3.11.2\""
files = [
- {file = "async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f"},
- {file = "async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028"},
+ {file = "async_timeout-5.0.1-py3-none-any.whl", hash = "sha256:39e3809566ff85354557ec2398b55e096c8364bacac9405a7a1fa429e77fe76c"},
+ {file = "async_timeout-5.0.1.tar.gz", hash = "sha256:d9321a7a3d5a6a5e187e824d2fa0793ce379a202935782d555d6e9d2735677d3"},
]
[[package]]
name = "attrs"
-version = "24.2.0"
+version = "25.1.0"
description = "Classes Without Boilerplate"
optional = false
-python-versions = ">=3.7"
+python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2"},
- {file = "attrs-24.2.0.tar.gz", hash = "sha256:5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"},
+ {file = "attrs-25.1.0-py3-none-any.whl", hash = "sha256:c75a69e28a550a7e93789579c22aa26b0f5b83b75dc4e08fe092980051e1090a"},
+ {file = "attrs-25.1.0.tar.gz", hash = "sha256:1c97078a80c814273a76b2a298a932eb681c87415c11dee0a6921de7f1b02c3e"},
]
[package.extras]
benchmark = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-codspeed", "pytest-mypy-plugins", "pytest-xdist[psutil]"]
cov = ["cloudpickle", "coverage[toml] (>=5.3)", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"]
-dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"]
+dev = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pre-commit-uv", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"]
docs = ["cogapp", "furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier (<24.7)"]
tests = ["cloudpickle", "hypothesis", "mypy (>=1.11.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"]
tests-mypy = ["mypy (>=1.11.1)", "pytest-mypy-plugins"]
@@ -191,6 +208,8 @@ version = "2.0.4"
description = "A tool that automatically formats Python code to conform to the PEP 8 style guide"
optional = false
python-versions = ">=3.6"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "autopep8-2.0.4-py2.py3-none-any.whl", hash = "sha256:067959ca4a07b24dbd5345efa8325f5f58da4298dab0dde0443d5ed765de80cb"},
{file = "autopep8-2.0.4.tar.gz", hash = "sha256:2913064abd97b3419d1cc83ea71f042cb821f87e45b9c88cad5ad3c4ea87fe0c"},
@@ -198,49 +217,39 @@ files = [
[package.dependencies]
pycodestyle = ">=2.10.0"
-tomli = {version = "*", markers = "python_version < \"3.11\""}
[[package]]
name = "babel"
-version = "2.16.0"
+version = "2.17.0"
description = "Internationalization utilities"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "babel-2.16.0-py3-none-any.whl", hash = "sha256:368b5b98b37c06b7daf6696391c3240c938b37767d4584413e8438c5c435fa8b"},
- {file = "babel-2.16.0.tar.gz", hash = "sha256:d1f3554ca26605fe173f3de0c65f750f5a42f924499bf134de6423582298e316"},
+ {file = "babel-2.17.0-py3-none-any.whl", hash = "sha256:4d0b53093fdfb4b21c92b5213dba5a1b23885afa8383709427046b21c366e5f2"},
+ {file = "babel-2.17.0.tar.gz", hash = "sha256:0c54cffb19f690cdcc52a3b50bcbf71e07a808d1c80d549f2459b9d2cf0afb9d"},
]
-[package.dependencies]
-pytz = {version = ">=2015.7", markers = "python_version < \"3.9\""}
-
[package.extras]
-dev = ["freezegun (>=1.0,<2.0)", "pytest (>=6.0)", "pytest-cov"]
-
-[[package]]
-name = "backcall"
-version = "0.2.0"
-description = "Specifications for callback functions passed in to an API"
-optional = false
-python-versions = "*"
-files = [
- {file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"},
- {file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"},
-]
+dev = ["backports.zoneinfo", "freezegun (>=1.0,<2.0)", "jinja2 (>=3.0)", "pytest (>=6.0)", "pytest-cov", "pytz", "setuptools", "tzdata"]
[[package]]
name = "beautifulsoup4"
-version = "4.12.3"
+version = "4.13.1"
description = "Screen-scraping library"
optional = false
-python-versions = ">=3.6.0"
+python-versions = ">=3.7.0"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "beautifulsoup4-4.12.3-py3-none-any.whl", hash = "sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed"},
- {file = "beautifulsoup4-4.12.3.tar.gz", hash = "sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051"},
+ {file = "beautifulsoup4-4.13.1-py3-none-any.whl", hash = "sha256:72465267014897bb10ca749bb632bde6c2d20f3254afd5458544bd74e6c2e6d8"},
+ {file = "beautifulsoup4-4.13.1.tar.gz", hash = "sha256:741c8b6903a1e4ae8ba32b9c9ae7510dab7a197fdbadcf9fcdeb0891ef5ec66a"},
]
[package.dependencies]
soupsieve = ">1.2"
+typing-extensions = ">=4.0.0"
[package.extras]
cchardet = ["cchardet"]
@@ -251,21 +260,23 @@ lxml = ["lxml"]
[[package]]
name = "bleach"
-version = "6.1.0"
+version = "6.2.0"
description = "An easy safelist-based HTML-sanitizing tool."
optional = false
-python-versions = ">=3.8"
+python-versions = ">=3.9"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "bleach-6.1.0-py3-none-any.whl", hash = "sha256:3225f354cfc436b9789c66c4ee030194bee0568fbf9cbdad3bc8b5c26c5f12b6"},
- {file = "bleach-6.1.0.tar.gz", hash = "sha256:0a31f1837963c41d46bbf1331b8778e1308ea0791db03cc4e7357b97cf42a8fe"},
+ {file = "bleach-6.2.0-py3-none-any.whl", hash = "sha256:117d9c6097a7c3d22fd578fcd8d35ff1e125df6736f554da4e432fdd63f31e5e"},
+ {file = "bleach-6.2.0.tar.gz", hash = "sha256:123e894118b8a599fd80d3ec1a6d4cc7ce4e5882b1317a7e1ba69b56e95f991f"},
]
[package.dependencies]
-six = ">=1.9.0"
+tinycss2 = {version = ">=1.1.0,<1.5", optional = true, markers = "extra == \"css\""}
webencodings = "*"
[package.extras]
-css = ["tinycss2 (>=1.1.0,<1.3)"]
+css = ["tinycss2 (>=1.1.0,<1.5)"]
[[package]]
name = "boto3"
@@ -273,6 +284,8 @@ version = "1.26.165"
description = "The AWS SDK for Python"
optional = false
python-versions = ">= 3.7"
+groups = ["main"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "boto3-1.26.165-py3-none-any.whl", hash = "sha256:fa85b67147c8dc99b6e7c699fc086103f958f9677db934f70659e6e6a72a818c"},
{file = "boto3-1.26.165.tar.gz", hash = "sha256:9e7242b9059d937f34264125fecd844cb5e01acce6be093f6c44869fdf7c6e30"},
@@ -292,6 +305,8 @@ version = "1.29.165"
description = "Low-level, data-driven core of boto 3."
optional = false
python-versions = ">= 3.7"
+groups = ["main"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "botocore-1.29.165-py3-none-any.whl", hash = "sha256:6f35d59e230095aed7cd747604fe248fa384bebb7d09549077892f936a8ca3df"},
{file = "botocore-1.29.165.tar.gz", hash = "sha256:988b948be685006b43c4bbd8f5c0cb93e77c66deb70561994e0c5b31b5a67210"},
@@ -307,89 +322,93 @@ crt = ["awscrt (==0.16.9)"]
[[package]]
name = "certifi"
-version = "2024.7.4"
+version = "2024.12.14"
description = "Python package for providing Mozilla's CA Bundle."
optional = false
python-versions = ">=3.6"
+groups = ["main", "dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "certifi-2024.7.4-py3-none-any.whl", hash = "sha256:c198e21b1289c2ab85ee4e67bb4b4ef3ead0892059901a8d5b622f24a1101e90"},
- {file = "certifi-2024.7.4.tar.gz", hash = "sha256:5a1e7645bc0ec61a09e26c36f6106dd4cf40c6db3a1fb6352b0244e7fb057c7b"},
+ {file = "certifi-2024.12.14-py3-none-any.whl", hash = "sha256:1275f7a45be9464efc1173084eaa30f866fe2e47d389406136d332ed4967ec56"},
+ {file = "certifi-2024.12.14.tar.gz", hash = "sha256:b650d30f370c2b724812bee08008be0c4163b163ddaec3f2546c1caf65f191db"},
]
[[package]]
name = "cffi"
-version = "1.17.0"
+version = "1.17.1"
description = "Foreign Function Interface for Python calling C code."
optional = false
python-versions = ">=3.8"
-files = [
- {file = "cffi-1.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f9338cc05451f1942d0d8203ec2c346c830f8e86469903d5126c1f0a13a2bcbb"},
- {file = "cffi-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a0ce71725cacc9ebf839630772b07eeec220cbb5f03be1399e0457a1464f8e1a"},
- {file = "cffi-1.17.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c815270206f983309915a6844fe994b2fa47e5d05c4c4cef267c3b30e34dbe42"},
- {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6bdcd415ba87846fd317bee0774e412e8792832e7805938987e4ede1d13046d"},
- {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8a98748ed1a1df4ee1d6f927e151ed6c1a09d5ec21684de879c7ea6aa96f58f2"},
- {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0a048d4f6630113e54bb4b77e315e1ba32a5a31512c31a273807d0027a7e69ab"},
- {file = "cffi-1.17.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24aa705a5f5bd3a8bcfa4d123f03413de5d86e497435693b638cbffb7d5d8a1b"},
- {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:856bf0924d24e7f93b8aee12a3a1095c34085600aa805693fb7f5d1962393206"},
- {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:4304d4416ff032ed50ad6bb87416d802e67139e31c0bde4628f36a47a3164bfa"},
- {file = "cffi-1.17.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:331ad15c39c9fe9186ceaf87203a9ecf5ae0ba2538c9e898e3a6967e8ad3db6f"},
- {file = "cffi-1.17.0-cp310-cp310-win32.whl", hash = "sha256:669b29a9eca6146465cc574659058ed949748f0809a2582d1f1a324eb91054dc"},
- {file = "cffi-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:48b389b1fd5144603d61d752afd7167dfd205973a43151ae5045b35793232aa2"},
- {file = "cffi-1.17.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c5d97162c196ce54af6700949ddf9409e9833ef1003b4741c2b39ef46f1d9720"},
- {file = "cffi-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5ba5c243f4004c750836f81606a9fcb7841f8874ad8f3bf204ff5e56332b72b9"},
- {file = "cffi-1.17.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bb9333f58fc3a2296fb1d54576138d4cf5d496a2cc118422bd77835e6ae0b9cb"},
- {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:435a22d00ec7d7ea533db494da8581b05977f9c37338c80bc86314bec2619424"},
- {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1df34588123fcc88c872f5acb6f74ae59e9d182a2707097f9e28275ec26a12d"},
- {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df8bb0010fdd0a743b7542589223a2816bdde4d94bb5ad67884348fa2c1c67e8"},
- {file = "cffi-1.17.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8b5b9712783415695663bd463990e2f00c6750562e6ad1d28e072a611c5f2a6"},
- {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ffef8fd58a36fb5f1196919638f73dd3ae0db1a878982b27a9a5a176ede4ba91"},
- {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4e67d26532bfd8b7f7c05d5a766d6f437b362c1bf203a3a5ce3593a645e870b8"},
- {file = "cffi-1.17.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:45f7cd36186db767d803b1473b3c659d57a23b5fa491ad83c6d40f2af58e4dbb"},
- {file = "cffi-1.17.0-cp311-cp311-win32.whl", hash = "sha256:a9015f5b8af1bb6837a3fcb0cdf3b874fe3385ff6274e8b7925d81ccaec3c5c9"},
- {file = "cffi-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:b50aaac7d05c2c26dfd50c3321199f019ba76bb650e346a6ef3616306eed67b0"},
- {file = "cffi-1.17.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aec510255ce690d240f7cb23d7114f6b351c733a74c279a84def763660a2c3bc"},
- {file = "cffi-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2770bb0d5e3cc0e31e7318db06efcbcdb7b31bcb1a70086d3177692a02256f59"},
- {file = "cffi-1.17.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:db9a30ec064129d605d0f1aedc93e00894b9334ec74ba9c6bdd08147434b33eb"},
- {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a47eef975d2b8b721775a0fa286f50eab535b9d56c70a6e62842134cf7841195"},
- {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f3e0992f23bbb0be00a921eae5363329253c3b86287db27092461c887b791e5e"},
- {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6107e445faf057c118d5050560695e46d272e5301feffda3c41849641222a828"},
- {file = "cffi-1.17.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb862356ee9391dc5a0b3cbc00f416b48c1b9a52d252d898e5b7696a5f9fe150"},
- {file = "cffi-1.17.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c1c13185b90bbd3f8b5963cd8ce7ad4ff441924c31e23c975cb150e27c2bf67a"},
- {file = "cffi-1.17.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:17c6d6d3260c7f2d94f657e6872591fe8733872a86ed1345bda872cfc8c74885"},
- {file = "cffi-1.17.0-cp312-cp312-win32.whl", hash = "sha256:c3b8bd3133cd50f6b637bb4322822c94c5ce4bf0d724ed5ae70afce62187c492"},
- {file = "cffi-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:dca802c8db0720ce1c49cce1149ff7b06e91ba15fa84b1d59144fef1a1bc7ac2"},
- {file = "cffi-1.17.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6ce01337d23884b21c03869d2f68c5523d43174d4fc405490eb0091057943118"},
- {file = "cffi-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:cab2eba3830bf4f6d91e2d6718e0e1c14a2f5ad1af68a89d24ace0c6b17cced7"},
- {file = "cffi-1.17.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:14b9cbc8f7ac98a739558eb86fabc283d4d564dafed50216e7f7ee62d0d25377"},
- {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b00e7bcd71caa0282cbe3c90966f738e2db91e64092a877c3ff7f19a1628fdcb"},
- {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:41f4915e09218744d8bae14759f983e466ab69b178de38066f7579892ff2a555"},
- {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4760a68cab57bfaa628938e9c2971137e05ce48e762a9cb53b76c9b569f1204"},
- {file = "cffi-1.17.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:011aff3524d578a9412c8b3cfaa50f2c0bd78e03eb7af7aa5e0df59b158efb2f"},
- {file = "cffi-1.17.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:a003ac9edc22d99ae1286b0875c460351f4e101f8c9d9d2576e78d7e048f64e0"},
- {file = "cffi-1.17.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ef9528915df81b8f4c7612b19b8628214c65c9b7f74db2e34a646a0a2a0da2d4"},
- {file = "cffi-1.17.0-cp313-cp313-win32.whl", hash = "sha256:70d2aa9fb00cf52034feac4b913181a6e10356019b18ef89bc7c12a283bf5f5a"},
- {file = "cffi-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:b7b6ea9e36d32582cda3465f54c4b454f62f23cb083ebc7a94e2ca6ef011c3a7"},
- {file = "cffi-1.17.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:964823b2fc77b55355999ade496c54dde161c621cb1f6eac61dc30ed1b63cd4c"},
- {file = "cffi-1.17.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:516a405f174fd3b88829eabfe4bb296ac602d6a0f68e0d64d5ac9456194a5b7e"},
- {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dec6b307ce928e8e112a6bb9921a1cb00a0e14979bf28b98e084a4b8a742bd9b"},
- {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e4094c7b464cf0a858e75cd14b03509e84789abf7b79f8537e6a72152109c76e"},
- {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2404f3de742f47cb62d023f0ba7c5a916c9c653d5b368cc966382ae4e57da401"},
- {file = "cffi-1.17.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3aa9d43b02a0c681f0bfbc12d476d47b2b2b6a3f9287f11ee42989a268a1833c"},
- {file = "cffi-1.17.0-cp38-cp38-win32.whl", hash = "sha256:0bb15e7acf8ab35ca8b24b90af52c8b391690ef5c4aec3d31f38f0d37d2cc499"},
- {file = "cffi-1.17.0-cp38-cp38-win_amd64.whl", hash = "sha256:93a7350f6706b31f457c1457d3a3259ff9071a66f312ae64dc024f049055f72c"},
- {file = "cffi-1.17.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1a2ddbac59dc3716bc79f27906c010406155031a1c801410f1bafff17ea304d2"},
- {file = "cffi-1.17.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6327b572f5770293fc062a7ec04160e89741e8552bf1c358d1a23eba68166759"},
- {file = "cffi-1.17.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dbc183e7bef690c9abe5ea67b7b60fdbca81aa8da43468287dae7b5c046107d4"},
- {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5bdc0f1f610d067c70aa3737ed06e2726fd9d6f7bfee4a351f4c40b6831f4e82"},
- {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6d872186c1617d143969defeadac5a904e6e374183e07977eedef9c07c8953bf"},
- {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0d46ee4764b88b91f16661a8befc6bfb24806d885e27436fdc292ed7e6f6d058"},
- {file = "cffi-1.17.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f76a90c345796c01d85e6332e81cab6d70de83b829cf1d9762d0a3da59c7932"},
- {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0e60821d312f99d3e1569202518dddf10ae547e799d75aef3bca3a2d9e8ee693"},
- {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:eb09b82377233b902d4c3fbeeb7ad731cdab579c6c6fda1f763cd779139e47c3"},
- {file = "cffi-1.17.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:24658baf6224d8f280e827f0a50c46ad819ec8ba380a42448e24459daf809cf4"},
- {file = "cffi-1.17.0-cp39-cp39-win32.whl", hash = "sha256:0fdacad9e0d9fc23e519efd5ea24a70348305e8d7d85ecbb1a5fa66dc834e7fb"},
- {file = "cffi-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:7cbc78dc018596315d4e7841c8c3a7ae31cc4d638c9b627f87d52e8abaaf2d29"},
- {file = "cffi-1.17.0.tar.gz", hash = "sha256:f3157624b7558b914cb039fd1af735e5e8049a87c817cc215109ad1c8779df76"},
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
+files = [
+ {file = "cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14"},
+ {file = "cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67"},
+ {file = "cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382"},
+ {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702"},
+ {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3"},
+ {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6"},
+ {file = "cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17"},
+ {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8"},
+ {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e"},
+ {file = "cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be"},
+ {file = "cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c"},
+ {file = "cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15"},
+ {file = "cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401"},
+ {file = "cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf"},
+ {file = "cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4"},
+ {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41"},
+ {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1"},
+ {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6"},
+ {file = "cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d"},
+ {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6"},
+ {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f"},
+ {file = "cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b"},
+ {file = "cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655"},
+ {file = "cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0"},
+ {file = "cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4"},
+ {file = "cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c"},
+ {file = "cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36"},
+ {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5"},
+ {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff"},
+ {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99"},
+ {file = "cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93"},
+ {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3"},
+ {file = "cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8"},
+ {file = "cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65"},
+ {file = "cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903"},
+ {file = "cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e"},
+ {file = "cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2"},
+ {file = "cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3"},
+ {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683"},
+ {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5"},
+ {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4"},
+ {file = "cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd"},
+ {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed"},
+ {file = "cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9"},
+ {file = "cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d"},
+ {file = "cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a"},
+ {file = "cffi-1.17.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:636062ea65bd0195bc012fea9321aca499c0504409f413dc88af450b57ffd03b"},
+ {file = "cffi-1.17.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c7eac2ef9b63c79431bc4b25f1cd649d7f061a28808cbc6c47b534bd789ef964"},
+ {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e221cf152cff04059d011ee126477f0d9588303eb57e88923578ace7baad17f9"},
+ {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:31000ec67d4221a71bd3f67df918b1f88f676f1c3b535a7eb473255fdc0b83fc"},
+ {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6f17be4345073b0a7b8ea599688f692ac3ef23ce28e5df79c04de519dbc4912c"},
+ {file = "cffi-1.17.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2b1fac190ae3ebfe37b979cc1ce69c81f4e4fe5746bb401dca63a9062cdaf1"},
+ {file = "cffi-1.17.1-cp38-cp38-win32.whl", hash = "sha256:7596d6620d3fa590f677e9ee430df2958d2d6d6de2feeae5b20e82c00b76fbf8"},
+ {file = "cffi-1.17.1-cp38-cp38-win_amd64.whl", hash = "sha256:78122be759c3f8a014ce010908ae03364d00a1f81ab5c7f4a7a5120607ea56e1"},
+ {file = "cffi-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2ab587605f4ba0bf81dc0cb08a41bd1c0a5906bd59243d56bad7668a6fc6c16"},
+ {file = "cffi-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28b16024becceed8c6dfbc75629e27788d8a3f9030691a1dbf9821a128b22c36"},
+ {file = "cffi-1.17.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1d599671f396c4723d016dbddb72fe8e0397082b0a77a4fab8028923bec050e8"},
+ {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca74b8dbe6e8e8263c0ffd60277de77dcee6c837a3d0881d8c1ead7268c9e576"},
+ {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f7f5baafcc48261359e14bcd6d9bff6d4b28d9103847c9e136694cb0501aef87"},
+ {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98e3969bcff97cae1b2def8ba499ea3d6f31ddfdb7635374834cf89a1a08ecf0"},
+ {file = "cffi-1.17.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdf5ce3acdfd1661132f2a9c19cac174758dc2352bfe37d98aa7512c6b7178b3"},
+ {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9755e4345d1ec879e3849e62222a18c7174d65a6a92d5b346b1863912168b595"},
+ {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f1e22e8c4419538cb197e4dd60acc919d7696e5ef98ee4da4e01d3f8cfa4cc5a"},
+ {file = "cffi-1.17.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:c03e868a0b3bc35839ba98e74211ed2b05d2119be4e8a0f224fba9384f1fe02e"},
+ {file = "cffi-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e31ae45bc2e29f6b2abd0de1cc3b9d5205aa847cafaecb8af1476a609a2f6eb7"},
+ {file = "cffi-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d016c76bdd850f3c626af19b0542c9677ba156e4ee4fccfdd7848803533ef662"},
+ {file = "cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824"},
]
[package.dependencies]
@@ -401,6 +420,8 @@ version = "3.4.0"
description = "Validate configuration and produce human readable error messages."
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9"},
{file = "cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560"},
@@ -408,101 +429,105 @@ files = [
[[package]]
name = "charset-normalizer"
-version = "3.3.2"
+version = "3.4.1"
description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet."
optional = false
-python-versions = ">=3.7.0"
-files = [
- {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"},
- {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"},
- {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"},
- {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"},
- {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"},
- {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"},
- {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"},
- {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"},
+python-versions = ">=3.7"
+groups = ["main", "dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
+files = [
+ {file = "charset_normalizer-3.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:91b36a978b5ae0ee86c394f5a54d6ef44db1de0815eb43de826d41d21e4af3de"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7461baadb4dc00fd9e0acbe254e3d7d2112e7f92ced2adc96e54ef6501c5f176"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e218488cd232553829be0664c2292d3af2eeeb94b32bea483cf79ac6a694e037"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80ed5e856eb7f30115aaf94e4a08114ccc8813e6ed1b5efa74f9f82e8509858f"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b010a7a4fd316c3c484d482922d13044979e78d1861f0e0650423144c616a46a"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4532bff1b8421fd0a320463030c7520f56a79c9024a4e88f01c537316019005a"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d973f03c0cb71c5ed99037b870f2be986c3c05e63622c017ea9816881d2dd247"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:3a3bd0dcd373514dcec91c411ddb9632c0d7d92aed7093b8c3bbb6d69ca74408"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:d9c3cdf5390dcd29aa8056d13e8e99526cda0305acc038b96b30352aff5ff2bb"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:2bdfe3ac2e1bbe5b59a1a63721eb3b95fc9b6817ae4a46debbb4e11f6232428d"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:eab677309cdb30d047996b36d34caeda1dc91149e4fdca0b1a039b3f79d9a807"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-win32.whl", hash = "sha256:c0429126cf75e16c4f0ad00ee0eae4242dc652290f940152ca8c75c3a4b6ee8f"},
+ {file = "charset_normalizer-3.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:9f0b8b1c6d84c8034a44893aba5e767bf9c7a211e313a9605d9c617d7083829f"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8bfa33f4f2672964266e940dd22a195989ba31669bd84629f05fab3ef4e2d125"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:28bf57629c75e810b6ae989f03c0828d64d6b26a5e205535585f96093e405ed1"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f08ff5e948271dc7e18a35641d2f11a4cd8dfd5634f55228b691e62b37125eb3"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:234ac59ea147c59ee4da87a0c0f098e9c8d169f4dc2a159ef720f1a61bbe27cd"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd4ec41f914fa74ad1b8304bbc634b3de73d2a0889bd32076342a573e0779e00"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eea6ee1db730b3483adf394ea72f808b6e18cf3cb6454b4d86e04fa8c4327a12"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c96836c97b1238e9c9e3fe90844c947d5afbf4f4c92762679acfe19927d81d77"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4d86f7aff21ee58f26dcf5ae81a9addbd914115cdebcbb2217e4f0ed8982e146"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:09b5e6733cbd160dcc09589227187e242a30a49ca5cefa5a7edd3f9d19ed53fd"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:5777ee0881f9499ed0f71cc82cf873d9a0ca8af166dfa0af8ec4e675b7df48e6"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:237bdbe6159cff53b4f24f397d43c6336c6b0b42affbe857970cefbb620911c8"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-win32.whl", hash = "sha256:8417cb1f36cc0bc7eaba8ccb0e04d55f0ee52df06df3ad55259b9a323555fc8b"},
+ {file = "charset_normalizer-3.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:d7f50a1f8c450f3925cb367d011448c39239bb3eb4117c36a6d354794de4ce76"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:73d94b58ec7fecbc7366247d3b0b10a21681004153238750bb67bd9012414545"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dad3e487649f498dd991eeb901125411559b22e8d7ab25d3aeb1af367df5efd7"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c30197aa96e8eed02200a83fba2657b4c3acd0f0aa4bdc9f6c1af8e8962e0757"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2369eea1ee4a7610a860d88f268eb39b95cb588acd7235e02fd5a5601773d4fa"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc2722592d8998c870fa4e290c2eec2c1569b87fe58618e67d38b4665dfa680d"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffc9202a29ab3920fa812879e95a9e78b2465fd10be7fcbd042899695d75e616"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:804a4d582ba6e5b747c625bf1255e6b1507465494a40a2130978bda7b932c90b"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f55e69f030f7163dffe9fd0752b32f070566451afe180f99dbeeb81f511ad8d"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c4c3e6da02df6fa1410a7680bd3f63d4f710232d3139089536310d027950696a"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:5df196eb874dae23dcfb968c83d4f8fdccb333330fe1fc278ac5ceeb101003a9"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e358e64305fe12299a08e08978f51fc21fac060dcfcddd95453eabe5b93ed0e1"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-win32.whl", hash = "sha256:9b23ca7ef998bc739bf6ffc077c2116917eabcc901f88da1b9856b210ef63f35"},
+ {file = "charset_normalizer-3.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:6ff8a4a60c227ad87030d76e99cd1698345d4491638dfa6673027c48b3cd395f"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:aabfa34badd18f1da5ec1bc2715cadc8dca465868a4e73a0173466b688f29dda"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22e14b5d70560b8dd51ec22863f370d1e595ac3d024cb8ad7d308b4cd95f8313"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8436c508b408b82d87dc5f62496973a1805cd46727c34440b0d29d8a2f50a6c9"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2d074908e1aecee37a7635990b2c6d504cd4766c7bc9fc86d63f9c09af3fa11b"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:955f8851919303c92343d2f66165294848d57e9bba6cf6e3625485a70a038d11"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:44ecbf16649486d4aebafeaa7ec4c9fed8b88101f4dd612dcaf65d5e815f837f"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0924e81d3d5e70f8126529951dac65c1010cdf117bb75eb02dd12339b57749dd"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2967f74ad52c3b98de4c3b32e1a44e32975e008a9cd2a8cc8966d6a5218c5cb2"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c75cb2a3e389853835e84a2d8fb2b81a10645b503eca9bcb98df6b5a43eb8886"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:09b26ae6b1abf0d27570633b2b078a2a20419c99d66fb2823173d73f188ce601"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa88b843d6e211393a37219e6a1c1df99d35e8fd90446f1118f4216e307e48cd"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-win32.whl", hash = "sha256:eb8178fe3dba6450a3e024e95ac49ed3400e506fd4e9e5c32d30adda88cbd407"},
+ {file = "charset_normalizer-3.4.1-cp313-cp313-win_amd64.whl", hash = "sha256:b1ac5992a838106edb89654e0aebfc24f5848ae2547d22c2c3f66454daa11971"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f30bf9fd9be89ecb2360c7d94a711f00c09b976258846efe40db3d05828e8089"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:97f68b8d6831127e4787ad15e6757232e14e12060bec17091b85eb1486b91d8d"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7974a0b5ecd505609e3b19742b60cee7aa2aa2fb3151bc917e6e2646d7667dcf"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc54db6c8593ef7d4b2a331b58653356cf04f67c960f584edb7c3d8c97e8f39e"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:311f30128d7d333eebd7896965bfcfbd0065f1716ec92bd5638d7748eb6f936a"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_aarch64.whl", hash = "sha256:7d053096f67cd1241601111b698f5cad775f97ab25d81567d3f59219b5f1adbd"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_i686.whl", hash = "sha256:807f52c1f798eef6cf26beb819eeb8819b1622ddfeef9d0977a8502d4db6d534"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_ppc64le.whl", hash = "sha256:dccbe65bd2f7f7ec22c4ff99ed56faa1e9f785482b9bbd7c717e26fd723a1d1e"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_s390x.whl", hash = "sha256:2fb9bd477fdea8684f78791a6de97a953c51831ee2981f8e4f583ff3b9d9687e"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-musllinux_1_2_x86_64.whl", hash = "sha256:01732659ba9b5b873fc117534143e4feefecf3b2078b0a6a2e925271bb6f4cfa"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-win32.whl", hash = "sha256:7a4f97a081603d2050bfaffdefa5b02a9ec823f8348a572e39032caa8404a487"},
+ {file = "charset_normalizer-3.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:7b1bef6280950ee6c177b326508f86cad7ad4dff12454483b51d8b7d673a2c5d"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:ecddf25bee22fe4fe3737a399d0d177d72bc22be6913acfab364b40bce1ba83c"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c60ca7339acd497a55b0ea5d506b2a2612afb2826560416f6894e8b5770d4a9"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b7b2d86dd06bfc2ade3312a83a5c364c7ec2e3498f8734282c6c3d4b07b346b8"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dd78cfcda14a1ef52584dbb008f7ac81c1328c0f58184bf9a84c49c605002da6"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e27f48bcd0957c6d4cb9d6fa6b61d192d0b13d5ef563e5f2ae35feafc0d179c"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:01ad647cdd609225c5350561d084b42ddf732f4eeefe6e678765636791e78b9a"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:619a609aa74ae43d90ed2e89bdd784765de0a25ca761b93e196d938b8fd1dbbd"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:89149166622f4db9b4b6a449256291dc87a99ee53151c74cbd82a53c8c2f6ccd"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_ppc64le.whl", hash = "sha256:7709f51f5f7c853f0fb938bcd3bc59cdfdc5203635ffd18bf354f6967ea0f824"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_s390x.whl", hash = "sha256:345b0426edd4e18138d6528aed636de7a9ed169b4aaf9d61a8c19e39d26838ca"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0907f11d019260cdc3f94fbdb23ff9125f6b5d1039b76003b5b0ac9d6a6c9d5b"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-win32.whl", hash = "sha256:ea0d8d539afa5eb2728aa1932a988a9a7af94f18582ffae4bc10b3fbdad0626e"},
+ {file = "charset_normalizer-3.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:329ce159e82018d646c7ac45b01a430369d526569ec08516081727a20e9e4af4"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:b97e690a2118911e39b4042088092771b4ae3fc3aa86518f84b8cf6888dbdb41"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:78baa6d91634dfb69ec52a463534bc0df05dbd546209b79a3880a34487f4b84f"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a2bc9f351a75ef49d664206d51f8e5ede9da246602dc2d2726837620ea034b2"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:75832c08354f595c760a804588b9357d34ec00ba1c940c15e31e96d902093770"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0af291f4fe114be0280cdd29d533696a77b5b49cfde5467176ecab32353395c4"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0167ddc8ab6508fe81860a57dd472b2ef4060e8d378f0cc555707126830f2537"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:2a75d49014d118e4198bcee5ee0a6f25856b29b12dbf7cd012791f8a6cc5c496"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:363e2f92b0f0174b2f8238240a1a30142e3db7b957a5dd5689b0e75fb717cc78"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_ppc64le.whl", hash = "sha256:ab36c8eb7e454e34e60eb55ca5d241a5d18b2c6244f6827a30e451c42410b5f7"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_s390x.whl", hash = "sha256:4c0907b1928a36d5a998d72d64d8eaa7244989f7aaaf947500d3a800c83a3fd6"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:04432ad9479fa40ec0f387795ddad4437a2b50417c69fa275e212933519ff294"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-win32.whl", hash = "sha256:3bed14e9c89dcb10e8f3a29f9ccac4955aebe93c71ae803af79265c9ca5644c5"},
+ {file = "charset_normalizer-3.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:49402233c892a461407c512a19435d1ce275543138294f7ef013f0b63d5d3765"},
+ {file = "charset_normalizer-3.4.1-py3-none-any.whl", hash = "sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85"},
+ {file = "charset_normalizer-3.4.1.tar.gz", hash = "sha256:44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3"},
]
[[package]]
@@ -511,6 +536,8 @@ version = "0.4.6"
description = "Cross-platform colored terminal text."
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7"
+groups = ["dev"]
+markers = "python_version == \"3.11\" and sys_platform == \"win32\" or python_version >= \"3.12\" and sys_platform == \"win32\""
files = [
{file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"},
{file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"},
@@ -522,6 +549,8 @@ version = "0.2.2"
description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc."
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "comm-0.2.2-py3-none-any.whl", hash = "sha256:e6fb86cb70ff661ee8c9c14e7d36d6de3b4066f1441be4063df9c5009f0a64d3"},
{file = "comm-0.2.2.tar.gz", hash = "sha256:3fd7a84065306e07bea1773df6eb8282de51ba82f77c72f9c85716ab11fe980e"},
@@ -535,120 +564,115 @@ test = ["pytest"]
[[package]]
name = "coverage"
-version = "7.6.1"
+version = "7.6.10"
description = "Code coverage measurement for Python"
optional = false
-python-versions = ">=3.8"
-files = [
- {file = "coverage-7.6.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b06079abebbc0e89e6163b8e8f0e16270124c154dc6e4a47b413dd538859af16"},
- {file = "coverage-7.6.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cf4b19715bccd7ee27b6b120e7e9dd56037b9c0681dcc1adc9ba9db3d417fa36"},
- {file = "coverage-7.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61c0abb4c85b095a784ef23fdd4aede7a2628478e7baba7c5e3deba61070a02"},
- {file = "coverage-7.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fd21f6ae3f08b41004dfb433fa895d858f3f5979e7762d052b12aef444e29afc"},
- {file = "coverage-7.6.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f59d57baca39b32db42b83b2a7ba6f47ad9c394ec2076b084c3f029b7afca23"},
- {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a1ac0ae2b8bd743b88ed0502544847c3053d7171a3cff9228af618a068ed9c34"},
- {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e6a08c0be454c3b3beb105c0596ebdc2371fab6bb90c0c0297f4e58fd7e1012c"},
- {file = "coverage-7.6.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f5796e664fe802da4f57a168c85359a8fbf3eab5e55cd4e4569fbacecc903959"},
- {file = "coverage-7.6.1-cp310-cp310-win32.whl", hash = "sha256:7bb65125fcbef8d989fa1dd0e8a060999497629ca5b0efbca209588a73356232"},
- {file = "coverage-7.6.1-cp310-cp310-win_amd64.whl", hash = "sha256:3115a95daa9bdba70aea750db7b96b37259a81a709223c8448fa97727d546fe0"},
- {file = "coverage-7.6.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7dea0889685db8550f839fa202744652e87c60015029ce3f60e006f8c4462c93"},
- {file = "coverage-7.6.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ed37bd3c3b063412f7620464a9ac1314d33100329f39799255fb8d3027da50d3"},
- {file = "coverage-7.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d85f5e9a5f8b73e2350097c3756ef7e785f55bd71205defa0bfdaf96c31616ff"},
- {file = "coverage-7.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bc572be474cafb617672c43fe989d6e48d3c83af02ce8de73fff1c6bb3c198d"},
- {file = "coverage-7.6.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c0420b573964c760df9e9e86d1a9a622d0d27f417e1a949a8a66dd7bcee7bc6"},
- {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:1f4aa8219db826ce6be7099d559f8ec311549bfc4046f7f9fe9b5cea5c581c56"},
- {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:fc5a77d0c516700ebad189b587de289a20a78324bc54baee03dd486f0855d234"},
- {file = "coverage-7.6.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b48f312cca9621272ae49008c7f613337c53fadca647d6384cc129d2996d1133"},
- {file = "coverage-7.6.1-cp311-cp311-win32.whl", hash = "sha256:1125ca0e5fd475cbbba3bb67ae20bd2c23a98fac4e32412883f9bcbaa81c314c"},
- {file = "coverage-7.6.1-cp311-cp311-win_amd64.whl", hash = "sha256:8ae539519c4c040c5ffd0632784e21b2f03fc1340752af711f33e5be83a9d6c6"},
- {file = "coverage-7.6.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:95cae0efeb032af8458fc27d191f85d1717b1d4e49f7cb226cf526ff28179778"},
- {file = "coverage-7.6.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5621a9175cf9d0b0c84c2ef2b12e9f5f5071357c4d2ea6ca1cf01814f45d2391"},
- {file = "coverage-7.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:260933720fdcd75340e7dbe9060655aff3af1f0c5d20f46b57f262ab6c86a5e8"},
- {file = "coverage-7.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07e2ca0ad381b91350c0ed49d52699b625aab2b44b65e1b4e02fa9df0e92ad2d"},
- {file = "coverage-7.6.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44fee9975f04b33331cb8eb272827111efc8930cfd582e0320613263ca849ca"},
- {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:877abb17e6339d96bf08e7a622d05095e72b71f8afd8a9fefc82cf30ed944163"},
- {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:3e0cadcf6733c09154b461f1ca72d5416635e5e4ec4e536192180d34ec160f8a"},
- {file = "coverage-7.6.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c3c02d12f837d9683e5ab2f3d9844dc57655b92c74e286c262e0fc54213c216d"},
- {file = "coverage-7.6.1-cp312-cp312-win32.whl", hash = "sha256:e05882b70b87a18d937ca6768ff33cc3f72847cbc4de4491c8e73880766718e5"},
- {file = "coverage-7.6.1-cp312-cp312-win_amd64.whl", hash = "sha256:b5d7b556859dd85f3a541db6a4e0167b86e7273e1cdc973e5b175166bb634fdb"},
- {file = "coverage-7.6.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a4acd025ecc06185ba2b801f2de85546e0b8ac787cf9d3b06e7e2a69f925b106"},
- {file = "coverage-7.6.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:a6d3adcf24b624a7b778533480e32434a39ad8fa30c315208f6d3e5542aeb6e9"},
- {file = "coverage-7.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d0c212c49b6c10e6951362f7c6df3329f04c2b1c28499563d4035d964ab8e08c"},
- {file = "coverage-7.6.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e81d7a3e58882450ec4186ca59a3f20a5d4440f25b1cff6f0902ad890e6748a"},
- {file = "coverage-7.6.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78b260de9790fd81e69401c2dc8b17da47c8038176a79092a89cb2b7d945d060"},
- {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a78d169acd38300060b28d600344a803628c3fd585c912cacc9ea8790fe96862"},
- {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2c09f4ce52cb99dd7505cd0fc8e0e37c77b87f46bc9c1eb03fe3bc9991085388"},
- {file = "coverage-7.6.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6878ef48d4227aace338d88c48738a4258213cd7b74fd9a3d4d7582bb1d8a155"},
- {file = "coverage-7.6.1-cp313-cp313-win32.whl", hash = "sha256:44df346d5215a8c0e360307d46ffaabe0f5d3502c8a1cefd700b34baf31d411a"},
- {file = "coverage-7.6.1-cp313-cp313-win_amd64.whl", hash = "sha256:8284cf8c0dd272a247bc154eb6c95548722dce90d098c17a883ed36e67cdb129"},
- {file = "coverage-7.6.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:d3296782ca4eab572a1a4eca686d8bfb00226300dcefdf43faa25b5242ab8a3e"},
- {file = "coverage-7.6.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:502753043567491d3ff6d08629270127e0c31d4184c4c8d98f92c26f65019962"},
- {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6a89ecca80709d4076b95f89f308544ec8f7b4727e8a547913a35f16717856cb"},
- {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a318d68e92e80af8b00fa99609796fdbcdfef3629c77c6283566c6f02c6d6704"},
- {file = "coverage-7.6.1-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:13b0a73a0896988f053e4fbb7de6d93388e6dd292b0d87ee51d106f2c11b465b"},
- {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4421712dbfc5562150f7554f13dde997a2e932a6b5f352edcce948a815efee6f"},
- {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:166811d20dfea725e2e4baa71fffd6c968a958577848d2131f39b60043400223"},
- {file = "coverage-7.6.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:225667980479a17db1048cb2bf8bfb39b8e5be8f164b8f6628b64f78a72cf9d3"},
- {file = "coverage-7.6.1-cp313-cp313t-win32.whl", hash = "sha256:170d444ab405852903b7d04ea9ae9b98f98ab6d7e63e1115e82620807519797f"},
- {file = "coverage-7.6.1-cp313-cp313t-win_amd64.whl", hash = "sha256:b9f222de8cded79c49bf184bdbc06630d4c58eec9459b939b4a690c82ed05657"},
- {file = "coverage-7.6.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6db04803b6c7291985a761004e9060b2bca08da6d04f26a7f2294b8623a0c1a0"},
- {file = "coverage-7.6.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:f1adfc8ac319e1a348af294106bc6a8458a0f1633cc62a1446aebc30c5fa186a"},
- {file = "coverage-7.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a95324a9de9650a729239daea117df21f4b9868ce32e63f8b650ebe6cef5595b"},
- {file = "coverage-7.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b43c03669dc4618ec25270b06ecd3ee4fa94c7f9b3c14bae6571ca00ef98b0d3"},
- {file = "coverage-7.6.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8929543a7192c13d177b770008bc4e8119f2e1f881d563fc6b6305d2d0ebe9de"},
- {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:a09ece4a69cf399510c8ab25e0950d9cf2b42f7b3cb0374f95d2e2ff594478a6"},
- {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:9054a0754de38d9dbd01a46621636689124d666bad1936d76c0341f7d71bf569"},
- {file = "coverage-7.6.1-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0dbde0f4aa9a16fa4d754356a8f2e36296ff4d83994b2c9d8398aa32f222f989"},
- {file = "coverage-7.6.1-cp38-cp38-win32.whl", hash = "sha256:da511e6ad4f7323ee5702e6633085fb76c2f893aaf8ce4c51a0ba4fc07580ea7"},
- {file = "coverage-7.6.1-cp38-cp38-win_amd64.whl", hash = "sha256:3f1156e3e8f2872197af3840d8ad307a9dd18e615dc64d9ee41696f287c57ad8"},
- {file = "coverage-7.6.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:abd5fd0db5f4dc9289408aaf34908072f805ff7792632250dcb36dc591d24255"},
- {file = "coverage-7.6.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:547f45fa1a93154bd82050a7f3cddbc1a7a4dd2a9bf5cb7d06f4ae29fe94eaf8"},
- {file = "coverage-7.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:645786266c8f18a931b65bfcefdbf6952dd0dea98feee39bd188607a9d307ed2"},
- {file = "coverage-7.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9e0b2df163b8ed01d515807af24f63de04bebcecbd6c3bfeff88385789fdf75a"},
- {file = "coverage-7.6.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:609b06f178fe8e9f89ef676532760ec0b4deea15e9969bf754b37f7c40326dbc"},
- {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:702855feff378050ae4f741045e19a32d57d19f3e0676d589df0575008ea5004"},
- {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:2bdb062ea438f22d99cba0d7829c2ef0af1d768d1e4a4f528087224c90b132cb"},
- {file = "coverage-7.6.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:9c56863d44bd1c4fe2abb8a4d6f5371d197f1ac0ebdee542f07f35895fc07f36"},
- {file = "coverage-7.6.1-cp39-cp39-win32.whl", hash = "sha256:6e2cd258d7d927d09493c8df1ce9174ad01b381d4729a9d8d4e38670ca24774c"},
- {file = "coverage-7.6.1-cp39-cp39-win_amd64.whl", hash = "sha256:06a737c882bd26d0d6ee7269b20b12f14a8704807a01056c80bb881a4b2ce6ca"},
- {file = "coverage-7.6.1-pp38.pp39.pp310-none-any.whl", hash = "sha256:e9a6e0eb86070e8ccaedfbd9d38fec54864f3125ab95419970575b42af7541df"},
- {file = "coverage-7.6.1.tar.gz", hash = "sha256:953510dfb7b12ab69d20135a0662397f077c59b1e6379a768e97c59d852ee51d"},
+python-versions = ">=3.9"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
+files = [
+ {file = "coverage-7.6.10-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5c912978f7fbf47ef99cec50c4401340436d200d41d714c7a4766f377c5b7b78"},
+ {file = "coverage-7.6.10-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a01ec4af7dfeb96ff0078ad9a48810bb0cc8abcb0115180c6013a6b26237626c"},
+ {file = "coverage-7.6.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a3b204c11e2b2d883946fe1d97f89403aa1811df28ce0447439178cc7463448a"},
+ {file = "coverage-7.6.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:32ee6d8491fcfc82652a37109f69dee9a830e9379166cb73c16d8dc5c2915165"},
+ {file = "coverage-7.6.10-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:675cefc4c06e3b4c876b85bfb7c59c5e2218167bbd4da5075cbe3b5790a28988"},
+ {file = "coverage-7.6.10-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f4f620668dbc6f5e909a0946a877310fb3d57aea8198bde792aae369ee1c23b5"},
+ {file = "coverage-7.6.10-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:4eea95ef275de7abaef630c9b2c002ffbc01918b726a39f5a4353916ec72d2f3"},
+ {file = "coverage-7.6.10-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:e2f0280519e42b0a17550072861e0bc8a80a0870de260f9796157d3fca2733c5"},
+ {file = "coverage-7.6.10-cp310-cp310-win32.whl", hash = "sha256:bc67deb76bc3717f22e765ab3e07ee9c7a5e26b9019ca19a3b063d9f4b874244"},
+ {file = "coverage-7.6.10-cp310-cp310-win_amd64.whl", hash = "sha256:0f460286cb94036455e703c66988851d970fdfd8acc2a1122ab7f4f904e4029e"},
+ {file = "coverage-7.6.10-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ea3c8f04b3e4af80e17bab607c386a830ffc2fb88a5484e1df756478cf70d1d3"},
+ {file = "coverage-7.6.10-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:507a20fc863cae1d5720797761b42d2d87a04b3e5aeb682ef3b7332e90598f43"},
+ {file = "coverage-7.6.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d37a84878285b903c0fe21ac8794c6dab58150e9359f1aaebbeddd6412d53132"},
+ {file = "coverage-7.6.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a534738b47b0de1995f85f582d983d94031dffb48ab86c95bdf88dc62212142f"},
+ {file = "coverage-7.6.10-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0d7a2bf79378d8fb8afaa994f91bfd8215134f8631d27eba3e0e2c13546ce994"},
+ {file = "coverage-7.6.10-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6713ba4b4ebc330f3def51df1d5d38fad60b66720948112f114968feb52d3f99"},
+ {file = "coverage-7.6.10-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:ab32947f481f7e8c763fa2c92fd9f44eeb143e7610c4ca9ecd6a36adab4081bd"},
+ {file = "coverage-7.6.10-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7bbd8c8f1b115b892e34ba66a097b915d3871db7ce0e6b9901f462ff3a975377"},
+ {file = "coverage-7.6.10-cp311-cp311-win32.whl", hash = "sha256:299e91b274c5c9cdb64cbdf1b3e4a8fe538a7a86acdd08fae52301b28ba297f8"},
+ {file = "coverage-7.6.10-cp311-cp311-win_amd64.whl", hash = "sha256:489a01f94aa581dbd961f306e37d75d4ba16104bbfa2b0edb21d29b73be83609"},
+ {file = "coverage-7.6.10-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:27c6e64726b307782fa5cbe531e7647aee385a29b2107cd87ba7c0105a5d3853"},
+ {file = "coverage-7.6.10-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c56e097019e72c373bae32d946ecf9858fda841e48d82df7e81c63ac25554078"},
+ {file = "coverage-7.6.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c7827a5bc7bdb197b9e066cdf650b2887597ad124dd99777332776f7b7c7d0d0"},
+ {file = "coverage-7.6.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:204a8238afe787323a8b47d8be4df89772d5c1e4651b9ffa808552bdf20e1d50"},
+ {file = "coverage-7.6.10-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e67926f51821b8e9deb6426ff3164870976fe414d033ad90ea75e7ed0c2e5022"},
+ {file = "coverage-7.6.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e78b270eadb5702938c3dbe9367f878249b5ef9a2fcc5360ac7bff694310d17b"},
+ {file = "coverage-7.6.10-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:714f942b9c15c3a7a5fe6876ce30af831c2ad4ce902410b7466b662358c852c0"},
+ {file = "coverage-7.6.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:abb02e2f5a3187b2ac4cd46b8ced85a0858230b577ccb2c62c81482ca7d18852"},
+ {file = "coverage-7.6.10-cp312-cp312-win32.whl", hash = "sha256:55b201b97286cf61f5e76063f9e2a1d8d2972fc2fcfd2c1272530172fd28c359"},
+ {file = "coverage-7.6.10-cp312-cp312-win_amd64.whl", hash = "sha256:e4ae5ac5e0d1e4edfc9b4b57b4cbecd5bc266a6915c500f358817a8496739247"},
+ {file = "coverage-7.6.10-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:05fca8ba6a87aabdd2d30d0b6c838b50510b56cdcfc604d40760dae7153b73d9"},
+ {file = "coverage-7.6.10-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9e80eba8801c386f72e0712a0453431259c45c3249f0009aff537a517b52942b"},
+ {file = "coverage-7.6.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a372c89c939d57abe09e08c0578c1d212e7a678135d53aa16eec4430adc5e690"},
+ {file = "coverage-7.6.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ec22b5e7fe7a0fa8509181c4aac1db48f3dd4d3a566131b313d1efc102892c18"},
+ {file = "coverage-7.6.10-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26bcf5c4df41cad1b19c84af71c22cbc9ea9a547fc973f1f2cc9a290002c8b3c"},
+ {file = "coverage-7.6.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:4e4630c26b6084c9b3cb53b15bd488f30ceb50b73c35c5ad7871b869cb7365fd"},
+ {file = "coverage-7.6.10-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2396e8116db77789f819d2bc8a7e200232b7a282c66e0ae2d2cd84581a89757e"},
+ {file = "coverage-7.6.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:79109c70cc0882e4d2d002fe69a24aa504dec0cc17169b3c7f41a1d341a73694"},
+ {file = "coverage-7.6.10-cp313-cp313-win32.whl", hash = "sha256:9e1747bab246d6ff2c4f28b4d186b205adced9f7bd9dc362051cc37c4a0c7bd6"},
+ {file = "coverage-7.6.10-cp313-cp313-win_amd64.whl", hash = "sha256:254f1a3b1eef5f7ed23ef265eaa89c65c8c5b6b257327c149db1ca9d4a35f25e"},
+ {file = "coverage-7.6.10-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:2ccf240eb719789cedbb9fd1338055de2761088202a9a0b73032857e53f612fe"},
+ {file = "coverage-7.6.10-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:0c807ca74d5a5e64427c8805de15b9ca140bba13572d6d74e262f46f50b13273"},
+ {file = "coverage-7.6.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2bcfa46d7709b5a7ffe089075799b902020b62e7ee56ebaed2f4bdac04c508d8"},
+ {file = "coverage-7.6.10-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4e0de1e902669dccbf80b0415fb6b43d27edca2fbd48c74da378923b05316098"},
+ {file = "coverage-7.6.10-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f7b444c42bbc533aaae6b5a2166fd1a797cdb5eb58ee51a92bee1eb94a1e1cb"},
+ {file = "coverage-7.6.10-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:b330368cb99ef72fcd2dc3ed260adf67b31499584dc8a20225e85bfe6f6cfed0"},
+ {file = "coverage-7.6.10-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:9a7cfb50515f87f7ed30bc882f68812fd98bc2852957df69f3003d22a2aa0abf"},
+ {file = "coverage-7.6.10-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:6f93531882a5f68c28090f901b1d135de61b56331bba82028489bc51bdd818d2"},
+ {file = "coverage-7.6.10-cp313-cp313t-win32.whl", hash = "sha256:89d76815a26197c858f53c7f6a656686ec392b25991f9e409bcef020cd532312"},
+ {file = "coverage-7.6.10-cp313-cp313t-win_amd64.whl", hash = "sha256:54a5f0f43950a36312155dae55c505a76cd7f2b12d26abeebbe7a0b36dbc868d"},
+ {file = "coverage-7.6.10-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:656c82b8a0ead8bba147de9a89bda95064874c91a3ed43a00e687f23cc19d53a"},
+ {file = "coverage-7.6.10-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ccc2b70a7ed475c68ceb548bf69cec1e27305c1c2606a5eb7c3afff56a1b3b27"},
+ {file = "coverage-7.6.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5e37dc41d57ceba70956fa2fc5b63c26dba863c946ace9705f8eca99daecdc4"},
+ {file = "coverage-7.6.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0aa9692b4fdd83a4647eeb7db46410ea1322b5ed94cd1715ef09d1d5922ba87f"},
+ {file = "coverage-7.6.10-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa744da1820678b475e4ba3dfd994c321c5b13381d1041fe9c608620e6676e25"},
+ {file = "coverage-7.6.10-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:c0b1818063dc9e9d838c09e3a473c1422f517889436dd980f5d721899e66f315"},
+ {file = "coverage-7.6.10-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:59af35558ba08b758aec4d56182b222976330ef8d2feacbb93964f576a7e7a90"},
+ {file = "coverage-7.6.10-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7ed2f37cfce1ce101e6dffdfd1c99e729dd2ffc291d02d3e2d0af8b53d13840d"},
+ {file = "coverage-7.6.10-cp39-cp39-win32.whl", hash = "sha256:4bcc276261505d82f0ad426870c3b12cb177752834a633e737ec5ee79bbdff18"},
+ {file = "coverage-7.6.10-cp39-cp39-win_amd64.whl", hash = "sha256:457574f4599d2b00f7f637a0700a6422243b3565509457b2dbd3f50703e11f59"},
+ {file = "coverage-7.6.10-pp39.pp310-none-any.whl", hash = "sha256:fd34e7b3405f0cc7ab03d54a334c17a9e802897580d964bd8c2001f4b9fd488f"},
+ {file = "coverage-7.6.10.tar.gz", hash = "sha256:7fb105327c8f8f0682e29843e2ff96af9dcbe5bab8eeb4b398c6a33a16d80a23"},
]
-[package.dependencies]
-tomli = {version = "*", optional = true, markers = "python_full_version <= \"3.11.0a6\" and extra == \"toml\""}
-
[package.extras]
toml = ["tomli"]
[[package]]
name = "debugpy"
-version = "1.8.5"
+version = "1.8.12"
description = "An implementation of the Debug Adapter Protocol for Python"
optional = false
python-versions = ">=3.8"
-files = [
- {file = "debugpy-1.8.5-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:7e4d594367d6407a120b76bdaa03886e9eb652c05ba7f87e37418426ad2079f7"},
- {file = "debugpy-1.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4413b7a3ede757dc33a273a17d685ea2b0c09dbd312cc03f5534a0fd4d40750a"},
- {file = "debugpy-1.8.5-cp310-cp310-win32.whl", hash = "sha256:dd3811bd63632bb25eda6bd73bea8e0521794cda02be41fa3160eb26fc29e7ed"},
- {file = "debugpy-1.8.5-cp310-cp310-win_amd64.whl", hash = "sha256:b78c1250441ce893cb5035dd6f5fc12db968cc07f91cc06996b2087f7cefdd8e"},
- {file = "debugpy-1.8.5-cp311-cp311-macosx_12_0_universal2.whl", hash = "sha256:606bccba19f7188b6ea9579c8a4f5a5364ecd0bf5a0659c8a5d0e10dcee3032a"},
- {file = "debugpy-1.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db9fb642938a7a609a6c865c32ecd0d795d56c1aaa7a7a5722d77855d5e77f2b"},
- {file = "debugpy-1.8.5-cp311-cp311-win32.whl", hash = "sha256:4fbb3b39ae1aa3e5ad578f37a48a7a303dad9a3d018d369bc9ec629c1cfa7408"},
- {file = "debugpy-1.8.5-cp311-cp311-win_amd64.whl", hash = "sha256:345d6a0206e81eb68b1493ce2fbffd57c3088e2ce4b46592077a943d2b968ca3"},
- {file = "debugpy-1.8.5-cp312-cp312-macosx_12_0_universal2.whl", hash = "sha256:5b5c770977c8ec6c40c60d6f58cacc7f7fe5a45960363d6974ddb9b62dbee156"},
- {file = "debugpy-1.8.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0a65b00b7cdd2ee0c2cf4c7335fef31e15f1b7056c7fdbce9e90193e1a8c8cb"},
- {file = "debugpy-1.8.5-cp312-cp312-win32.whl", hash = "sha256:c9f7c15ea1da18d2fcc2709e9f3d6de98b69a5b0fff1807fb80bc55f906691f7"},
- {file = "debugpy-1.8.5-cp312-cp312-win_amd64.whl", hash = "sha256:28ced650c974aaf179231668a293ecd5c63c0a671ae6d56b8795ecc5d2f48d3c"},
- {file = "debugpy-1.8.5-cp38-cp38-macosx_12_0_x86_64.whl", hash = "sha256:3df6692351172a42af7558daa5019651f898fc67450bf091335aa8a18fbf6f3a"},
- {file = "debugpy-1.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1cd04a73eb2769eb0bfe43f5bfde1215c5923d6924b9b90f94d15f207a402226"},
- {file = "debugpy-1.8.5-cp38-cp38-win32.whl", hash = "sha256:8f913ee8e9fcf9d38a751f56e6de12a297ae7832749d35de26d960f14280750a"},
- {file = "debugpy-1.8.5-cp38-cp38-win_amd64.whl", hash = "sha256:a697beca97dad3780b89a7fb525d5e79f33821a8bc0c06faf1f1289e549743cf"},
- {file = "debugpy-1.8.5-cp39-cp39-macosx_12_0_x86_64.whl", hash = "sha256:0a1029a2869d01cb777216af8c53cda0476875ef02a2b6ff8b2f2c9a4b04176c"},
- {file = "debugpy-1.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e84c276489e141ed0b93b0af648eef891546143d6a48f610945416453a8ad406"},
- {file = "debugpy-1.8.5-cp39-cp39-win32.whl", hash = "sha256:ad84b7cde7fd96cf6eea34ff6c4a1b7887e0fe2ea46e099e53234856f9d99a34"},
- {file = "debugpy-1.8.5-cp39-cp39-win_amd64.whl", hash = "sha256:7b0fe36ed9d26cb6836b0a51453653f8f2e347ba7348f2bbfe76bfeb670bfb1c"},
- {file = "debugpy-1.8.5-py2.py3-none-any.whl", hash = "sha256:55919dce65b471eff25901acf82d328bbd5b833526b6c1364bd5133754777a44"},
- {file = "debugpy-1.8.5.zip", hash = "sha256:b2112cfeb34b4507399d298fe7023a16656fc553ed5246536060ca7bd0e668d0"},
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
+files = [
+ {file = "debugpy-1.8.12-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:a2ba7ffe58efeae5b8fad1165357edfe01464f9aef25e814e891ec690e7dd82a"},
+ {file = "debugpy-1.8.12-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbbd4149c4fc5e7d508ece083e78c17442ee13b0e69bfa6bd63003e486770f45"},
+ {file = "debugpy-1.8.12-cp310-cp310-win32.whl", hash = "sha256:b202f591204023b3ce62ff9a47baa555dc00bb092219abf5caf0e3718ac20e7c"},
+ {file = "debugpy-1.8.12-cp310-cp310-win_amd64.whl", hash = "sha256:9649eced17a98ce816756ce50433b2dd85dfa7bc92ceb60579d68c053f98dff9"},
+ {file = "debugpy-1.8.12-cp311-cp311-macosx_14_0_universal2.whl", hash = "sha256:36f4829839ef0afdfdd208bb54f4c3d0eea86106d719811681a8627ae2e53dd5"},
+ {file = "debugpy-1.8.12-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a28ed481d530e3138553be60991d2d61103ce6da254e51547b79549675f539b7"},
+ {file = "debugpy-1.8.12-cp311-cp311-win32.whl", hash = "sha256:4ad9a94d8f5c9b954e0e3b137cc64ef3f579d0df3c3698fe9c3734ee397e4abb"},
+ {file = "debugpy-1.8.12-cp311-cp311-win_amd64.whl", hash = "sha256:4703575b78dd697b294f8c65588dc86874ed787b7348c65da70cfc885efdf1e1"},
+ {file = "debugpy-1.8.12-cp312-cp312-macosx_14_0_universal2.whl", hash = "sha256:7e94b643b19e8feb5215fa508aee531387494bf668b2eca27fa769ea11d9f498"},
+ {file = "debugpy-1.8.12-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:086b32e233e89a2740c1615c2f775c34ae951508b28b308681dbbb87bba97d06"},
+ {file = "debugpy-1.8.12-cp312-cp312-win32.whl", hash = "sha256:2ae5df899732a6051b49ea2632a9ea67f929604fd2b036613a9f12bc3163b92d"},
+ {file = "debugpy-1.8.12-cp312-cp312-win_amd64.whl", hash = "sha256:39dfbb6fa09f12fae32639e3286112fc35ae976114f1f3d37375f3130a820969"},
+ {file = "debugpy-1.8.12-cp313-cp313-macosx_14_0_universal2.whl", hash = "sha256:696d8ae4dff4cbd06bf6b10d671e088b66669f110c7c4e18a44c43cf75ce966f"},
+ {file = "debugpy-1.8.12-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:898fba72b81a654e74412a67c7e0a81e89723cfe2a3ea6fcd3feaa3395138ca9"},
+ {file = "debugpy-1.8.12-cp313-cp313-win32.whl", hash = "sha256:22a11c493c70413a01ed03f01c3c3a2fc4478fc6ee186e340487b2edcd6f4180"},
+ {file = "debugpy-1.8.12-cp313-cp313-win_amd64.whl", hash = "sha256:fdb3c6d342825ea10b90e43d7f20f01535a72b3a1997850c0c3cefa5c27a4a2c"},
+ {file = "debugpy-1.8.12-cp38-cp38-macosx_14_0_x86_64.whl", hash = "sha256:b0232cd42506d0c94f9328aaf0d1d0785f90f87ae72d9759df7e5051be039738"},
+ {file = "debugpy-1.8.12-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9af40506a59450f1315168d47a970db1a65aaab5df3833ac389d2899a5d63b3f"},
+ {file = "debugpy-1.8.12-cp38-cp38-win32.whl", hash = "sha256:5cc45235fefac57f52680902b7d197fb2f3650112379a6fa9aa1b1c1d3ed3f02"},
+ {file = "debugpy-1.8.12-cp38-cp38-win_amd64.whl", hash = "sha256:557cc55b51ab2f3371e238804ffc8510b6ef087673303890f57a24195d096e61"},
+ {file = "debugpy-1.8.12-cp39-cp39-macosx_14_0_x86_64.whl", hash = "sha256:b5c6c967d02fee30e157ab5227706f965d5c37679c687b1e7bbc5d9e7128bd41"},
+ {file = "debugpy-1.8.12-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88a77f422f31f170c4b7e9ca58eae2a6c8e04da54121900651dfa8e66c29901a"},
+ {file = "debugpy-1.8.12-cp39-cp39-win32.whl", hash = "sha256:a4042edef80364239f5b7b5764e55fd3ffd40c32cf6753da9bda4ff0ac466018"},
+ {file = "debugpy-1.8.12-cp39-cp39-win_amd64.whl", hash = "sha256:f30b03b0f27608a0b26c75f0bb8a880c752c0e0b01090551b9d87c7d783e2069"},
+ {file = "debugpy-1.8.12-py2.py3-none-any.whl", hash = "sha256:274b6a2040349b5c9864e475284bce5bb062e63dce368a394b8cc865ae3b00c6"},
+ {file = "debugpy-1.8.12.tar.gz", hash = "sha256:646530b04f45c830ceae8e491ca1c9320a2d2f0efea3141487c82130aba70dce"},
]
[[package]]
@@ -657,6 +681,8 @@ version = "5.1.1"
description = "Decorators for Humans"
optional = false
python-versions = ">=3.5"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"},
{file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"},
@@ -668,6 +694,8 @@ version = "0.7.1"
description = "XML bomb protection for Python stdlib modules"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61"},
{file = "defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69"},
@@ -675,58 +703,50 @@ files = [
[[package]]
name = "distlib"
-version = "0.3.8"
+version = "0.3.9"
description = "Distribution utilities"
optional = false
python-versions = "*"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "distlib-0.3.8-py2.py3-none-any.whl", hash = "sha256:034db59a0b96f8ca18035f36290806a9a6e6bd9d1ff91e45a7f172eb17e51784"},
- {file = "distlib-0.3.8.tar.gz", hash = "sha256:1530ea13e350031b6312d8580ddb6b27a104275a31106523b8f123787f494f64"},
+ {file = "distlib-0.3.9-py2.py3-none-any.whl", hash = "sha256:47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87"},
+ {file = "distlib-0.3.9.tar.gz", hash = "sha256:a60f20dea646b8a33f3e7772f74dc0b2d0772d2837ee1342a00645c81edf9403"},
]
[[package]]
name = "dnspython"
-version = "2.6.1"
+version = "2.7.0"
description = "DNS toolkit"
optional = false
-python-versions = ">=3.8"
+python-versions = ">=3.9"
+groups = ["main"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "dnspython-2.6.1-py3-none-any.whl", hash = "sha256:5ef3b9680161f6fa89daf8ad451b5f1a33b18ae8a1c6778cdf4b43f08c0a6e50"},
- {file = "dnspython-2.6.1.tar.gz", hash = "sha256:e8f0f9c23a7b7cb99ded64e6c3a6f3e701d78f50c55e002b839dea7225cff7cc"},
+ {file = "dnspython-2.7.0-py3-none-any.whl", hash = "sha256:b4c34b7d10b51bcc3a5071e7b8dee77939f1e878477eeecc965e9835f63c6c86"},
+ {file = "dnspython-2.7.0.tar.gz", hash = "sha256:ce9c432eda0dc91cf618a5cedf1a4e142651196bbcd2c80e89ed5a907e5cfaf1"},
]
[package.extras]
-dev = ["black (>=23.1.0)", "coverage (>=7.0)", "flake8 (>=7)", "mypy (>=1.8)", "pylint (>=3)", "pytest (>=7.4)", "pytest-cov (>=4.1.0)", "sphinx (>=7.2.0)", "twine (>=4.0.0)", "wheel (>=0.42.0)"]
-dnssec = ["cryptography (>=41)"]
+dev = ["black (>=23.1.0)", "coverage (>=7.0)", "flake8 (>=7)", "hypercorn (>=0.16.0)", "mypy (>=1.8)", "pylint (>=3)", "pytest (>=7.4)", "pytest-cov (>=4.1.0)", "quart-trio (>=0.11.0)", "sphinx (>=7.2.0)", "sphinx-rtd-theme (>=2.0.0)", "twine (>=4.0.0)", "wheel (>=0.42.0)"]
+dnssec = ["cryptography (>=43)"]
doh = ["h2 (>=4.1.0)", "httpcore (>=1.0.0)", "httpx (>=0.26.0)"]
-doq = ["aioquic (>=0.9.25)"]
-idna = ["idna (>=3.6)"]
+doq = ["aioquic (>=1.0.0)"]
+idna = ["idna (>=3.7)"]
trio = ["trio (>=0.23)"]
wmi = ["wmi (>=1.5.1)"]
-[[package]]
-name = "exceptiongroup"
-version = "1.2.2"
-description = "Backport of PEP 654 (exception groups)"
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b"},
- {file = "exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc"},
-]
-
-[package.extras]
-test = ["pytest (>=6)"]
-
[[package]]
name = "executing"
-version = "2.0.1"
+version = "2.2.0"
description = "Get the currently executing AST node of a frame, and other information"
optional = false
-python-versions = ">=3.5"
+python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "executing-2.0.1-py2.py3-none-any.whl", hash = "sha256:eac49ca94516ccc753f9fb5ce82603156e590b27525a8bc32cce8ae302eb61bc"},
- {file = "executing-2.0.1.tar.gz", hash = "sha256:35afe2ce3affba8ee97f2d69927fa823b08b472b7b994e36a52a964b93d16147"},
+ {file = "executing-2.2.0-py2.py3-none-any.whl", hash = "sha256:11387150cad388d62750327a53d3339fad4888b39a6fe233c3afbb54ecffd3aa"},
+ {file = "executing-2.2.0.tar.gz", hash = "sha256:5d108c028108fe2551d1a7b2e8b713341e2cb4fc0aa7dcf966fa4327a5226755"},
]
[package.extras]
@@ -734,13 +754,15 @@ tests = ["asttokens (>=2.1.0)", "coverage", "coverage-enable-subprocess", "ipyth
[[package]]
name = "fastjsonschema"
-version = "2.20.0"
+version = "2.21.1"
description = "Fastest Python implementation of JSON schema"
optional = false
python-versions = "*"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "fastjsonschema-2.20.0-py3-none-any.whl", hash = "sha256:5875f0b0fa7a0043a91e93a9b8f793bcbbba9691e7fd83dca95c28ba26d21f0a"},
- {file = "fastjsonschema-2.20.0.tar.gz", hash = "sha256:3d48fc5300ee96f5d116f10fe6f28d938e6008f59a6a025c2649475b87f76a23"},
+ {file = "fastjsonschema-2.21.1-py3-none-any.whl", hash = "sha256:c9e5b7e908310918cf494a434eeb31384dd84a98b57a30bcb1f535015b554667"},
+ {file = "fastjsonschema-2.21.1.tar.gz", hash = "sha256:794d4f0a58f848961ba16af7b9c85a3e88cd360df008c59aac6fc5ae9323b5d4"},
]
[package.extras]
@@ -748,29 +770,33 @@ devel = ["colorama", "json-spec", "jsonschema", "pylint", "pytest", "pytest-benc
[[package]]
name = "filelock"
-version = "3.15.4"
+version = "3.17.0"
description = "A platform independent file lock."
optional = false
-python-versions = ">=3.8"
+python-versions = ">=3.9"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "filelock-3.15.4-py3-none-any.whl", hash = "sha256:6ca1fffae96225dab4c6eaf1c4f4f28cd2568d3ec2a44e15a08520504de468e7"},
- {file = "filelock-3.15.4.tar.gz", hash = "sha256:2207938cbc1844345cb01a5a95524dae30f0ce089eba5b00378295a17e3e90cb"},
+ {file = "filelock-3.17.0-py3-none-any.whl", hash = "sha256:533dc2f7ba78dc2f0f531fc6c4940addf7b70a481e269a5a3b93be94ffbe8338"},
+ {file = "filelock-3.17.0.tar.gz", hash = "sha256:ee4e77401ef576ebb38cd7f13b9b28893194acc20a8e68e18730ba9c0e54660e"},
]
[package.extras]
-docs = ["furo (>=2023.9.10)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"]
-testing = ["covdefaults (>=2.3)", "coverage (>=7.3.2)", "diff-cover (>=8.0.1)", "pytest (>=7.4.3)", "pytest-asyncio (>=0.21)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)", "pytest-timeout (>=2.2)", "virtualenv (>=20.26.2)"]
-typing = ["typing-extensions (>=4.8)"]
+docs = ["furo (>=2024.8.6)", "sphinx (>=8.1.3)", "sphinx-autodoc-typehints (>=3)"]
+testing = ["covdefaults (>=2.3)", "coverage (>=7.6.10)", "diff-cover (>=9.2.1)", "pytest (>=8.3.4)", "pytest-asyncio (>=0.25.2)", "pytest-cov (>=6)", "pytest-mock (>=3.14)", "pytest-timeout (>=2.3.1)", "virtualenv (>=20.28.1)"]
+typing = ["typing-extensions (>=4.12.2)"]
[[package]]
name = "fqdn"
-version = "1.5.1"
-description = "Validates fully-qualified domain names against RFC 1123, so that they are acceptable to modern bowsers"
+version = "1.4.0"
+description = "Validate fully-qualified domain names compliant to RFC 1035 and the preferred form in RFC 3686 s. 2."
optional = false
-python-versions = ">=2.7, !=3.0, !=3.1, !=3.2, !=3.3, !=3.4, <4"
+python-versions = "*"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "fqdn-1.5.1-py3-none-any.whl", hash = "sha256:3a179af3761e4df6eb2e026ff9e1a3033d3587bf980a0b1b2e1e5d08d7358014"},
- {file = "fqdn-1.5.1.tar.gz", hash = "sha256:105ed3677e767fb5ca086a0c1f4bb66ebc3c100be518f0e0d755d9eae164d89f"},
+ {file = "fqdn-1.4.0-py3-none-any.whl", hash = "sha256:e935616ae81c9c60a22267593fe8e6af68cecc68549cc71bb9bfbcbbcb383386"},
+ {file = "fqdn-1.4.0.tar.gz", hash = "sha256:30e8f2e685ce87cdace4712fd97c5d09f5e6fa519bbb66e8f188f6a7cb3a5c4e"},
]
[[package]]
@@ -779,6 +805,8 @@ version = "0.14.0"
description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1"
optional = false
python-versions = ">=3.7"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"},
{file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"},
@@ -786,13 +814,15 @@ files = [
[[package]]
name = "httpcore"
-version = "1.0.5"
+version = "1.0.7"
description = "A minimal low-level HTTP client."
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "httpcore-1.0.5-py3-none-any.whl", hash = "sha256:421f18bac248b25d310f3cacd198d55b8e6125c107797b609ff9b7a6ba7991b5"},
- {file = "httpcore-1.0.5.tar.gz", hash = "sha256:34a38e2f9291467ee3b44e89dd52615370e152954ba21721378a87b2960f7a61"},
+ {file = "httpcore-1.0.7-py3-none-any.whl", hash = "sha256:a3fff8f43dc260d5bd363d9f9cf1830fa3a458b332856f34282de498ed420edd"},
+ {file = "httpcore-1.0.7.tar.gz", hash = "sha256:8551cb62a169ec7162ac7be8d4817d561f60e08eaa485234898414bb5a8a0b4c"},
]
[package.dependencies]
@@ -803,17 +833,19 @@ h11 = ">=0.13,<0.15"
asyncio = ["anyio (>=4.0,<5.0)"]
http2 = ["h2 (>=3,<5)"]
socks = ["socksio (==1.*)"]
-trio = ["trio (>=0.22.0,<0.26.0)"]
+trio = ["trio (>=0.22.0,<1.0)"]
[[package]]
name = "httpx"
-version = "0.27.0"
+version = "0.28.1"
description = "The next generation HTTP client."
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "httpx-0.27.0-py3-none-any.whl", hash = "sha256:71d5465162c13681bff01ad59b2cc68dd838ea1f10e51574bac27103f00c91a5"},
- {file = "httpx-0.27.0.tar.gz", hash = "sha256:a0cb88a46f32dc874e04ee956e4c2764aba2aa228f650b06788ba6bda2962ab5"},
+ {file = "httpx-0.28.1-py3-none-any.whl", hash = "sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad"},
+ {file = "httpx-0.28.1.tar.gz", hash = "sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc"},
]
[package.dependencies]
@@ -821,23 +853,25 @@ anyio = "*"
certifi = "*"
httpcore = "==1.*"
idna = "*"
-sniffio = "*"
[package.extras]
brotli = ["brotli", "brotlicffi"]
cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"]
http2 = ["h2 (>=3,<5)"]
socks = ["socksio (==1.*)"]
+zstd = ["zstandard (>=0.18.0)"]
[[package]]
name = "identify"
-version = "2.6.0"
+version = "2.6.6"
description = "File identification library for Python"
optional = false
-python-versions = ">=3.8"
+python-versions = ">=3.9"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "identify-2.6.0-py2.py3-none-any.whl", hash = "sha256:e79ae4406387a9d300332b5fd366d8994f1525e8414984e1a59e058b2eda2dd0"},
- {file = "identify-2.6.0.tar.gz", hash = "sha256:cb171c685bdc31bcc4c1734698736a7d5b6c8bf2e0c15117f4d469c8640ae5cf"},
+ {file = "identify-2.6.6-py2.py3-none-any.whl", hash = "sha256:cbd1810bce79f8b671ecb20f53ee0ae8e86ae84b557de31d89709dc2a48ba881"},
+ {file = "identify-2.6.6.tar.gz", hash = "sha256:7bec12768ed44ea4761efb47806f0a41f86e7c0a5fdf5950d4648c90eca7e251"},
]
[package.extras]
@@ -845,51 +879,19 @@ license = ["ukkonen"]
[[package]]
name = "idna"
-version = "3.7"
+version = "3.10"
description = "Internationalized Domain Names in Applications (IDNA)"
optional = false
-python-versions = ">=3.5"
-files = [
- {file = "idna-3.7-py3-none-any.whl", hash = "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0"},
- {file = "idna-3.7.tar.gz", hash = "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc"},
-]
-
-[[package]]
-name = "importlib-metadata"
-version = "8.2.0"
-description = "Read metadata from Python packages"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "importlib_metadata-8.2.0-py3-none-any.whl", hash = "sha256:11901fa0c2f97919b288679932bb64febaeacf289d18ac84dd68cb2e74213369"},
- {file = "importlib_metadata-8.2.0.tar.gz", hash = "sha256:72e8d4399996132204f9a16dcc751af254a48f8d1b20b9ff0f98d4a8f901e73d"},
-]
-
-[package.dependencies]
-zipp = ">=0.5"
-
-[package.extras]
-doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
-perf = ["ipython"]
-test = ["flufl.flake8", "importlib-resources (>=1.3)", "jaraco.test (>=5.4)", "packaging", "pyfakefs", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-perf (>=0.9.2)", "pytest-ruff (>=0.2.1)"]
-
-[[package]]
-name = "importlib-resources"
-version = "6.4.0"
-description = "Read resources from Python packages"
-optional = false
-python-versions = ">=3.8"
+python-versions = ">=3.6"
+groups = ["main", "dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "importlib_resources-6.4.0-py3-none-any.whl", hash = "sha256:50d10f043df931902d4194ea07ec57960f66a80449ff867bfe782b4c486ba78c"},
- {file = "importlib_resources-6.4.0.tar.gz", hash = "sha256:cdb2b453b8046ca4e3798eb1d84f3cce1446a0e8e7b5ef4efb600f19fc398145"},
+ {file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"},
+ {file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"},
]
-[package.dependencies]
-zipp = {version = ">=3.1.0", markers = "python_version < \"3.10\""}
-
[package.extras]
-docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (<7.2.5)", "sphinx (>=3.5)", "sphinx-lint"]
-testing = ["jaraco.test (>=5.4)", "pytest (>=6)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy", "pytest-ruff (>=0.2.1)", "zipp (>=3.17)"]
+all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"]
[[package]]
name = "influxdb"
@@ -897,6 +899,8 @@ version = "5.3.2"
description = "InfluxDB client"
optional = false
python-versions = "*"
+groups = ["main"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "influxdb-5.3.2-py2.py3-none-any.whl", hash = "sha256:00d86b18a968d011b2eee39ec3b2ae941b1dcf7086bc7211e675914623caffcd"},
{file = "influxdb-5.3.2.tar.gz", hash = "sha256:58c647f6043712dd86e9aee12eb4ccfbbb5415467bc9910a48aa8c74c1108970"},
@@ -918,6 +922,8 @@ version = "2.0.0"
description = "brain-dead simple config-ini parsing"
optional = false
python-versions = ">=3.7"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"},
{file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"},
@@ -929,6 +935,8 @@ version = "6.29.5"
description = "IPython Kernel for Jupyter"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "ipykernel-6.29.5-py3-none-any.whl", hash = "sha256:afdb66ba5aa354b09b91379bac28ae4afebbb30e8b39510c9690afb7a10421b5"},
{file = "ipykernel-6.29.5.tar.gz", hash = "sha256:f093a22c4a40f8828f8e330a9c297cb93dcab13bd9678ded6de8e5cf81c56215"},
@@ -958,60 +966,62 @@ test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio
[[package]]
name = "ipython"
-version = "8.12.3"
+version = "8.32.0"
description = "IPython: Productive Interactive Computing"
optional = false
-python-versions = ">=3.8"
+python-versions = ">=3.10"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "ipython-8.12.3-py3-none-any.whl", hash = "sha256:b0340d46a933d27c657b211a329d0be23793c36595acf9e6ef4164bc01a1804c"},
- {file = "ipython-8.12.3.tar.gz", hash = "sha256:3910c4b54543c2ad73d06579aa771041b7d5707b033bd488669b4cf544e3b363"},
+ {file = "ipython-8.32.0-py3-none-any.whl", hash = "sha256:cae85b0c61eff1fc48b0a8002de5958b6528fa9c8defb1894da63f42613708aa"},
+ {file = "ipython-8.32.0.tar.gz", hash = "sha256:be2c91895b0b9ea7ba49d33b23e2040c352b33eb6a519cca7ce6e0c743444251"},
]
[package.dependencies]
-appnope = {version = "*", markers = "sys_platform == \"darwin\""}
-backcall = "*"
colorama = {version = "*", markers = "sys_platform == \"win32\""}
decorator = "*"
jedi = ">=0.16"
matplotlib-inline = "*"
-pexpect = {version = ">4.3", markers = "sys_platform != \"win32\""}
-pickleshare = "*"
-prompt-toolkit = ">=3.0.30,<3.0.37 || >3.0.37,<3.1.0"
+pexpect = {version = ">4.3", markers = "sys_platform != \"win32\" and sys_platform != \"emscripten\""}
+prompt_toolkit = ">=3.0.41,<3.1.0"
pygments = ">=2.4.0"
-stack-data = "*"
-traitlets = ">=5"
-typing-extensions = {version = "*", markers = "python_version < \"3.10\""}
+stack_data = "*"
+traitlets = ">=5.13.0"
+typing_extensions = {version = ">=4.6", markers = "python_version < \"3.12\""}
[package.extras]
-all = ["black", "curio", "docrepr", "ipykernel", "ipyparallel", "ipywidgets", "matplotlib", "matplotlib (!=3.2.0)", "nbconvert", "nbformat", "notebook", "numpy (>=1.21)", "pandas", "pytest (<7)", "pytest (<7.1)", "pytest-asyncio", "qtconsole", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "trio", "typing-extensions"]
+all = ["ipython[black,doc,kernel,matplotlib,nbconvert,nbformat,notebook,parallel,qtconsole]", "ipython[test,test-extra]"]
black = ["black"]
-doc = ["docrepr", "ipykernel", "matplotlib", "pytest (<7)", "pytest (<7.1)", "pytest-asyncio", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "typing-extensions"]
+doc = ["docrepr", "exceptiongroup", "intersphinx_registry", "ipykernel", "ipython[test]", "matplotlib", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "sphinxcontrib-jquery", "tomli", "typing_extensions"]
kernel = ["ipykernel"]
+matplotlib = ["matplotlib"]
nbconvert = ["nbconvert"]
nbformat = ["nbformat"]
notebook = ["ipywidgets", "notebook"]
parallel = ["ipyparallel"]
qtconsole = ["qtconsole"]
-test = ["pytest (<7.1)", "pytest-asyncio", "testpath"]
-test-extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.21)", "pandas", "pytest (<7.1)", "pytest-asyncio", "testpath", "trio"]
+test = ["packaging", "pickleshare", "pytest", "pytest-asyncio (<0.22)", "testpath"]
+test-extra = ["curio", "ipython[test]", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.23)", "pandas", "trio"]
[[package]]
name = "ipywidgets"
-version = "8.1.3"
+version = "8.1.5"
description = "Jupyter interactive widgets"
optional = false
python-versions = ">=3.7"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "ipywidgets-8.1.3-py3-none-any.whl", hash = "sha256:efafd18f7a142248f7cb0ba890a68b96abd4d6e88ddbda483c9130d12667eaf2"},
- {file = "ipywidgets-8.1.3.tar.gz", hash = "sha256:f5f9eeaae082b1823ce9eac2575272952f40d748893972956dc09700a6392d9c"},
+ {file = "ipywidgets-8.1.5-py3-none-any.whl", hash = "sha256:3290f526f87ae6e77655555baba4f36681c555b8bdbbff430b70e52c34c86245"},
+ {file = "ipywidgets-8.1.5.tar.gz", hash = "sha256:870e43b1a35656a80c18c9503bbf2d16802db1cb487eec6fab27d683381dde17"},
]
[package.dependencies]
comm = ">=0.1.3"
ipython = ">=6.1.0"
-jupyterlab-widgets = ">=3.0.11,<3.1.0"
+jupyterlab-widgets = ">=3.0.12,<3.1.0"
traitlets = ">=4.3.1"
-widgetsnbextension = ">=4.0.11,<4.1.0"
+widgetsnbextension = ">=4.0.12,<4.1.0"
[package.extras]
test = ["ipykernel", "jsonschema", "pytest (>=3.6.0)", "pytest-cov", "pytz"]
@@ -1022,6 +1032,8 @@ version = "20.11.0"
description = "Operations with ISO 8601 durations"
optional = false
python-versions = ">=3.7"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "isoduration-20.11.0-py3-none-any.whl", hash = "sha256:b2904c2a4228c3d44f409c8ae8e2370eb21a26f7ac2ec5446df141dde3452042"},
{file = "isoduration-20.11.0.tar.gz", hash = "sha256:ac2f9015137935279eac671f94f89eb00584f940f5dc49462a0c4ee692ba1bd9"},
@@ -1032,32 +1044,36 @@ arrow = ">=0.15.0"
[[package]]
name = "jedi"
-version = "0.19.1"
+version = "0.19.2"
description = "An autocompletion tool for Python that can be used for text editors."
optional = false
python-versions = ">=3.6"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "jedi-0.19.1-py2.py3-none-any.whl", hash = "sha256:e983c654fe5c02867aef4cdfce5a2fbb4a50adc0af145f70504238f18ef5e7e0"},
- {file = "jedi-0.19.1.tar.gz", hash = "sha256:cf0496f3651bc65d7174ac1b7d043eff454892c708a87d1b683e57b569927ffd"},
+ {file = "jedi-0.19.2-py2.py3-none-any.whl", hash = "sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9"},
+ {file = "jedi-0.19.2.tar.gz", hash = "sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0"},
]
[package.dependencies]
-parso = ">=0.8.3,<0.9.0"
+parso = ">=0.8.4,<0.9.0"
[package.extras]
docs = ["Jinja2 (==2.11.3)", "MarkupSafe (==1.1.1)", "Pygments (==2.8.1)", "alabaster (==0.7.12)", "babel (==2.9.1)", "chardet (==4.0.0)", "commonmark (==0.8.1)", "docutils (==0.17.1)", "future (==0.18.2)", "idna (==2.10)", "imagesize (==1.2.0)", "mock (==1.0.1)", "packaging (==20.9)", "pyparsing (==2.4.7)", "pytz (==2021.1)", "readthedocs-sphinx-ext (==2.1.4)", "recommonmark (==0.5.0)", "requests (==2.25.1)", "six (==1.15.0)", "snowballstemmer (==2.1.0)", "sphinx (==1.8.5)", "sphinx-rtd-theme (==0.4.3)", "sphinxcontrib-serializinghtml (==1.1.4)", "sphinxcontrib-websupport (==1.2.4)", "urllib3 (==1.26.4)"]
qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"]
-testing = ["Django", "attrs", "colorama", "docopt", "pytest (<7.0.0)"]
+testing = ["Django", "attrs", "colorama", "docopt", "pytest (<9.0.0)"]
[[package]]
name = "jinja2"
-version = "3.1.4"
+version = "3.1.5"
description = "A very fast and expressive template engine."
optional = false
python-versions = ">=3.7"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"},
- {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"},
+ {file = "jinja2-3.1.5-py3-none-any.whl", hash = "sha256:aba0f4dc9ed8013c424088f68a5c226f7d6097ed89b246d7749c2ec4175c6adb"},
+ {file = "jinja2-3.1.5.tar.gz", hash = "sha256:8fefff8dc3034e27bb80d67c671eb8a9bc424c0ef4c0826edbff304cceff43bb"},
]
[package.dependencies]
@@ -1072,6 +1088,8 @@ version = "1.0.1"
description = "JSON Matching Expressions"
optional = false
python-versions = ">=3.7"
+groups = ["main"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980"},
{file = "jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe"},
@@ -1079,21 +1097,28 @@ files = [
[[package]]
name = "json5"
-version = "0.9.25"
+version = "0.10.0"
description = "A Python implementation of the JSON5 data format."
optional = false
-python-versions = ">=3.8"
+python-versions = ">=3.8.0"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "json5-0.9.25-py3-none-any.whl", hash = "sha256:34ed7d834b1341a86987ed52f3f76cd8ee184394906b6e22a1e0deb9ab294e8f"},
- {file = "json5-0.9.25.tar.gz", hash = "sha256:548e41b9be043f9426776f05df8635a00fe06104ea51ed24b67f908856e151ae"},
+ {file = "json5-0.10.0-py3-none-any.whl", hash = "sha256:19b23410220a7271e8377f81ba8aacba2fdd56947fbb137ee5977cbe1f5e8dfa"},
+ {file = "json5-0.10.0.tar.gz", hash = "sha256:e66941c8f0a02026943c52c2eb34ebeb2a6f819a0be05920a6f5243cd30fd559"},
]
+[package.extras]
+dev = ["build (==1.2.2.post1)", "coverage (==7.5.3)", "mypy (==1.13.0)", "pip (==24.3.1)", "pylint (==3.2.3)", "ruff (==0.7.3)", "twine (==5.1.1)", "uv (==0.5.1)"]
+
[[package]]
name = "jsonpointer"
version = "3.0.0"
description = "Identify specific nodes in a JSON document (RFC 6901)"
optional = false
python-versions = ">=3.7"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "jsonpointer-3.0.0-py2.py3-none-any.whl", hash = "sha256:13e088adc14fca8b6aa8177c044e12701e6ad4b28ff10e65f2267a90109c9942"},
{file = "jsonpointer-3.0.0.tar.gz", hash = "sha256:2b2d729f2091522d61c3b31f82e11870f60b68f43fbc705cb76bf4b832af59ef"},
@@ -1105,6 +1130,8 @@ version = "4.23.0"
description = "An implementation of JSON Schema validation for Python"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "jsonschema-4.23.0-py3-none-any.whl", hash = "sha256:fbadb6f8b144a8f8cf9f0b89ba94501d143e50411a1278633f56a7acf7fd5566"},
{file = "jsonschema-4.23.0.tar.gz", hash = "sha256:d71497fef26351a33265337fa77ffeb82423f3ea21283cd9467bb03999266bc4"},
@@ -1114,11 +1141,9 @@ files = [
attrs = ">=22.2.0"
fqdn = {version = "*", optional = true, markers = "extra == \"format-nongpl\""}
idna = {version = "*", optional = true, markers = "extra == \"format-nongpl\""}
-importlib-resources = {version = ">=1.4.0", markers = "python_version < \"3.9\""}
isoduration = {version = "*", optional = true, markers = "extra == \"format-nongpl\""}
jsonpointer = {version = ">1.13", optional = true, markers = "extra == \"format-nongpl\""}
jsonschema-specifications = ">=2023.03.6"
-pkgutil-resolve-name = {version = ">=1.3.10", markers = "python_version < \"3.9\""}
referencing = ">=0.28.4"
rfc3339-validator = {version = "*", optional = true, markers = "extra == \"format-nongpl\""}
rfc3986-validator = {version = ">0.1.0", optional = true, markers = "extra == \"format-nongpl\""}
@@ -1132,52 +1157,55 @@ format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-
[[package]]
name = "jsonschema-specifications"
-version = "2023.12.1"
+version = "2024.10.1"
description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry"
optional = false
-python-versions = ">=3.8"
+python-versions = ">=3.9"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "jsonschema_specifications-2023.12.1-py3-none-any.whl", hash = "sha256:87e4fdf3a94858b8a2ba2778d9ba57d8a9cafca7c7489c46ba0d30a8bc6a9c3c"},
- {file = "jsonschema_specifications-2023.12.1.tar.gz", hash = "sha256:48a76787b3e70f5ed53f1160d2b81f586e4ca6d1548c5de7085d1682674764cc"},
+ {file = "jsonschema_specifications-2024.10.1-py3-none-any.whl", hash = "sha256:a09a0680616357d9a0ecf05c12ad234479f549239d0f5b55f3deea67475da9bf"},
+ {file = "jsonschema_specifications-2024.10.1.tar.gz", hash = "sha256:0f38b83639958ce1152d02a7f062902c41c8fd20d558b0c34344292d417ae272"},
]
[package.dependencies]
-importlib-resources = {version = ">=1.4.0", markers = "python_version < \"3.9\""}
referencing = ">=0.31.0"
[[package]]
name = "jupyter"
-version = "1.0.0"
+version = "1.1.1"
description = "Jupyter metapackage. Install all the Jupyter components in one go."
optional = false
python-versions = "*"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "jupyter-1.0.0-py2.py3-none-any.whl", hash = "sha256:5b290f93b98ffbc21c0c7e749f054b3267782166d72fa5e3ed1ed4eaf34a2b78"},
- {file = "jupyter-1.0.0.tar.gz", hash = "sha256:d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f"},
- {file = "jupyter-1.0.0.zip", hash = "sha256:3e1f86076bbb7c8c207829390305a2b1fe836d471ed54be66a3b8c41e7f46cc7"},
+ {file = "jupyter-1.1.1-py2.py3-none-any.whl", hash = "sha256:7a59533c22af65439b24bbe60373a4e95af8f16ac65a6c00820ad378e3f7cc83"},
+ {file = "jupyter-1.1.1.tar.gz", hash = "sha256:d55467bceabdea49d7e3624af7e33d59c37fff53ed3a350e1ac957bed731de7a"},
]
[package.dependencies]
ipykernel = "*"
ipywidgets = "*"
jupyter-console = "*"
+jupyterlab = "*"
nbconvert = "*"
notebook = "*"
-qtconsole = "*"
[[package]]
name = "jupyter-client"
-version = "8.6.2"
+version = "8.6.3"
description = "Jupyter protocol implementation and client libraries"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "jupyter_client-8.6.2-py3-none-any.whl", hash = "sha256:50cbc5c66fd1b8f65ecb66bc490ab73217993632809b6e505687de18e9dea39f"},
- {file = "jupyter_client-8.6.2.tar.gz", hash = "sha256:2bda14d55ee5ba58552a8c53ae43d215ad9868853489213f37da060ced54d8df"},
+ {file = "jupyter_client-8.6.3-py3-none-any.whl", hash = "sha256:e8a19cc986cc45905ac3362915f410f3af85424b4c0905e94fa5f2cb08e8f23f"},
+ {file = "jupyter_client-8.6.3.tar.gz", hash = "sha256:35b3a0947c4a6e9d589eb97d7d4cd5e90f910ee73101611f01283732bd6d9419"},
]
[package.dependencies]
-importlib-metadata = {version = ">=4.8.3", markers = "python_version < \"3.10\""}
jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0"
python-dateutil = ">=2.8.2"
pyzmq = ">=23.0"
@@ -1194,6 +1222,8 @@ version = "6.6.3"
description = "Jupyter terminal console"
optional = false
python-versions = ">=3.7"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "jupyter_console-6.6.3-py3-none-any.whl", hash = "sha256:309d33409fcc92ffdad25f0bcdf9a4a9daa61b6f341177570fdac03de5352485"},
{file = "jupyter_console-6.6.3.tar.gz", hash = "sha256:566a4bf31c87adbfadf22cdf846e3069b59a71ed5da71d6ba4d8aaad14a53539"},
@@ -1218,6 +1248,8 @@ version = "5.7.2"
description = "Jupyter core package. A base package on which Jupyter projects rely."
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "jupyter_core-5.7.2-py3-none-any.whl", hash = "sha256:4f7315d2f6b4bcf2e3e7cb6e46772eba760ae459cd1f59d29eb57b0a01bd7409"},
{file = "jupyter_core-5.7.2.tar.gz", hash = "sha256:aa5f8d32bbf6b431ac830496da7392035d6f61b4f54872f15c4bd2a9c3f536d9"},
@@ -1234,13 +1266,15 @@ test = ["ipykernel", "pre-commit", "pytest (<8)", "pytest-cov", "pytest-timeout"
[[package]]
name = "jupyter-events"
-version = "0.10.0"
+version = "0.11.0"
description = "Jupyter Event System library"
optional = false
-python-versions = ">=3.8"
+python-versions = ">=3.9"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "jupyter_events-0.10.0-py3-none-any.whl", hash = "sha256:4b72130875e59d57716d327ea70d3ebc3af1944d3717e5a498b8a06c6c159960"},
- {file = "jupyter_events-0.10.0.tar.gz", hash = "sha256:670b8229d3cc882ec782144ed22e0d29e1c2d639263f92ca8383e66682845e22"},
+ {file = "jupyter_events-0.11.0-py3-none-any.whl", hash = "sha256:36399b41ce1ca45fe8b8271067d6a140ffa54cec4028e95491c93b78a855cacf"},
+ {file = "jupyter_events-0.11.0.tar.gz", hash = "sha256:c0bc56a37aac29c1fbc3bcfbddb8c8c49533f9cf11f1c4e6adadba936574ab90"},
]
[package.dependencies]
@@ -1254,7 +1288,7 @@ traitlets = ">=5.3"
[package.extras]
cli = ["click", "rich"]
-docs = ["jupyterlite-sphinx", "myst-parser", "pydata-sphinx-theme", "sphinxcontrib-spelling"]
+docs = ["jupyterlite-sphinx", "myst-parser", "pydata-sphinx-theme (>=0.16)", "sphinx (>=8)", "sphinxcontrib-spelling"]
test = ["click", "pre-commit", "pytest (>=7.0)", "pytest-asyncio (>=0.19.0)", "pytest-console-scripts", "rich"]
[[package]]
@@ -1263,24 +1297,27 @@ version = "2.2.5"
description = "Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab server"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "jupyter-lsp-2.2.5.tar.gz", hash = "sha256:793147a05ad446f809fd53ef1cd19a9f5256fd0a2d6b7ce943a982cb4f545001"},
{file = "jupyter_lsp-2.2.5-py3-none-any.whl", hash = "sha256:45fbddbd505f3fbfb0b6cb2f1bc5e15e83ab7c79cd6e89416b248cb3c00c11da"},
]
[package.dependencies]
-importlib-metadata = {version = ">=4.8.3", markers = "python_version < \"3.10\""}
jupyter-server = ">=1.1.2"
[[package]]
name = "jupyter-server"
-version = "2.14.2"
+version = "2.15.0"
description = "The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications."
optional = false
-python-versions = ">=3.8"
+python-versions = ">=3.9"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "jupyter_server-2.14.2-py3-none-any.whl", hash = "sha256:47ff506127c2f7851a17bf4713434208fc490955d0e8632e95014a9a9afbeefd"},
- {file = "jupyter_server-2.14.2.tar.gz", hash = "sha256:66095021aa9638ced276c248b1d81862e4c50f292d575920bbe960de1c56b12b"},
+ {file = "jupyter_server-2.15.0-py3-none-any.whl", hash = "sha256:872d989becf83517012ee669f09604aa4a28097c0bd90b2f424310156c2cdae3"},
+ {file = "jupyter_server-2.15.0.tar.gz", hash = "sha256:9d446b8697b4f7337a1b7cdcac40778babdd93ba614b6d68ab1c0c918f1c4084"},
]
[package.dependencies]
@@ -1289,7 +1326,7 @@ argon2-cffi = ">=21.1"
jinja2 = ">=3.0.3"
jupyter-client = ">=7.4.4"
jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0"
-jupyter-events = ">=0.9.0"
+jupyter-events = ">=0.11.0"
jupyter-server-terminals = ">=0.4.4"
nbconvert = ">=6.4.4"
nbformat = ">=5.3.0"
@@ -1314,6 +1351,8 @@ version = "0.5.3"
description = "A Jupyter Server Extension Providing Terminals."
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "jupyter_server_terminals-0.5.3-py3-none-any.whl", hash = "sha256:41ee0d7dc0ebf2809c668e0fc726dfaf258fcd3e769568996ca731b6194ae9aa"},
{file = "jupyter_server_terminals-0.5.3.tar.gz", hash = "sha256:5ae0295167220e9ace0edcfdb212afd2b01ee8d179fe6f23c899590e9b8a5269"},
@@ -1329,20 +1368,20 @@ test = ["jupyter-server (>=2.0.0)", "pytest (>=7.0)", "pytest-jupyter[server] (>
[[package]]
name = "jupyterlab"
-version = "4.2.4"
+version = "4.3.5"
description = "JupyterLab computational environment"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "jupyterlab-4.2.4-py3-none-any.whl", hash = "sha256:807a7ec73637744f879e112060d4b9d9ebe028033b7a429b2d1f4fc523d00245"},
- {file = "jupyterlab-4.2.4.tar.gz", hash = "sha256:343a979fb9582fd08c8511823e320703281cd072a0049bcdafdc7afeda7f2537"},
+ {file = "jupyterlab-4.3.5-py3-none-any.whl", hash = "sha256:571bbdee20e4c5321ab5195bc41cf92a75a5cff886be5e57ce78dfa37a5e9fdb"},
+ {file = "jupyterlab-4.3.5.tar.gz", hash = "sha256:c779bf72ced007d7d29d5bcef128e7fdda96ea69299e19b04a43635a7d641f9d"},
]
[package.dependencies]
async-lru = ">=1.0.0"
httpx = ">=0.25.0"
-importlib-metadata = {version = ">=4.8.3", markers = "python_version < \"3.10\""}
-importlib-resources = {version = ">=1.4", markers = "python_version < \"3.9\""}
ipykernel = ">=6.5.0"
jinja2 = ">=3.0.3"
jupyter-core = "*"
@@ -1351,15 +1390,14 @@ jupyter-server = ">=2.4.0,<3"
jupyterlab-server = ">=2.27.1,<3"
notebook-shim = ">=0.2"
packaging = "*"
-setuptools = ">=40.1.0"
-tomli = {version = ">=1.2.2", markers = "python_version < \"3.11\""}
+setuptools = ">=40.8.0"
tornado = ">=6.2.0"
traitlets = "*"
[package.extras]
-dev = ["build", "bump2version", "coverage", "hatch", "pre-commit", "pytest-cov", "ruff (==0.3.5)"]
-docs = ["jsx-lexer", "myst-parser", "pydata-sphinx-theme (>=0.13.0)", "pytest", "pytest-check-links", "pytest-jupyter", "sphinx (>=1.8,<7.3.0)", "sphinx-copybutton"]
-docs-screenshots = ["altair (==5.3.0)", "ipython (==8.16.1)", "ipywidgets (==8.1.2)", "jupyterlab-geojson (==3.4.0)", "jupyterlab-language-pack-zh-cn (==4.1.post2)", "matplotlib (==3.8.3)", "nbconvert (>=7.0.0)", "pandas (==2.2.1)", "scipy (==1.12.0)", "vega-datasets (==0.9.0)"]
+dev = ["build", "bump2version", "coverage", "hatch", "pre-commit", "pytest-cov", "ruff (==0.6.9)"]
+docs = ["jsx-lexer", "myst-parser", "pydata-sphinx-theme (>=0.13.0)", "pytest", "pytest-check-links", "pytest-jupyter", "sphinx (>=1.8,<8.1.0)", "sphinx-copybutton"]
+docs-screenshots = ["altair (==5.4.1)", "ipython (==8.16.1)", "ipywidgets (==8.1.5)", "jupyterlab-geojson (==3.4.0)", "jupyterlab-language-pack-zh-cn (==4.2.post3)", "matplotlib (==3.9.2)", "nbconvert (>=7.0.0)", "pandas (==2.2.3)", "scipy (==1.14.1)", "vega-datasets (==0.9.0)"]
test = ["coverage", "pytest (>=7.0)", "pytest-check-links (>=0.7)", "pytest-console-scripts", "pytest-cov", "pytest-jupyter (>=0.5.3)", "pytest-timeout", "pytest-tornasync", "requests", "requests-cache", "virtualenv"]
upgrade-extension = ["copier (>=9,<10)", "jinja2-time (<0.3)", "pydantic (<3.0)", "pyyaml-include (<3.0)", "tomli-w (<2.0)"]
@@ -1369,6 +1407,8 @@ version = "0.3.0"
description = "Pygments theme using JupyterLab CSS variables"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "jupyterlab_pygments-0.3.0-py3-none-any.whl", hash = "sha256:841a89020971da1d8693f1a99997aefc5dc424bb1b251fd6322462a1b8842780"},
{file = "jupyterlab_pygments-0.3.0.tar.gz", hash = "sha256:721aca4d9029252b11cfa9d185e5b5af4d54772bb8072f9b7036f4170054d35d"},
@@ -1380,6 +1420,8 @@ version = "2.27.3"
description = "A set of server components for JupyterLab and JupyterLab like applications."
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "jupyterlab_server-2.27.3-py3-none-any.whl", hash = "sha256:e697488f66c3db49df675158a77b3b017520d772c6e1548c7d9bcc5df7944ee4"},
{file = "jupyterlab_server-2.27.3.tar.gz", hash = "sha256:eb36caca59e74471988f0ae25c77945610b887f777255aa21f8065def9e51ed4"},
@@ -1387,7 +1429,6 @@ files = [
[package.dependencies]
babel = ">=2.10"
-importlib-metadata = {version = ">=4.8.3", markers = "python_version < \"3.10\""}
jinja2 = ">=3.0.3"
json5 = ">=0.9.0"
jsonschema = ">=4.18.0"
@@ -1402,82 +1443,87 @@ test = ["hatch", "ipykernel", "openapi-core (>=0.18.0,<0.19.0)", "openapi-spec-v
[[package]]
name = "jupyterlab-widgets"
-version = "3.0.11"
+version = "3.0.13"
description = "Jupyter interactive widgets for JupyterLab"
optional = false
python-versions = ">=3.7"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "jupyterlab_widgets-3.0.11-py3-none-any.whl", hash = "sha256:78287fd86d20744ace330a61625024cf5521e1c012a352ddc0a3cdc2348becd0"},
- {file = "jupyterlab_widgets-3.0.11.tar.gz", hash = "sha256:dd5ac679593c969af29c9bed054c24f26842baa51352114736756bc035deee27"},
+ {file = "jupyterlab_widgets-3.0.13-py3-none-any.whl", hash = "sha256:e3cda2c233ce144192f1e29914ad522b2f4c40e77214b0cc97377ca3d323db54"},
+ {file = "jupyterlab_widgets-3.0.13.tar.gz", hash = "sha256:a2966d385328c1942b683a8cd96b89b8dd82c8b8f81dda902bb2bc06d46f5bed"},
]
[[package]]
name = "markupsafe"
-version = "2.1.5"
+version = "3.0.2"
description = "Safely add untrusted strings to HTML/XML markup."
optional = false
-python-versions = ">=3.7"
-files = [
- {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"},
- {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"},
- {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46"},
- {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f"},
- {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900"},
- {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff"},
- {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad"},
- {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd"},
- {file = "MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4"},
- {file = "MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5"},
- {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f"},
- {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2"},
- {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced"},
- {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5"},
- {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c"},
- {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f"},
- {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a"},
- {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f"},
- {file = "MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906"},
- {file = "MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617"},
- {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1"},
- {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4"},
- {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee"},
- {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5"},
- {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b"},
- {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a"},
- {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f"},
- {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169"},
- {file = "MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad"},
- {file = "MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb"},
- {file = "MarkupSafe-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f"},
- {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf"},
- {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a"},
- {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52"},
- {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9"},
- {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df"},
- {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50"},
- {file = "MarkupSafe-2.1.5-cp37-cp37m-win32.whl", hash = "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371"},
- {file = "MarkupSafe-2.1.5-cp37-cp37m-win_amd64.whl", hash = "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2"},
- {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a"},
- {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46"},
- {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532"},
- {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab"},
- {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"},
- {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0"},
- {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4"},
- {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3"},
- {file = "MarkupSafe-2.1.5-cp38-cp38-win32.whl", hash = "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff"},
- {file = "MarkupSafe-2.1.5-cp38-cp38-win_amd64.whl", hash = "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029"},
- {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf"},
- {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2"},
- {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8"},
- {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3"},
- {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465"},
- {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e"},
- {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea"},
- {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6"},
- {file = "MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf"},
- {file = "MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5"},
- {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"},
+python-versions = ">=3.9"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
+files = [
+ {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50"},
+ {file = "MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d"},
+ {file = "MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30"},
+ {file = "MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6"},
+ {file = "MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f"},
+ {file = "MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a"},
+ {file = "markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0"},
]
[[package]]
@@ -1486,6 +1532,8 @@ version = "0.1.7"
description = "Inline Matplotlib backend for Jupyter"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "matplotlib_inline-0.1.7-py3-none-any.whl", hash = "sha256:df192d39a4ff8f21b1895d72e6a13f5fcc5099f00fa84384e0ea28c2cc0653ca"},
{file = "matplotlib_inline-0.1.7.tar.gz", hash = "sha256:8423b23ec666be3d16e16b60bdd8ac4e86e840ebd1dd11a30b9f117f2fa0ab90"},
@@ -1496,114 +1544,122 @@ traitlets = "*"
[[package]]
name = "mistune"
-version = "3.0.2"
+version = "3.1.1"
description = "A sane and fast Markdown parser with useful plugins and renderers"
optional = false
-python-versions = ">=3.7"
-files = [
- {file = "mistune-3.0.2-py3-none-any.whl", hash = "sha256:71481854c30fdbc938963d3605b72501f5c10a9320ecd412c121c163a1c7d205"},
- {file = "mistune-3.0.2.tar.gz", hash = "sha256:fc7f93ded930c92394ef2cb6f04a8aabab4117a91449e72dcc8dfa646a508be8"},
-]
-
-[[package]]
-name = "mlep"
-version = "0.1.1.dev3"
-description = "Interact with an EnergyPlus simulation during runtime using the BCVTB protocol."
-optional = false
-python-versions = ">=3.6.1,<4.0.0"
+python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "mlep-0.1.1.dev3-py3-none-any.whl", hash = "sha256:f984d6e86c2ed10e3e07b9a80dceaeaa6f3107e285b3a7a9d1dc81cb5cdb3756"},
- {file = "mlep-0.1.1.dev3.tar.gz", hash = "sha256:6740ccc53448e35f5dec05f0cdd25ee8bbee1697a01b00d1726b5c720df7849e"},
+ {file = "mistune-3.1.1-py3-none-any.whl", hash = "sha256:02106ac2aa4f66e769debbfa028509a275069dcffce0dfa578edd7b991ee700a"},
+ {file = "mistune-3.1.1.tar.gz", hash = "sha256:e0740d635f515119f7d1feb6f9b192ee60f0cc649f80a8f944f905706a21654c"},
]
[[package]]
name = "mongoengine"
-version = "0.25.0"
+version = "0.29.1"
description = "MongoEngine is a Python Object-Document Mapper for working with MongoDB."
optional = false
python-versions = ">=3.7"
+groups = ["main"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "mongoengine-0.25.0-py3-none-any.whl", hash = "sha256:29882b732d1e139d9a9e82be349a56d772ff1154e3ab2716dbb093a7cb9c76fa"},
- {file = "mongoengine-0.25.0.tar.gz", hash = "sha256:e7a3c97704beaf56ecf7bdbf7eacaa7cd1a8723821a0b270521dab17671cc045"},
+ {file = "mongoengine-0.29.1-py3-none-any.whl", hash = "sha256:9302ec407dd60f47f62cc07684d9f6cac87f1e93283c54203851788104d33df4"},
+ {file = "mongoengine-0.29.1.tar.gz", hash = "sha256:3b43abaf2d5f0b7d39efc2b7d9e78f4d4a5dc7ce92b9889ba81a5a9b8dee3cf3"},
]
[package.dependencies]
pymongo = ">=3.4,<5.0"
+[package.extras]
+test = ["Pillow (>=7.0.0)", "blinker", "coverage", "pytest", "pytest-cov"]
+
[[package]]
name = "msgpack"
-version = "1.0.8"
+version = "1.1.0"
description = "MessagePack serializer"
optional = false
python-versions = ">=3.8"
-files = [
- {file = "msgpack-1.0.8-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:505fe3d03856ac7d215dbe005414bc28505d26f0c128906037e66d98c4e95868"},
- {file = "msgpack-1.0.8-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e6b7842518a63a9f17107eb176320960ec095a8ee3b4420b5f688e24bf50c53c"},
- {file = "msgpack-1.0.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:376081f471a2ef24828b83a641a02c575d6103a3ad7fd7dade5486cad10ea659"},
- {file = "msgpack-1.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e390971d082dba073c05dbd56322427d3280b7cc8b53484c9377adfbae67dc2"},
- {file = "msgpack-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00e073efcba9ea99db5acef3959efa45b52bc67b61b00823d2a1a6944bf45982"},
- {file = "msgpack-1.0.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82d92c773fbc6942a7a8b520d22c11cfc8fd83bba86116bfcf962c2f5c2ecdaa"},
- {file = "msgpack-1.0.8-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:9ee32dcb8e531adae1f1ca568822e9b3a738369b3b686d1477cbc643c4a9c128"},
- {file = "msgpack-1.0.8-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e3aa7e51d738e0ec0afbed661261513b38b3014754c9459508399baf14ae0c9d"},
- {file = "msgpack-1.0.8-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:69284049d07fce531c17404fcba2bb1df472bc2dcdac642ae71a2d079d950653"},
- {file = "msgpack-1.0.8-cp310-cp310-win32.whl", hash = "sha256:13577ec9e247f8741c84d06b9ece5f654920d8365a4b636ce0e44f15e07ec693"},
- {file = "msgpack-1.0.8-cp310-cp310-win_amd64.whl", hash = "sha256:e532dbd6ddfe13946de050d7474e3f5fb6ec774fbb1a188aaf469b08cf04189a"},
- {file = "msgpack-1.0.8-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9517004e21664f2b5a5fd6333b0731b9cf0817403a941b393d89a2f1dc2bd836"},
- {file = "msgpack-1.0.8-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d16a786905034e7e34098634b184a7d81f91d4c3d246edc6bd7aefb2fd8ea6ad"},
- {file = "msgpack-1.0.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e2872993e209f7ed04d963e4b4fbae72d034844ec66bc4ca403329db2074377b"},
- {file = "msgpack-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c330eace3dd100bdb54b5653b966de7f51c26ec4a7d4e87132d9b4f738220ba"},
- {file = "msgpack-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:83b5c044f3eff2a6534768ccfd50425939e7a8b5cf9a7261c385de1e20dcfc85"},
- {file = "msgpack-1.0.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1876b0b653a808fcd50123b953af170c535027bf1d053b59790eebb0aeb38950"},
- {file = "msgpack-1.0.8-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:dfe1f0f0ed5785c187144c46a292b8c34c1295c01da12e10ccddfc16def4448a"},
- {file = "msgpack-1.0.8-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3528807cbbb7f315bb81959d5961855e7ba52aa60a3097151cb21956fbc7502b"},
- {file = "msgpack-1.0.8-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e2f879ab92ce502a1e65fce390eab619774dda6a6ff719718069ac94084098ce"},
- {file = "msgpack-1.0.8-cp311-cp311-win32.whl", hash = "sha256:26ee97a8261e6e35885c2ecd2fd4a6d38252246f94a2aec23665a4e66d066305"},
- {file = "msgpack-1.0.8-cp311-cp311-win_amd64.whl", hash = "sha256:eadb9f826c138e6cf3c49d6f8de88225a3c0ab181a9b4ba792e006e5292d150e"},
- {file = "msgpack-1.0.8-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:114be227f5213ef8b215c22dde19532f5da9652e56e8ce969bf0a26d7c419fee"},
- {file = "msgpack-1.0.8-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d661dc4785affa9d0edfdd1e59ec056a58b3dbb9f196fa43587f3ddac654ac7b"},
- {file = "msgpack-1.0.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d56fd9f1f1cdc8227d7b7918f55091349741904d9520c65f0139a9755952c9e8"},
- {file = "msgpack-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0726c282d188e204281ebd8de31724b7d749adebc086873a59efb8cf7ae27df3"},
- {file = "msgpack-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8db8e423192303ed77cff4dce3a4b88dbfaf43979d280181558af5e2c3c71afc"},
- {file = "msgpack-1.0.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:99881222f4a8c2f641f25703963a5cefb076adffd959e0558dc9f803a52d6a58"},
- {file = "msgpack-1.0.8-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b5505774ea2a73a86ea176e8a9a4a7c8bf5d521050f0f6f8426afe798689243f"},
- {file = "msgpack-1.0.8-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:ef254a06bcea461e65ff0373d8a0dd1ed3aa004af48839f002a0c994a6f72d04"},
- {file = "msgpack-1.0.8-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e1dd7839443592d00e96db831eddb4111a2a81a46b028f0facd60a09ebbdd543"},
- {file = "msgpack-1.0.8-cp312-cp312-win32.whl", hash = "sha256:64d0fcd436c5683fdd7c907eeae5e2cbb5eb872fafbc03a43609d7941840995c"},
- {file = "msgpack-1.0.8-cp312-cp312-win_amd64.whl", hash = "sha256:74398a4cf19de42e1498368c36eed45d9528f5fd0155241e82c4082b7e16cffd"},
- {file = "msgpack-1.0.8-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:0ceea77719d45c839fd73abcb190b8390412a890df2f83fb8cf49b2a4b5c2f40"},
- {file = "msgpack-1.0.8-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1ab0bbcd4d1f7b6991ee7c753655b481c50084294218de69365f8f1970d4c151"},
- {file = "msgpack-1.0.8-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1cce488457370ffd1f953846f82323cb6b2ad2190987cd4d70b2713e17268d24"},
- {file = "msgpack-1.0.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3923a1778f7e5ef31865893fdca12a8d7dc03a44b33e2a5f3295416314c09f5d"},
- {file = "msgpack-1.0.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a22e47578b30a3e199ab067a4d43d790249b3c0587d9a771921f86250c8435db"},
- {file = "msgpack-1.0.8-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd739c9251d01e0279ce729e37b39d49a08c0420d3fee7f2a4968c0576678f77"},
- {file = "msgpack-1.0.8-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:d3420522057ebab1728b21ad473aa950026d07cb09da41103f8e597dfbfaeb13"},
- {file = "msgpack-1.0.8-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5845fdf5e5d5b78a49b826fcdc0eb2e2aa7191980e3d2cfd2a30303a74f212e2"},
- {file = "msgpack-1.0.8-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6a0e76621f6e1f908ae52860bdcb58e1ca85231a9b0545e64509c931dd34275a"},
- {file = "msgpack-1.0.8-cp38-cp38-win32.whl", hash = "sha256:374a8e88ddab84b9ada695d255679fb99c53513c0a51778796fcf0944d6c789c"},
- {file = "msgpack-1.0.8-cp38-cp38-win_amd64.whl", hash = "sha256:f3709997b228685fe53e8c433e2df9f0cdb5f4542bd5114ed17ac3c0129b0480"},
- {file = "msgpack-1.0.8-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:f51bab98d52739c50c56658cc303f190785f9a2cd97b823357e7aeae54c8f68a"},
- {file = "msgpack-1.0.8-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:73ee792784d48aa338bba28063e19a27e8d989344f34aad14ea6e1b9bd83f596"},
- {file = "msgpack-1.0.8-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f9904e24646570539a8950400602d66d2b2c492b9010ea7e965025cb71d0c86d"},
- {file = "msgpack-1.0.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e75753aeda0ddc4c28dce4c32ba2f6ec30b1b02f6c0b14e547841ba5b24f753f"},
- {file = "msgpack-1.0.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5dbf059fb4b7c240c873c1245ee112505be27497e90f7c6591261c7d3c3a8228"},
- {file = "msgpack-1.0.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4916727e31c28be8beaf11cf117d6f6f188dcc36daae4e851fee88646f5b6b18"},
- {file = "msgpack-1.0.8-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7938111ed1358f536daf311be244f34df7bf3cdedb3ed883787aca97778b28d8"},
- {file = "msgpack-1.0.8-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:493c5c5e44b06d6c9268ce21b302c9ca055c1fd3484c25ba41d34476c76ee746"},
- {file = "msgpack-1.0.8-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5fbb160554e319f7b22ecf530a80a3ff496d38e8e07ae763b9e82fadfe96f273"},
- {file = "msgpack-1.0.8-cp39-cp39-win32.whl", hash = "sha256:f9af38a89b6a5c04b7d18c492c8ccf2aee7048aff1ce8437c4683bb5a1df893d"},
- {file = "msgpack-1.0.8-cp39-cp39-win_amd64.whl", hash = "sha256:ed59dd52075f8fc91da6053b12e8c89e37aa043f8986efd89e61fae69dc1b011"},
- {file = "msgpack-1.0.8.tar.gz", hash = "sha256:95c02b0e27e706e48d0e5426d1710ca78e0f0628d6e89d5b5a5b91a5f12274f3"},
+groups = ["main"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
+files = [
+ {file = "msgpack-1.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7ad442d527a7e358a469faf43fda45aaf4ac3249c8310a82f0ccff9164e5dccd"},
+ {file = "msgpack-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:74bed8f63f8f14d75eec75cf3d04ad581da6b914001b474a5d3cd3372c8cc27d"},
+ {file = "msgpack-1.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:914571a2a5b4e7606997e169f64ce53a8b1e06f2cf2c3a7273aa106236d43dd5"},
+ {file = "msgpack-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c921af52214dcbb75e6bdf6a661b23c3e6417f00c603dd2070bccb5c3ef499f5"},
+ {file = "msgpack-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8ce0b22b890be5d252de90d0e0d119f363012027cf256185fc3d474c44b1b9e"},
+ {file = "msgpack-1.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:73322a6cc57fcee3c0c57c4463d828e9428275fb85a27aa2aa1a92fdc42afd7b"},
+ {file = "msgpack-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e1f3c3d21f7cf67bcf2da8e494d30a75e4cf60041d98b3f79875afb5b96f3a3f"},
+ {file = "msgpack-1.1.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:64fc9068d701233effd61b19efb1485587560b66fe57b3e50d29c5d78e7fef68"},
+ {file = "msgpack-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:42f754515e0f683f9c79210a5d1cad631ec3d06cea5172214d2176a42e67e19b"},
+ {file = "msgpack-1.1.0-cp310-cp310-win32.whl", hash = "sha256:3df7e6b05571b3814361e8464f9304c42d2196808e0119f55d0d3e62cd5ea044"},
+ {file = "msgpack-1.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:685ec345eefc757a7c8af44a3032734a739f8c45d1b0ac45efc5d8977aa4720f"},
+ {file = "msgpack-1.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3d364a55082fb2a7416f6c63ae383fbd903adb5a6cf78c5b96cc6316dc1cedc7"},
+ {file = "msgpack-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:79ec007767b9b56860e0372085f8504db5d06bd6a327a335449508bbee9648fa"},
+ {file = "msgpack-1.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6ad622bf7756d5a497d5b6836e7fc3752e2dd6f4c648e24b1803f6048596f701"},
+ {file = "msgpack-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e59bca908d9ca0de3dc8684f21ebf9a690fe47b6be93236eb40b99af28b6ea6"},
+ {file = "msgpack-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e1da8f11a3dd397f0a32c76165cf0c4eb95b31013a94f6ecc0b280c05c91b59"},
+ {file = "msgpack-1.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:452aff037287acb1d70a804ffd022b21fa2bb7c46bee884dbc864cc9024128a0"},
+ {file = "msgpack-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8da4bf6d54ceed70e8861f833f83ce0814a2b72102e890cbdfe4b34764cdd66e"},
+ {file = "msgpack-1.1.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:41c991beebf175faf352fb940bf2af9ad1fb77fd25f38d9142053914947cdbf6"},
+ {file = "msgpack-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a52a1f3a5af7ba1c9ace055b659189f6c669cf3657095b50f9602af3a3ba0fe5"},
+ {file = "msgpack-1.1.0-cp311-cp311-win32.whl", hash = "sha256:58638690ebd0a06427c5fe1a227bb6b8b9fdc2bd07701bec13c2335c82131a88"},
+ {file = "msgpack-1.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:fd2906780f25c8ed5d7b323379f6138524ba793428db5d0e9d226d3fa6aa1788"},
+ {file = "msgpack-1.1.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:d46cf9e3705ea9485687aa4001a76e44748b609d260af21c4ceea7f2212a501d"},
+ {file = "msgpack-1.1.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:5dbad74103df937e1325cc4bfeaf57713be0b4f15e1c2da43ccdd836393e2ea2"},
+ {file = "msgpack-1.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:58dfc47f8b102da61e8949708b3eafc3504509a5728f8b4ddef84bd9e16ad420"},
+ {file = "msgpack-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4676e5be1b472909b2ee6356ff425ebedf5142427842aa06b4dfd5117d1ca8a2"},
+ {file = "msgpack-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17fb65dd0bec285907f68b15734a993ad3fc94332b5bb21b0435846228de1f39"},
+ {file = "msgpack-1.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a51abd48c6d8ac89e0cfd4fe177c61481aca2d5e7ba42044fd218cfd8ea9899f"},
+ {file = "msgpack-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2137773500afa5494a61b1208619e3871f75f27b03bcfca7b3a7023284140247"},
+ {file = "msgpack-1.1.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:398b713459fea610861c8a7b62a6fec1882759f308ae0795b5413ff6a160cf3c"},
+ {file = "msgpack-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:06f5fd2f6bb2a7914922d935d3b8bb4a7fff3a9a91cfce6d06c13bc42bec975b"},
+ {file = "msgpack-1.1.0-cp312-cp312-win32.whl", hash = "sha256:ad33e8400e4ec17ba782f7b9cf868977d867ed784a1f5f2ab46e7ba53b6e1e1b"},
+ {file = "msgpack-1.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:115a7af8ee9e8cddc10f87636767857e7e3717b7a2e97379dc2054712693e90f"},
+ {file = "msgpack-1.1.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:071603e2f0771c45ad9bc65719291c568d4edf120b44eb36324dcb02a13bfddf"},
+ {file = "msgpack-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0f92a83b84e7c0749e3f12821949d79485971f087604178026085f60ce109330"},
+ {file = "msgpack-1.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1964df7b81285d00a84da4e70cb1383f2e665e0f1f2a7027e683956d04b734"},
+ {file = "msgpack-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59caf6a4ed0d164055ccff8fe31eddc0ebc07cf7326a2aaa0dbf7a4001cd823e"},
+ {file = "msgpack-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0907e1a7119b337971a689153665764adc34e89175f9a34793307d9def08e6ca"},
+ {file = "msgpack-1.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:65553c9b6da8166e819a6aa90ad15288599b340f91d18f60b2061f402b9a4915"},
+ {file = "msgpack-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7a946a8992941fea80ed4beae6bff74ffd7ee129a90b4dd5cf9c476a30e9708d"},
+ {file = "msgpack-1.1.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4b51405e36e075193bc051315dbf29168d6141ae2500ba8cd80a522964e31434"},
+ {file = "msgpack-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:b4c01941fd2ff87c2a934ee6055bda4ed353a7846b8d4f341c428109e9fcde8c"},
+ {file = "msgpack-1.1.0-cp313-cp313-win32.whl", hash = "sha256:7c9a35ce2c2573bada929e0b7b3576de647b0defbd25f5139dcdaba0ae35a4cc"},
+ {file = "msgpack-1.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:bce7d9e614a04d0883af0b3d4d501171fbfca038f12c77fa838d9f198147a23f"},
+ {file = "msgpack-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c40ffa9a15d74e05ba1fe2681ea33b9caffd886675412612d93ab17b58ea2fec"},
+ {file = "msgpack-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f1ba6136e650898082d9d5a5217d5906d1e138024f836ff48691784bbe1adf96"},
+ {file = "msgpack-1.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e0856a2b7e8dcb874be44fea031d22e5b3a19121be92a1e098f46068a11b0870"},
+ {file = "msgpack-1.1.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:471e27a5787a2e3f974ba023f9e265a8c7cfd373632247deb225617e3100a3c7"},
+ {file = "msgpack-1.1.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:646afc8102935a388ffc3914b336d22d1c2d6209c773f3eb5dd4d6d3b6f8c1cb"},
+ {file = "msgpack-1.1.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:13599f8829cfbe0158f6456374e9eea9f44eee08076291771d8ae93eda56607f"},
+ {file = "msgpack-1.1.0-cp38-cp38-win32.whl", hash = "sha256:8a84efb768fb968381e525eeeb3d92857e4985aacc39f3c47ffd00eb4509315b"},
+ {file = "msgpack-1.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:879a7b7b0ad82481c52d3c7eb99bf6f0645dbdec5134a4bddbd16f3506947feb"},
+ {file = "msgpack-1.1.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:53258eeb7a80fc46f62fd59c876957a2d0e15e6449a9e71842b6d24419d88ca1"},
+ {file = "msgpack-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7e7b853bbc44fb03fbdba34feb4bd414322180135e2cb5164f20ce1c9795ee48"},
+ {file = "msgpack-1.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f3e9b4936df53b970513eac1758f3882c88658a220b58dcc1e39606dccaaf01c"},
+ {file = "msgpack-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:46c34e99110762a76e3911fc923222472c9d681f1094096ac4102c18319e6468"},
+ {file = "msgpack-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a706d1e74dd3dea05cb54580d9bd8b2880e9264856ce5068027eed09680aa74"},
+ {file = "msgpack-1.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:534480ee5690ab3cbed89d4c8971a5c631b69a8c0883ecfea96c19118510c846"},
+ {file = "msgpack-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:8cf9e8c3a2153934a23ac160cc4cba0ec035f6867c8013cc6077a79823370346"},
+ {file = "msgpack-1.1.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3180065ec2abbe13a4ad37688b61b99d7f9e012a535b930e0e683ad6bc30155b"},
+ {file = "msgpack-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:c5a91481a3cc573ac8c0d9aace09345d989dc4a0202b7fcb312c88c26d4e71a8"},
+ {file = "msgpack-1.1.0-cp39-cp39-win32.whl", hash = "sha256:f80bc7d47f76089633763f952e67f8214cb7b3ee6bfa489b3cb6a84cfac114cd"},
+ {file = "msgpack-1.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:4d1b7ff2d6146e16e8bd665ac726a89c74163ef8cd39fa8c1087d4e52d3a2325"},
+ {file = "msgpack-1.1.0.tar.gz", hash = "sha256:dd432ccc2c72b914e4cb77afce64aab761c1137cc698be3984eee260bcb2896e"},
]
[[package]]
name = "nbclient"
-version = "0.10.0"
+version = "0.10.2"
description = "A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor."
optional = false
-python-versions = ">=3.8.0"
+python-versions = ">=3.9.0"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "nbclient-0.10.0-py3-none-any.whl", hash = "sha256:f13e3529332a1f1f81d82a53210322476a168bb7090a0289c795fe9cc11c9d3f"},
- {file = "nbclient-0.10.0.tar.gz", hash = "sha256:4b3f1b7dba531e498449c4db4f53da339c91d449dc11e9af3a43b4eb5c5abb09"},
+ {file = "nbclient-0.10.2-py3-none-any.whl", hash = "sha256:4ffee11e788b4a27fabeb7955547e4318a5298f34342a4bfd01f2e1faaeadc3d"},
+ {file = "nbclient-0.10.2.tar.gz", hash = "sha256:90b7fc6b810630db87a6d0c2250b1f0ab4cf4d3c27a299b0cde78a4ed3fd9193"},
]
[package.dependencies]
@@ -1614,25 +1670,26 @@ traitlets = ">=5.4"
[package.extras]
dev = ["pre-commit"]
-docs = ["autodoc-traits", "mock", "moto", "myst-parser", "nbclient[test]", "sphinx (>=1.7)", "sphinx-book-theme", "sphinxcontrib-spelling"]
-test = ["flaky", "ipykernel (>=6.19.3)", "ipython", "ipywidgets", "nbconvert (>=7.0.0)", "pytest (>=7.0,<8)", "pytest-asyncio", "pytest-cov (>=4.0)", "testpath", "xmltodict"]
+docs = ["autodoc-traits", "flaky", "ipykernel (>=6.19.3)", "ipython", "ipywidgets", "mock", "moto", "myst-parser", "nbconvert (>=7.1.0)", "pytest (>=7.0,<8)", "pytest-asyncio", "pytest-cov (>=4.0)", "sphinx (>=1.7)", "sphinx-book-theme", "sphinxcontrib-spelling", "testpath", "xmltodict"]
+test = ["flaky", "ipykernel (>=6.19.3)", "ipython", "ipywidgets", "nbconvert (>=7.1.0)", "pytest (>=7.0,<8)", "pytest-asyncio", "pytest-cov (>=4.0)", "testpath", "xmltodict"]
[[package]]
name = "nbconvert"
-version = "7.16.4"
+version = "7.16.6"
description = "Converting Jupyter Notebooks (.ipynb files) to other formats. Output formats include asciidoc, html, latex, markdown, pdf, py, rst, script. nbconvert can be used both as a Python library (`import nbconvert`) or as a command line tool (invoked as `jupyter nbconvert ...`)."
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "nbconvert-7.16.4-py3-none-any.whl", hash = "sha256:05873c620fe520b6322bf8a5ad562692343fe3452abda5765c7a34b7d1aa3eb3"},
- {file = "nbconvert-7.16.4.tar.gz", hash = "sha256:86ca91ba266b0a448dc96fa6c5b9d98affabde2867b363258703536807f9f7f4"},
+ {file = "nbconvert-7.16.6-py3-none-any.whl", hash = "sha256:1375a7b67e0c2883678c48e506dc320febb57685e5ee67faa51b18a90f3a712b"},
+ {file = "nbconvert-7.16.6.tar.gz", hash = "sha256:576a7e37c6480da7b8465eefa66c17844243816ce1ccc372633c6b71c3c0f582"},
]
[package.dependencies]
beautifulsoup4 = "*"
-bleach = "!=5.0.0"
+bleach = {version = "!=5.0.0", extras = ["css"]}
defusedxml = "*"
-importlib-metadata = {version = ">=3.6", markers = "python_version < \"3.10\""}
jinja2 = ">=3.0"
jupyter-core = ">=4.7"
jupyterlab-pygments = "*"
@@ -1643,7 +1700,6 @@ nbformat = ">=5.7"
packaging = "*"
pandocfilters = ">=1.4.1"
pygments = ">=2.4.1"
-tinycss2 = "*"
traitlets = ">=5.1"
[package.extras]
@@ -1661,6 +1717,8 @@ version = "5.10.4"
description = "The Jupyter Notebook format"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "nbformat-5.10.4-py3-none-any.whl", hash = "sha256:3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b"},
{file = "nbformat-5.10.4.tar.gz", hash = "sha256:322168b14f937a5d11362988ecac2a4952d3d8e3a2cbeb2319584631226d5b3a"},
@@ -1682,6 +1740,8 @@ version = "1.6.0"
description = "Patch asyncio to allow nested event loops"
optional = false
python-versions = ">=3.5"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c"},
{file = "nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe"},
@@ -1693,6 +1753,8 @@ version = "1.9.1"
description = "Node.js virtual environment builder"
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9"},
{file = "nodeenv-1.9.1.tar.gz", hash = "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f"},
@@ -1700,18 +1762,20 @@ files = [
[[package]]
name = "notebook"
-version = "7.2.1"
+version = "7.3.2"
description = "Jupyter Notebook - A web-based notebook environment for interactive computing"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "notebook-7.2.1-py3-none-any.whl", hash = "sha256:f45489a3995746f2195a137e0773e2130960b51c9ac3ce257dbc2705aab3a6ca"},
- {file = "notebook-7.2.1.tar.gz", hash = "sha256:4287b6da59740b32173d01d641f763d292f49c30e7a51b89c46ba8473126341e"},
+ {file = "notebook-7.3.2-py3-none-any.whl", hash = "sha256:e5f85fc59b69d3618d73cf27544418193ff8e8058d5bf61d315ce4f473556288"},
+ {file = "notebook-7.3.2.tar.gz", hash = "sha256:705e83a1785f45b383bf3ee13cb76680b92d24f56fb0c7d2136fe1d850cd3ca8"},
]
[package.dependencies]
jupyter-server = ">=2.4.0,<3"
-jupyterlab = ">=4.2.0,<4.3"
+jupyterlab = ">=4.3.4,<4.4"
jupyterlab-server = ">=2.27.1,<3"
notebook-shim = ">=0.2,<0.3"
tornado = ">=6.2.0"
@@ -1727,6 +1791,8 @@ version = "0.2.4"
description = "A shim layer for notebook traits and config"
optional = false
python-versions = ">=3.7"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "notebook_shim-0.2.4-py3-none-any.whl", hash = "sha256:411a5be4e9dc882a074ccbcae671eda64cceb068767e9a3419096986560e1cef"},
{file = "notebook_shim-0.2.4.tar.gz", hash = "sha256:b4b2cfa1b65d98307ca24361f5b30fe785b53c3fd07b7a47e89acb5e6ac638cb"},
@@ -1740,39 +1806,68 @@ test = ["pytest", "pytest-console-scripts", "pytest-jupyter", "pytest-tornasync"
[[package]]
name = "numpy"
-version = "1.24.4"
+version = "2.2.1"
description = "Fundamental package for array computing in Python"
optional = false
-python-versions = ">=3.8"
-files = [
- {file = "numpy-1.24.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c0bfb52d2169d58c1cdb8cc1f16989101639b34c7d3ce60ed70b19c63eba0b64"},
- {file = "numpy-1.24.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ed094d4f0c177b1b8e7aa9cba7d6ceed51c0e569a5318ac0ca9a090680a6a1b1"},
- {file = "numpy-1.24.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79fc682a374c4a8ed08b331bef9c5f582585d1048fa6d80bc6c35bc384eee9b4"},
- {file = "numpy-1.24.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ffe43c74893dbf38c2b0a1f5428760a1a9c98285553c89e12d70a96a7f3a4d6"},
- {file = "numpy-1.24.4-cp310-cp310-win32.whl", hash = "sha256:4c21decb6ea94057331e111a5bed9a79d335658c27ce2adb580fb4d54f2ad9bc"},
- {file = "numpy-1.24.4-cp310-cp310-win_amd64.whl", hash = "sha256:b4bea75e47d9586d31e892a7401f76e909712a0fd510f58f5337bea9572c571e"},
- {file = "numpy-1.24.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f136bab9c2cfd8da131132c2cf6cc27331dd6fae65f95f69dcd4ae3c3639c810"},
- {file = "numpy-1.24.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e2926dac25b313635e4d6cf4dc4e51c8c0ebfed60b801c799ffc4c32bf3d1254"},
- {file = "numpy-1.24.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:222e40d0e2548690405b0b3c7b21d1169117391c2e82c378467ef9ab4c8f0da7"},
- {file = "numpy-1.24.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7215847ce88a85ce39baf9e89070cb860c98fdddacbaa6c0da3ffb31b3350bd5"},
- {file = "numpy-1.24.4-cp311-cp311-win32.whl", hash = "sha256:4979217d7de511a8d57f4b4b5b2b965f707768440c17cb70fbf254c4b225238d"},
- {file = "numpy-1.24.4-cp311-cp311-win_amd64.whl", hash = "sha256:b7b1fc9864d7d39e28f41d089bfd6353cb5f27ecd9905348c24187a768c79694"},
- {file = "numpy-1.24.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1452241c290f3e2a312c137a9999cdbf63f78864d63c79039bda65ee86943f61"},
- {file = "numpy-1.24.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:04640dab83f7c6c85abf9cd729c5b65f1ebd0ccf9de90b270cd61935eef0197f"},
- {file = "numpy-1.24.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5425b114831d1e77e4b5d812b69d11d962e104095a5b9c3b641a218abcc050e"},
- {file = "numpy-1.24.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd80e219fd4c71fc3699fc1dadac5dcf4fd882bfc6f7ec53d30fa197b8ee22dc"},
- {file = "numpy-1.24.4-cp38-cp38-win32.whl", hash = "sha256:4602244f345453db537be5314d3983dbf5834a9701b7723ec28923e2889e0bb2"},
- {file = "numpy-1.24.4-cp38-cp38-win_amd64.whl", hash = "sha256:692f2e0f55794943c5bfff12b3f56f99af76f902fc47487bdfe97856de51a706"},
- {file = "numpy-1.24.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2541312fbf09977f3b3ad449c4e5f4bb55d0dbf79226d7724211acc905049400"},
- {file = "numpy-1.24.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9667575fb6d13c95f1b36aca12c5ee3356bf001b714fc354eb5465ce1609e62f"},
- {file = "numpy-1.24.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3a86ed21e4f87050382c7bc96571755193c4c1392490744ac73d660e8f564a9"},
- {file = "numpy-1.24.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d11efb4dbecbdf22508d55e48d9c8384db795e1b7b51ea735289ff96613ff74d"},
- {file = "numpy-1.24.4-cp39-cp39-win32.whl", hash = "sha256:6620c0acd41dbcb368610bb2f4d83145674040025e5536954782467100aa8835"},
- {file = "numpy-1.24.4-cp39-cp39-win_amd64.whl", hash = "sha256:befe2bf740fd8373cf56149a5c23a0f601e82869598d41f8e188a0e9869926f8"},
- {file = "numpy-1.24.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:31f13e25b4e304632a4619d0e0777662c2ffea99fcae2029556b17d8ff958aef"},
- {file = "numpy-1.24.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95f7ac6540e95bc440ad77f56e520da5bf877f87dca58bd095288dce8940532a"},
- {file = "numpy-1.24.4-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:e98f220aa76ca2a977fe435f5b04d7b3470c0a2e6312907b37ba6068f26787f2"},
- {file = "numpy-1.24.4.tar.gz", hash = "sha256:80f5e3a4e498641401868df4208b74581206afbee7cf7b8329daae82676d9463"},
+python-versions = ">=3.10"
+groups = ["main"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
+files = [
+ {file = "numpy-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5edb4e4caf751c1518e6a26a83501fda79bff41cc59dac48d70e6d65d4ec4440"},
+ {file = "numpy-2.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:aa3017c40d513ccac9621a2364f939d39e550c542eb2a894b4c8da92b38896ab"},
+ {file = "numpy-2.2.1-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:61048b4a49b1c93fe13426e04e04fdf5a03f456616f6e98c7576144677598675"},
+ {file = "numpy-2.2.1-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:7671dc19c7019103ca44e8d94917eba8534c76133523ca8406822efdd19c9308"},
+ {file = "numpy-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4250888bcb96617e00bfa28ac24850a83c9f3a16db471eca2ee1f1714df0f957"},
+ {file = "numpy-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a7746f235c47abc72b102d3bce9977714c2444bdfaea7888d241b4c4bb6a78bf"},
+ {file = "numpy-2.2.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:059e6a747ae84fce488c3ee397cee7e5f905fd1bda5fb18c66bc41807ff119b2"},
+ {file = "numpy-2.2.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f62aa6ee4eb43b024b0e5a01cf65a0bb078ef8c395e8713c6e8a12a697144528"},
+ {file = "numpy-2.2.1-cp310-cp310-win32.whl", hash = "sha256:48fd472630715e1c1c89bf1feab55c29098cb403cc184b4859f9c86d4fcb6a95"},
+ {file = "numpy-2.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:b541032178a718c165a49638d28272b771053f628382d5e9d1c93df23ff58dbf"},
+ {file = "numpy-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:40f9e544c1c56ba8f1cf7686a8c9b5bb249e665d40d626a23899ba6d5d9e1484"},
+ {file = "numpy-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f9b57eaa3b0cd8db52049ed0330747b0364e899e8a606a624813452b8203d5f7"},
+ {file = "numpy-2.2.1-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:bc8a37ad5b22c08e2dbd27df2b3ef7e5c0864235805b1e718a235bcb200cf1cb"},
+ {file = "numpy-2.2.1-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:9036d6365d13b6cbe8f27a0eaf73ddcc070cae584e5ff94bb45e3e9d729feab5"},
+ {file = "numpy-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:51faf345324db860b515d3f364eaa93d0e0551a88d6218a7d61286554d190d73"},
+ {file = "numpy-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:38efc1e56b73cc9b182fe55e56e63b044dd26a72128fd2fbd502f75555d92591"},
+ {file = "numpy-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:31b89fa67a8042e96715c68e071a1200c4e172f93b0fbe01a14c0ff3ff820fc8"},
+ {file = "numpy-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4c86e2a209199ead7ee0af65e1d9992d1dce7e1f63c4b9a616500f93820658d0"},
+ {file = "numpy-2.2.1-cp311-cp311-win32.whl", hash = "sha256:b34d87e8a3090ea626003f87f9392b3929a7bbf4104a05b6667348b6bd4bf1cd"},
+ {file = "numpy-2.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:360137f8fb1b753c5cde3ac388597ad680eccbbbb3865ab65efea062c4a1fd16"},
+ {file = "numpy-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:694f9e921a0c8f252980e85bce61ebbd07ed2b7d4fa72d0e4246f2f8aa6642ab"},
+ {file = "numpy-2.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3683a8d166f2692664262fd4900f207791d005fb088d7fdb973cc8d663626faa"},
+ {file = "numpy-2.2.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:780077d95eafc2ccc3ced969db22377b3864e5b9a0ea5eb347cc93b3ea900315"},
+ {file = "numpy-2.2.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:55ba24ebe208344aa7a00e4482f65742969a039c2acfcb910bc6fcd776eb4355"},
+ {file = "numpy-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b1d07b53b78bf84a96898c1bc139ad7f10fda7423f5fd158fd0f47ec5e01ac7"},
+ {file = "numpy-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5062dc1a4e32a10dc2b8b13cedd58988261416e811c1dc4dbdea4f57eea61b0d"},
+ {file = "numpy-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:fce4f615f8ca31b2e61aa0eb5865a21e14f5629515c9151850aa936c02a1ee51"},
+ {file = "numpy-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:67d4cda6fa6ffa073b08c8372aa5fa767ceb10c9a0587c707505a6d426f4e046"},
+ {file = "numpy-2.2.1-cp312-cp312-win32.whl", hash = "sha256:32cb94448be47c500d2c7a95f93e2f21a01f1fd05dd2beea1ccd049bb6001cd2"},
+ {file = "numpy-2.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:ba5511d8f31c033a5fcbda22dd5c813630af98c70b2661f2d2c654ae3cdfcfc8"},
+ {file = "numpy-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f1d09e520217618e76396377c81fba6f290d5f926f50c35f3a5f72b01a0da780"},
+ {file = "numpy-2.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3ecc47cd7f6ea0336042be87d9e7da378e5c7e9b3c8ad0f7c966f714fc10d821"},
+ {file = "numpy-2.2.1-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:f419290bc8968a46c4933158c91a0012b7a99bb2e465d5ef5293879742f8797e"},
+ {file = "numpy-2.2.1-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:5b6c390bfaef8c45a260554888966618328d30e72173697e5cabe6b285fb2348"},
+ {file = "numpy-2.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:526fc406ab991a340744aad7e25251dd47a6720a685fa3331e5c59fef5282a59"},
+ {file = "numpy-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f74e6fdeb9a265624ec3a3918430205dff1df7e95a230779746a6af78bc615af"},
+ {file = "numpy-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:53c09385ff0b72ba79d8715683c1168c12e0b6e84fb0372e97553d1ea91efe51"},
+ {file = "numpy-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f3eac17d9ec51be534685ba877b6ab5edc3ab7ec95c8f163e5d7b39859524716"},
+ {file = "numpy-2.2.1-cp313-cp313-win32.whl", hash = "sha256:9ad014faa93dbb52c80d8f4d3dcf855865c876c9660cb9bd7553843dd03a4b1e"},
+ {file = "numpy-2.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:164a829b6aacf79ca47ba4814b130c4020b202522a93d7bff2202bfb33b61c60"},
+ {file = "numpy-2.2.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4dfda918a13cc4f81e9118dea249e192ab167a0bb1966272d5503e39234d694e"},
+ {file = "numpy-2.2.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:733585f9f4b62e9b3528dd1070ec4f52b8acf64215b60a845fa13ebd73cd0712"},
+ {file = "numpy-2.2.1-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:89b16a18e7bba224ce5114db863e7029803c179979e1af6ad6a6b11f70545008"},
+ {file = "numpy-2.2.1-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:676f4eebf6b2d430300f1f4f4c2461685f8269f94c89698d832cdf9277f30b84"},
+ {file = "numpy-2.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27f5cdf9f493b35f7e41e8368e7d7b4bbafaf9660cba53fb21d2cd174ec09631"},
+ {file = "numpy-2.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1ad395cf254c4fbb5b2132fee391f361a6e8c1adbd28f2cd8e79308a615fe9d"},
+ {file = "numpy-2.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:08ef779aed40dbc52729d6ffe7dd51df85796a702afbf68a4f4e41fafdc8bda5"},
+ {file = "numpy-2.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:26c9c4382b19fcfbbed3238a14abf7ff223890ea1936b8890f058e7ba35e8d71"},
+ {file = "numpy-2.2.1-cp313-cp313t-win32.whl", hash = "sha256:93cf4e045bae74c90ca833cba583c14b62cb4ba2cba0abd2b141ab52548247e2"},
+ {file = "numpy-2.2.1-cp313-cp313t-win_amd64.whl", hash = "sha256:bff7d8ec20f5f42607599f9994770fa65d76edca264a87b5e4ea5629bce12268"},
+ {file = "numpy-2.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7ba9cc93a91d86365a5d270dee221fdc04fb68d7478e6bf6af650de78a8339e3"},
+ {file = "numpy-2.2.1-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:3d03883435a19794e41f147612a77a8f56d4e52822337844fff3d4040a142964"},
+ {file = "numpy-2.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4511d9e6071452b944207c8ce46ad2f897307910b402ea5fa975da32e0102800"},
+ {file = "numpy-2.2.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:5c5cc0cbabe9452038ed984d05ac87910f89370b9242371bd9079cb4af61811e"},
+ {file = "numpy-2.2.1.tar.gz", hash = "sha256:45681fd7128c8ad1c379f0ca0776a8b0c6583d2f69889ddac01559dfe4390918"},
]
[[package]]
@@ -1781,6 +1876,8 @@ version = "7.7.0"
description = "A decorator to automatically detect mismatch when overriding a method."
optional = false
python-versions = ">=3.6"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "overrides-7.7.0-py3-none-any.whl", hash = "sha256:c7ed9d062f78b8e4c1a7b70bd8796b35ead4d9f510227ef9c5dc7626c60d7e49"},
{file = "overrides-7.7.0.tar.gz", hash = "sha256:55158fa3d93b98cc75299b1e67078ad9003ca27945c76162c1c0766d6f91820a"},
@@ -1788,61 +1885,103 @@ files = [
[[package]]
name = "packaging"
-version = "24.1"
+version = "24.2"
description = "Core utilities for Python packages"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "packaging-24.1-py3-none-any.whl", hash = "sha256:5b8f2217dbdbd2f7f384c41c628544e6d52f2d0f53c6d0c3ea61aa5d1d7ff124"},
- {file = "packaging-24.1.tar.gz", hash = "sha256:026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"},
+ {file = "packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759"},
+ {file = "packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f"},
]
[[package]]
name = "pandas"
-version = "1.5.3"
+version = "2.2.3"
description = "Powerful data structures for data analysis, time series, and statistics"
optional = false
-python-versions = ">=3.8"
-files = [
- {file = "pandas-1.5.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3749077d86e3a2f0ed51367f30bf5b82e131cc0f14260c4d3e499186fccc4406"},
- {file = "pandas-1.5.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:972d8a45395f2a2d26733eb8d0f629b2f90bebe8e8eddbb8829b180c09639572"},
- {file = "pandas-1.5.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:50869a35cbb0f2e0cd5ec04b191e7b12ed688874bd05dd777c19b28cbea90996"},
- {file = "pandas-1.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c3ac844a0fe00bfaeb2c9b51ab1424e5c8744f89860b138434a363b1f620f354"},
- {file = "pandas-1.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a0a56cef15fd1586726dace5616db75ebcfec9179a3a55e78f72c5639fa2a23"},
- {file = "pandas-1.5.3-cp310-cp310-win_amd64.whl", hash = "sha256:478ff646ca42b20376e4ed3fa2e8d7341e8a63105586efe54fa2508ee087f328"},
- {file = "pandas-1.5.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:6973549c01ca91ec96199e940495219c887ea815b2083722821f1d7abfa2b4dc"},
- {file = "pandas-1.5.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c39a8da13cede5adcd3be1182883aea1c925476f4e84b2807a46e2775306305d"},
- {file = "pandas-1.5.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f76d097d12c82a535fda9dfe5e8dd4127952b45fea9b0276cb30cca5ea313fbc"},
- {file = "pandas-1.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e474390e60ed609cec869b0da796ad94f420bb057d86784191eefc62b65819ae"},
- {file = "pandas-1.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5f2b952406a1588ad4cad5b3f55f520e82e902388a6d5a4a91baa8d38d23c7f6"},
- {file = "pandas-1.5.3-cp311-cp311-win_amd64.whl", hash = "sha256:bc4c368f42b551bf72fac35c5128963a171b40dce866fb066540eeaf46faa003"},
- {file = "pandas-1.5.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:14e45300521902689a81f3f41386dc86f19b8ba8dd5ac5a3c7010ef8d2932813"},
- {file = "pandas-1.5.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9842b6f4b8479e41968eced654487258ed81df7d1c9b7b870ceea24ed9459b31"},
- {file = "pandas-1.5.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:26d9c71772c7afb9d5046e6e9cf42d83dd147b5cf5bcb9d97252077118543792"},
- {file = "pandas-1.5.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5fbcb19d6fceb9e946b3e23258757c7b225ba450990d9ed63ccceeb8cae609f7"},
- {file = "pandas-1.5.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:565fa34a5434d38e9d250af3c12ff931abaf88050551d9fbcdfafca50d62babf"},
- {file = "pandas-1.5.3-cp38-cp38-win32.whl", hash = "sha256:87bd9c03da1ac870a6d2c8902a0e1fd4267ca00f13bc494c9e5a9020920e1d51"},
- {file = "pandas-1.5.3-cp38-cp38-win_amd64.whl", hash = "sha256:41179ce559943d83a9b4bbacb736b04c928b095b5f25dd2b7389eda08f46f373"},
- {file = "pandas-1.5.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c74a62747864ed568f5a82a49a23a8d7fe171d0c69038b38cedf0976831296fa"},
- {file = "pandas-1.5.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c4c00e0b0597c8e4f59e8d461f797e5d70b4d025880516a8261b2817c47759ee"},
- {file = "pandas-1.5.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a50d9a4336a9621cab7b8eb3fb11adb82de58f9b91d84c2cd526576b881a0c5a"},
- {file = "pandas-1.5.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd05f7783b3274aa206a1af06f0ceed3f9b412cf665b7247eacd83be41cf7bf0"},
- {file = "pandas-1.5.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f69c4029613de47816b1bb30ff5ac778686688751a5e9c99ad8c7031f6508e5"},
- {file = "pandas-1.5.3-cp39-cp39-win32.whl", hash = "sha256:7cec0bee9f294e5de5bbfc14d0573f65526071029d036b753ee6507d2a21480a"},
- {file = "pandas-1.5.3-cp39-cp39-win_amd64.whl", hash = "sha256:dfd681c5dc216037e0b0a2c821f5ed99ba9f03ebcf119c7dac0e9a7b960b9ec9"},
- {file = "pandas-1.5.3.tar.gz", hash = "sha256:74a3fd7e5a7ec052f183273dc7b0acd3a863edf7520f5d3a1765c04ffdb3b0b1"},
+python-versions = ">=3.9"
+groups = ["main"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
+files = [
+ {file = "pandas-2.2.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1948ddde24197a0f7add2bdc4ca83bf2b1ef84a1bc8ccffd95eda17fd836ecb5"},
+ {file = "pandas-2.2.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:381175499d3802cde0eabbaf6324cce0c4f5d52ca6f8c377c29ad442f50f6348"},
+ {file = "pandas-2.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d9c45366def9a3dd85a6454c0e7908f2b3b8e9c138f5dc38fed7ce720d8453ed"},
+ {file = "pandas-2.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86976a1c5b25ae3f8ccae3a5306e443569ee3c3faf444dfd0f41cda24667ad57"},
+ {file = "pandas-2.2.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b8661b0238a69d7aafe156b7fa86c44b881387509653fdf857bebc5e4008ad42"},
+ {file = "pandas-2.2.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:37e0aced3e8f539eccf2e099f65cdb9c8aa85109b0be6e93e2baff94264bdc6f"},
+ {file = "pandas-2.2.3-cp310-cp310-win_amd64.whl", hash = "sha256:56534ce0746a58afaf7942ba4863e0ef81c9c50d3f0ae93e9497d6a41a057645"},
+ {file = "pandas-2.2.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:66108071e1b935240e74525006034333f98bcdb87ea116de573a6a0dccb6c039"},
+ {file = "pandas-2.2.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7c2875855b0ff77b2a64a0365e24455d9990730d6431b9e0ee18ad8acee13dbd"},
+ {file = "pandas-2.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:cd8d0c3be0515c12fed0bdbae072551c8b54b7192c7b1fda0ba56059a0179698"},
+ {file = "pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c124333816c3a9b03fbeef3a9f230ba9a737e9e5bb4060aa2107a86cc0a497fc"},
+ {file = "pandas-2.2.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:63cc132e40a2e084cf01adf0775b15ac515ba905d7dcca47e9a251819c575ef3"},
+ {file = "pandas-2.2.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:29401dbfa9ad77319367d36940cd8a0b3a11aba16063e39632d98b0e931ddf32"},
+ {file = "pandas-2.2.3-cp311-cp311-win_amd64.whl", hash = "sha256:3fc6873a41186404dad67245896a6e440baacc92f5b716ccd1bc9ed2995ab2c5"},
+ {file = "pandas-2.2.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b1d432e8d08679a40e2a6d8b2f9770a5c21793a6f9f47fdd52c5ce1948a5a8a9"},
+ {file = "pandas-2.2.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a5a1595fe639f5988ba6a8e5bc9649af3baf26df3998a0abe56c02609392e0a4"},
+ {file = "pandas-2.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5de54125a92bb4d1c051c0659e6fcb75256bf799a732a87184e5ea503965bce3"},
+ {file = "pandas-2.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fffb8ae78d8af97f849404f21411c95062db1496aeb3e56f146f0355c9989319"},
+ {file = "pandas-2.2.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6dfcb5ee8d4d50c06a51c2fffa6cff6272098ad6540aed1a76d15fb9318194d8"},
+ {file = "pandas-2.2.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:062309c1b9ea12a50e8ce661145c6aab431b1e99530d3cd60640e255778bd43a"},
+ {file = "pandas-2.2.3-cp312-cp312-win_amd64.whl", hash = "sha256:59ef3764d0fe818125a5097d2ae867ca3fa64df032331b7e0917cf5d7bf66b13"},
+ {file = "pandas-2.2.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f00d1345d84d8c86a63e476bb4955e46458b304b9575dcf71102b5c705320015"},
+ {file = "pandas-2.2.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3508d914817e153ad359d7e069d752cdd736a247c322d932eb89e6bc84217f28"},
+ {file = "pandas-2.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:22a9d949bfc9a502d320aa04e5d02feab689d61da4e7764b62c30b991c42c5f0"},
+ {file = "pandas-2.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3a255b2c19987fbbe62a9dfd6cff7ff2aa9ccab3fc75218fd4b7530f01efa24"},
+ {file = "pandas-2.2.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:800250ecdadb6d9c78eae4990da62743b857b470883fa27f652db8bdde7f6659"},
+ {file = "pandas-2.2.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6374c452ff3ec675a8f46fd9ab25c4ad0ba590b71cf0656f8b6daa5202bca3fb"},
+ {file = "pandas-2.2.3-cp313-cp313-win_amd64.whl", hash = "sha256:61c5ad4043f791b61dd4752191d9f07f0ae412515d59ba8f005832a532f8736d"},
+ {file = "pandas-2.2.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:3b71f27954685ee685317063bf13c7709a7ba74fc996b84fc6821c59b0f06468"},
+ {file = "pandas-2.2.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:38cf8125c40dae9d5acc10fa66af8ea6fdf760b2714ee482ca691fc66e6fcb18"},
+ {file = "pandas-2.2.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ba96630bc17c875161df3818780af30e43be9b166ce51c9a18c1feae342906c2"},
+ {file = "pandas-2.2.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1db71525a1538b30142094edb9adc10be3f3e176748cd7acc2240c2f2e5aa3a4"},
+ {file = "pandas-2.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:15c0e1e02e93116177d29ff83e8b1619c93ddc9c49083f237d4312337a61165d"},
+ {file = "pandas-2.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:ad5b65698ab28ed8d7f18790a0dc58005c7629f227be9ecc1072aa74c0c1d43a"},
+ {file = "pandas-2.2.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bc6b93f9b966093cb0fd62ff1a7e4c09e6d546ad7c1de191767baffc57628f39"},
+ {file = "pandas-2.2.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5dbca4c1acd72e8eeef4753eeca07de9b1db4f398669d5994086f788a5d7cc30"},
+ {file = "pandas-2.2.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:8cd6d7cc958a3910f934ea8dbdf17b2364827bb4dafc38ce6eef6bb3d65ff09c"},
+ {file = "pandas-2.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:99df71520d25fade9db7c1076ac94eb994f4d2673ef2aa2e86ee039b6746d20c"},
+ {file = "pandas-2.2.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:31d0ced62d4ea3e231a9f228366919a5ea0b07440d9d4dac345376fd8e1477ea"},
+ {file = "pandas-2.2.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7eee9e7cea6adf3e3d24e304ac6b8300646e2a5d1cd3a3c2abed9101b0846761"},
+ {file = "pandas-2.2.3-cp39-cp39-win_amd64.whl", hash = "sha256:4850ba03528b6dd51d6c5d273c46f183f39a9baf3f0143e566b89450965b105e"},
+ {file = "pandas-2.2.3.tar.gz", hash = "sha256:4f18ba62b61d7e192368b84517265a99b4d7ee8912f8708660fb4a366cc82667"},
]
[package.dependencies]
numpy = [
- {version = ">=1.20.3", markers = "python_version < \"3.10\""},
- {version = ">=1.21.0", markers = "python_version >= \"3.10\""},
+ {version = ">=1.23.2", markers = "python_version == \"3.11\""},
+ {version = ">=1.26.0", markers = "python_version >= \"3.12\""},
]
-python-dateutil = ">=2.8.1"
+python-dateutil = ">=2.8.2"
pytz = ">=2020.1"
-
-[package.extras]
-test = ["hypothesis (>=5.5.3)", "pytest (>=6.0)", "pytest-xdist (>=1.31)"]
+tzdata = ">=2022.7"
+
+[package.extras]
+all = ["PyQt5 (>=5.15.9)", "SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)", "beautifulsoup4 (>=4.11.2)", "bottleneck (>=1.3.6)", "dataframe-api-compat (>=0.1.7)", "fastparquet (>=2022.12.0)", "fsspec (>=2022.11.0)", "gcsfs (>=2022.11.0)", "html5lib (>=1.1)", "hypothesis (>=6.46.1)", "jinja2 (>=3.1.2)", "lxml (>=4.9.2)", "matplotlib (>=3.6.3)", "numba (>=0.56.4)", "numexpr (>=2.8.4)", "odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "pandas-gbq (>=0.19.0)", "psycopg2 (>=2.9.6)", "pyarrow (>=10.0.1)", "pymysql (>=1.0.2)", "pyreadstat (>=1.2.0)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "qtpy (>=2.3.0)", "s3fs (>=2022.11.0)", "scipy (>=1.10.0)", "tables (>=3.8.0)", "tabulate (>=0.9.0)", "xarray (>=2022.12.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)", "zstandard (>=0.19.0)"]
+aws = ["s3fs (>=2022.11.0)"]
+clipboard = ["PyQt5 (>=5.15.9)", "qtpy (>=2.3.0)"]
+compression = ["zstandard (>=0.19.0)"]
+computation = ["scipy (>=1.10.0)", "xarray (>=2022.12.0)"]
+consortium-standard = ["dataframe-api-compat (>=0.1.7)"]
+excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)"]
+feather = ["pyarrow (>=10.0.1)"]
+fss = ["fsspec (>=2022.11.0)"]
+gcp = ["gcsfs (>=2022.11.0)", "pandas-gbq (>=0.19.0)"]
+hdf5 = ["tables (>=3.8.0)"]
+html = ["beautifulsoup4 (>=4.11.2)", "html5lib (>=1.1)", "lxml (>=4.9.2)"]
+mysql = ["SQLAlchemy (>=2.0.0)", "pymysql (>=1.0.2)"]
+output-formatting = ["jinja2 (>=3.1.2)", "tabulate (>=0.9.0)"]
+parquet = ["pyarrow (>=10.0.1)"]
+performance = ["bottleneck (>=1.3.6)", "numba (>=0.56.4)", "numexpr (>=2.8.4)"]
+plot = ["matplotlib (>=3.6.3)"]
+postgresql = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "psycopg2 (>=2.9.6)"]
+pyarrow = ["pyarrow (>=10.0.1)"]
+spss = ["pyreadstat (>=1.2.0)"]
+sql-other = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)"]
+test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"]
+xml = ["lxml (>=4.9.2)"]
[[package]]
name = "pandocfilters"
@@ -1850,6 +1989,8 @@ version = "1.5.1"
description = "Utilities for writing pandoc filters in python"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "pandocfilters-1.5.1-py2.py3-none-any.whl", hash = "sha256:93be382804a9cdb0a7267585f157e5d1731bbe5545a85b268d6f5fe6232de2bc"},
{file = "pandocfilters-1.5.1.tar.gz", hash = "sha256:002b4a555ee4ebc03f8b66307e287fa492e4a77b4ea14d3f934328297bb4939e"},
@@ -1861,6 +2002,8 @@ version = "0.8.4"
description = "A Python Parser"
optional = false
python-versions = ">=3.6"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "parso-0.8.4-py2.py3-none-any.whl", hash = "sha256:a418670a20291dacd2dddc80c377c5c3791378ee1e8d12bffc35420643d43f18"},
{file = "parso-0.8.4.tar.gz", hash = "sha256:eb3a7b58240fb99099a345571deecc0f9540ea5f4dd2fe14c2a99d6b281ab92d"},
@@ -1876,6 +2019,8 @@ version = "4.9.0"
description = "Pexpect allows easy control of interactive console applications."
optional = false
python-versions = "*"
+groups = ["dev"]
+markers = "python_version == \"3.11\" and (sys_platform != \"win32\" and sys_platform != \"emscripten\") or python_version >= \"3.12\" and (sys_platform != \"win32\" and sys_platform != \"emscripten\")"
files = [
{file = "pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523"},
{file = "pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f"},
@@ -1884,43 +2029,23 @@ files = [
[package.dependencies]
ptyprocess = ">=0.5"
-[[package]]
-name = "pickleshare"
-version = "0.7.5"
-description = "Tiny 'shelve'-like database with concurrency support"
-optional = false
-python-versions = "*"
-files = [
- {file = "pickleshare-0.7.5-py2.py3-none-any.whl", hash = "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56"},
- {file = "pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca"},
-]
-
-[[package]]
-name = "pkgutil-resolve-name"
-version = "1.3.10"
-description = "Resolve a name to an object."
-optional = false
-python-versions = ">=3.6"
-files = [
- {file = "pkgutil_resolve_name-1.3.10-py3-none-any.whl", hash = "sha256:ca27cc078d25c5ad71a9de0a7a330146c4e014c2462d9af19c6b828280649c5e"},
- {file = "pkgutil_resolve_name-1.3.10.tar.gz", hash = "sha256:357d6c9e6a755653cfd78893817c0853af365dd51ec97f3d358a819373bbd174"},
-]
-
[[package]]
name = "platformdirs"
-version = "4.2.2"
+version = "4.3.6"
description = "A small Python package for determining appropriate platform-specific dirs, e.g. a `user data dir`."
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "platformdirs-4.2.2-py3-none-any.whl", hash = "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee"},
- {file = "platformdirs-4.2.2.tar.gz", hash = "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3"},
+ {file = "platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb"},
+ {file = "platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907"},
]
[package.extras]
-docs = ["furo (>=2023.9.10)", "proselint (>=0.13)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"]
-test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)"]
-type = ["mypy (>=1.8)"]
+docs = ["furo (>=2024.8.6)", "proselint (>=0.14)", "sphinx (>=8.0.2)", "sphinx-autodoc-typehints (>=2.4)"]
+test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=8.3.2)", "pytest-cov (>=5)", "pytest-mock (>=3.14)"]
+type = ["mypy (>=1.11.2)"]
[[package]]
name = "pluggy"
@@ -1928,6 +2053,8 @@ version = "1.5.0"
description = "plugin and hook calling mechanisms for python"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669"},
{file = "pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1"},
@@ -1943,6 +2070,8 @@ version = "2.21.0"
description = "A framework for managing and maintaining multi-language pre-commit hooks."
optional = false
python-versions = ">=3.7"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "pre_commit-2.21.0-py2.py3-none-any.whl", hash = "sha256:e2f91727039fc39a92f58a588a25b87f936de6567eed4f0e673e0507edc75bad"},
{file = "pre_commit-2.21.0.tar.gz", hash = "sha256:31ef31af7e474a8d8995027fefdfcf509b5c913ff31f2015b4ec4beb26a6f658"},
@@ -1957,13 +2086,15 @@ virtualenv = ">=20.10.0"
[[package]]
name = "prometheus-client"
-version = "0.20.0"
+version = "0.21.1"
description = "Python client for the Prometheus monitoring system."
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "prometheus_client-0.20.0-py3-none-any.whl", hash = "sha256:cde524a85bce83ca359cc837f28b8c0db5cac7aa653a588fd7e84ba061c329e7"},
- {file = "prometheus_client-0.20.0.tar.gz", hash = "sha256:287629d00b147a32dcb2be0b9df905da599b2d82f80377083ec8463309a4bb89"},
+ {file = "prometheus_client-0.21.1-py3-none-any.whl", hash = "sha256:594b45c410d6f4f8888940fe80b5cc2521b305a1fafe1c58609ef715a001f301"},
+ {file = "prometheus_client-0.21.1.tar.gz", hash = "sha256:252505a722ac04b0456be05c05f75f45d760c2911ffc45f2a06bcaed9f3ae3fb"},
]
[package.extras]
@@ -1971,13 +2102,15 @@ twisted = ["twisted"]
[[package]]
name = "prompt-toolkit"
-version = "3.0.47"
+version = "3.0.50"
description = "Library for building powerful interactive command lines in Python"
optional = false
-python-versions = ">=3.7.0"
+python-versions = ">=3.8.0"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "prompt_toolkit-3.0.47-py3-none-any.whl", hash = "sha256:0d7bfa67001d5e39d02c224b663abc33687405033a8c422d0d675a5a13361d10"},
- {file = "prompt_toolkit-3.0.47.tar.gz", hash = "sha256:1e1b29cb58080b1e69f207c893a1a7bf16d127a5c30c9d17a25a5d77792e5360"},
+ {file = "prompt_toolkit-3.0.50-py3-none-any.whl", hash = "sha256:9b6427eb19e479d98acff65196a307c555eb567989e6d88ebbb1b509d9779198"},
+ {file = "prompt_toolkit-3.0.50.tar.gz", hash = "sha256:544748f3860a2623ca5cd6d2795e7a14f3d0e1c3c9728359013f79877fc89bab"},
]
[package.dependencies]
@@ -1985,32 +2118,35 @@ wcwidth = "*"
[[package]]
name = "psutil"
-version = "6.0.0"
+version = "6.1.1"
description = "Cross-platform lib for process and system monitoring in Python."
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "psutil-6.0.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a021da3e881cd935e64a3d0a20983bda0bb4cf80e4f74fa9bfcb1bc5785360c6"},
- {file = "psutil-6.0.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:1287c2b95f1c0a364d23bc6f2ea2365a8d4d9b726a3be7294296ff7ba97c17f0"},
- {file = "psutil-6.0.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:a9a3dbfb4de4f18174528d87cc352d1f788b7496991cca33c6996f40c9e3c92c"},
- {file = "psutil-6.0.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:6ec7588fb3ddaec7344a825afe298db83fe01bfaaab39155fa84cf1c0d6b13c3"},
- {file = "psutil-6.0.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:1e7c870afcb7d91fdea2b37c24aeb08f98b6d67257a5cb0a8bc3ac68d0f1a68c"},
- {file = "psutil-6.0.0-cp27-none-win32.whl", hash = "sha256:02b69001f44cc73c1c5279d02b30a817e339ceb258ad75997325e0e6169d8b35"},
- {file = "psutil-6.0.0-cp27-none-win_amd64.whl", hash = "sha256:21f1fb635deccd510f69f485b87433460a603919b45e2a324ad65b0cc74f8fb1"},
- {file = "psutil-6.0.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:c588a7e9b1173b6e866756dde596fd4cad94f9399daf99ad8c3258b3cb2b47a0"},
- {file = "psutil-6.0.0-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ed2440ada7ef7d0d608f20ad89a04ec47d2d3ab7190896cd62ca5fc4fe08bf0"},
- {file = "psutil-6.0.0-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5fd9a97c8e94059b0ef54a7d4baf13b405011176c3b6ff257c247cae0d560ecd"},
- {file = "psutil-6.0.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e8d0054fc88153ca0544f5c4d554d42e33df2e009c4ff42284ac9ebdef4132"},
- {file = "psutil-6.0.0-cp36-cp36m-win32.whl", hash = "sha256:fc8c9510cde0146432bbdb433322861ee8c3efbf8589865c8bf8d21cb30c4d14"},
- {file = "psutil-6.0.0-cp36-cp36m-win_amd64.whl", hash = "sha256:34859b8d8f423b86e4385ff3665d3f4d94be3cdf48221fbe476e883514fdb71c"},
- {file = "psutil-6.0.0-cp37-abi3-win32.whl", hash = "sha256:a495580d6bae27291324fe60cea0b5a7c23fa36a7cd35035a16d93bdcf076b9d"},
- {file = "psutil-6.0.0-cp37-abi3-win_amd64.whl", hash = "sha256:33ea5e1c975250a720b3a6609c490db40dae5d83a4eb315170c4fe0d8b1f34b3"},
- {file = "psutil-6.0.0-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:ffe7fc9b6b36beadc8c322f84e1caff51e8703b88eee1da46d1e3a6ae11b4fd0"},
- {file = "psutil-6.0.0.tar.gz", hash = "sha256:8faae4f310b6d969fa26ca0545338b21f73c6b15db7c4a8d934a5482faa818f2"},
+ {file = "psutil-6.1.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:9ccc4316f24409159897799b83004cb1e24f9819b0dcf9c0b68bdcb6cefee6a8"},
+ {file = "psutil-6.1.1-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:ca9609c77ea3b8481ab005da74ed894035936223422dc591d6772b147421f777"},
+ {file = "psutil-6.1.1-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:8df0178ba8a9e5bc84fed9cfa61d54601b371fbec5c8eebad27575f1e105c0d4"},
+ {file = "psutil-6.1.1-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:1924e659d6c19c647e763e78670a05dbb7feaf44a0e9c94bf9e14dfc6ba50468"},
+ {file = "psutil-6.1.1-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:018aeae2af92d943fdf1da6b58665124897cfc94faa2ca92098838f83e1b1bca"},
+ {file = "psutil-6.1.1-cp27-none-win32.whl", hash = "sha256:6d4281f5bbca041e2292be3380ec56a9413b790579b8e593b1784499d0005dac"},
+ {file = "psutil-6.1.1-cp27-none-win_amd64.whl", hash = "sha256:c777eb75bb33c47377c9af68f30e9f11bc78e0f07fbf907be4a5d70b2fe5f030"},
+ {file = "psutil-6.1.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:fc0ed7fe2231a444fc219b9c42d0376e0a9a1a72f16c5cfa0f68d19f1a0663e8"},
+ {file = "psutil-6.1.1-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:0bdd4eab935276290ad3cb718e9809412895ca6b5b334f5a9111ee6d9aff9377"},
+ {file = "psutil-6.1.1-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6e06c20c05fe95a3d7302d74e7097756d4ba1247975ad6905441ae1b5b66003"},
+ {file = "psutil-6.1.1-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97f7cb9921fbec4904f522d972f0c0e1f4fabbdd4e0287813b21215074a0f160"},
+ {file = "psutil-6.1.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33431e84fee02bc84ea36d9e2c4a6d395d479c9dd9bba2376c1f6ee8f3a4e0b3"},
+ {file = "psutil-6.1.1-cp36-cp36m-win32.whl", hash = "sha256:384636b1a64b47814437d1173be1427a7c83681b17a450bfc309a1953e329603"},
+ {file = "psutil-6.1.1-cp36-cp36m-win_amd64.whl", hash = "sha256:8be07491f6ebe1a693f17d4f11e69d0dc1811fa082736500f649f79df7735303"},
+ {file = "psutil-6.1.1-cp37-abi3-win32.whl", hash = "sha256:eaa912e0b11848c4d9279a93d7e2783df352b082f40111e078388701fd479e53"},
+ {file = "psutil-6.1.1-cp37-abi3-win_amd64.whl", hash = "sha256:f35cfccb065fff93529d2afb4a2e89e363fe63ca1e4a5da22b603a85833c2649"},
+ {file = "psutil-6.1.1.tar.gz", hash = "sha256:cf8496728c18f2d0b45198f06895be52f36611711746b7f30c464b422b50e2f5"},
]
[package.extras]
-test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"]
+dev = ["abi3audit", "black", "check-manifest", "coverage", "packaging", "pylint", "pyperf", "pypinfo", "pytest-cov", "requests", "rstcheck", "ruff", "sphinx", "sphinx_rtd_theme", "toml-sort", "twine", "virtualenv", "vulture", "wheel"]
+test = ["pytest", "pytest-xdist", "setuptools"]
[[package]]
name = "ptyprocess"
@@ -2018,6 +2154,8 @@ version = "0.7.0"
description = "Run a subprocess in a pseudo terminal"
optional = false
python-versions = "*"
+groups = ["dev"]
+markers = "python_version == \"3.11\" and os_name != \"nt\" or python_version == \"3.11\" and (sys_platform != \"win32\" and sys_platform != \"emscripten\") or python_version >= \"3.12\" and os_name != \"nt\" or python_version >= \"3.12\" and (sys_platform != \"win32\" and sys_platform != \"emscripten\")"
files = [
{file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"},
{file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"},
@@ -2029,6 +2167,8 @@ version = "0.2.3"
description = "Safely evaluate AST nodes without side effects"
optional = false
python-versions = "*"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0"},
{file = "pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42"},
@@ -2043,6 +2183,8 @@ version = "2.10.0"
description = "Python style guide checker"
optional = false
python-versions = ">=3.6"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "pycodestyle-2.10.0-py2.py3-none-any.whl", hash = "sha256:8a4eaf0d0495c7395bdab3589ac2db602797d76207242c17d470186815706610"},
{file = "pycodestyle-2.10.0.tar.gz", hash = "sha256:347187bdb476329d98f695c213d7295a846d1152ff4fe9bacb8a9590b8ee7053"},
@@ -2054,6 +2196,8 @@ version = "2.22"
description = "C parser in Python"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc"},
{file = "pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6"},
@@ -2061,13 +2205,15 @@ files = [
[[package]]
name = "pygments"
-version = "2.18.0"
+version = "2.19.1"
description = "Pygments is a syntax highlighting package written in Python."
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a"},
- {file = "pygments-2.18.0.tar.gz", hash = "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199"},
+ {file = "pygments-2.19.1-py3-none-any.whl", hash = "sha256:9ea1544ad55cecf4b8242fab6dd35a93bbce657034b0611ee383099054ab6d8c"},
+ {file = "pygments-2.19.1.tar.gz", hash = "sha256:61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f"},
]
[package.extras]
@@ -2075,61 +2221,72 @@ windows-terminal = ["colorama (>=0.4.6)"]
[[package]]
name = "pymongo"
-version = "4.8.0"
+version = "4.10.1"
description = "Python driver for MongoDB "
optional = false
python-versions = ">=3.8"
-files = [
- {file = "pymongo-4.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f2b7bec27e047e84947fbd41c782f07c54c30c76d14f3b8bf0c89f7413fac67a"},
- {file = "pymongo-4.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3c68fe128a171493018ca5c8020fc08675be130d012b7ab3efe9e22698c612a1"},
- {file = "pymongo-4.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:920d4f8f157a71b3cb3f39bc09ce070693d6e9648fb0e30d00e2657d1dca4e49"},
- {file = "pymongo-4.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52b4108ac9469febba18cea50db972605cc43978bedaa9fea413378877560ef8"},
- {file = "pymongo-4.8.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:180d5eb1dc28b62853e2f88017775c4500b07548ed28c0bd9c005c3d7bc52526"},
- {file = "pymongo-4.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aec2b9088cdbceb87e6ca9c639d0ff9b9d083594dda5ca5d3c4f6774f4c81b33"},
- {file = "pymongo-4.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d0cf61450feadca81deb1a1489cb1a3ae1e4266efd51adafecec0e503a8dcd84"},
- {file = "pymongo-4.8.0-cp310-cp310-win32.whl", hash = "sha256:8b18c8324809539c79bd6544d00e0607e98ff833ca21953df001510ca25915d1"},
- {file = "pymongo-4.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:e5df28f74002e37bcbdfdc5109799f670e4dfef0fb527c391ff84f078050e7b5"},
- {file = "pymongo-4.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6b50040d9767197b77ed420ada29b3bf18a638f9552d80f2da817b7c4a4c9c68"},
- {file = "pymongo-4.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:417369ce39af2b7c2a9c7152c1ed2393edfd1cbaf2a356ba31eb8bcbd5c98dd7"},
- {file = "pymongo-4.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf821bd3befb993a6db17229a2c60c1550e957de02a6ff4dd0af9476637b2e4d"},
- {file = "pymongo-4.8.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9365166aa801c63dff1a3cb96e650be270da06e3464ab106727223123405510f"},
- {file = "pymongo-4.8.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cc8b8582f4209c2459b04b049ac03c72c618e011d3caa5391ff86d1bda0cc486"},
- {file = "pymongo-4.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:16e5019f75f6827bb5354b6fef8dfc9d6c7446894a27346e03134d290eb9e758"},
- {file = "pymongo-4.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3b5802151fc2b51cd45492c80ed22b441d20090fb76d1fd53cd7760b340ff554"},
- {file = "pymongo-4.8.0-cp311-cp311-win32.whl", hash = "sha256:4bf58e6825b93da63e499d1a58de7de563c31e575908d4e24876234ccb910eba"},
- {file = "pymongo-4.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:b747c0e257b9d3e6495a018309b9e0c93b7f0d65271d1d62e572747f4ffafc88"},
- {file = "pymongo-4.8.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e6a720a3d22b54183352dc65f08cd1547204d263e0651b213a0a2e577e838526"},
- {file = "pymongo-4.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:31e4d21201bdf15064cf47ce7b74722d3e1aea2597c6785882244a3bb58c7eab"},
- {file = "pymongo-4.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6b804bb4f2d9dc389cc9e827d579fa327272cdb0629a99bfe5b83cb3e269ebf"},
- {file = "pymongo-4.8.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f2fbdb87fe5075c8beb17a5c16348a1ea3c8b282a5cb72d173330be2fecf22f5"},
- {file = "pymongo-4.8.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd39455b7ee70aabee46f7399b32ab38b86b236c069ae559e22be6b46b2bbfc4"},
- {file = "pymongo-4.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:940d456774b17814bac5ea7fc28188c7a1338d4a233efbb6ba01de957bded2e8"},
- {file = "pymongo-4.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:236bbd7d0aef62e64caf4b24ca200f8c8670d1a6f5ea828c39eccdae423bc2b2"},
- {file = "pymongo-4.8.0-cp312-cp312-win32.whl", hash = "sha256:47ec8c3f0a7b2212dbc9be08d3bf17bc89abd211901093e3ef3f2adea7de7a69"},
- {file = "pymongo-4.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:e84bc7707492f06fbc37a9f215374d2977d21b72e10a67f1b31893ec5a140ad8"},
- {file = "pymongo-4.8.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:519d1bab2b5e5218c64340b57d555d89c3f6c9d717cecbf826fb9d42415e7750"},
- {file = "pymongo-4.8.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:87075a1feb1e602e539bdb1ef8f4324a3427eb0d64208c3182e677d2c0718b6f"},
- {file = "pymongo-4.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f53429515d2b3e86dcc83dadecf7ff881e538c168d575f3688698a8707b80a"},
- {file = "pymongo-4.8.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fdc20cd1e1141b04696ffcdb7c71e8a4a665db31fe72e51ec706b3bdd2d09f36"},
- {file = "pymongo-4.8.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:284d0717d1a7707744018b0b6ee7801b1b1ff044c42f7be7a01bb013de639470"},
- {file = "pymongo-4.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5bf0eb8b6ef40fa22479f09375468c33bebb7fe49d14d9c96c8fd50355188b0"},
- {file = "pymongo-4.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2ecd71b9226bd1d49416dc9f999772038e56f415a713be51bf18d8676a0841c8"},
- {file = "pymongo-4.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e0061af6e8c5e68b13f1ec9ad5251247726653c5af3c0bbdfbca6cf931e99216"},
- {file = "pymongo-4.8.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:658d0170f27984e0d89c09fe5c42296613b711a3ffd847eb373b0dbb5b648d5f"},
- {file = "pymongo-4.8.0-cp38-cp38-win32.whl", hash = "sha256:3ed1c316718a2836f7efc3d75b4b0ffdd47894090bc697de8385acd13c513a70"},
- {file = "pymongo-4.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:7148419eedfea9ecb940961cfe465efaba90595568a1fb97585fb535ea63fe2b"},
- {file = "pymongo-4.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e8400587d594761e5136a3423111f499574be5fd53cf0aefa0d0f05b180710b0"},
- {file = "pymongo-4.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:af3e98dd9702b73e4e6fd780f6925352237f5dce8d99405ff1543f3771201704"},
- {file = "pymongo-4.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de3a860f037bb51f968de320baef85090ff0bbb42ec4f28ec6a5ddf88be61871"},
- {file = "pymongo-4.8.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0fc18b3a093f3db008c5fea0e980dbd3b743449eee29b5718bc2dc15ab5088bb"},
- {file = "pymongo-4.8.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:18c9d8f975dd7194c37193583fd7d1eb9aea0c21ee58955ecf35362239ff31ac"},
- {file = "pymongo-4.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:408b2f8fdbeca3c19e4156f28fff1ab11c3efb0407b60687162d49f68075e63c"},
- {file = "pymongo-4.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6564780cafd6abeea49759fe661792bd5a67e4f51bca62b88faab497ab5fe89"},
- {file = "pymongo-4.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d18d86bc9e103f4d3d4f18b85a0471c0e13ce5b79194e4a0389a224bb70edd53"},
- {file = "pymongo-4.8.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:9097c331577cecf8034422956daaba7ec74c26f7b255d718c584faddd7fa2e3c"},
- {file = "pymongo-4.8.0-cp39-cp39-win32.whl", hash = "sha256:d5428dbcd43d02f6306e1c3c95f692f68b284e6ee5390292242f509004c9e3a8"},
- {file = "pymongo-4.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:ef7225755ed27bfdb18730c68f6cb023d06c28f2b734597480fb4c0e500feb6f"},
- {file = "pymongo-4.8.0.tar.gz", hash = "sha256:454f2295875744dc70f1881e4b2eb99cdad008a33574bc8aaf120530f66c0cde"},
+groups = ["main"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
+files = [
+ {file = "pymongo-4.10.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e699aa68c4a7dea2ab5a27067f7d3e08555f8d2c0dc6a0c8c60cfd9ff2e6a4b1"},
+ {file = "pymongo-4.10.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:70645abc714f06b4ad6b72d5bf73792eaad14e3a2cfe29c62a9c81ada69d9e4b"},
+ {file = "pymongo-4.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ae2fd94c9fe048c94838badcc6e992d033cb9473eb31e5710b3707cba5e8aee2"},
+ {file = "pymongo-4.10.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5ded27a4a5374dae03a92e084a60cdbcecd595306555bda553b833baf3fc4868"},
+ {file = "pymongo-4.10.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1ecc2455e3974a6c429687b395a0bc59636f2d6aedf5785098cf4e1f180f1c71"},
+ {file = "pymongo-4.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a920fee41f7d0259f5f72c1f1eb331bc26ffbdc952846f9bd8c3b119013bb52c"},
+ {file = "pymongo-4.10.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e0a15665b2d6cf364f4cd114d62452ce01d71abfbd9c564ba8c74dcd7bbd6822"},
+ {file = "pymongo-4.10.1-cp310-cp310-win32.whl", hash = "sha256:29e1c323c28a4584b7095378ff046815e39ff82cdb8dc4cc6dfe3acf6f9ad1f8"},
+ {file = "pymongo-4.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:88dc4aa45f8744ccfb45164aedb9a4179c93567bbd98a33109d7dc400b00eb08"},
+ {file = "pymongo-4.10.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:57ee6becae534e6d47848c97f6a6dff69e3cce7c70648d6049bd586764febe59"},
+ {file = "pymongo-4.10.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6f437a612f4d4f7aca1812311b1e84477145e950fdafe3285b687ab8c52541f3"},
+ {file = "pymongo-4.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a970fd3117ab40a4001c3dad333bbf3c43687d90f35287a6237149b5ccae61d"},
+ {file = "pymongo-4.10.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7c4d0e7cd08ef9f8fbf2d15ba281ed55604368a32752e476250724c3ce36c72e"},
+ {file = "pymongo-4.10.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ca6f700cff6833de4872a4e738f43123db34400173558b558ae079b5535857a4"},
+ {file = "pymongo-4.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cec237c305fcbeef75c0bcbe9d223d1e22a6e3ba1b53b2f0b79d3d29c742b45b"},
+ {file = "pymongo-4.10.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b3337804ea0394a06e916add4e5fac1c89902f1b6f33936074a12505cab4ff05"},
+ {file = "pymongo-4.10.1-cp311-cp311-win32.whl", hash = "sha256:778ac646ce6ac1e469664062dfe9ae1f5c9961f7790682809f5ec3b8fda29d65"},
+ {file = "pymongo-4.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:9df4ab5594fdd208dcba81be815fa8a8a5d8dedaf3b346cbf8b61c7296246a7a"},
+ {file = "pymongo-4.10.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:fbedc4617faa0edf423621bb0b3b8707836687161210d470e69a4184be9ca011"},
+ {file = "pymongo-4.10.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:7bd26b2aec8ceeb95a5d948d5cc0f62b0eb6d66f3f4230705c1e3d3d2c04ec76"},
+ {file = "pymongo-4.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb104c3c2a78d9d85571c8ac90ec4f95bca9b297c6eee5ada71fabf1129e1674"},
+ {file = "pymongo-4.10.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4924355245a9c79f77b5cda2db36e0f75ece5faf9f84d16014c0a297f6d66786"},
+ {file = "pymongo-4.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:11280809e5dacaef4971113f0b4ff4696ee94cfdb720019ff4fa4f9635138252"},
+ {file = "pymongo-4.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e5d55f2a82e5eb23795f724991cac2bffbb1c0f219c0ba3bf73a835f97f1bb2e"},
+ {file = "pymongo-4.10.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e974ab16a60be71a8dfad4e5afccf8dd05d41c758060f5d5bda9a758605d9a5d"},
+ {file = "pymongo-4.10.1-cp312-cp312-win32.whl", hash = "sha256:544890085d9641f271d4f7a47684450ed4a7344d6b72d5968bfae32203b1bb7c"},
+ {file = "pymongo-4.10.1-cp312-cp312-win_amd64.whl", hash = "sha256:dcc07b1277e8b4bf4d7382ca133850e323b7ab048b8353af496d050671c7ac52"},
+ {file = "pymongo-4.10.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:90bc6912948dfc8c363f4ead54d54a02a15a7fee6cfafb36dc450fc8962d2cb7"},
+ {file = "pymongo-4.10.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:594dd721b81f301f33e843453638e02d92f63c198358e5a0fa8b8d0b1218dabc"},
+ {file = "pymongo-4.10.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0783e0c8e95397c84e9cf8ab092ab1e5dd7c769aec0ef3a5838ae7173b98dea0"},
+ {file = "pymongo-4.10.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6fb6a72e88df46d1c1040fd32cd2d2c5e58722e5d3e31060a0393f04ad3283de"},
+ {file = "pymongo-4.10.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e3a593333e20c87415420a4fb76c00b7aae49b6361d2e2205b6fece0563bf40"},
+ {file = "pymongo-4.10.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72e2ace7456167c71cfeca7dcb47bd5dceda7db2231265b80fc625c5e8073186"},
+ {file = "pymongo-4.10.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8ad05eb9c97e4f589ed9e74a00fcaac0d443ccd14f38d1258eb4c39a35dd722b"},
+ {file = "pymongo-4.10.1-cp313-cp313-win32.whl", hash = "sha256:ee4c86d8e6872a61f7888fc96577b0ea165eb3bdb0d841962b444fa36001e2bb"},
+ {file = "pymongo-4.10.1-cp313-cp313-win_amd64.whl", hash = "sha256:45ee87a4e12337353242bc758accc7fb47a2f2d9ecc0382a61e64c8f01e86708"},
+ {file = "pymongo-4.10.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:442ca247f53ad24870a01e80a71cd81b3f2318655fd9d66748ee2bd1b1569d9e"},
+ {file = "pymongo-4.10.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:23e1d62df5592518204943b507be7b457fb8a4ad95a349440406fd42db5d0923"},
+ {file = "pymongo-4.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6131bc6568b26e7495a9f3ef2b1700566b76bbecd919f4472bfe90038a61f425"},
+ {file = "pymongo-4.10.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fdeba88c540c9ed0338c0b2062d9f81af42b18d6646b3e6dda05cf6edd46ada9"},
+ {file = "pymongo-4.10.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:15a624d752dd3c89d10deb0ef6431559b6d074703cab90a70bb849ece02adc6b"},
+ {file = "pymongo-4.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba164e73fdade9b4614a2497321c5b7512ddf749ed508950bdecc28d8d76a2d9"},
+ {file = "pymongo-4.10.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9235fa319993405ae5505bf1333366388add2e06848db7b3deee8f990b69808e"},
+ {file = "pymongo-4.10.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e4a65567bd17d19f03157c7ec992c6530eafd8191a4e5ede25566792c4fe3fa2"},
+ {file = "pymongo-4.10.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:f1945d48fb9b8a87d515da07f37e5b2c35b364a435f534c122e92747881f4a7c"},
+ {file = "pymongo-4.10.1-cp38-cp38-win32.whl", hash = "sha256:345f8d340802ebce509f49d5833cc913da40c82f2e0daf9f60149cacc9ca680f"},
+ {file = "pymongo-4.10.1-cp38-cp38-win_amd64.whl", hash = "sha256:3a70d5efdc0387ac8cd50f9a5f379648ecfc322d14ec9e1ba8ec957e5d08c372"},
+ {file = "pymongo-4.10.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:15b1492cc5c7cd260229590be7218261e81684b8da6d6de2660cf743445500ce"},
+ {file = "pymongo-4.10.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:95207503c41b97e7ecc7e596d84a61f441b4935f11aa8332828a754e7ada8c82"},
+ {file = "pymongo-4.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb99f003c720c6d83be02c8f1a7787c22384a8ca9a4181e406174db47a048619"},
+ {file = "pymongo-4.10.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f2bc1ee4b1ca2c4e7e6b7a5e892126335ec8d9215bcd3ac2fe075870fefc3358"},
+ {file = "pymongo-4.10.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:93a0833c10a967effcd823b4e7445ec491f0bf6da5de0ca33629c0528f42b748"},
+ {file = "pymongo-4.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f56707497323150bd2ed5d63067f4ffce940d0549d4ea2dfae180deec7f9363"},
+ {file = "pymongo-4.10.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:409ab7d6c4223e5c85881697f365239dd3ed1b58f28e4124b846d9d488c86880"},
+ {file = "pymongo-4.10.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:dac78a650dc0637d610905fd06b5fa6419ae9028cf4d04d6a2657bc18a66bbce"},
+ {file = "pymongo-4.10.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:1ec3fa88b541e0481aff3c35194c9fac96e4d57ec5d1c122376000eb28c01431"},
+ {file = "pymongo-4.10.1-cp39-cp39-win32.whl", hash = "sha256:e0e961923a7b8a1c801c43552dcb8153e45afa41749d9efbd3a6d33f45489f7a"},
+ {file = "pymongo-4.10.1-cp39-cp39-win_amd64.whl", hash = "sha256:dabe8bf1ad644e6b93f3acf90ff18536d94538ca4d27e583c6db49889e98e48f"},
+ {file = "pymongo-4.10.1.tar.gz", hash = "sha256:a9de02be53b6bb98efe0b9eda84ffa1ec027fcb23a2de62c4f941d9a2f2f3330"},
]
[package.dependencies]
@@ -2137,12 +2294,12 @@ dnspython = ">=1.16.0,<3.0.0"
[package.extras]
aws = ["pymongo-auth-aws (>=1.1.0,<2.0.0)"]
-docs = ["furo (==2023.9.10)", "readthedocs-sphinx-search (>=0.3,<1.0)", "sphinx (>=5.3,<8)", "sphinx-rtd-theme (>=2,<3)", "sphinxcontrib-shellcheck (>=1,<2)"]
-encryption = ["certifi", "pymongo-auth-aws (>=1.1.0,<2.0.0)", "pymongocrypt (>=1.6.0,<2.0.0)"]
+docs = ["furo (==2023.9.10)", "readthedocs-sphinx-search (>=0.3,<1.0)", "sphinx (>=5.3,<8)", "sphinx-autobuild (>=2020.9.1)", "sphinx-rtd-theme (>=2,<3)", "sphinxcontrib-shellcheck (>=1,<2)"]
+encryption = ["certifi", "pymongo-auth-aws (>=1.1.0,<2.0.0)", "pymongocrypt (>=1.10.0,<2.0.0)"]
gssapi = ["pykerberos", "winkerberos (>=0.5.0)"]
ocsp = ["certifi", "cryptography (>=2.5)", "pyopenssl (>=17.2.0)", "requests (<3.0.0)", "service-identity (>=18.1.0)"]
snappy = ["python-snappy"]
-test = ["pytest (>=7)"]
+test = ["pytest (>=8.2)", "pytest-asyncio (>=0.24.0)"]
zstd = ["zstandard"]
[[package]]
@@ -2151,6 +2308,8 @@ version = "7.2.2"
description = "pytest: simple powerful testing with Python"
optional = false
python-versions = ">=3.7"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "pytest-7.2.2-py3-none-any.whl", hash = "sha256:130328f552dcfac0b1cec75c12e3f005619dc5f874f0a06e8ff7263f0ee6225e"},
{file = "pytest-7.2.2.tar.gz", hash = "sha256:c99ab0c73aceb050f68929bc93af19ab6db0558791c6a0715723abe9d0ade9d4"},
@@ -2159,11 +2318,9 @@ files = [
[package.dependencies]
attrs = ">=19.2.0"
colorama = {version = "*", markers = "sys_platform == \"win32\""}
-exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""}
iniconfig = "*"
packaging = "*"
pluggy = ">=0.12,<2.0"
-tomli = {version = ">=1.0.0", markers = "python_version < \"3.11\""}
[package.extras]
testing = ["argcomplete", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "xmlschema"]
@@ -2174,6 +2331,8 @@ version = "4.0.0"
description = "Pytest plugin for measuring coverage."
optional = false
python-versions = ">=3.6"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "pytest-cov-4.0.0.tar.gz", hash = "sha256:996b79efde6433cdbd0088872dbc5fb3ed7fe1578b68cdbba634f14bb8dd0470"},
{file = "pytest_cov-4.0.0-py3-none-any.whl", hash = "sha256:2feb1b751d66a8bd934e5edfa2e961d11309dc37b73b0eabe73b5945fee20f6b"},
@@ -2192,6 +2351,8 @@ version = "2.1.0"
description = "pytest plugin to abort hanging tests"
optional = false
python-versions = ">=3.6"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "pytest-timeout-2.1.0.tar.gz", hash = "sha256:c07ca07404c612f8abbe22294b23c368e2e5104b521c1790195561f37e1ac3d9"},
{file = "pytest_timeout-2.1.0-py3-none-any.whl", hash = "sha256:f6f50101443ce70ad325ceb4473c4255e9d74e3c7cd0ef827309dfa4c0d975c6"},
@@ -2206,6 +2367,8 @@ version = "2.9.0.post0"
description = "Extensions to the standard Python datetime module"
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7"
+groups = ["main", "dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"},
{file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"},
@@ -2216,62 +2379,77 @@ six = ">=1.5"
[[package]]
name = "python-json-logger"
-version = "2.0.7"
-description = "A python library adding a json log formatter"
+version = "3.2.1"
+description = "JSON Log Formatter for the Python Logging Package"
optional = false
-python-versions = ">=3.6"
+python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "python-json-logger-2.0.7.tar.gz", hash = "sha256:23e7ec02d34237c5aa1e29a070193a4ea87583bb4e7f8fd06d3de8264c4b2e1c"},
- {file = "python_json_logger-2.0.7-py3-none-any.whl", hash = "sha256:f380b826a991ebbe3de4d897aeec42760035ac760345e57b812938dc8b35e2bd"},
+ {file = "python_json_logger-3.2.1-py3-none-any.whl", hash = "sha256:cdc17047eb5374bd311e748b42f99d71223f3b0e186f4206cc5d52aefe85b090"},
+ {file = "python_json_logger-3.2.1.tar.gz", hash = "sha256:8eb0554ea17cb75b05d2848bc14fb02fbdbd9d6972120781b974380bfa162008"},
]
+[package.extras]
+dev = ["backports.zoneinfo", "black", "build", "freezegun", "mdx_truly_sane_lists", "mike", "mkdocs", "mkdocs-awesome-pages-plugin", "mkdocs-gen-files", "mkdocs-literate-nav", "mkdocs-material (>=8.5)", "mkdocstrings[python]", "msgspec", "msgspec-python313-pre", "mypy", "orjson", "pylint", "pytest", "tzdata", "validate-pyproject[all]"]
+
[[package]]
name = "pytz"
-version = "2024.1"
+version = "2024.2"
description = "World timezone definitions, modern and historical"
optional = false
python-versions = "*"
+groups = ["main"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"},
- {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"},
+ {file = "pytz-2024.2-py2.py3-none-any.whl", hash = "sha256:31c7c1817eb7fae7ca4b8c7ee50c72f93aa2dd863de768e1ef4245d426aa0725"},
+ {file = "pytz-2024.2.tar.gz", hash = "sha256:2aa355083c50a0f93fa581709deac0c9ad65cca8a9e9beac660adcbd493c798a"},
]
[[package]]
name = "pywin32"
-version = "306"
+version = "308"
description = "Python for Window Extensions"
optional = false
python-versions = "*"
-files = [
- {file = "pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d"},
- {file = "pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8"},
- {file = "pywin32-306-cp311-cp311-win32.whl", hash = "sha256:e65028133d15b64d2ed8f06dd9fbc268352478d4f9289e69c190ecd6818b6407"},
- {file = "pywin32-306-cp311-cp311-win_amd64.whl", hash = "sha256:a7639f51c184c0272e93f244eb24dafca9b1855707d94c192d4a0b4c01e1100e"},
- {file = "pywin32-306-cp311-cp311-win_arm64.whl", hash = "sha256:70dba0c913d19f942a2db25217d9a1b726c278f483a919f1abfed79c9cf64d3a"},
- {file = "pywin32-306-cp312-cp312-win32.whl", hash = "sha256:383229d515657f4e3ed1343da8be101000562bf514591ff383ae940cad65458b"},
- {file = "pywin32-306-cp312-cp312-win_amd64.whl", hash = "sha256:37257794c1ad39ee9be652da0462dc2e394c8159dfd913a8a4e8eb6fd346da0e"},
- {file = "pywin32-306-cp312-cp312-win_arm64.whl", hash = "sha256:5821ec52f6d321aa59e2db7e0a35b997de60c201943557d108af9d4ae1ec7040"},
- {file = "pywin32-306-cp37-cp37m-win32.whl", hash = "sha256:1c73ea9a0d2283d889001998059f5eaaba3b6238f767c9cf2833b13e6a685f65"},
- {file = "pywin32-306-cp37-cp37m-win_amd64.whl", hash = "sha256:72c5f621542d7bdd4fdb716227be0dd3f8565c11b280be6315b06ace35487d36"},
- {file = "pywin32-306-cp38-cp38-win32.whl", hash = "sha256:e4c092e2589b5cf0d365849e73e02c391c1349958c5ac3e9d5ccb9a28e017b3a"},
- {file = "pywin32-306-cp38-cp38-win_amd64.whl", hash = "sha256:e8ac1ae3601bee6ca9f7cb4b5363bf1c0badb935ef243c4733ff9a393b1690c0"},
- {file = "pywin32-306-cp39-cp39-win32.whl", hash = "sha256:e25fd5b485b55ac9c057f67d94bc203f3f6595078d1fb3b458c9c28b7153a802"},
- {file = "pywin32-306-cp39-cp39-win_amd64.whl", hash = "sha256:39b61c15272833b5c329a2989999dcae836b1eed650252ab1b7bfbe1d59f30f4"},
+groups = ["dev"]
+markers = "python_version == \"3.11\" and sys_platform == \"win32\" and platform_python_implementation != \"PyPy\" or python_version >= \"3.12\" and sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""
+files = [
+ {file = "pywin32-308-cp310-cp310-win32.whl", hash = "sha256:796ff4426437896550d2981b9c2ac0ffd75238ad9ea2d3bfa67a1abd546d262e"},
+ {file = "pywin32-308-cp310-cp310-win_amd64.whl", hash = "sha256:4fc888c59b3c0bef905ce7eb7e2106a07712015ea1c8234b703a088d46110e8e"},
+ {file = "pywin32-308-cp310-cp310-win_arm64.whl", hash = "sha256:a5ab5381813b40f264fa3495b98af850098f814a25a63589a8e9eb12560f450c"},
+ {file = "pywin32-308-cp311-cp311-win32.whl", hash = "sha256:5d8c8015b24a7d6855b1550d8e660d8daa09983c80e5daf89a273e5c6fb5095a"},
+ {file = "pywin32-308-cp311-cp311-win_amd64.whl", hash = "sha256:575621b90f0dc2695fec346b2d6302faebd4f0f45c05ea29404cefe35d89442b"},
+ {file = "pywin32-308-cp311-cp311-win_arm64.whl", hash = "sha256:100a5442b7332070983c4cd03f2e906a5648a5104b8a7f50175f7906efd16bb6"},
+ {file = "pywin32-308-cp312-cp312-win32.whl", hash = "sha256:587f3e19696f4bf96fde9d8a57cec74a57021ad5f204c9e627e15c33ff568897"},
+ {file = "pywin32-308-cp312-cp312-win_amd64.whl", hash = "sha256:00b3e11ef09ede56c6a43c71f2d31857cf7c54b0ab6e78ac659497abd2834f47"},
+ {file = "pywin32-308-cp312-cp312-win_arm64.whl", hash = "sha256:9b4de86c8d909aed15b7011182c8cab38c8850de36e6afb1f0db22b8959e3091"},
+ {file = "pywin32-308-cp313-cp313-win32.whl", hash = "sha256:1c44539a37a5b7b21d02ab34e6a4d314e0788f1690d65b48e9b0b89f31abbbed"},
+ {file = "pywin32-308-cp313-cp313-win_amd64.whl", hash = "sha256:fd380990e792eaf6827fcb7e187b2b4b1cede0585e3d0c9e84201ec27b9905e4"},
+ {file = "pywin32-308-cp313-cp313-win_arm64.whl", hash = "sha256:ef313c46d4c18dfb82a2431e3051ac8f112ccee1a34f29c263c583c568db63cd"},
+ {file = "pywin32-308-cp37-cp37m-win32.whl", hash = "sha256:1f696ab352a2ddd63bd07430080dd598e6369152ea13a25ebcdd2f503a38f1ff"},
+ {file = "pywin32-308-cp37-cp37m-win_amd64.whl", hash = "sha256:13dcb914ed4347019fbec6697a01a0aec61019c1046c2b905410d197856326a6"},
+ {file = "pywin32-308-cp38-cp38-win32.whl", hash = "sha256:5794e764ebcabf4ff08c555b31bd348c9025929371763b2183172ff4708152f0"},
+ {file = "pywin32-308-cp38-cp38-win_amd64.whl", hash = "sha256:3b92622e29d651c6b783e368ba7d6722b1634b8e70bd376fd7610fe1992e19de"},
+ {file = "pywin32-308-cp39-cp39-win32.whl", hash = "sha256:7873ca4dc60ab3287919881a7d4f88baee4a6e639aa6962de25a98ba6b193341"},
+ {file = "pywin32-308-cp39-cp39-win_amd64.whl", hash = "sha256:71b3322d949b4cc20776436a9c9ba0eeedcbc9c650daa536df63f0ff111bb920"},
]
[[package]]
name = "pywinpty"
-version = "2.0.13"
+version = "2.0.14"
description = "Pseudo terminal support for Windows from Python."
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" and os_name == \"nt\" or python_version >= \"3.12\" and os_name == \"nt\""
files = [
- {file = "pywinpty-2.0.13-cp310-none-win_amd64.whl", hash = "sha256:697bff211fb5a6508fee2dc6ff174ce03f34a9a233df9d8b5fe9c8ce4d5eaf56"},
- {file = "pywinpty-2.0.13-cp311-none-win_amd64.whl", hash = "sha256:b96fb14698db1284db84ca38c79f15b4cfdc3172065b5137383910567591fa99"},
- {file = "pywinpty-2.0.13-cp312-none-win_amd64.whl", hash = "sha256:2fd876b82ca750bb1333236ce98488c1be96b08f4f7647cfdf4129dfad83c2d4"},
- {file = "pywinpty-2.0.13-cp38-none-win_amd64.whl", hash = "sha256:61d420c2116c0212808d31625611b51caf621fe67f8a6377e2e8b617ea1c1f7d"},
- {file = "pywinpty-2.0.13-cp39-none-win_amd64.whl", hash = "sha256:71cb613a9ee24174730ac7ae439fd179ca34ccb8c5349e8d7b72ab5dea2c6f4b"},
- {file = "pywinpty-2.0.13.tar.gz", hash = "sha256:c34e32351a3313ddd0d7da23d27f835c860d32fe4ac814d372a3ea9594f41dde"},
+ {file = "pywinpty-2.0.14-cp310-none-win_amd64.whl", hash = "sha256:0b149c2918c7974f575ba79f5a4aad58bd859a52fa9eb1296cc22aa412aa411f"},
+ {file = "pywinpty-2.0.14-cp311-none-win_amd64.whl", hash = "sha256:cf2a43ac7065b3e0dc8510f8c1f13a75fb8fde805efa3b8cff7599a1ef497bc7"},
+ {file = "pywinpty-2.0.14-cp312-none-win_amd64.whl", hash = "sha256:55dad362ef3e9408ade68fd173e4f9032b3ce08f68cfe7eacb2c263ea1179737"},
+ {file = "pywinpty-2.0.14-cp313-none-win_amd64.whl", hash = "sha256:074fb988a56ec79ca90ed03a896d40707131897cefb8f76f926e3834227f2819"},
+ {file = "pywinpty-2.0.14-cp39-none-win_amd64.whl", hash = "sha256:5725fd56f73c0531ec218663bd8c8ff5acc43c78962fab28564871b5fce053fd"},
+ {file = "pywinpty-2.0.14.tar.gz", hash = "sha256:18bd9529e4a5daf2d9719aa17788ba6013e594ae94c5a0c27e83df3278b0660e"},
]
[[package]]
@@ -2280,6 +2458,8 @@ version = "6.0.2"
description = "YAML parser and emitter for Python"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"},
{file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"},
@@ -2338,173 +2518,135 @@ files = [
[[package]]
name = "pyzmq"
-version = "26.1.0"
+version = "26.2.1"
description = "Python bindings for 0MQ"
optional = false
python-versions = ">=3.7"
-files = [
- {file = "pyzmq-26.1.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:263cf1e36862310bf5becfbc488e18d5d698941858860c5a8c079d1511b3b18e"},
- {file = "pyzmq-26.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d5c8b17f6e8f29138678834cf8518049e740385eb2dbf736e8f07fc6587ec682"},
- {file = "pyzmq-26.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:75a95c2358fcfdef3374cb8baf57f1064d73246d55e41683aaffb6cfe6862917"},
- {file = "pyzmq-26.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f99de52b8fbdb2a8f5301ae5fc0f9e6b3ba30d1d5fc0421956967edcc6914242"},
- {file = "pyzmq-26.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7bcbfbab4e1895d58ab7da1b5ce9a327764f0366911ba5b95406c9104bceacb0"},
- {file = "pyzmq-26.1.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:77ce6a332c7e362cb59b63f5edf730e83590d0ab4e59c2aa5bd79419a42e3449"},
- {file = "pyzmq-26.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:ba0a31d00e8616149a5ab440d058ec2da621e05d744914774c4dde6837e1f545"},
- {file = "pyzmq-26.1.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8b88641384e84a258b740801cd4dbc45c75f148ee674bec3149999adda4a8598"},
- {file = "pyzmq-26.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:2fa76ebcebe555cce90f16246edc3ad83ab65bb7b3d4ce408cf6bc67740c4f88"},
- {file = "pyzmq-26.1.0-cp310-cp310-win32.whl", hash = "sha256:fbf558551cf415586e91160d69ca6416f3fce0b86175b64e4293644a7416b81b"},
- {file = "pyzmq-26.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:a7b8aab50e5a288c9724d260feae25eda69582be84e97c012c80e1a5e7e03fb2"},
- {file = "pyzmq-26.1.0-cp310-cp310-win_arm64.whl", hash = "sha256:08f74904cb066e1178c1ec706dfdb5c6c680cd7a8ed9efebeac923d84c1f13b1"},
- {file = "pyzmq-26.1.0-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:46d6800b45015f96b9d92ece229d92f2aef137d82906577d55fadeb9cf5fcb71"},
- {file = "pyzmq-26.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5bc2431167adc50ba42ea3e5e5f5cd70d93e18ab7b2f95e724dd8e1bd2c38120"},
- {file = "pyzmq-26.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b3bb34bebaa1b78e562931a1687ff663d298013f78f972a534f36c523311a84d"},
- {file = "pyzmq-26.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd3f6329340cef1c7ba9611bd038f2d523cea79f09f9c8f6b0553caba59ec562"},
- {file = "pyzmq-26.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:471880c4c14e5a056a96cd224f5e71211997d40b4bf5e9fdded55dafab1f98f2"},
- {file = "pyzmq-26.1.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:ce6f2b66799971cbae5d6547acefa7231458289e0ad481d0be0740535da38d8b"},
- {file = "pyzmq-26.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0a1f6ea5b1d6cdbb8cfa0536f0d470f12b4b41ad83625012e575f0e3ecfe97f0"},
- {file = "pyzmq-26.1.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:b45e6445ac95ecb7d728604bae6538f40ccf4449b132b5428c09918523abc96d"},
- {file = "pyzmq-26.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:94c4262626424683feea0f3c34951d39d49d354722db2745c42aa6bb50ecd93b"},
- {file = "pyzmq-26.1.0-cp311-cp311-win32.whl", hash = "sha256:a0f0ab9df66eb34d58205913f4540e2ad17a175b05d81b0b7197bc57d000e829"},
- {file = "pyzmq-26.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:8efb782f5a6c450589dbab4cb0f66f3a9026286333fe8f3a084399149af52f29"},
- {file = "pyzmq-26.1.0-cp311-cp311-win_arm64.whl", hash = "sha256:f133d05aaf623519f45e16ab77526e1e70d4e1308e084c2fb4cedb1a0c764bbb"},
- {file = "pyzmq-26.1.0-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:3d3146b1c3dcc8a1539e7cc094700b2be1e605a76f7c8f0979b6d3bde5ad4072"},
- {file = "pyzmq-26.1.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d9270fbf038bf34ffca4855bcda6e082e2c7f906b9eb8d9a8ce82691166060f7"},
- {file = "pyzmq-26.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:995301f6740a421afc863a713fe62c0aaf564708d4aa057dfdf0f0f56525294b"},
- {file = "pyzmq-26.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7eca8b89e56fb8c6c26dd3e09bd41b24789022acf1cf13358e96f1cafd8cae3"},
- {file = "pyzmq-26.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d4feb2e83dfe9ace6374a847e98ee9d1246ebadcc0cb765482e272c34e5820"},
- {file = "pyzmq-26.1.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:d4fafc2eb5d83f4647331267808c7e0c5722c25a729a614dc2b90479cafa78bd"},
- {file = "pyzmq-26.1.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:58c33dc0e185dd97a9ac0288b3188d1be12b756eda67490e6ed6a75cf9491d79"},
- {file = "pyzmq-26.1.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:68a0a1d83d33d8367ddddb3e6bb4afbb0f92bd1dac2c72cd5e5ddc86bdafd3eb"},
- {file = "pyzmq-26.1.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2ae7c57e22ad881af78075e0cea10a4c778e67234adc65c404391b417a4dda83"},
- {file = "pyzmq-26.1.0-cp312-cp312-win32.whl", hash = "sha256:347e84fc88cc4cb646597f6d3a7ea0998f887ee8dc31c08587e9c3fd7b5ccef3"},
- {file = "pyzmq-26.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:9f136a6e964830230912f75b5a116a21fe8e34128dcfd82285aa0ef07cb2c7bd"},
- {file = "pyzmq-26.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:a4b7a989c8f5a72ab1b2bbfa58105578753ae77b71ba33e7383a31ff75a504c4"},
- {file = "pyzmq-26.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d416f2088ac8f12daacffbc2e8918ef4d6be8568e9d7155c83b7cebed49d2322"},
- {file = "pyzmq-26.1.0-cp313-cp313-macosx_10_15_universal2.whl", hash = "sha256:ecb6c88d7946166d783a635efc89f9a1ff11c33d680a20df9657b6902a1d133b"},
- {file = "pyzmq-26.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:471312a7375571857a089342beccc1a63584315188560c7c0da7e0a23afd8a5c"},
- {file = "pyzmq-26.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0e6cea102ffa16b737d11932c426f1dc14b5938cf7bc12e17269559c458ac334"},
- {file = "pyzmq-26.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec7248673ffc7104b54e4957cee38b2f3075a13442348c8d651777bf41aa45ee"},
- {file = "pyzmq-26.1.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:0614aed6f87d550b5cecb03d795f4ddbb1544b78d02a4bd5eecf644ec98a39f6"},
- {file = "pyzmq-26.1.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:e8746ce968be22a8a1801bf4a23e565f9687088580c3ed07af5846580dd97f76"},
- {file = "pyzmq-26.1.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:7688653574392d2eaeef75ddcd0b2de5b232d8730af29af56c5adf1df9ef8d6f"},
- {file = "pyzmq-26.1.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:8d4dac7d97f15c653a5fedcafa82626bd6cee1450ccdaf84ffed7ea14f2b07a4"},
- {file = "pyzmq-26.1.0-cp313-cp313-win32.whl", hash = "sha256:ccb42ca0a4a46232d716779421bbebbcad23c08d37c980f02cc3a6bd115ad277"},
- {file = "pyzmq-26.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:e1e5d0a25aea8b691a00d6b54b28ac514c8cc0d8646d05f7ca6cb64b97358250"},
- {file = "pyzmq-26.1.0-cp313-cp313-win_arm64.whl", hash = "sha256:fc82269d24860cfa859b676d18850cbb8e312dcd7eada09e7d5b007e2f3d9eb1"},
- {file = "pyzmq-26.1.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:416ac51cabd54f587995c2b05421324700b22e98d3d0aa2cfaec985524d16f1d"},
- {file = "pyzmq-26.1.0-cp313-cp313t-macosx_10_15_universal2.whl", hash = "sha256:ff832cce719edd11266ca32bc74a626b814fff236824aa1aeaad399b69fe6eae"},
- {file = "pyzmq-26.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:393daac1bcf81b2a23e696b7b638eedc965e9e3d2112961a072b6cd8179ad2eb"},
- {file = "pyzmq-26.1.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9869fa984c8670c8ab899a719eb7b516860a29bc26300a84d24d8c1b71eae3ec"},
- {file = "pyzmq-26.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b3b8e36fd4c32c0825b4461372949ecd1585d326802b1321f8b6dc1d7e9318c"},
- {file = "pyzmq-26.1.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:3ee647d84b83509b7271457bb428cc347037f437ead4b0b6e43b5eba35fec0aa"},
- {file = "pyzmq-26.1.0-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:45cb1a70eb00405ce3893041099655265fabcd9c4e1e50c330026e82257892c1"},
- {file = "pyzmq-26.1.0-cp313-cp313t-musllinux_1_1_i686.whl", hash = "sha256:5cca7b4adb86d7470e0fc96037771981d740f0b4cb99776d5cb59cd0e6684a73"},
- {file = "pyzmq-26.1.0-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:91d1a20bdaf3b25f3173ff44e54b1cfbc05f94c9e8133314eb2962a89e05d6e3"},
- {file = "pyzmq-26.1.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c0665d85535192098420428c779361b8823d3d7ec4848c6af3abb93bc5c915bf"},
- {file = "pyzmq-26.1.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:96d7c1d35ee4a495df56c50c83df7af1c9688cce2e9e0edffdbf50889c167595"},
- {file = "pyzmq-26.1.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b281b5ff5fcc9dcbfe941ac5c7fcd4b6c065adad12d850f95c9d6f23c2652384"},
- {file = "pyzmq-26.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5384c527a9a004445c5074f1e20db83086c8ff1682a626676229aafd9cf9f7d1"},
- {file = "pyzmq-26.1.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:754c99a9840839375ee251b38ac5964c0f369306eddb56804a073b6efdc0cd88"},
- {file = "pyzmq-26.1.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:9bdfcb74b469b592972ed881bad57d22e2c0acc89f5e8c146782d0d90fb9f4bf"},
- {file = "pyzmq-26.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:bd13f0231f4788db619347b971ca5f319c5b7ebee151afc7c14632068c6261d3"},
- {file = "pyzmq-26.1.0-cp37-cp37m-win32.whl", hash = "sha256:c5668dac86a869349828db5fc928ee3f58d450dce2c85607067d581f745e4fb1"},
- {file = "pyzmq-26.1.0-cp37-cp37m-win_amd64.whl", hash = "sha256:ad875277844cfaeca7fe299ddf8c8d8bfe271c3dc1caf14d454faa5cdbf2fa7a"},
- {file = "pyzmq-26.1.0-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:65c6e03cc0222eaf6aad57ff4ecc0a070451e23232bb48db4322cc45602cede0"},
- {file = "pyzmq-26.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:038ae4ffb63e3991f386e7fda85a9baab7d6617fe85b74a8f9cab190d73adb2b"},
- {file = "pyzmq-26.1.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:bdeb2c61611293f64ac1073f4bf6723b67d291905308a7de9bb2ca87464e3273"},
- {file = "pyzmq-26.1.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:61dfa5ee9d7df297c859ac82b1226d8fefaf9c5113dc25c2c00ecad6feeeb04f"},
- {file = "pyzmq-26.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3292d384537b9918010769b82ab3e79fca8b23d74f56fc69a679106a3e2c2cf"},
- {file = "pyzmq-26.1.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f9499c70c19ff0fbe1007043acb5ad15c1dec7d8e84ab429bca8c87138e8f85c"},
- {file = "pyzmq-26.1.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:d3dd5523ed258ad58fed7e364c92a9360d1af8a9371e0822bd0146bdf017ef4c"},
- {file = "pyzmq-26.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:baba2fd199b098c5544ef2536b2499d2e2155392973ad32687024bd8572a7d1c"},
- {file = "pyzmq-26.1.0-cp38-cp38-win32.whl", hash = "sha256:ddbb2b386128d8eca92bd9ca74e80f73fe263bcca7aa419f5b4cbc1661e19741"},
- {file = "pyzmq-26.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:79e45a4096ec8388cdeb04a9fa5e9371583bcb826964d55b8b66cbffe7b33c86"},
- {file = "pyzmq-26.1.0-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:add52c78a12196bc0fda2de087ba6c876ea677cbda2e3eba63546b26e8bf177b"},
- {file = "pyzmq-26.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:98c03bd7f3339ff47de7ea9ac94a2b34580a8d4df69b50128bb6669e1191a895"},
- {file = "pyzmq-26.1.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:dcc37d9d708784726fafc9c5e1232de655a009dbf97946f117aefa38d5985a0f"},
- {file = "pyzmq-26.1.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5a6ed52f0b9bf8dcc64cc82cce0607a3dfed1dbb7e8c6f282adfccc7be9781de"},
- {file = "pyzmq-26.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:451e16ae8bea3d95649317b463c9f95cd9022641ec884e3d63fc67841ae86dfe"},
- {file = "pyzmq-26.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:906e532c814e1d579138177a00ae835cd6becbf104d45ed9093a3aaf658f6a6a"},
- {file = "pyzmq-26.1.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:05bacc4f94af468cc82808ae3293390278d5f3375bb20fef21e2034bb9a505b6"},
- {file = "pyzmq-26.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:57bb2acba798dc3740e913ffadd56b1fcef96f111e66f09e2a8db3050f1f12c8"},
- {file = "pyzmq-26.1.0-cp39-cp39-win32.whl", hash = "sha256:f774841bb0e8588505002962c02da420bcfb4c5056e87a139c6e45e745c0e2e2"},
- {file = "pyzmq-26.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:359c533bedc62c56415a1f5fcfd8279bc93453afdb0803307375ecf81c962402"},
- {file = "pyzmq-26.1.0-cp39-cp39-win_arm64.whl", hash = "sha256:7907419d150b19962138ecec81a17d4892ea440c184949dc29b358bc730caf69"},
- {file = "pyzmq-26.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:b24079a14c9596846bf7516fe75d1e2188d4a528364494859106a33d8b48be38"},
- {file = "pyzmq-26.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59d0acd2976e1064f1b398a00e2c3e77ed0a157529779e23087d4c2fb8aaa416"},
- {file = "pyzmq-26.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:911c43a4117915203c4cc8755e0f888e16c4676a82f61caee2f21b0c00e5b894"},
- {file = "pyzmq-26.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b10163e586cc609f5f85c9b233195554d77b1e9a0801388907441aaeb22841c5"},
- {file = "pyzmq-26.1.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:28a8b2abb76042f5fd7bd720f7fea48c0fd3e82e9de0a1bf2c0de3812ce44a42"},
- {file = "pyzmq-26.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bef24d3e4ae2c985034439f449e3f9e06bf579974ce0e53d8a507a1577d5b2ab"},
- {file = "pyzmq-26.1.0-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:2cd0f4d314f4a2518e8970b6f299ae18cff7c44d4a1fc06fc713f791c3a9e3ea"},
- {file = "pyzmq-26.1.0-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:fa25a620eed2a419acc2cf10135b995f8f0ce78ad00534d729aa761e4adcef8a"},
- {file = "pyzmq-26.1.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ef3b048822dca6d231d8a8ba21069844ae38f5d83889b9b690bf17d2acc7d099"},
- {file = "pyzmq-26.1.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:9a6847c92d9851b59b9f33f968c68e9e441f9a0f8fc972c5580c5cd7cbc6ee24"},
- {file = "pyzmq-26.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:c9b9305004d7e4e6a824f4f19b6d8f32b3578aad6f19fc1122aaf320cbe3dc83"},
- {file = "pyzmq-26.1.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:63c1d3a65acb2f9c92dce03c4e1758cc552f1ae5c78d79a44e3bb88d2fa71f3a"},
- {file = "pyzmq-26.1.0-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:d36b8fffe8b248a1b961c86fbdfa0129dfce878731d169ede7fa2631447331be"},
- {file = "pyzmq-26.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67976d12ebfd61a3bc7d77b71a9589b4d61d0422282596cf58c62c3866916544"},
- {file = "pyzmq-26.1.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:998444debc8816b5d8d15f966e42751032d0f4c55300c48cc337f2b3e4f17d03"},
- {file = "pyzmq-26.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:e5c88b2f13bcf55fee78ea83567b9fe079ba1a4bef8b35c376043440040f7edb"},
- {file = "pyzmq-26.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d906d43e1592be4b25a587b7d96527cb67277542a5611e8ea9e996182fae410"},
- {file = "pyzmq-26.1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80b0c9942430d731c786545da6be96d824a41a51742e3e374fedd9018ea43106"},
- {file = "pyzmq-26.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:314d11564c00b77f6224d12eb3ddebe926c301e86b648a1835c5b28176c83eab"},
- {file = "pyzmq-26.1.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:093a1a3cae2496233f14b57f4b485da01b4ff764582c854c0f42c6dd2be37f3d"},
- {file = "pyzmq-26.1.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:3c397b1b450f749a7e974d74c06d69bd22dd362142f370ef2bd32a684d6b480c"},
- {file = "pyzmq-26.1.0.tar.gz", hash = "sha256:6c5aeea71f018ebd3b9115c7cb13863dd850e98ca6b9258509de1246461a7e7f"},
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
+files = [
+ {file = "pyzmq-26.2.1-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:f39d1227e8256d19899d953e6e19ed2ccb689102e6d85e024da5acf410f301eb"},
+ {file = "pyzmq-26.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a23948554c692df95daed595fdd3b76b420a4939d7a8a28d6d7dea9711878641"},
+ {file = "pyzmq-26.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:95f5728b367a042df146cec4340d75359ec6237beebf4a8f5cf74657c65b9257"},
+ {file = "pyzmq-26.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:95f7b01b3f275504011cf4cf21c6b885c8d627ce0867a7e83af1382ebab7b3ff"},
+ {file = "pyzmq-26.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80a00370a2ef2159c310e662c7c0f2d030f437f35f478bb8b2f70abd07e26b24"},
+ {file = "pyzmq-26.2.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:8531ed35dfd1dd2af95f5d02afd6545e8650eedbf8c3d244a554cf47d8924459"},
+ {file = "pyzmq-26.2.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:cdb69710e462a38e6039cf17259d328f86383a06c20482cc154327968712273c"},
+ {file = "pyzmq-26.2.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e7eeaef81530d0b74ad0d29eec9997f1c9230c2f27242b8d17e0ee67662c8f6e"},
+ {file = "pyzmq-26.2.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:361edfa350e3be1f987e592e834594422338d7174364763b7d3de5b0995b16f3"},
+ {file = "pyzmq-26.2.1-cp310-cp310-win32.whl", hash = "sha256:637536c07d2fb6a354988b2dd1d00d02eb5dd443f4bbee021ba30881af1c28aa"},
+ {file = "pyzmq-26.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:45fad32448fd214fbe60030aa92f97e64a7140b624290834cc9b27b3a11f9473"},
+ {file = "pyzmq-26.2.1-cp310-cp310-win_arm64.whl", hash = "sha256:d9da0289d8201c8a29fd158aaa0dfe2f2e14a181fd45e2dc1fbf969a62c1d594"},
+ {file = "pyzmq-26.2.1-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:c059883840e634a21c5b31d9b9a0e2b48f991b94d60a811092bc37992715146a"},
+ {file = "pyzmq-26.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ed038a921df836d2f538e509a59cb638df3e70ca0fcd70d0bf389dfcdf784d2a"},
+ {file = "pyzmq-26.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9027a7fcf690f1a3635dc9e55e38a0d6602dbbc0548935d08d46d2e7ec91f454"},
+ {file = "pyzmq-26.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6d75fcb00a1537f8b0c0bb05322bc7e35966148ffc3e0362f0369e44a4a1de99"},
+ {file = "pyzmq-26.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0019cc804ac667fb8c8eaecdb66e6d4a68acf2e155d5c7d6381a5645bd93ae4"},
+ {file = "pyzmq-26.2.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:f19dae58b616ac56b96f2e2290f2d18730a898a171f447f491cc059b073ca1fa"},
+ {file = "pyzmq-26.2.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f5eeeb82feec1fc5cbafa5ee9022e87ffdb3a8c48afa035b356fcd20fc7f533f"},
+ {file = "pyzmq-26.2.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:000760e374d6f9d1a3478a42ed0c98604de68c9e94507e5452951e598ebecfba"},
+ {file = "pyzmq-26.2.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:817fcd3344d2a0b28622722b98500ae9c8bfee0f825b8450932ff19c0b15bebd"},
+ {file = "pyzmq-26.2.1-cp311-cp311-win32.whl", hash = "sha256:88812b3b257f80444a986b3596e5ea5c4d4ed4276d2b85c153a6fbc5ca457ae7"},
+ {file = "pyzmq-26.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:ef29630fde6022471d287c15c0a2484aba188adbfb978702624ba7a54ddfa6c1"},
+ {file = "pyzmq-26.2.1-cp311-cp311-win_arm64.whl", hash = "sha256:f32718ee37c07932cc336096dc7403525301fd626349b6eff8470fe0f996d8d7"},
+ {file = "pyzmq-26.2.1-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:a6549ecb0041dafa55b5932dcbb6c68293e0bd5980b5b99f5ebb05f9a3b8a8f3"},
+ {file = "pyzmq-26.2.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:0250c94561f388db51fd0213cdccbd0b9ef50fd3c57ce1ac937bf3034d92d72e"},
+ {file = "pyzmq-26.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:36ee4297d9e4b34b5dc1dd7ab5d5ea2cbba8511517ef44104d2915a917a56dc8"},
+ {file = "pyzmq-26.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c2a9cb17fd83b7a3a3009901aca828feaf20aa2451a8a487b035455a86549c09"},
+ {file = "pyzmq-26.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:786dd8a81b969c2081b31b17b326d3a499ddd1856e06d6d79ad41011a25148da"},
+ {file = "pyzmq-26.2.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:2d88ba221a07fc2c5581565f1d0fe8038c15711ae79b80d9462e080a1ac30435"},
+ {file = "pyzmq-26.2.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:1c84c1297ff9f1cd2440da4d57237cb74be21fdfe7d01a10810acba04e79371a"},
+ {file = "pyzmq-26.2.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:46d4ebafc27081a7f73a0f151d0c38d4291656aa134344ec1f3d0199ebfbb6d4"},
+ {file = "pyzmq-26.2.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:91e2bfb8e9a29f709d51b208dd5f441dc98eb412c8fe75c24ea464734ccdb48e"},
+ {file = "pyzmq-26.2.1-cp312-cp312-win32.whl", hash = "sha256:4a98898fdce380c51cc3e38ebc9aa33ae1e078193f4dc641c047f88b8c690c9a"},
+ {file = "pyzmq-26.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:a0741edbd0adfe5f30bba6c5223b78c131b5aa4a00a223d631e5ef36e26e6d13"},
+ {file = "pyzmq-26.2.1-cp312-cp312-win_arm64.whl", hash = "sha256:e5e33b1491555843ba98d5209439500556ef55b6ab635f3a01148545498355e5"},
+ {file = "pyzmq-26.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:099b56ef464bc355b14381f13355542e452619abb4c1e57a534b15a106bf8e23"},
+ {file = "pyzmq-26.2.1-cp313-cp313-macosx_10_15_universal2.whl", hash = "sha256:651726f37fcbce9f8dd2a6dab0f024807929780621890a4dc0c75432636871be"},
+ {file = "pyzmq-26.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:57dd4d91b38fa4348e237a9388b4423b24ce9c1695bbd4ba5a3eada491e09399"},
+ {file = "pyzmq-26.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d51a7bfe01a48e1064131f3416a5439872c533d756396be2b39e3977b41430f9"},
+ {file = "pyzmq-26.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c7154d228502e18f30f150b7ce94f0789d6b689f75261b623f0fdc1eec642aab"},
+ {file = "pyzmq-26.2.1-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:f1f31661a80cc46aba381bed475a9135b213ba23ca7ff6797251af31510920ce"},
+ {file = "pyzmq-26.2.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:290c96f479504439b6129a94cefd67a174b68ace8a8e3f551b2239a64cfa131a"},
+ {file = "pyzmq-26.2.1-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:f2c307fbe86e18ab3c885b7e01de942145f539165c3360e2af0f094dd440acd9"},
+ {file = "pyzmq-26.2.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:b314268e716487bfb86fcd6f84ebbe3e5bec5fac75fdf42bc7d90fdb33f618ad"},
+ {file = "pyzmq-26.2.1-cp313-cp313-win32.whl", hash = "sha256:edb550616f567cd5603b53bb52a5f842c0171b78852e6fc7e392b02c2a1504bb"},
+ {file = "pyzmq-26.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:100a826a029c8ef3d77a1d4c97cbd6e867057b5806a7276f2bac1179f893d3bf"},
+ {file = "pyzmq-26.2.1-cp313-cp313-win_arm64.whl", hash = "sha256:6991ee6c43e0480deb1b45d0c7c2bac124a6540cba7db4c36345e8e092da47ce"},
+ {file = "pyzmq-26.2.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:25e720dba5b3a3bb2ad0ad5d33440babd1b03438a7a5220511d0c8fa677e102e"},
+ {file = "pyzmq-26.2.1-cp313-cp313t-macosx_10_15_universal2.whl", hash = "sha256:9ec6abfb701437142ce9544bd6a236addaf803a32628d2260eb3dbd9a60e2891"},
+ {file = "pyzmq-26.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e1eb9d2bfdf5b4e21165b553a81b2c3bd5be06eeddcc4e08e9692156d21f1f6"},
+ {file = "pyzmq-26.2.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:90dc731d8e3e91bcd456aa7407d2eba7ac6f7860e89f3766baabb521f2c1de4a"},
+ {file = "pyzmq-26.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b6a93d684278ad865fc0b9e89fe33f6ea72d36da0e842143891278ff7fd89c3"},
+ {file = "pyzmq-26.2.1-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:c1bb37849e2294d519117dd99b613c5177934e5c04a5bb05dd573fa42026567e"},
+ {file = "pyzmq-26.2.1-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:632a09c6d8af17b678d84df442e9c3ad8e4949c109e48a72f805b22506c4afa7"},
+ {file = "pyzmq-26.2.1-cp313-cp313t-musllinux_1_1_i686.whl", hash = "sha256:fc409c18884eaf9ddde516d53af4f2db64a8bc7d81b1a0c274b8aa4e929958e8"},
+ {file = "pyzmq-26.2.1-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:17f88622b848805d3f6427ce1ad5a2aa3cf61f12a97e684dab2979802024d460"},
+ {file = "pyzmq-26.2.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3ef584f13820d2629326fe20cc04069c21c5557d84c26e277cfa6235e523b10f"},
+ {file = "pyzmq-26.2.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:160194d1034902937359c26ccfa4e276abffc94937e73add99d9471e9f555dd6"},
+ {file = "pyzmq-26.2.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:574b285150afdbf0a0424dddf7ef9a0d183988eb8d22feacb7160f7515e032cb"},
+ {file = "pyzmq-26.2.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:44dba28c34ce527cf687156c81f82bf1e51f047838d5964f6840fd87dfecf9fe"},
+ {file = "pyzmq-26.2.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:9fbdb90b85c7624c304f72ec7854659a3bd901e1c0ffb2363163779181edeb68"},
+ {file = "pyzmq-26.2.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:a7ad34a2921e8f76716dc7205c9bf46a53817e22b9eec2e8a3e08ee4f4a72468"},
+ {file = "pyzmq-26.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:866c12b7c90dd3a86983df7855c6f12f9407c8684db6aa3890fc8027462bda82"},
+ {file = "pyzmq-26.2.1-cp37-cp37m-win32.whl", hash = "sha256:eeb37f65350d5c5870517f02f8bbb2ac0fbec7b416c0f4875219fef305a89a45"},
+ {file = "pyzmq-26.2.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4eb3197f694dfb0ee6af29ef14a35f30ae94ff67c02076eef8125e2d98963cd0"},
+ {file = "pyzmq-26.2.1-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:36d4e7307db7c847fe37413f333027d31c11d5e6b3bacbb5022661ac635942ba"},
+ {file = "pyzmq-26.2.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1c6ae0e95d0a4b0cfe30f648a18e764352d5415279bdf34424decb33e79935b8"},
+ {file = "pyzmq-26.2.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:5b4fc44f5360784cc02392f14235049665caaf7c0fe0b04d313e763d3338e463"},
+ {file = "pyzmq-26.2.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:51431f6b2750eb9b9d2b2952d3cc9b15d0215e1b8f37b7a3239744d9b487325d"},
+ {file = "pyzmq-26.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bdbc78ae2065042de48a65f1421b8af6b76a0386bb487b41955818c3c1ce7bed"},
+ {file = "pyzmq-26.2.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:d14f50d61a89b0925e4d97a0beba6053eb98c426c5815d949a43544f05a0c7ec"},
+ {file = "pyzmq-26.2.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:004837cb958988c75d8042f5dac19a881f3d9b3b75b2f574055e22573745f841"},
+ {file = "pyzmq-26.2.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:0b2007f28ce1b8acebdf4812c1aab997a22e57d6a73b5f318b708ef9bcabbe95"},
+ {file = "pyzmq-26.2.1-cp38-cp38-win32.whl", hash = "sha256:269c14904da971cb5f013100d1aaedb27c0a246728c341d5d61ddd03f463f2f3"},
+ {file = "pyzmq-26.2.1-cp38-cp38-win_amd64.whl", hash = "sha256:31fff709fef3b991cfe7189d2cfe0c413a1d0e82800a182cfa0c2e3668cd450f"},
+ {file = "pyzmq-26.2.1-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:a4bffcadfd40660f26d1b3315a6029fd4f8f5bf31a74160b151f5c577b2dc81b"},
+ {file = "pyzmq-26.2.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e76ad4729c2f1cf74b6eb1bdd05f6aba6175999340bd51e6caee49a435a13bf5"},
+ {file = "pyzmq-26.2.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8b0f5bab40a16e708e78a0c6ee2425d27e1a5d8135c7a203b4e977cee37eb4aa"},
+ {file = "pyzmq-26.2.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:e8e47050412f0ad3a9b2287779758073cbf10e460d9f345002d4779e43bb0136"},
+ {file = "pyzmq-26.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7f18ce33f422d119b13c1363ed4cce245b342b2c5cbbb76753eabf6aa6f69c7d"},
+ {file = "pyzmq-26.2.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ceb0d78b7ef106708a7e2c2914afe68efffc0051dc6a731b0dbacd8b4aee6d68"},
+ {file = "pyzmq-26.2.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ebdd96bd637fd426d60e86a29ec14b8c1ab64b8d972f6a020baf08a30d1cf46"},
+ {file = "pyzmq-26.2.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:03719e424150c6395b9513f53a5faadcc1ce4b92abdf68987f55900462ac7eec"},
+ {file = "pyzmq-26.2.1-cp39-cp39-win32.whl", hash = "sha256:ef5479fac31df4b304e96400fc67ff08231873ee3537544aa08c30f9d22fce38"},
+ {file = "pyzmq-26.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:f92a002462154c176dac63a8f1f6582ab56eb394ef4914d65a9417f5d9fde218"},
+ {file = "pyzmq-26.2.1-cp39-cp39-win_arm64.whl", hash = "sha256:1fd4b3efc6f62199886440d5e27dd3ccbcb98dfddf330e7396f1ff421bfbb3c2"},
+ {file = "pyzmq-26.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:380816d298aed32b1a97b4973a4865ef3be402a2e760204509b52b6de79d755d"},
+ {file = "pyzmq-26.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:97cbb368fd0debdbeb6ba5966aa28e9a1ae3396c7386d15569a6ca4be4572b99"},
+ {file = "pyzmq-26.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abf7b5942c6b0dafcc2823ddd9154f419147e24f8df5b41ca8ea40a6db90615c"},
+ {file = "pyzmq-26.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3fe6e28a8856aea808715f7a4fc11f682b9d29cac5d6262dd8fe4f98edc12d53"},
+ {file = "pyzmq-26.2.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bd8fdee945b877aa3bffc6a5a8816deb048dab0544f9df3731ecd0e54d8c84c9"},
+ {file = "pyzmq-26.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ee7152f32c88e0e1b5b17beb9f0e2b14454235795ef68c0c120b6d3d23d12833"},
+ {file = "pyzmq-26.2.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:baa1da72aecf6a490b51fba7a51f1ce298a1e0e86d0daef8265c8f8f9848eb77"},
+ {file = "pyzmq-26.2.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:49135bb327fca159262d8fd14aa1f4a919fe071b04ed08db4c7c37d2f0647162"},
+ {file = "pyzmq-26.2.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8bacc1a10c150d58e8a9ee2b2037a70f8d903107e0f0b6e079bf494f2d09c091"},
+ {file = "pyzmq-26.2.1-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:09dac387ce62d69bec3f06d51610ca1d660e7849eb45f68e38e7f5cf1f49cbcb"},
+ {file = "pyzmq-26.2.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:70b3a46ecd9296e725ccafc17d732bfc3cdab850b54bd913f843a0a54dfb2c04"},
+ {file = "pyzmq-26.2.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:59660e15c797a3b7a571c39f8e0b62a1f385f98ae277dfe95ca7eaf05b5a0f12"},
+ {file = "pyzmq-26.2.1-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:0f50db737d688e96ad2a083ad2b453e22865e7e19c7f17d17df416e91ddf67eb"},
+ {file = "pyzmq-26.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a003200b6cd64e89b5725ff7e284a93ab24fd54bbac8b4fa46b1ed57be693c27"},
+ {file = "pyzmq-26.2.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:f9ba5def063243793dec6603ad1392f735255cbc7202a3a484c14f99ec290705"},
+ {file = "pyzmq-26.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:1238c2448c58b9c8d6565579393148414a42488a5f916b3f322742e561f6ae0d"},
+ {file = "pyzmq-26.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8eddb3784aed95d07065bcf94d07e8c04024fdb6b2386f08c197dfe6b3528fda"},
+ {file = "pyzmq-26.2.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f0f19c2097fffb1d5b07893d75c9ee693e9cbc809235cf3f2267f0ef6b015f24"},
+ {file = "pyzmq-26.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0995fd3530f2e89d6b69a2202e340bbada3191014352af978fa795cb7a446331"},
+ {file = "pyzmq-26.2.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:7c6160fe513654e65665332740f63de29ce0d165e053c0c14a161fa60dd0da01"},
+ {file = "pyzmq-26.2.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:8ec8e3aea6146b761d6c57fcf8f81fcb19f187afecc19bf1701a48db9617a217"},
+ {file = "pyzmq-26.2.1.tar.gz", hash = "sha256:17d72a74e5e9ff3829deb72897a175333d3ef5b5413948cae3cf7ebf0b02ecca"},
]
[package.dependencies]
cffi = {version = "*", markers = "implementation_name == \"pypy\""}
-[[package]]
-name = "qtconsole"
-version = "5.5.2"
-description = "Jupyter Qt console"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "qtconsole-5.5.2-py3-none-any.whl", hash = "sha256:42d745f3d05d36240244a04e1e1ec2a86d5d9b6edb16dbdef582ccb629e87e0b"},
- {file = "qtconsole-5.5.2.tar.gz", hash = "sha256:6b5fb11274b297463706af84dcbbd5c92273b1f619e6d25d08874b0a88516989"},
-]
-
-[package.dependencies]
-ipykernel = ">=4.1"
-jupyter-client = ">=4.1"
-jupyter-core = "*"
-packaging = "*"
-pygments = "*"
-pyzmq = ">=17.1"
-qtpy = ">=2.4.0"
-traitlets = "<5.2.1 || >5.2.1,<5.2.2 || >5.2.2"
-
-[package.extras]
-doc = ["Sphinx (>=1.3)"]
-test = ["flaky", "pytest", "pytest-qt"]
-
-[[package]]
-name = "qtpy"
-version = "2.4.1"
-description = "Provides an abstraction layer on top of the various Qt bindings (PyQt5/6 and PySide2/6)."
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "QtPy-2.4.1-py3-none-any.whl", hash = "sha256:1c1d8c4fa2c884ae742b069151b0abe15b3f70491f3972698c683b8e38de839b"},
- {file = "QtPy-2.4.1.tar.gz", hash = "sha256:a5a15ffd519550a1361bdc56ffc07fda56a6af7292f17c7b395d4083af632987"},
-]
-
-[package.dependencies]
-packaging = "*"
-
-[package.extras]
-test = ["pytest (>=6,!=7.0.0,!=7.0.1)", "pytest-cov (>=3.0.0)", "pytest-qt"]
-
[[package]]
name = "redis"
version = "4.5.5"
description = "Python client for Redis database and key-value store"
optional = false
python-versions = ">=3.7"
+groups = ["main"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "redis-4.5.5-py3-none-any.whl", hash = "sha256:77929bc7f5dab9adf3acba2d3bb7d7658f1e0c2f1cafe7eb36434e751c471119"},
{file = "redis-4.5.5.tar.gz", hash = "sha256:dc87a0bdef6c8bfe1ef1e1c40be7034390c2ae02d92dcd0c7ca1729443899880"},
@@ -2519,18 +2661,21 @@ ocsp = ["cryptography (>=36.0.1)", "pyopenssl (==20.0.1)", "requests (>=2.26.0)"
[[package]]
name = "referencing"
-version = "0.35.1"
+version = "0.36.2"
description = "JSON Referencing + Python"
optional = false
-python-versions = ">=3.8"
+python-versions = ">=3.9"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "referencing-0.35.1-py3-none-any.whl", hash = "sha256:eda6d3234d62814d1c64e305c1331c9a3a6132da475ab6382eaa997b21ee75de"},
- {file = "referencing-0.35.1.tar.gz", hash = "sha256:25b42124a6c8b632a425174f24087783efb348a6f1e0008e63cd4466fedf703c"},
+ {file = "referencing-0.36.2-py3-none-any.whl", hash = "sha256:e8699adbbf8b5c7de96d8ffa0eb5c158b3beafce084968e2ea8bb08c6794dcd0"},
+ {file = "referencing-0.36.2.tar.gz", hash = "sha256:df2e89862cd09deabbdba16944cc3f10feb6b3e6f18e902f7cc25609a34775aa"},
]
[package.dependencies]
attrs = ">=22.2.0"
rpds-py = ">=0.7.0"
+typing-extensions = {version = ">=4.4.0", markers = "python_version < \"3.13\""}
[[package]]
name = "requests"
@@ -2538,6 +2683,8 @@ version = "2.32.3"
description = "Python HTTP for Humans."
optional = false
python-versions = ">=3.8"
+groups = ["main", "dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"},
{file = "requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760"},
@@ -2559,6 +2706,8 @@ version = "1.0.0"
description = "A utility belt for advanced users of python-requests"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "requests-toolbelt-1.0.0.tar.gz", hash = "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6"},
{file = "requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06"},
@@ -2573,6 +2722,8 @@ version = "0.1.4"
description = "A pure python RFC3339 validator"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "rfc3339_validator-0.1.4-py2.py3-none-any.whl", hash = "sha256:24f6ec1eda14ef823da9e36ec7113124b39c04d50a4d3d3a3c2859577e7791fa"},
{file = "rfc3339_validator-0.1.4.tar.gz", hash = "sha256:138a2abdf93304ad60530167e51d2dfb9549521a836871b88d7f4695d0022f6b"},
@@ -2587,6 +2738,8 @@ version = "0.1.1"
description = "Pure python rfc3986 validator"
optional = false
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "rfc3986_validator-0.1.1-py2.py3-none-any.whl", hash = "sha256:2f235c432ef459970b4306369336b9d5dbdda31b510ca1e327636e01f528bfa9"},
{file = "rfc3986_validator-0.1.1.tar.gz", hash = "sha256:3d44bde7921b3b9ec3ae4e3adca370438eccebc676456449b145d533b240d055"},
@@ -2594,114 +2747,116 @@ files = [
[[package]]
name = "rpds-py"
-version = "0.20.0"
+version = "0.22.3"
description = "Python bindings to Rust's persistent data structures (rpds)"
optional = false
-python-versions = ">=3.8"
-files = [
- {file = "rpds_py-0.20.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3ad0fda1635f8439cde85c700f964b23ed5fc2d28016b32b9ee5fe30da5c84e2"},
- {file = "rpds_py-0.20.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9bb4a0d90fdb03437c109a17eade42dfbf6190408f29b2744114d11586611d6f"},
- {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c6377e647bbfd0a0b159fe557f2c6c602c159fc752fa316572f012fc0bf67150"},
- {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb851b7df9dda52dc1415ebee12362047ce771fc36914586b2e9fcbd7d293b3e"},
- {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e0f80b739e5a8f54837be5d5c924483996b603d5502bfff79bf33da06164ee2"},
- {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a8c94dad2e45324fc74dce25e1645d4d14df9a4e54a30fa0ae8bad9a63928e3"},
- {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f8e604fe73ba048c06085beaf51147eaec7df856824bfe7b98657cf436623daf"},
- {file = "rpds_py-0.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:df3de6b7726b52966edf29663e57306b23ef775faf0ac01a3e9f4012a24a4140"},
- {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:cf258ede5bc22a45c8e726b29835b9303c285ab46fc7c3a4cc770736b5304c9f"},
- {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:55fea87029cded5df854ca7e192ec7bdb7ecd1d9a3f63d5c4eb09148acf4a7ce"},
- {file = "rpds_py-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ae94bd0b2f02c28e199e9bc51485d0c5601f58780636185660f86bf80c89af94"},
- {file = "rpds_py-0.20.0-cp310-none-win32.whl", hash = "sha256:28527c685f237c05445efec62426d285e47a58fb05ba0090a4340b73ecda6dee"},
- {file = "rpds_py-0.20.0-cp310-none-win_amd64.whl", hash = "sha256:238a2d5b1cad28cdc6ed15faf93a998336eb041c4e440dd7f902528b8891b399"},
- {file = "rpds_py-0.20.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:ac2f4f7a98934c2ed6505aead07b979e6f999389f16b714448fb39bbaa86a489"},
- {file = "rpds_py-0.20.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:220002c1b846db9afd83371d08d239fdc865e8f8c5795bbaec20916a76db3318"},
- {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d7919548df3f25374a1f5d01fbcd38dacab338ef5f33e044744b5c36729c8db"},
- {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:758406267907b3781beee0f0edfe4a179fbd97c0be2e9b1154d7f0a1279cf8e5"},
- {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3d61339e9f84a3f0767b1995adfb171a0d00a1185192718a17af6e124728e0f5"},
- {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1259c7b3705ac0a0bd38197565a5d603218591d3f6cee6e614e380b6ba61c6f6"},
- {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c1dc0f53856b9cc9a0ccca0a7cc61d3d20a7088201c0937f3f4048c1718a209"},
- {file = "rpds_py-0.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:7e60cb630f674a31f0368ed32b2a6b4331b8350d67de53c0359992444b116dd3"},
- {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:dbe982f38565bb50cb7fb061ebf762c2f254ca3d8c20d4006878766e84266272"},
- {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:514b3293b64187172bc77c8fb0cdae26981618021053b30d8371c3a902d4d5ad"},
- {file = "rpds_py-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d0a26ffe9d4dd35e4dfdd1e71f46401cff0181c75ac174711ccff0459135fa58"},
- {file = "rpds_py-0.20.0-cp311-none-win32.whl", hash = "sha256:89c19a494bf3ad08c1da49445cc5d13d8fefc265f48ee7e7556839acdacf69d0"},
- {file = "rpds_py-0.20.0-cp311-none-win_amd64.whl", hash = "sha256:c638144ce971df84650d3ed0096e2ae7af8e62ecbbb7b201c8935c370df00a2c"},
- {file = "rpds_py-0.20.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a84ab91cbe7aab97f7446652d0ed37d35b68a465aeef8fc41932a9d7eee2c1a6"},
- {file = "rpds_py-0.20.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:56e27147a5a4c2c21633ff8475d185734c0e4befd1c989b5b95a5d0db699b21b"},
- {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2580b0c34583b85efec8c5c5ec9edf2dfe817330cc882ee972ae650e7b5ef739"},
- {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b80d4a7900cf6b66bb9cee5c352b2d708e29e5a37fe9bf784fa97fc11504bf6c"},
- {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:50eccbf054e62a7b2209b28dc7a22d6254860209d6753e6b78cfaeb0075d7bee"},
- {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:49a8063ea4296b3a7e81a5dfb8f7b2d73f0b1c20c2af401fb0cdf22e14711a96"},
- {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea438162a9fcbee3ecf36c23e6c68237479f89f962f82dae83dc15feeceb37e4"},
- {file = "rpds_py-0.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:18d7585c463087bddcfa74c2ba267339f14f2515158ac4db30b1f9cbdb62c8ef"},
- {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d4c7d1a051eeb39f5c9547e82ea27cbcc28338482242e3e0b7768033cb083821"},
- {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:e4df1e3b3bec320790f699890d41c59d250f6beda159ea3c44c3f5bac1976940"},
- {file = "rpds_py-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2cf126d33a91ee6eedc7f3197b53e87a2acdac63602c0f03a02dd69e4b138174"},
- {file = "rpds_py-0.20.0-cp312-none-win32.whl", hash = "sha256:8bc7690f7caee50b04a79bf017a8d020c1f48c2a1077ffe172abec59870f1139"},
- {file = "rpds_py-0.20.0-cp312-none-win_amd64.whl", hash = "sha256:0e13e6952ef264c40587d510ad676a988df19adea20444c2b295e536457bc585"},
- {file = "rpds_py-0.20.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:aa9a0521aeca7d4941499a73ad7d4f8ffa3d1affc50b9ea11d992cd7eff18a29"},
- {file = "rpds_py-0.20.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4a1f1d51eccb7e6c32ae89243cb352389228ea62f89cd80823ea7dd1b98e0b91"},
- {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a86a9b96070674fc88b6f9f71a97d2c1d3e5165574615d1f9168ecba4cecb24"},
- {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6c8ef2ebf76df43f5750b46851ed1cdf8f109d7787ca40035fe19fbdc1acc5a7"},
- {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b74b25f024b421d5859d156750ea9a65651793d51b76a2e9238c05c9d5f203a9"},
- {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:57eb94a8c16ab08fef6404301c38318e2c5a32216bf5de453e2714c964c125c8"},
- {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1940dae14e715e2e02dfd5b0f64a52e8374a517a1e531ad9412319dc3ac7879"},
- {file = "rpds_py-0.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d20277fd62e1b992a50c43f13fbe13277a31f8c9f70d59759c88f644d66c619f"},
- {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:06db23d43f26478303e954c34c75182356ca9aa7797d22c5345b16871ab9c45c"},
- {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:b2a5db5397d82fa847e4c624b0c98fe59d2d9b7cf0ce6de09e4d2e80f8f5b3f2"},
- {file = "rpds_py-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5a35df9f5548fd79cb2f52d27182108c3e6641a4feb0f39067911bf2adaa3e57"},
- {file = "rpds_py-0.20.0-cp313-none-win32.whl", hash = "sha256:fd2d84f40633bc475ef2d5490b9c19543fbf18596dcb1b291e3a12ea5d722f7a"},
- {file = "rpds_py-0.20.0-cp313-none-win_amd64.whl", hash = "sha256:9bc2d153989e3216b0559251b0c260cfd168ec78b1fac33dd485750a228db5a2"},
- {file = "rpds_py-0.20.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:f2fbf7db2012d4876fb0d66b5b9ba6591197b0f165db8d99371d976546472a24"},
- {file = "rpds_py-0.20.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1e5f3cd7397c8f86c8cc72d5a791071431c108edd79872cdd96e00abd8497d29"},
- {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce9845054c13696f7af7f2b353e6b4f676dab1b4b215d7fe5e05c6f8bb06f965"},
- {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c3e130fd0ec56cb76eb49ef52faead8ff09d13f4527e9b0c400307ff72b408e1"},
- {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b16aa0107ecb512b568244ef461f27697164d9a68d8b35090e9b0c1c8b27752"},
- {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aa7f429242aae2947246587d2964fad750b79e8c233a2367f71b554e9447949c"},
- {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af0fc424a5842a11e28956e69395fbbeab2c97c42253169d87e90aac2886d751"},
- {file = "rpds_py-0.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b8c00a3b1e70c1d3891f0db1b05292747f0dbcfb49c43f9244d04c70fbc40eb8"},
- {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:40ce74fc86ee4645d0a225498d091d8bc61f39b709ebef8204cb8b5a464d3c0e"},
- {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:4fe84294c7019456e56d93e8ababdad5a329cd25975be749c3f5f558abb48253"},
- {file = "rpds_py-0.20.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:338ca4539aad4ce70a656e5187a3a31c5204f261aef9f6ab50e50bcdffaf050a"},
- {file = "rpds_py-0.20.0-cp38-none-win32.whl", hash = "sha256:54b43a2b07db18314669092bb2de584524d1ef414588780261e31e85846c26a5"},
- {file = "rpds_py-0.20.0-cp38-none-win_amd64.whl", hash = "sha256:a1862d2d7ce1674cffa6d186d53ca95c6e17ed2b06b3f4c476173565c862d232"},
- {file = "rpds_py-0.20.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:3fde368e9140312b6e8b6c09fb9f8c8c2f00999d1823403ae90cc00480221b22"},
- {file = "rpds_py-0.20.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9824fb430c9cf9af743cf7aaf6707bf14323fb51ee74425c380f4c846ea70789"},
- {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:11ef6ce74616342888b69878d45e9f779b95d4bd48b382a229fe624a409b72c5"},
- {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c52d3f2f82b763a24ef52f5d24358553e8403ce05f893b5347098014f2d9eff2"},
- {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d35cef91e59ebbeaa45214861874bc6f19eb35de96db73e467a8358d701a96c"},
- {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d72278a30111e5b5525c1dd96120d9e958464316f55adb030433ea905866f4de"},
- {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4c29cbbba378759ac5786730d1c3cb4ec6f8ababf5c42a9ce303dc4b3d08cda"},
- {file = "rpds_py-0.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6632f2d04f15d1bd6fe0eedd3b86d9061b836ddca4c03d5cf5c7e9e6b7c14580"},
- {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:d0b67d87bb45ed1cd020e8fbf2307d449b68abc45402fe1a4ac9e46c3c8b192b"},
- {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:ec31a99ca63bf3cd7f1a5ac9fe95c5e2d060d3c768a09bc1d16e235840861420"},
- {file = "rpds_py-0.20.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:22e6c9976e38f4d8c4a63bd8a8edac5307dffd3ee7e6026d97f3cc3a2dc02a0b"},
- {file = "rpds_py-0.20.0-cp39-none-win32.whl", hash = "sha256:569b3ea770c2717b730b61998b6c54996adee3cef69fc28d444f3e7920313cf7"},
- {file = "rpds_py-0.20.0-cp39-none-win_amd64.whl", hash = "sha256:e6900ecdd50ce0facf703f7a00df12374b74bbc8ad9fe0f6559947fb20f82364"},
- {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:617c7357272c67696fd052811e352ac54ed1d9b49ab370261a80d3b6ce385045"},
- {file = "rpds_py-0.20.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9426133526f69fcaba6e42146b4e12d6bc6c839b8b555097020e2b78ce908dcc"},
- {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:deb62214c42a261cb3eb04d474f7155279c1a8a8c30ac89b7dcb1721d92c3c02"},
- {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fcaeb7b57f1a1e071ebd748984359fef83ecb026325b9d4ca847c95bc7311c92"},
- {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d454b8749b4bd70dd0a79f428731ee263fa6995f83ccb8bada706e8d1d3ff89d"},
- {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d807dc2051abe041b6649681dce568f8e10668e3c1c6543ebae58f2d7e617855"},
- {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c3c20f0ddeb6e29126d45f89206b8291352b8c5b44384e78a6499d68b52ae511"},
- {file = "rpds_py-0.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b7f19250ceef892adf27f0399b9e5afad019288e9be756d6919cb58892129f51"},
- {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4f1ed4749a08379555cebf4650453f14452eaa9c43d0a95c49db50c18b7da075"},
- {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:dcedf0b42bcb4cfff4101d7771a10532415a6106062f005ab97d1d0ab5681c60"},
- {file = "rpds_py-0.20.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:39ed0d010457a78f54090fafb5d108501b5aa5604cc22408fc1c0c77eac14344"},
- {file = "rpds_py-0.20.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bb273176be34a746bdac0b0d7e4e2c467323d13640b736c4c477881a3220a989"},
- {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f918a1a130a6dfe1d7fe0f105064141342e7dd1611f2e6a21cd2f5c8cb1cfb3e"},
- {file = "rpds_py-0.20.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:f60012a73aa396be721558caa3a6fd49b3dd0033d1675c6d59c4502e870fcf0c"},
- {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d2b1ad682a3dfda2a4e8ad8572f3100f95fad98cb99faf37ff0ddfe9cbf9d03"},
- {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:614fdafe9f5f19c63ea02817fa4861c606a59a604a77c8cdef5aa01d28b97921"},
- {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fa518bcd7600c584bf42e6617ee8132869e877db2f76bcdc281ec6a4113a53ab"},
- {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f0475242f447cc6cb8a9dd486d68b2ef7fbee84427124c232bff5f63b1fe11e5"},
- {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f90a4cd061914a60bd51c68bcb4357086991bd0bb93d8aa66a6da7701370708f"},
- {file = "rpds_py-0.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:def7400461c3a3f26e49078302e1c1b38f6752342c77e3cf72ce91ca69fb1bc1"},
- {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:65794e4048ee837494aea3c21a28ad5fc080994dfba5b036cf84de37f7ad5074"},
- {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:faefcc78f53a88f3076b7f8be0a8f8d35133a3ecf7f3770895c25f8813460f08"},
- {file = "rpds_py-0.20.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5b4f105deeffa28bbcdff6c49b34e74903139afa690e35d2d9e3c2c2fba18cec"},
- {file = "rpds_py-0.20.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fdfc3a892927458d98f3d55428ae46b921d1f7543b89382fdb483f5640daaec8"},
- {file = "rpds_py-0.20.0.tar.gz", hash = "sha256:d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121"},
+python-versions = ">=3.9"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
+files = [
+ {file = "rpds_py-0.22.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:6c7b99ca52c2c1752b544e310101b98a659b720b21db00e65edca34483259967"},
+ {file = "rpds_py-0.22.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:be2eb3f2495ba669d2a985f9b426c1797b7d48d6963899276d22f23e33d47e37"},
+ {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:70eb60b3ae9245ddea20f8a4190bd79c705a22f8028aaf8bbdebe4716c3fab24"},
+ {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4041711832360a9b75cfb11b25a6a97c8fb49c07b8bd43d0d02b45d0b499a4ff"},
+ {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:64607d4cbf1b7e3c3c8a14948b99345eda0e161b852e122c6bb71aab6d1d798c"},
+ {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e69b0a0e2537f26d73b4e43ad7bc8c8efb39621639b4434b76a3de50c6966e"},
+ {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc27863442d388870c1809a87507727b799c8460573cfbb6dc0eeaef5a11b5ec"},
+ {file = "rpds_py-0.22.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e79dd39f1e8c3504be0607e5fc6e86bb60fe3584bec8b782578c3b0fde8d932c"},
+ {file = "rpds_py-0.22.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e0fa2d4ec53dc51cf7d3bb22e0aa0143966119f42a0c3e4998293a3dd2856b09"},
+ {file = "rpds_py-0.22.3-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fda7cb070f442bf80b642cd56483b5548e43d366fe3f39b98e67cce780cded00"},
+ {file = "rpds_py-0.22.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cff63a0272fcd259dcc3be1657b07c929c466b067ceb1c20060e8d10af56f5bf"},
+ {file = "rpds_py-0.22.3-cp310-cp310-win32.whl", hash = "sha256:9bd7228827ec7bb817089e2eb301d907c0d9827a9e558f22f762bb690b131652"},
+ {file = "rpds_py-0.22.3-cp310-cp310-win_amd64.whl", hash = "sha256:9beeb01d8c190d7581a4d59522cd3d4b6887040dcfc744af99aa59fef3e041a8"},
+ {file = "rpds_py-0.22.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d20cfb4e099748ea39e6f7b16c91ab057989712d31761d3300d43134e26e165f"},
+ {file = "rpds_py-0.22.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:68049202f67380ff9aa52f12e92b1c30115f32e6895cd7198fa2a7961621fc5a"},
+ {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb4f868f712b2dd4bcc538b0a0c1f63a2b1d584c925e69a224d759e7070a12d5"},
+ {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bc51abd01f08117283c5ebf64844a35144a0843ff7b2983e0648e4d3d9f10dbb"},
+ {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0f3cec041684de9a4684b1572fe28c7267410e02450f4561700ca5a3bc6695a2"},
+ {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7ef9d9da710be50ff6809fed8f1963fecdfecc8b86656cadfca3bc24289414b0"},
+ {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:59f4a79c19232a5774aee369a0c296712ad0e77f24e62cad53160312b1c1eaa1"},
+ {file = "rpds_py-0.22.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1a60bce91f81ddaac922a40bbb571a12c1070cb20ebd6d49c48e0b101d87300d"},
+ {file = "rpds_py-0.22.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e89391e6d60251560f0a8f4bd32137b077a80d9b7dbe6d5cab1cd80d2746f648"},
+ {file = "rpds_py-0.22.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e3fb866d9932a3d7d0c82da76d816996d1667c44891bd861a0f97ba27e84fc74"},
+ {file = "rpds_py-0.22.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1352ae4f7c717ae8cba93421a63373e582d19d55d2ee2cbb184344c82d2ae55a"},
+ {file = "rpds_py-0.22.3-cp311-cp311-win32.whl", hash = "sha256:b0b4136a252cadfa1adb705bb81524eee47d9f6aab4f2ee4fa1e9d3cd4581f64"},
+ {file = "rpds_py-0.22.3-cp311-cp311-win_amd64.whl", hash = "sha256:8bd7c8cfc0b8247c8799080fbff54e0b9619e17cdfeb0478ba7295d43f635d7c"},
+ {file = "rpds_py-0.22.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:27e98004595899949bd7a7b34e91fa7c44d7a97c40fcaf1d874168bb652ec67e"},
+ {file = "rpds_py-0.22.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1978d0021e943aae58b9b0b196fb4895a25cc53d3956b8e35e0b7682eefb6d56"},
+ {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:655ca44a831ecb238d124e0402d98f6212ac527a0ba6c55ca26f616604e60a45"},
+ {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:feea821ee2a9273771bae61194004ee2fc33f8ec7db08117ef9147d4bbcbca8e"},
+ {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:22bebe05a9ffc70ebfa127efbc429bc26ec9e9b4ee4d15a740033efda515cf3d"},
+ {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3af6e48651c4e0d2d166dc1b033b7042ea3f871504b6805ba5f4fe31581d8d38"},
+ {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e67ba3c290821343c192f7eae1d8fd5999ca2dc99994114643e2f2d3e6138b15"},
+ {file = "rpds_py-0.22.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02fbb9c288ae08bcb34fb41d516d5eeb0455ac35b5512d03181d755d80810059"},
+ {file = "rpds_py-0.22.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f56a6b404f74ab372da986d240e2e002769a7d7102cc73eb238a4f72eec5284e"},
+ {file = "rpds_py-0.22.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0a0461200769ab3b9ab7e513f6013b7a97fdeee41c29b9db343f3c5a8e2b9e61"},
+ {file = "rpds_py-0.22.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8633e471c6207a039eff6aa116e35f69f3156b3989ea3e2d755f7bc41754a4a7"},
+ {file = "rpds_py-0.22.3-cp312-cp312-win32.whl", hash = "sha256:593eba61ba0c3baae5bc9be2f5232430453fb4432048de28399ca7376de9c627"},
+ {file = "rpds_py-0.22.3-cp312-cp312-win_amd64.whl", hash = "sha256:d115bffdd417c6d806ea9069237a4ae02f513b778e3789a359bc5856e0404cc4"},
+ {file = "rpds_py-0.22.3-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:ea7433ce7e4bfc3a85654aeb6747babe3f66eaf9a1d0c1e7a4435bbdf27fea84"},
+ {file = "rpds_py-0.22.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6dd9412824c4ce1aca56c47b0991e65bebb7ac3f4edccfd3f156150c96a7bf25"},
+ {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20070c65396f7373f5df4005862fa162db5d25d56150bddd0b3e8214e8ef45b4"},
+ {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0b09865a9abc0ddff4e50b5ef65467cd94176bf1e0004184eb915cbc10fc05c5"},
+ {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3453e8d41fe5f17d1f8e9c383a7473cd46a63661628ec58e07777c2fff7196dc"},
+ {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f5d36399a1b96e1a5fdc91e0522544580dbebeb1f77f27b2b0ab25559e103b8b"},
+ {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:009de23c9c9ee54bf11303a966edf4d9087cd43a6003672e6aa7def643d06518"},
+ {file = "rpds_py-0.22.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1aef18820ef3e4587ebe8b3bc9ba6e55892a6d7b93bac6d29d9f631a3b4befbd"},
+ {file = "rpds_py-0.22.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f60bd8423be1d9d833f230fdbccf8f57af322d96bcad6599e5a771b151398eb2"},
+ {file = "rpds_py-0.22.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:62d9cfcf4948683a18a9aff0ab7e1474d407b7bab2ca03116109f8464698ab16"},
+ {file = "rpds_py-0.22.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9253fc214112405f0afa7db88739294295f0e08466987f1d70e29930262b4c8f"},
+ {file = "rpds_py-0.22.3-cp313-cp313-win32.whl", hash = "sha256:fb0ba113b4983beac1a2eb16faffd76cb41e176bf58c4afe3e14b9c681f702de"},
+ {file = "rpds_py-0.22.3-cp313-cp313-win_amd64.whl", hash = "sha256:c58e2339def52ef6b71b8f36d13c3688ea23fa093353f3a4fee2556e62086ec9"},
+ {file = "rpds_py-0.22.3-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:f82a116a1d03628a8ace4859556fb39fd1424c933341a08ea3ed6de1edb0283b"},
+ {file = "rpds_py-0.22.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3dfcbc95bd7992b16f3f7ba05af8a64ca694331bd24f9157b49dadeeb287493b"},
+ {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59259dc58e57b10e7e18ce02c311804c10c5a793e6568f8af4dead03264584d1"},
+ {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5725dd9cc02068996d4438d397e255dcb1df776b7ceea3b9cb972bdb11260a83"},
+ {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99b37292234e61325e7a5bb9689e55e48c3f5f603af88b1642666277a81f1fbd"},
+ {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:27b1d3b3915a99208fee9ab092b8184c420f2905b7d7feb4aeb5e4a9c509b8a1"},
+ {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f612463ac081803f243ff13cccc648578e2279295048f2a8d5eb430af2bae6e3"},
+ {file = "rpds_py-0.22.3-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f73d3fef726b3243a811121de45193c0ca75f6407fe66f3f4e183c983573e130"},
+ {file = "rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:3f21f0495edea7fdbaaa87e633a8689cd285f8f4af5c869f27bc8074638ad69c"},
+ {file = "rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:1e9663daaf7a63ceccbbb8e3808fe90415b0757e2abddbfc2e06c857bf8c5e2b"},
+ {file = "rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:a76e42402542b1fae59798fab64432b2d015ab9d0c8c47ba7addddbaf7952333"},
+ {file = "rpds_py-0.22.3-cp313-cp313t-win32.whl", hash = "sha256:69803198097467ee7282750acb507fba35ca22cc3b85f16cf45fb01cb9097730"},
+ {file = "rpds_py-0.22.3-cp313-cp313t-win_amd64.whl", hash = "sha256:f5cf2a0c2bdadf3791b5c205d55a37a54025c6e18a71c71f82bb536cf9a454bf"},
+ {file = "rpds_py-0.22.3-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:378753b4a4de2a7b34063d6f95ae81bfa7b15f2c1a04a9518e8644e81807ebea"},
+ {file = "rpds_py-0.22.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3445e07bf2e8ecfeef6ef67ac83de670358abf2996916039b16a218e3d95e97e"},
+ {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7b2513ba235829860b13faa931f3b6846548021846ac808455301c23a101689d"},
+ {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eaf16ae9ae519a0e237a0f528fd9f0197b9bb70f40263ee57ae53c2b8d48aeb3"},
+ {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:583f6a1993ca3369e0f80ba99d796d8e6b1a3a2a442dd4e1a79e652116413091"},
+ {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4617e1915a539a0d9a9567795023de41a87106522ff83fbfaf1f6baf8e85437e"},
+ {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c150c7a61ed4a4f4955a96626574e9baf1adf772c2fb61ef6a5027e52803543"},
+ {file = "rpds_py-0.22.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2fa4331c200c2521512595253f5bb70858b90f750d39b8cbfd67465f8d1b596d"},
+ {file = "rpds_py-0.22.3-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:214b7a953d73b5e87f0ebece4a32a5bd83c60a3ecc9d4ec8f1dca968a2d91e99"},
+ {file = "rpds_py-0.22.3-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f47ad3d5f3258bd7058d2d506852217865afefe6153a36eb4b6928758041d831"},
+ {file = "rpds_py-0.22.3-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:f276b245347e6e36526cbd4a266a417796fc531ddf391e43574cf6466c492520"},
+ {file = "rpds_py-0.22.3-cp39-cp39-win32.whl", hash = "sha256:bbb232860e3d03d544bc03ac57855cd82ddf19c7a07651a7c0fdb95e9efea8b9"},
+ {file = "rpds_py-0.22.3-cp39-cp39-win_amd64.whl", hash = "sha256:cfbc454a2880389dbb9b5b398e50d439e2e58669160f27b60e5eca11f68ae17c"},
+ {file = "rpds_py-0.22.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:d48424e39c2611ee1b84ad0f44fb3b2b53d473e65de061e3f460fc0be5f1939d"},
+ {file = "rpds_py-0.22.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:24e8abb5878e250f2eb0d7859a8e561846f98910326d06c0d51381fed59357bd"},
+ {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4b232061ca880db21fa14defe219840ad9b74b6158adb52ddf0e87bead9e8493"},
+ {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ac0a03221cdb5058ce0167ecc92a8c89e8d0decdc9e99a2ec23380793c4dcb96"},
+ {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb0c341fa71df5a4595f9501df4ac5abfb5a09580081dffbd1ddd4654e6e9123"},
+ {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bf9db5488121b596dbfc6718c76092fda77b703c1f7533a226a5a9f65248f8ad"},
+ {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b8db6b5b2d4491ad5b6bdc2bc7c017eec108acbf4e6785f42a9eb0ba234f4c9"},
+ {file = "rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b3d504047aba448d70cf6fa22e06cb09f7cbd761939fdd47604f5e007675c24e"},
+ {file = "rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:e61b02c3f7a1e0b75e20c3978f7135fd13cb6cf551bf4a6d29b999a88830a338"},
+ {file = "rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:e35ba67d65d49080e8e5a1dd40101fccdd9798adb9b050ff670b7d74fa41c566"},
+ {file = "rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:26fd7cac7dd51011a245f29a2cc6489c4608b5a8ce8d75661bb4a1066c52dfbe"},
+ {file = "rpds_py-0.22.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:177c7c0fce2855833819c98e43c262007f42ce86651ffbb84f37883308cb0e7d"},
+ {file = "rpds_py-0.22.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:bb47271f60660803ad11f4c61b42242b8c1312a31c98c578f79ef9387bbde21c"},
+ {file = "rpds_py-0.22.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:70fb28128acbfd264eda9bf47015537ba3fe86e40d046eb2963d75024be4d055"},
+ {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:44d61b4b7d0c2c9ac019c314e52d7cbda0ae31078aabd0f22e583af3e0d79723"},
+ {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5f0e260eaf54380380ac3808aa4ebe2d8ca28b9087cf411649f96bad6900c728"},
+ {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b25bc607423935079e05619d7de556c91fb6adeae9d5f80868dde3468657994b"},
+ {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fb6116dfb8d1925cbdb52595560584db42a7f664617a1f7d7f6e32f138cdf37d"},
+ {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a63cbdd98acef6570c62b92a1e43266f9e8b21e699c363c0fef13bd530799c11"},
+ {file = "rpds_py-0.22.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2b8f60e1b739a74bab7e01fcbe3dddd4657ec685caa04681df9d562ef15b625f"},
+ {file = "rpds_py-0.22.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2e8b55d8517a2fda8d95cb45d62a5a8bbf9dd0ad39c5b25c8833efea07b880ca"},
+ {file = "rpds_py-0.22.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:2de29005e11637e7a2361fa151f780ff8eb2543a0da1413bb951e9f14b699ef3"},
+ {file = "rpds_py-0.22.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:666ecce376999bf619756a24ce15bb14c5bfaf04bf00abc7e663ce17c3f34fe7"},
+ {file = "rpds_py-0.22.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:5246b14ca64a8675e0a7161f7af68fe3e910e6b90542b4bfb5439ba752191df6"},
+ {file = "rpds_py-0.22.3.tar.gz", hash = "sha256:e32fee8ab45d3c2db6da19a5323bc3362237c8b653c70194414b892fd06a080d"},
]
[[package]]
@@ -2710,6 +2865,8 @@ version = "0.6.2"
description = "An Amazon S3 Transfer Manager"
optional = false
python-versions = ">= 3.7"
+groups = ["main"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "s3transfer-0.6.2-py3-none-any.whl", hash = "sha256:b014be3a8a2aab98cfe1abc7229cc5a9a0cf05eb9c1f2b86b230fd8df3f78084"},
{file = "s3transfer-0.6.2.tar.gz", hash = "sha256:cab66d3380cca3e70939ef2255d01cd8aece6a4907a9528740f668c4b0611861"},
@@ -2723,41 +2880,55 @@ crt = ["botocore[crt] (>=1.20.29,<2.0a.0)"]
[[package]]
name = "scipy"
-version = "1.9.3"
+version = "1.14.1"
description = "Fundamental algorithms for scientific computing in Python"
optional = false
-python-versions = ">=3.8"
-files = [
- {file = "scipy-1.9.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1884b66a54887e21addf9c16fb588720a8309a57b2e258ae1c7986d4444d3bc0"},
- {file = "scipy-1.9.3-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:83b89e9586c62e787f5012e8475fbb12185bafb996a03257e9675cd73d3736dd"},
- {file = "scipy-1.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a72d885fa44247f92743fc20732ae55564ff2a519e8302fb7e18717c5355a8b"},
- {file = "scipy-1.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d01e1dd7b15bd2449c8bfc6b7cc67d630700ed655654f0dfcf121600bad205c9"},
- {file = "scipy-1.9.3-cp310-cp310-win_amd64.whl", hash = "sha256:68239b6aa6f9c593da8be1509a05cb7f9efe98b80f43a5861cd24c7557e98523"},
- {file = "scipy-1.9.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b41bc822679ad1c9a5f023bc93f6d0543129ca0f37c1ce294dd9d386f0a21096"},
- {file = "scipy-1.9.3-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:90453d2b93ea82a9f434e4e1cba043e779ff67b92f7a0e85d05d286a3625df3c"},
- {file = "scipy-1.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83c06e62a390a9167da60bedd4575a14c1f58ca9dfde59830fc42e5197283dab"},
- {file = "scipy-1.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:abaf921531b5aeaafced90157db505e10345e45038c39e5d9b6c7922d68085cb"},
- {file = "scipy-1.9.3-cp311-cp311-win_amd64.whl", hash = "sha256:06d2e1b4c491dc7d8eacea139a1b0b295f74e1a1a0f704c375028f8320d16e31"},
- {file = "scipy-1.9.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5a04cd7d0d3eff6ea4719371cbc44df31411862b9646db617c99718ff68d4840"},
- {file = "scipy-1.9.3-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:545c83ffb518094d8c9d83cce216c0c32f8c04aaf28b92cc8283eda0685162d5"},
- {file = "scipy-1.9.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d54222d7a3ba6022fdf5773931b5d7c56efe41ede7f7128c7b1637700409108"},
- {file = "scipy-1.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cff3a5295234037e39500d35316a4c5794739433528310e117b8a9a0c76d20fc"},
- {file = "scipy-1.9.3-cp38-cp38-win_amd64.whl", hash = "sha256:2318bef588acc7a574f5bfdff9c172d0b1bf2c8143d9582e05f878e580a3781e"},
- {file = "scipy-1.9.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:d644a64e174c16cb4b2e41dfea6af722053e83d066da7343f333a54dae9bc31c"},
- {file = "scipy-1.9.3-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:da8245491d73ed0a994ed9c2e380fd058ce2fa8a18da204681f2fe1f57f98f95"},
- {file = "scipy-1.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4db5b30849606a95dcf519763dd3ab6fe9bd91df49eba517359e450a7d80ce2e"},
- {file = "scipy-1.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c68db6b290cbd4049012990d7fe71a2abd9ffbe82c0056ebe0f01df8be5436b0"},
- {file = "scipy-1.9.3-cp39-cp39-win_amd64.whl", hash = "sha256:5b88e6d91ad9d59478fafe92a7c757d00c59e3bdc3331be8ada76a4f8d683f58"},
- {file = "scipy-1.9.3.tar.gz", hash = "sha256:fbc5c05c85c1a02be77b1ff591087c83bc44579c6d2bd9fb798bb64ea5e1a027"},
-]
-
-[package.dependencies]
-numpy = ">=1.18.5,<1.26.0"
-
-[package.extras]
-dev = ["flake8", "mypy", "pycodestyle", "typing_extensions"]
-doc = ["matplotlib (>2)", "numpydoc", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-panels (>=0.5.2)", "sphinx-tabs"]
-test = ["asv", "gmpy2", "mpmath", "pytest", "pytest-cov", "pytest-xdist", "scikit-umfpack", "threadpoolctl"]
+python-versions = ">=3.10"
+groups = ["main"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
+files = [
+ {file = "scipy-1.14.1-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:b28d2ca4add7ac16ae8bb6632a3c86e4b9e4d52d3e34267f6e1b0c1f8d87e389"},
+ {file = "scipy-1.14.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:d0d2821003174de06b69e58cef2316a6622b60ee613121199cb2852a873f8cf3"},
+ {file = "scipy-1.14.1-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:8bddf15838ba768bb5f5083c1ea012d64c9a444e16192762bd858f1e126196d0"},
+ {file = "scipy-1.14.1-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:97c5dddd5932bd2a1a31c927ba5e1463a53b87ca96b5c9bdf5dfd6096e27efc3"},
+ {file = "scipy-1.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ff0a7e01e422c15739ecd64432743cf7aae2b03f3084288f399affcefe5222d"},
+ {file = "scipy-1.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e32dced201274bf96899e6491d9ba3e9a5f6b336708656466ad0522d8528f69"},
+ {file = "scipy-1.14.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8426251ad1e4ad903a4514712d2fa8fdd5382c978010d1c6f5f37ef286a713ad"},
+ {file = "scipy-1.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:a49f6ed96f83966f576b33a44257d869756df6cf1ef4934f59dd58b25e0327e5"},
+ {file = "scipy-1.14.1-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:2da0469a4ef0ecd3693761acbdc20f2fdeafb69e6819cc081308cc978153c675"},
+ {file = "scipy-1.14.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:c0ee987efa6737242745f347835da2cc5bb9f1b42996a4d97d5c7ff7928cb6f2"},
+ {file = "scipy-1.14.1-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:3a1b111fac6baec1c1d92f27e76511c9e7218f1695d61b59e05e0fe04dc59617"},
+ {file = "scipy-1.14.1-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:8475230e55549ab3f207bff11ebfc91c805dc3463ef62eda3ccf593254524ce8"},
+ {file = "scipy-1.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:278266012eb69f4a720827bdd2dc54b2271c97d84255b2faaa8f161a158c3b37"},
+ {file = "scipy-1.14.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fef8c87f8abfb884dac04e97824b61299880c43f4ce675dd2cbeadd3c9b466d2"},
+ {file = "scipy-1.14.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b05d43735bb2f07d689f56f7b474788a13ed8adc484a85aa65c0fd931cf9ccd2"},
+ {file = "scipy-1.14.1-cp311-cp311-win_amd64.whl", hash = "sha256:716e389b694c4bb564b4fc0c51bc84d381735e0d39d3f26ec1af2556ec6aad94"},
+ {file = "scipy-1.14.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:631f07b3734d34aced009aaf6fedfd0eb3498a97e581c3b1e5f14a04164a456d"},
+ {file = "scipy-1.14.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:af29a935803cc707ab2ed7791c44288a682f9c8107bc00f0eccc4f92c08d6e07"},
+ {file = "scipy-1.14.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:2843f2d527d9eebec9a43e6b406fb7266f3af25a751aa91d62ff416f54170bc5"},
+ {file = "scipy-1.14.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:eb58ca0abd96911932f688528977858681a59d61a7ce908ffd355957f7025cfc"},
+ {file = "scipy-1.14.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:30ac8812c1d2aab7131a79ba62933a2a76f582d5dbbc695192453dae67ad6310"},
+ {file = "scipy-1.14.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f9ea80f2e65bdaa0b7627fb00cbeb2daf163caa015e59b7516395fe3bd1e066"},
+ {file = "scipy-1.14.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:edaf02b82cd7639db00dbff629995ef185c8df4c3ffa71a5562a595765a06ce1"},
+ {file = "scipy-1.14.1-cp312-cp312-win_amd64.whl", hash = "sha256:2ff38e22128e6c03ff73b6bb0f85f897d2362f8c052e3b8ad00532198fbdae3f"},
+ {file = "scipy-1.14.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1729560c906963fc8389f6aac023739ff3983e727b1a4d87696b7bf108316a79"},
+ {file = "scipy-1.14.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:4079b90df244709e675cdc8b93bfd8a395d59af40b72e339c2287c91860deb8e"},
+ {file = "scipy-1.14.1-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:e0cf28db0f24a38b2a0ca33a85a54852586e43cf6fd876365c86e0657cfe7d73"},
+ {file = "scipy-1.14.1-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:0c2f95de3b04e26f5f3ad5bb05e74ba7f68b837133a4492414b3afd79dfe540e"},
+ {file = "scipy-1.14.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b99722ea48b7ea25e8e015e8341ae74624f72e5f21fc2abd45f3a93266de4c5d"},
+ {file = "scipy-1.14.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5149e3fd2d686e42144a093b206aef01932a0059c2a33ddfa67f5f035bdfe13e"},
+ {file = "scipy-1.14.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e4f5a7c49323533f9103d4dacf4e4f07078f360743dec7f7596949149efeec06"},
+ {file = "scipy-1.14.1-cp313-cp313-win_amd64.whl", hash = "sha256:baff393942b550823bfce952bb62270ee17504d02a1801d7fd0719534dfb9c84"},
+ {file = "scipy-1.14.1.tar.gz", hash = "sha256:5a275584e726026a5699459aa72f828a610821006228e841b94275c4a7c08417"},
+]
+
+[package.dependencies]
+numpy = ">=1.23.5,<2.3"
+
+[package.extras]
+dev = ["cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy (==1.10.0)", "pycodestyle", "pydevtool", "rich-click", "ruff (>=0.0.292)", "types-psutil", "typing_extensions"]
+doc = ["jupyterlite-pyodide-kernel", "jupyterlite-sphinx (>=0.13.1)", "jupytext", "matplotlib (>=3.5)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (>=0.15.2)", "sphinx (>=5.0.0,<=7.3.7)", "sphinx-design (>=0.4.0)"]
+test = ["Cython", "array-api-strict (>=2.0)", "asv", "gmpy2", "hypothesis (>=6.30)", "meson", "mpmath", "ninja", "pooch", "pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "scikit-umfpack", "threadpoolctl"]
[[package]]
name = "send2trash"
@@ -2765,6 +2936,8 @@ version = "1.8.3"
description = "Send file to trash natively under Mac OS X, Windows and Linux"
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "Send2Trash-1.8.3-py3-none-any.whl", hash = "sha256:0c31227e0bd08961c7665474a3d1ef7193929fedda4233843689baa056be46c9"},
{file = "Send2Trash-1.8.3.tar.gz", hash = "sha256:b18e7a3966d99871aefeb00cfbcfdced55ce4871194810fc71f4aa484b953abf"},
@@ -2777,29 +2950,37 @@ win32 = ["pywin32"]
[[package]]
name = "setuptools"
-version = "72.1.0"
+version = "75.8.0"
description = "Easily download, build, install, upgrade, and uninstall Python packages"
optional = false
-python-versions = ">=3.8"
+python-versions = ">=3.9"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "setuptools-72.1.0-py3-none-any.whl", hash = "sha256:5a03e1860cf56bb6ef48ce186b0e557fdba433237481a9a625176c2831be15d1"},
- {file = "setuptools-72.1.0.tar.gz", hash = "sha256:8d243eff56d095e5817f796ede6ae32941278f542e0f941867cc05ae52b162ec"},
+ {file = "setuptools-75.8.0-py3-none-any.whl", hash = "sha256:e3982f444617239225d675215d51f6ba05f845d4eec313da4418fdbb56fb27e3"},
+ {file = "setuptools-75.8.0.tar.gz", hash = "sha256:c5afc8f407c626b8313a86e10311dd3f661c6cd9c09d4bf8c15c0e11f9f2b0e6"},
]
[package.extras]
-core = ["importlib-metadata (>=6)", "importlib-resources (>=5.10.2)", "jaraco.text (>=3.7)", "more-itertools (>=8.8)", "ordered-set (>=3.1.1)", "packaging (>=24)", "platformdirs (>=2.6.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"]
-doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier"]
-test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "importlib-metadata", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "jaraco.test", "mypy (==1.11.*)", "packaging (>=23.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-home (>=0.5)", "pytest-mypy", "pytest-perf", "pytest-ruff (<0.4)", "pytest-ruff (>=0.2.1)", "pytest-ruff (>=0.3.2)", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"]
+check = ["pytest-checkdocs (>=2.4)", "pytest-ruff (>=0.2.1)", "ruff (>=0.8.0)"]
+core = ["importlib_metadata (>=6)", "jaraco.collections", "jaraco.functools (>=4)", "jaraco.text (>=3.7)", "more_itertools", "more_itertools (>=8.8)", "packaging", "packaging (>=24.2)", "platformdirs (>=4.2.2)", "tomli (>=2.0.1)", "wheel (>=0.43.0)"]
+cover = ["pytest-cov"]
+doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "pyproject-hooks (!=1.1)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (>=1,<2)", "sphinx-reredirects", "sphinxcontrib-towncrier", "towncrier (<24.7)"]
+enabler = ["pytest-enabler (>=2.2)"]
+test = ["build[virtualenv] (>=1.0.3)", "filelock (>=3.4.0)", "ini2toml[lite] (>=0.14)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.7.2)", "jaraco.test (>=5.5)", "packaging (>=24.2)", "pip (>=19.1)", "pyproject-hooks (!=1.1)", "pytest (>=6,!=8.1.*)", "pytest-home (>=0.5)", "pytest-perf", "pytest-subprocess", "pytest-timeout", "pytest-xdist (>=3)", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel (>=0.44.0)"]
+type = ["importlib_metadata (>=7.0.2)", "jaraco.develop (>=7.21)", "mypy (==1.14.*)", "pytest-mypy"]
[[package]]
name = "six"
-version = "1.16.0"
+version = "1.17.0"
description = "Python 2 and 3 compatibility utilities"
optional = false
-python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*"
+python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7"
+groups = ["main", "dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"},
- {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"},
+ {file = "six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274"},
+ {file = "six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81"},
]
[[package]]
@@ -2808,6 +2989,8 @@ version = "1.3.1"
description = "Sniff out which async library your code is running under"
optional = false
python-versions = ">=3.7"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"},
{file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"},
@@ -2815,13 +2998,15 @@ files = [
[[package]]
name = "soupsieve"
-version = "2.5"
+version = "2.6"
description = "A modern CSS selector implementation for Beautiful Soup."
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7"},
- {file = "soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690"},
+ {file = "soupsieve-2.6-py3-none-any.whl", hash = "sha256:e72c4ff06e4fb6e4b5a9f0f55fe6e81514581fca1515028625d0f299c602ccc9"},
+ {file = "soupsieve-2.6.tar.gz", hash = "sha256:e2e68417777af359ec65daac1057404a3c8a5455bb8abc36f1a9866ab1a51abb"},
]
[[package]]
@@ -2830,6 +3015,8 @@ version = "0.6.3"
description = "Extract data from python stack frames and tracebacks for informative displays"
optional = false
python-versions = "*"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695"},
{file = "stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9"},
@@ -2849,6 +3036,8 @@ version = "0.18.1"
description = "Tornado websocket backend for the Xterm.js Javascript terminal emulator library."
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "terminado-0.18.1-py3-none-any.whl", hash = "sha256:a4468e1b37bb318f8a86514f65814e1afc977cf29b3992a4500d9dd305dcceb0"},
{file = "terminado-0.18.1.tar.gz", hash = "sha256:de09f2c4b85de4765f7714688fff57d3e75bad1f909b589fde880460c753fd2e"},
@@ -2866,13 +3055,15 @@ typing = ["mypy (>=1.6,<2.0)", "traitlets (>=5.11.1)"]
[[package]]
name = "tinycss2"
-version = "1.3.0"
+version = "1.4.0"
description = "A tiny CSS parser"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "tinycss2-1.3.0-py3-none-any.whl", hash = "sha256:54a8dbdffb334d536851be0226030e9505965bb2f30f21a4a82c55fb2a80fae7"},
- {file = "tinycss2-1.3.0.tar.gz", hash = "sha256:152f9acabd296a8375fbca5b84c961ff95971fcfc32e79550c8df8e29118c54d"},
+ {file = "tinycss2-1.4.0-py3-none-any.whl", hash = "sha256:3a49cf47b7675da0b15d0c6e1df8df4ebd96e9394bb905a5775adb0d884c5289"},
+ {file = "tinycss2-1.4.0.tar.gz", hash = "sha256:10c0972f6fc0fbee87c3edb76549357415e94548c1ae10ebccdea16fb404a9b7"},
]
[package.dependencies]
@@ -2882,35 +3073,26 @@ webencodings = ">=0.4"
doc = ["sphinx", "sphinx_rtd_theme"]
test = ["pytest", "ruff"]
-[[package]]
-name = "tomli"
-version = "2.0.1"
-description = "A lil' TOML parser"
-optional = false
-python-versions = ">=3.7"
-files = [
- {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"},
- {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"},
-]
-
[[package]]
name = "tornado"
-version = "6.4.1"
+version = "6.4.2"
description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed."
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "tornado-6.4.1-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:163b0aafc8e23d8cdc3c9dfb24c5368af84a81e3364745ccb4427669bf84aec8"},
- {file = "tornado-6.4.1-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:6d5ce3437e18a2b66fbadb183c1d3364fb03f2be71299e7d10dbeeb69f4b2a14"},
- {file = "tornado-6.4.1-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e2e20b9113cd7293f164dc46fffb13535266e713cdb87bd2d15ddb336e96cfc4"},
- {file = "tornado-6.4.1-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8ae50a504a740365267b2a8d1a90c9fbc86b780a39170feca9bcc1787ff80842"},
- {file = "tornado-6.4.1-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:613bf4ddf5c7a95509218b149b555621497a6cc0d46ac341b30bd9ec19eac7f3"},
- {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:25486eb223babe3eed4b8aecbac33b37e3dd6d776bc730ca14e1bf93888b979f"},
- {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:454db8a7ecfcf2ff6042dde58404164d969b6f5d58b926da15e6b23817950fc4"},
- {file = "tornado-6.4.1-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:a02a08cc7a9314b006f653ce40483b9b3c12cda222d6a46d4ac63bb6c9057698"},
- {file = "tornado-6.4.1-cp38-abi3-win32.whl", hash = "sha256:d9a566c40b89757c9aa8e6f032bcdb8ca8795d7c1a9762910c722b1635c9de4d"},
- {file = "tornado-6.4.1-cp38-abi3-win_amd64.whl", hash = "sha256:b24b8982ed444378d7f21d563f4180a2de31ced9d8d84443907a0a64da2072e7"},
- {file = "tornado-6.4.1.tar.gz", hash = "sha256:92d3ab53183d8c50f8204a51e6f91d18a15d5ef261e84d452800d4ff6fc504e9"},
+ {file = "tornado-6.4.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:e828cce1123e9e44ae2a50a9de3055497ab1d0aeb440c5ac23064d9e44880da1"},
+ {file = "tornado-6.4.2-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:072ce12ada169c5b00b7d92a99ba089447ccc993ea2143c9ede887e0937aa803"},
+ {file = "tornado-6.4.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a017d239bd1bb0919f72af256a970624241f070496635784d9bf0db640d3fec"},
+ {file = "tornado-6.4.2-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c36e62ce8f63409301537222faffcef7dfc5284f27eec227389f2ad11b09d946"},
+ {file = "tornado-6.4.2-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca9eb02196e789c9cb5c3c7c0f04fb447dc2adffd95265b2c7223a8a615ccbf"},
+ {file = "tornado-6.4.2-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:304463bd0772442ff4d0f5149c6f1c2135a1fae045adf070821c6cdc76980634"},
+ {file = "tornado-6.4.2-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:c82c46813ba483a385ab2a99caeaedf92585a1f90defb5693351fa7e4ea0bf73"},
+ {file = "tornado-6.4.2-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:932d195ca9015956fa502c6b56af9eb06106140d844a335590c1ec7f5277d10c"},
+ {file = "tornado-6.4.2-cp38-abi3-win32.whl", hash = "sha256:2876cef82e6c5978fde1e0d5b1f919d756968d5b4282418f3146b79b58556482"},
+ {file = "tornado-6.4.2-cp38-abi3-win_amd64.whl", hash = "sha256:908b71bf3ff37d81073356a5fadcc660eb10c1476ee6e2725588626ce7e5ca38"},
+ {file = "tornado-6.4.2.tar.gz", hash = "sha256:92bad5b4746e9879fd7bf1eb21dce4e3fc5128d71601f80005afa39237ad620b"},
]
[[package]]
@@ -2919,6 +3101,8 @@ version = "5.14.3"
description = "Traitlets Python configuration system"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f"},
{file = "traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7"},
@@ -2930,13 +3114,15 @@ test = ["argcomplete (>=3.0.3)", "mypy (>=1.7.0)", "pre-commit", "pytest (>=7.0,
[[package]]
name = "types-python-dateutil"
-version = "2.9.0.20240316"
+version = "2.9.0.20241206"
description = "Typing stubs for python-dateutil"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "types-python-dateutil-2.9.0.20240316.tar.gz", hash = "sha256:5d2f2e240b86905e40944dd787db6da9263f0deabef1076ddaed797351ec0202"},
- {file = "types_python_dateutil-2.9.0.20240316-py3-none-any.whl", hash = "sha256:6b8cb66d960771ce5ff974e9dd45e38facb81718cc1e208b10b1baccbfdbee3b"},
+ {file = "types_python_dateutil-2.9.0.20241206-py3-none-any.whl", hash = "sha256:e248a4bc70a486d3e3ec84d0dc30eec3a5f979d6e7ee4123ae043eedbb987f53"},
+ {file = "types_python_dateutil-2.9.0.20241206.tar.gz", hash = "sha256:18f493414c26ffba692a72369fea7a154c502646301ebfe3d56a04b3767284cb"},
]
[[package]]
@@ -2945,17 +3131,34 @@ version = "4.12.2"
description = "Backported and Experimental Type Hints for Python 3.8+"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d"},
{file = "typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"},
]
+[[package]]
+name = "tzdata"
+version = "2024.2"
+description = "Provider of IANA time zone data"
+optional = false
+python-versions = ">=2"
+groups = ["main"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
+files = [
+ {file = "tzdata-2024.2-py2.py3-none-any.whl", hash = "sha256:a48093786cdcde33cad18c2555e8532f34422074448fbc874186f0abd79565cd"},
+ {file = "tzdata-2024.2.tar.gz", hash = "sha256:7d85cc416e9382e69095b7bdf4afd9e3880418a2413feec7069d533d6b4e31cc"},
+]
+
[[package]]
name = "uri-template"
version = "1.3.0"
description = "RFC 6570 URI Template Processor"
optional = false
python-versions = ">=3.7"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "uri-template-1.3.0.tar.gz", hash = "sha256:0e00f8eb65e18c7de20d595a14336e9f337ead580c70934141624b6d1ffdacc7"},
{file = "uri_template-1.3.0-py3-none-any.whl", hash = "sha256:a44a133ea12d44a0c0f06d7d42a52d71282e77e2f937d8abd5655b8d56fc1363"},
@@ -2966,13 +3169,15 @@ dev = ["flake8", "flake8-annotations", "flake8-bandit", "flake8-bugbear", "flake
[[package]]
name = "urllib3"
-version = "1.26.19"
+version = "1.26.20"
description = "HTTP library with thread-safe connection pooling, file post, and more."
optional = false
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7"
+groups = ["main", "dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "urllib3-1.26.19-py2.py3-none-any.whl", hash = "sha256:37a0344459b199fce0e80b0d3569837ec6b6937435c5244e7fd73fa6006830f3"},
- {file = "urllib3-1.26.19.tar.gz", hash = "sha256:3e3d753a8618b86d7de333b4223005f68720bcd6a7d2bcb9fbd2229ec7c1e429"},
+ {file = "urllib3-1.26.20-py2.py3-none-any.whl", hash = "sha256:0ed14ccfbf1c30a9072c7ca157e4319b70d65f623e91e7b32fadb2853431016e"},
+ {file = "urllib3-1.26.20.tar.gz", hash = "sha256:40c2dc0c681e47eb8f90e7e27bf6ff7df2e677421fd46756da1161c39ca70d32"},
]
[package.extras]
@@ -2982,13 +3187,15 @@ socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"]
[[package]]
name = "virtualenv"
-version = "20.26.3"
+version = "20.29.1"
description = "Virtual Python Environment builder"
optional = false
-python-versions = ">=3.7"
+python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "virtualenv-20.26.3-py3-none-any.whl", hash = "sha256:8cc4a31139e796e9a7de2cd5cf2489de1217193116a8fd42328f1bd65f434589"},
- {file = "virtualenv-20.26.3.tar.gz", hash = "sha256:4c43a2a236279d9ea36a0d76f98d84bd6ca94ac4e0f4a3b9d46d05e10fea542a"},
+ {file = "virtualenv-20.29.1-py3-none-any.whl", hash = "sha256:4e4cb403c0b0da39e13b46b1b2476e505cb0046b25f242bee80f62bf990b2779"},
+ {file = "virtualenv-20.29.1.tar.gz", hash = "sha256:b8b8970138d32fb606192cb97f6cd4bb644fa486be9308fb9b63f81091b5dc35"},
]
[package.dependencies]
@@ -3006,6 +3213,8 @@ version = "0.2.13"
description = "Measures the displayed width of unicode strings in a terminal"
optional = false
python-versions = "*"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859"},
{file = "wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5"},
@@ -3013,25 +3222,25 @@ files = [
[[package]]
name = "webcolors"
-version = "24.6.0"
+version = "24.11.1"
description = "A library for working with the color formats defined by HTML and CSS."
optional = false
-python-versions = ">=3.8"
+python-versions = ">=3.9"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "webcolors-24.6.0-py3-none-any.whl", hash = "sha256:8cf5bc7e28defd1d48b9e83d5fc30741328305a8195c29a8e668fa45586568a1"},
- {file = "webcolors-24.6.0.tar.gz", hash = "sha256:1d160d1de46b3e81e58d0a280d0c78b467dc80f47294b91b1ad8029d2cedb55b"},
+ {file = "webcolors-24.11.1-py3-none-any.whl", hash = "sha256:515291393b4cdf0eb19c155749a096f779f7d909f7cceea072791cb9095b92e9"},
+ {file = "webcolors-24.11.1.tar.gz", hash = "sha256:ecb3d768f32202af770477b8b65f318fa4f566c22948673a977b00d589dd80f6"},
]
-[package.extras]
-docs = ["furo", "sphinx", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-notfound-page", "sphinxext-opengraph"]
-tests = ["coverage[toml]"]
-
[[package]]
name = "webencodings"
version = "0.5.1"
description = "Character encoding aliases for legacy web content"
optional = false
python-versions = "*"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"},
{file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"},
@@ -3043,6 +3252,8 @@ version = "1.8.0"
description = "WebSocket client for Python with low level API options"
optional = false
python-versions = ">=3.8"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
{file = "websocket_client-1.8.0-py3-none-any.whl", hash = "sha256:17b44cc997f5c498e809b22cdf2d9c7a9e71c02c8cc2b6c56e7c2d1239bfa526"},
{file = "websocket_client-1.8.0.tar.gz", hash = "sha256:3239df9f44da632f96012472805d40a23281a991027ce11d2f45a6f24ac4c3da"},
@@ -3055,31 +3266,18 @@ test = ["websockets"]
[[package]]
name = "widgetsnbextension"
-version = "4.0.11"
+version = "4.0.13"
description = "Jupyter interactive widgets for Jupyter Notebook"
optional = false
python-versions = ">=3.7"
+groups = ["dev"]
+markers = "python_version == \"3.11\" or python_version >= \"3.12\""
files = [
- {file = "widgetsnbextension-4.0.11-py3-none-any.whl", hash = "sha256:55d4d6949d100e0d08b94948a42efc3ed6dfdc0e9468b2c4b128c9a2ce3a7a36"},
- {file = "widgetsnbextension-4.0.11.tar.gz", hash = "sha256:8b22a8f1910bfd188e596fe7fc05dcbd87e810c8a4ba010bdb3da86637398474"},
+ {file = "widgetsnbextension-4.0.13-py3-none-any.whl", hash = "sha256:74b2692e8500525cc38c2b877236ba51d34541e6385eeed5aec15a70f88a6c71"},
+ {file = "widgetsnbextension-4.0.13.tar.gz", hash = "sha256:ffcb67bc9febd10234a362795f643927f4e0c05d9342c727b65d2384f8feacb6"},
]
-[[package]]
-name = "zipp"
-version = "3.19.2"
-description = "Backport of pathlib-compatible object wrapper for zip files"
-optional = false
-python-versions = ">=3.8"
-files = [
- {file = "zipp-3.19.2-py3-none-any.whl", hash = "sha256:f091755f667055f2d02b32c53771a7a6c8b47e1fdbc4b72a8b9072b3eef8015c"},
- {file = "zipp-3.19.2.tar.gz", hash = "sha256:bf1dcf6450f873a13e952a29504887c89e6de7506209e5b1bcc3460135d4de19"},
-]
-
-[package.extras]
-doc = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"]
-test = ["big-O", "importlib-resources", "jaraco.functools", "jaraco.itertools", "jaraco.test", "more-itertools", "pytest (>=6,!=8.1.*)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-ignore-flaky", "pytest-mypy", "pytest-ruff (>=0.2.1)"]
-
[metadata]
-lock-version = "2.0"
-python-versions = ">=3.8, <3.11"
-content-hash = "fc820fe99127d7fc2648e7e4cb780fb33b8213a634ea79ba5418e3cfb7e121ac"
+lock-version = "2.1"
+python-versions = ">=3.11"
+content-hash = "e5173807a662bb54c632780f7ae04b375fa03c44e43452d99529ef3f2b648f29"
diff --git a/pyproject.toml b/pyproject.toml
index ebdce354..93686205 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -13,27 +13,28 @@ authors = [
'Brian Ball ',
'Willy Bernal ',
]
+package-mode = false
[tool.poetry.dependencies]
-python = ">=3.8, <3.11"
+python = ">=3.11"
boto3 = "~1.26"
-mlep = "0.1.1.dev3"
-mongoengine = "~0.25"
-pandas = "~1.5"
+mongoengine = "~0.29"
+pandas = "~2.2"
redis = "~4.5"
-scipy = "1.9.3"
+scipy = "~1.14"
# The influxdb dependency will be removed once filebeat is configured
influxdb = "^5.3.1"
-[tool.poetry.dev-dependencies]
+[tool.poetry.group.dev.dependencies]
# required for tests to pass right now. There are often issues when pinning to a branch
# and calling poetry update. I have had to completely remove my venv and reinstall in order
# to get the latest updates.
-alfalfa-client = "0.7.0"
+# alfalfa-client = "0.7.0"
+alfalfa-client = { git = "https://github.com/NREL/alfalfa-client.git", branch = "enhance_file_operations" }
autopep8 = "~2.0"
pre-commit = "~2.21"
pytest = "~7.2"
diff --git a/tests/api/conftest.py b/tests/api/conftest.py
index 80a11a02..4c673351 100644
--- a/tests/api/conftest.py
+++ b/tests/api/conftest.py
@@ -1,4 +1,5 @@
import os
+from datetime import datetime
from pathlib import Path
import pytest
@@ -35,3 +36,9 @@ def run_id(alfalfa_client: AlfalfaClient, model_path):
alfalfa_client.stop(run_id)
except AlfalfaAPIException:
pass
+
+
+@pytest.fixture
+def started_run_id(alfalfa_client: AlfalfaClient, run_id):
+ alfalfa_client.start(run_id, datetime(2020, 1, 1, 0, 0), datetime(2020, 1, 2, 0, 0), external_clock=True)
+ yield run_id
diff --git a/tests/api/test_point.py b/tests/api/test_point.py
index c4f57b1e..69f9c397 100644
--- a/tests/api/test_point.py
+++ b/tests/api/test_point.py
@@ -40,6 +40,7 @@ def test_point_retrieval(base_url, run_id, alfalfa_client):
}
response = requests.post(f"{base_url}/runs/{run_id}/points", json=request_body)
+ response.raise_for_status()
assert response.status_code == 200
response_body = response.json()
assert "payload" in response_body
@@ -72,6 +73,7 @@ def test_point_retrieval(base_url, run_id, alfalfa_client):
for point in outputs + bidirectionals:
response = requests.get(f"{base_url}/runs/{run_id}/points/{point['id']}")
+ response.raise_for_status()
assert response.status_code == 200
response_body = response.json()
assert "payload" in response_body
@@ -138,7 +140,8 @@ def test_point_retrieval(base_url, run_id, alfalfa_client):
@pytest.mark.api
-def test_point_writes(base_url, run_id):
+def test_point_writes(base_url, started_run_id):
+ run_id = started_run_id
# get all points
response = requests.get(f"{base_url}/runs/{run_id}/points")
@@ -179,7 +182,7 @@ def test_point_writes(base_url, run_id):
request_body = {
'value': "hello"
}
- response = requests.put(f"{base_url}/runs/{run_id}/points/{inputs[0]['id']}", json=request_body)
+ response = requests.put(f"{base_url}/runs/{run_id}/points/{bidirectionals[0]['id']}", json=request_body)
assert response.status_code == 400
response_body = response.json()
@@ -208,7 +211,8 @@ def test_point_writes(base_url, run_id):
@pytest.mark.api
-def test_point_not_found(base_url, run_id):
+def test_point_not_found(base_url, started_run_id):
+ run_id = started_run_id
# request point which does not exist
response = requests.get(f"{base_url}/runs/{run_id}/points/{uuid4()}")
diff --git a/tests/api/test_run.py b/tests/api/test_run.py
index ecddfc67..7aa0862f 100644
--- a/tests/api/test_run.py
+++ b/tests/api/test_run.py
@@ -189,7 +189,7 @@ def test_run_start_stop(base_url, run_id):
assert "status" in payload
status = payload["status"]
- if status == "STOPPING":
+ if status.lower() == "stopping" or status.lower() == "complete":
break
if time.time() > timeout:
pytest.fail("Timed out waiting for run to stop")
diff --git a/tests/integration/broken_models/small_office/bad_callback.osw b/tests/integration/broken_models/small_office/bad_callback.osw
new file mode 100644
index 00000000..765e3a72
--- /dev/null
+++ b/tests/integration/broken_models/small_office/bad_callback.osw
@@ -0,0 +1,19 @@
+{
+ "seed_file" : "small_office.osm",
+ "weather_file": "USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.epw",
+ "measure_paths": [
+ "./measures/"
+ ],
+ "file_paths": [
+ "./weather/"
+ ],
+ "run_directory": "./run/",
+ "steps" : [
+ {
+ "measure_dir_name" : "python_bad_callback",
+ "name" : "PythonEMS",
+ "description" : "Add python EMS to IDF",
+ "modeler_description" : "Add python EMS to IDF",
+ }
+ ]
+}
diff --git a/tests/integration/broken_models/small_office/bad_constructor.osw b/tests/integration/broken_models/small_office/bad_constructor.osw
new file mode 100644
index 00000000..e74f17ab
--- /dev/null
+++ b/tests/integration/broken_models/small_office/bad_constructor.osw
@@ -0,0 +1,19 @@
+{
+ "seed_file" : "small_office.osm",
+ "weather_file": "USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.epw",
+ "measure_paths": [
+ "./measures/"
+ ],
+ "file_paths": [
+ "./weather/"
+ ],
+ "run_directory": "./run/",
+ "steps" : [
+ {
+ "measure_dir_name" : "python_bad_constructor",
+ "name" : "PythonEMS",
+ "description" : "Add python EMS to IDF",
+ "modeler_description" : "Add python EMS to IDF",
+ }
+ ]
+}
diff --git a/tests/integration/broken_models/small_office/bad_module_class.osw b/tests/integration/broken_models/small_office/bad_module_class.osw
new file mode 100644
index 00000000..06bb0e90
--- /dev/null
+++ b/tests/integration/broken_models/small_office/bad_module_class.osw
@@ -0,0 +1,19 @@
+{
+ "seed_file" : "small_office.osm",
+ "weather_file": "USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.epw",
+ "measure_paths": [
+ "./measures/"
+ ],
+ "file_paths": [
+ "./weather/"
+ ],
+ "run_directory": "./run/",
+ "steps" : [
+ {
+ "measure_dir_name" : "python_bad_module_class",
+ "name" : "PythonEMS",
+ "description" : "Add python EMS to IDF",
+ "modeler_description" : "Add python EMS to IDF",
+ }
+ ]
+}
diff --git a/tests/integration/broken_models/small_office/bad_module_name.osw b/tests/integration/broken_models/small_office/bad_module_name.osw
new file mode 100644
index 00000000..4fa770b7
--- /dev/null
+++ b/tests/integration/broken_models/small_office/bad_module_name.osw
@@ -0,0 +1,19 @@
+{
+ "seed_file" : "small_office.osm",
+ "weather_file": "USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.epw",
+ "measure_paths": [
+ "./measures/"
+ ],
+ "file_paths": [
+ "./weather/"
+ ],
+ "run_directory": "./run/",
+ "steps" : [
+ {
+ "measure_dir_name" : "python_bad_module_name",
+ "name" : "PythonEMS",
+ "description" : "Add python EMS to IDF",
+ "modeler_description" : "Add python EMS to IDF",
+ }
+ ]
+}
diff --git a/tests/integration/broken_models/small_office/measures/python_bad_callback/measure.rb b/tests/integration/broken_models/small_office/measures/python_bad_callback/measure.rb
new file mode 100644
index 00000000..2bef1f92
--- /dev/null
+++ b/tests/integration/broken_models/small_office/measures/python_bad_callback/measure.rb
@@ -0,0 +1,77 @@
+# start the measure
+class PythonEMS < OpenStudio::Ruleset::WorkspaceUserScript
+
+ # human readable name
+ def name
+ return 'Python EMS'
+ end
+
+ # human readable description
+ def description
+ return 'Add python EMS to IDF'
+ end
+
+ # human readable description of modeling approach
+ def modeler_description
+ return 'Add python EMS to IDF'
+ end
+
+ # define the arguments that the user will input
+ def arguments(workspace)
+ args = OpenStudio::Ruleset::OSArgumentVector.new
+
+ return args
+ end
+
+ # define what happens when the measure is run
+ def run(workspace, runner, usr_args)
+
+ # call the parent class method
+ super(workspace, runner, usr_args)
+
+ # use the built-in error checking
+ return false unless runner.validateUserArguments(
+ arguments(workspace),
+ usr_args
+ )
+
+ # define python script dir
+ py_dir = "#{__dir__}/resources"
+
+ # add python plugin search paths
+ plugin_paths = OpenStudio::IdfObject.new('PythonPlugin_SearchPaths'.to_IddObjectType)
+ plugin_paths.setString(0, 'Python Plugin Search Paths')
+ plugin_paths.setString(1, 'Yes')
+ plugin_paths.setString(2, 'Yes')
+ plugin_paths.setString(3, 'No')
+ # add python dir
+ plugin_paths.setString(4, py_dir)
+ workspace.addObject(plugin_paths)
+
+ # add python plugin instance
+ plugin_instance = OpenStudio::IdfObject.new('PythonPlugin_Instance'.to_IddObjectType)
+ plugin_instance.setString(0, 'Python Plugin Instance Name')
+ plugin_instance.setString(1, 'No')
+ plugin_instance.setString(2, 'simple_plugin')
+ plugin_instance.setString(3, 'SimplePlugin')
+ workspace.addObject(plugin_instance)
+
+ plugin_variables = OpenStudio::IdfObject.new('PythonPlugin_Variables'.to_IddObjectType)
+ plugin_variables.setString(0, 'Python Plugin Variables')
+ plugin_variables.setString(1, 'input')
+ plugin_variables.setString(2, 'output')
+ workspace.addObject(plugin_variables)
+
+ alfalfa = runner.alfalfa
+ alfalfa.exposeGlobalVariable('input', "Python Input")
+ alfalfa.exposeGlobalVariable('output', "Python Output")
+ alfalfa.exposeConstant(17.5, 'test value')
+
+ return true
+
+ end
+
+ end
+
+ # register the measure to be used by the application
+ PythonEMS.new.registerWithApplication
diff --git a/tests/integration/models/refrig_case_osw/measures/prep_idf/measure.xml b/tests/integration/broken_models/small_office/measures/python_bad_callback/measure.xml
similarity index 53%
rename from tests/integration/models/refrig_case_osw/measures/prep_idf/measure.xml
rename to tests/integration/broken_models/small_office/measures/python_bad_callback/measure.xml
index 73588b29..4f8df195 100644
--- a/tests/integration/models/refrig_case_osw/measures/prep_idf/measure.xml
+++ b/tests/integration/broken_models/small_office/measures/python_bad_callback/measure.xml
@@ -1,24 +1,23 @@
- 3.1
- prepare_idf
+ 3.0
+ python_ems
28ad6cb2-e1e3-4f7c-82ab-8ef22aca2c39
- 7c27abba-ecad-48c8-b67f-ee1e269447da
- 2024-05-03T20:14:25Z
+ 7714c229-ea0a-4594-8af4-7ab82e8bc54f
+ 20220812T180055Z
9D2F1A23
- PrepareIDF
- Prepare IDF
- Add python script path to IDF
- Add python script path to IDF
+ PythonEMS
+ Python EMS
+ Add python EMS to IDF
+ Add python EMS to IDF
py_name
- Python File Name
- Name of the python script without the extension
+ Python Script Name
+ Name of script with extension (e.g., myPlugin.py)
String
true
false
- main
@@ -48,7 +47,19 @@
measure.rb
rb
script
- 3F126612
+ A6FEEF59
+
+
+ requirements.txt
+ txt
+ resource
+ 8CF38110
+
+
+ test_plugin.py
+ py
+ resource
+ F7F37380
diff --git a/tests/integration/broken_models/small_office/measures/python_bad_callback/resources/simple_plugin.py b/tests/integration/broken_models/small_office/measures/python_bad_callback/resources/simple_plugin.py
new file mode 100644
index 00000000..9d0fa6fe
--- /dev/null
+++ b/tests/integration/broken_models/small_office/measures/python_bad_callback/resources/simple_plugin.py
@@ -0,0 +1,18 @@
+from pyenergyplus.plugin import EnergyPlusPlugin
+
+
+class SimplePlugin(EnergyPlusPlugin):
+ def __init__(self) -> None:
+ super().__init__()
+
+ self.input_handle = None
+ self.output_handle = None
+
+ def on_begin_timestep_before_predictor(self, state):
+ raise Exception("Bad Callback")
+ if self.input_handle is None:
+ self.input_handle = self.api.exchange.get_global_handle(state, "input")
+ if self.output_handle is None:
+ self.output_handle = self.api.exchange.get_global_handle(state, "output")
+ self.api.exchange.set_global_value(state, self.output_handle, self.api.exchange.get_global_value(state, self.input_handle))
+ return 0
diff --git a/tests/integration/broken_models/small_office/measures/python_bad_constructor/measure.rb b/tests/integration/broken_models/small_office/measures/python_bad_constructor/measure.rb
new file mode 100644
index 00000000..2bef1f92
--- /dev/null
+++ b/tests/integration/broken_models/small_office/measures/python_bad_constructor/measure.rb
@@ -0,0 +1,77 @@
+# start the measure
+class PythonEMS < OpenStudio::Ruleset::WorkspaceUserScript
+
+ # human readable name
+ def name
+ return 'Python EMS'
+ end
+
+ # human readable description
+ def description
+ return 'Add python EMS to IDF'
+ end
+
+ # human readable description of modeling approach
+ def modeler_description
+ return 'Add python EMS to IDF'
+ end
+
+ # define the arguments that the user will input
+ def arguments(workspace)
+ args = OpenStudio::Ruleset::OSArgumentVector.new
+
+ return args
+ end
+
+ # define what happens when the measure is run
+ def run(workspace, runner, usr_args)
+
+ # call the parent class method
+ super(workspace, runner, usr_args)
+
+ # use the built-in error checking
+ return false unless runner.validateUserArguments(
+ arguments(workspace),
+ usr_args
+ )
+
+ # define python script dir
+ py_dir = "#{__dir__}/resources"
+
+ # add python plugin search paths
+ plugin_paths = OpenStudio::IdfObject.new('PythonPlugin_SearchPaths'.to_IddObjectType)
+ plugin_paths.setString(0, 'Python Plugin Search Paths')
+ plugin_paths.setString(1, 'Yes')
+ plugin_paths.setString(2, 'Yes')
+ plugin_paths.setString(3, 'No')
+ # add python dir
+ plugin_paths.setString(4, py_dir)
+ workspace.addObject(plugin_paths)
+
+ # add python plugin instance
+ plugin_instance = OpenStudio::IdfObject.new('PythonPlugin_Instance'.to_IddObjectType)
+ plugin_instance.setString(0, 'Python Plugin Instance Name')
+ plugin_instance.setString(1, 'No')
+ plugin_instance.setString(2, 'simple_plugin')
+ plugin_instance.setString(3, 'SimplePlugin')
+ workspace.addObject(plugin_instance)
+
+ plugin_variables = OpenStudio::IdfObject.new('PythonPlugin_Variables'.to_IddObjectType)
+ plugin_variables.setString(0, 'Python Plugin Variables')
+ plugin_variables.setString(1, 'input')
+ plugin_variables.setString(2, 'output')
+ workspace.addObject(plugin_variables)
+
+ alfalfa = runner.alfalfa
+ alfalfa.exposeGlobalVariable('input', "Python Input")
+ alfalfa.exposeGlobalVariable('output', "Python Output")
+ alfalfa.exposeConstant(17.5, 'test value')
+
+ return true
+
+ end
+
+ end
+
+ # register the measure to be used by the application
+ PythonEMS.new.registerWithApplication
diff --git a/tests/integration/broken_models/small_office/measures/python_bad_constructor/measure.xml b/tests/integration/broken_models/small_office/measures/python_bad_constructor/measure.xml
new file mode 100644
index 00000000..4f8df195
--- /dev/null
+++ b/tests/integration/broken_models/small_office/measures/python_bad_constructor/measure.xml
@@ -0,0 +1,65 @@
+
+
+ 3.0
+ python_ems
+ 28ad6cb2-e1e3-4f7c-82ab-8ef22aca2c39
+ 7714c229-ea0a-4594-8af4-7ab82e8bc54f
+ 20220812T180055Z
+ 9D2F1A23
+ PythonEMS
+ Python EMS
+ Add python EMS to IDF
+ Add python EMS to IDF
+
+
+ py_name
+ Python Script Name
+ Name of script with extension (e.g., myPlugin.py)
+ String
+ true
+ false
+
+
+
+
+
+ Tool.Alfalfa
+
+
+
+ Measure Type
+ EnergyPlusMeasure
+ string
+
+
+ Intended Software Tool
+ OpenStudio Application
+ string
+
+
+
+
+
+ OpenStudio
+ 2.3.0
+ 2.3.0
+
+ measure.rb
+ rb
+ script
+ A6FEEF59
+
+
+ requirements.txt
+ txt
+ resource
+ 8CF38110
+
+
+ test_plugin.py
+ py
+ resource
+ F7F37380
+
+
+
diff --git a/tests/integration/broken_models/small_office/measures/python_bad_constructor/resources/simple_plugin.py b/tests/integration/broken_models/small_office/measures/python_bad_constructor/resources/simple_plugin.py
new file mode 100644
index 00000000..f7ae9e0e
--- /dev/null
+++ b/tests/integration/broken_models/small_office/measures/python_bad_constructor/resources/simple_plugin.py
@@ -0,0 +1,18 @@
+from pyenergyplus.plugin import EnergyPlusPlugin
+
+
+class SimplePlugin(EnergyPlusPlugin):
+ def __init__(self) -> None:
+ super().__init__()
+
+ raise Exception("Exception")
+ self.input_handle = None
+ self.output_handle = None
+
+ def on_begin_timestep_before_predictor(self, state):
+ if self.input_handle is None:
+ self.input_handle = self.api.exchange.get_global_handle(state, "input")
+ if self.output_handle is None:
+ self.output_handle = self.api.exchange.get_global_handle(state, "output")
+ self.api.exchange.set_global_value(state, self.output_handle, self.api.exchange.get_global_value(state, self.input_handle))
+ return 0
diff --git a/tests/integration/broken_models/small_office/measures/python_bad_module_class/measure.rb b/tests/integration/broken_models/small_office/measures/python_bad_module_class/measure.rb
new file mode 100644
index 00000000..f83eddde
--- /dev/null
+++ b/tests/integration/broken_models/small_office/measures/python_bad_module_class/measure.rb
@@ -0,0 +1,77 @@
+# start the measure
+class PythonEMS < OpenStudio::Ruleset::WorkspaceUserScript
+
+ # human readable name
+ def name
+ return 'Python EMS'
+ end
+
+ # human readable description
+ def description
+ return 'Add python EMS to IDF'
+ end
+
+ # human readable description of modeling approach
+ def modeler_description
+ return 'Add python EMS to IDF'
+ end
+
+ # define the arguments that the user will input
+ def arguments(workspace)
+ args = OpenStudio::Ruleset::OSArgumentVector.new
+
+ return args
+ end
+
+ # define what happens when the measure is run
+ def run(workspace, runner, usr_args)
+
+ # call the parent class method
+ super(workspace, runner, usr_args)
+
+ # use the built-in error checking
+ return false unless runner.validateUserArguments(
+ arguments(workspace),
+ usr_args
+ )
+
+ # define python script dir
+ py_dir = "#{__dir__}/resources"
+
+ # add python plugin search paths
+ plugin_paths = OpenStudio::IdfObject.new('PythonPlugin_SearchPaths'.to_IddObjectType)
+ plugin_paths.setString(0, 'Python Plugin Search Paths')
+ plugin_paths.setString(1, 'Yes')
+ plugin_paths.setString(2, 'Yes')
+ plugin_paths.setString(3, 'No')
+ # add python dir
+ plugin_paths.setString(4, py_dir)
+ workspace.addObject(plugin_paths)
+
+ # add python plugin instance
+ plugin_instance = OpenStudio::IdfObject.new('PythonPlugin_Instance'.to_IddObjectType)
+ plugin_instance.setString(0, 'Python Plugin Instance Name')
+ plugin_instance.setString(1, 'No')
+ plugin_instance.setString(2, 'simple_plugin')
+ plugin_instance.setString(3, 'BadPlugin')
+ workspace.addObject(plugin_instance)
+
+ plugin_variables = OpenStudio::IdfObject.new('PythonPlugin_Variables'.to_IddObjectType)
+ plugin_variables.setString(0, 'Python Plugin Variables')
+ plugin_variables.setString(1, 'input')
+ plugin_variables.setString(2, 'output')
+ workspace.addObject(plugin_variables)
+
+ alfalfa = runner.alfalfa
+ alfalfa.exposeGlobalVariable('input', "Python Input")
+ alfalfa.exposeGlobalVariable('output', "Python Output")
+ alfalfa.exposeConstant(17.5, 'test value')
+
+ return true
+
+ end
+
+ end
+
+ # register the measure to be used by the application
+ PythonEMS.new.registerWithApplication
diff --git a/tests/integration/broken_models/small_office/measures/python_bad_module_class/measure.xml b/tests/integration/broken_models/small_office/measures/python_bad_module_class/measure.xml
new file mode 100644
index 00000000..4f8df195
--- /dev/null
+++ b/tests/integration/broken_models/small_office/measures/python_bad_module_class/measure.xml
@@ -0,0 +1,65 @@
+
+
+ 3.0
+ python_ems
+ 28ad6cb2-e1e3-4f7c-82ab-8ef22aca2c39
+ 7714c229-ea0a-4594-8af4-7ab82e8bc54f
+ 20220812T180055Z
+ 9D2F1A23
+ PythonEMS
+ Python EMS
+ Add python EMS to IDF
+ Add python EMS to IDF
+
+
+ py_name
+ Python Script Name
+ Name of script with extension (e.g., myPlugin.py)
+ String
+ true
+ false
+
+
+
+
+
+ Tool.Alfalfa
+
+
+
+ Measure Type
+ EnergyPlusMeasure
+ string
+
+
+ Intended Software Tool
+ OpenStudio Application
+ string
+
+
+
+
+
+ OpenStudio
+ 2.3.0
+ 2.3.0
+
+ measure.rb
+ rb
+ script
+ A6FEEF59
+
+
+ requirements.txt
+ txt
+ resource
+ 8CF38110
+
+
+ test_plugin.py
+ py
+ resource
+ F7F37380
+
+
+
diff --git a/tests/integration/broken_models/small_office/measures/python_bad_module_class/resources/simple_plugin.py b/tests/integration/broken_models/small_office/measures/python_bad_module_class/resources/simple_plugin.py
new file mode 100644
index 00000000..6428c086
--- /dev/null
+++ b/tests/integration/broken_models/small_office/measures/python_bad_module_class/resources/simple_plugin.py
@@ -0,0 +1,17 @@
+from pyenergyplus.plugin import EnergyPlusPlugin
+
+
+class SimplePlugin(EnergyPlusPlugin):
+ def __init__(self) -> None:
+ super().__init__()
+
+ self.input_handle = None
+ self.output_handle = None
+
+ def on_begin_timestep_before_predictor(self, state):
+ if self.input_handle is None:
+ self.input_handle = self.api.exchange.get_global_handle(state, "input")
+ if self.output_handle is None:
+ self.output_handle = self.api.exchange.get_global_handle(state, "output")
+ self.api.exchange.set_global_value(state, self.output_handle, self.api.exchange.get_global_value(state, self.input_handle))
+ return 0
diff --git a/tests/integration/broken_models/small_office/measures/python_bad_module_name/measure.rb b/tests/integration/broken_models/small_office/measures/python_bad_module_name/measure.rb
new file mode 100644
index 00000000..81b6959b
--- /dev/null
+++ b/tests/integration/broken_models/small_office/measures/python_bad_module_name/measure.rb
@@ -0,0 +1,77 @@
+# start the measure
+class PythonEMS < OpenStudio::Ruleset::WorkspaceUserScript
+
+ # human readable name
+ def name
+ return 'Python EMS'
+ end
+
+ # human readable description
+ def description
+ return 'Add python EMS to IDF'
+ end
+
+ # human readable description of modeling approach
+ def modeler_description
+ return 'Add python EMS to IDF'
+ end
+
+ # define the arguments that the user will input
+ def arguments(workspace)
+ args = OpenStudio::Ruleset::OSArgumentVector.new
+
+ return args
+ end
+
+ # define what happens when the measure is run
+ def run(workspace, runner, usr_args)
+
+ # call the parent class method
+ super(workspace, runner, usr_args)
+
+ # use the built-in error checking
+ return false unless runner.validateUserArguments(
+ arguments(workspace),
+ usr_args
+ )
+
+ # define python script dir
+ py_dir = "#{__dir__}/resources"
+
+ # add python plugin search paths
+ plugin_paths = OpenStudio::IdfObject.new('PythonPlugin_SearchPaths'.to_IddObjectType)
+ plugin_paths.setString(0, 'Python Plugin Search Paths')
+ plugin_paths.setString(1, 'Yes')
+ plugin_paths.setString(2, 'Yes')
+ plugin_paths.setString(3, 'No')
+ # add python dir
+ plugin_paths.setString(4, py_dir)
+ workspace.addObject(plugin_paths)
+
+ # add python plugin instance
+ plugin_instance = OpenStudio::IdfObject.new('PythonPlugin_Instance'.to_IddObjectType)
+ plugin_instance.setString(0, 'Python Plugin Instance Name')
+ plugin_instance.setString(1, 'No')
+ plugin_instance.setString(2, 'bad_plugin')
+ plugin_instance.setString(3, 'SimplePlugin')
+ workspace.addObject(plugin_instance)
+
+ plugin_variables = OpenStudio::IdfObject.new('PythonPlugin_Variables'.to_IddObjectType)
+ plugin_variables.setString(0, 'Python Plugin Variables')
+ plugin_variables.setString(1, 'input')
+ plugin_variables.setString(2, 'output')
+ workspace.addObject(plugin_variables)
+
+ alfalfa = runner.alfalfa
+ alfalfa.exposeGlobalVariable('input', "Python Input")
+ alfalfa.exposeGlobalVariable('output', "Python Output")
+ alfalfa.exposeConstant(17.5, 'test value')
+
+ return true
+
+ end
+
+ end
+
+ # register the measure to be used by the application
+ PythonEMS.new.registerWithApplication
diff --git a/tests/integration/broken_models/small_office/measures/python_bad_module_name/measure.xml b/tests/integration/broken_models/small_office/measures/python_bad_module_name/measure.xml
new file mode 100644
index 00000000..4f8df195
--- /dev/null
+++ b/tests/integration/broken_models/small_office/measures/python_bad_module_name/measure.xml
@@ -0,0 +1,65 @@
+
+
+ 3.0
+ python_ems
+ 28ad6cb2-e1e3-4f7c-82ab-8ef22aca2c39
+ 7714c229-ea0a-4594-8af4-7ab82e8bc54f
+ 20220812T180055Z
+ 9D2F1A23
+ PythonEMS
+ Python EMS
+ Add python EMS to IDF
+ Add python EMS to IDF
+
+
+ py_name
+ Python Script Name
+ Name of script with extension (e.g., myPlugin.py)
+ String
+ true
+ false
+
+
+
+
+
+ Tool.Alfalfa
+
+
+
+ Measure Type
+ EnergyPlusMeasure
+ string
+
+
+ Intended Software Tool
+ OpenStudio Application
+ string
+
+
+
+
+
+ OpenStudio
+ 2.3.0
+ 2.3.0
+
+ measure.rb
+ rb
+ script
+ A6FEEF59
+
+
+ requirements.txt
+ txt
+ resource
+ 8CF38110
+
+
+ test_plugin.py
+ py
+ resource
+ F7F37380
+
+
+
diff --git a/tests/integration/broken_models/small_office/measures/python_bad_module_name/resources/simple_plugin.py b/tests/integration/broken_models/small_office/measures/python_bad_module_name/resources/simple_plugin.py
new file mode 100644
index 00000000..6428c086
--- /dev/null
+++ b/tests/integration/broken_models/small_office/measures/python_bad_module_name/resources/simple_plugin.py
@@ -0,0 +1,17 @@
+from pyenergyplus.plugin import EnergyPlusPlugin
+
+
+class SimplePlugin(EnergyPlusPlugin):
+ def __init__(self) -> None:
+ super().__init__()
+
+ self.input_handle = None
+ self.output_handle = None
+
+ def on_begin_timestep_before_predictor(self, state):
+ if self.input_handle is None:
+ self.input_handle = self.api.exchange.get_global_handle(state, "input")
+ if self.output_handle is None:
+ self.output_handle = self.api.exchange.get_global_handle(state, "output")
+ self.api.exchange.set_global_value(state, self.output_handle, self.api.exchange.get_global_value(state, self.input_handle))
+ return 0
diff --git a/tests/integration/broken_models/small_office/measures/python_missing_import/measure.rb b/tests/integration/broken_models/small_office/measures/python_missing_import/measure.rb
new file mode 100644
index 00000000..2bef1f92
--- /dev/null
+++ b/tests/integration/broken_models/small_office/measures/python_missing_import/measure.rb
@@ -0,0 +1,77 @@
+# start the measure
+class PythonEMS < OpenStudio::Ruleset::WorkspaceUserScript
+
+ # human readable name
+ def name
+ return 'Python EMS'
+ end
+
+ # human readable description
+ def description
+ return 'Add python EMS to IDF'
+ end
+
+ # human readable description of modeling approach
+ def modeler_description
+ return 'Add python EMS to IDF'
+ end
+
+ # define the arguments that the user will input
+ def arguments(workspace)
+ args = OpenStudio::Ruleset::OSArgumentVector.new
+
+ return args
+ end
+
+ # define what happens when the measure is run
+ def run(workspace, runner, usr_args)
+
+ # call the parent class method
+ super(workspace, runner, usr_args)
+
+ # use the built-in error checking
+ return false unless runner.validateUserArguments(
+ arguments(workspace),
+ usr_args
+ )
+
+ # define python script dir
+ py_dir = "#{__dir__}/resources"
+
+ # add python plugin search paths
+ plugin_paths = OpenStudio::IdfObject.new('PythonPlugin_SearchPaths'.to_IddObjectType)
+ plugin_paths.setString(0, 'Python Plugin Search Paths')
+ plugin_paths.setString(1, 'Yes')
+ plugin_paths.setString(2, 'Yes')
+ plugin_paths.setString(3, 'No')
+ # add python dir
+ plugin_paths.setString(4, py_dir)
+ workspace.addObject(plugin_paths)
+
+ # add python plugin instance
+ plugin_instance = OpenStudio::IdfObject.new('PythonPlugin_Instance'.to_IddObjectType)
+ plugin_instance.setString(0, 'Python Plugin Instance Name')
+ plugin_instance.setString(1, 'No')
+ plugin_instance.setString(2, 'simple_plugin')
+ plugin_instance.setString(3, 'SimplePlugin')
+ workspace.addObject(plugin_instance)
+
+ plugin_variables = OpenStudio::IdfObject.new('PythonPlugin_Variables'.to_IddObjectType)
+ plugin_variables.setString(0, 'Python Plugin Variables')
+ plugin_variables.setString(1, 'input')
+ plugin_variables.setString(2, 'output')
+ workspace.addObject(plugin_variables)
+
+ alfalfa = runner.alfalfa
+ alfalfa.exposeGlobalVariable('input', "Python Input")
+ alfalfa.exposeGlobalVariable('output', "Python Output")
+ alfalfa.exposeConstant(17.5, 'test value')
+
+ return true
+
+ end
+
+ end
+
+ # register the measure to be used by the application
+ PythonEMS.new.registerWithApplication
diff --git a/tests/integration/broken_models/small_office/measures/python_missing_import/measure.xml b/tests/integration/broken_models/small_office/measures/python_missing_import/measure.xml
new file mode 100644
index 00000000..4f8df195
--- /dev/null
+++ b/tests/integration/broken_models/small_office/measures/python_missing_import/measure.xml
@@ -0,0 +1,65 @@
+
+
+ 3.0
+ python_ems
+ 28ad6cb2-e1e3-4f7c-82ab-8ef22aca2c39
+ 7714c229-ea0a-4594-8af4-7ab82e8bc54f
+ 20220812T180055Z
+ 9D2F1A23
+ PythonEMS
+ Python EMS
+ Add python EMS to IDF
+ Add python EMS to IDF
+
+
+ py_name
+ Python Script Name
+ Name of script with extension (e.g., myPlugin.py)
+ String
+ true
+ false
+
+
+
+
+
+ Tool.Alfalfa
+
+
+
+ Measure Type
+ EnergyPlusMeasure
+ string
+
+
+ Intended Software Tool
+ OpenStudio Application
+ string
+
+
+
+
+
+ OpenStudio
+ 2.3.0
+ 2.3.0
+
+ measure.rb
+ rb
+ script
+ A6FEEF59
+
+
+ requirements.txt
+ txt
+ resource
+ 8CF38110
+
+
+ test_plugin.py
+ py
+ resource
+ F7F37380
+
+
+
diff --git a/tests/integration/broken_models/small_office/measures/python_missing_import/resources/simple_plugin.py b/tests/integration/broken_models/small_office/measures/python_missing_import/resources/simple_plugin.py
new file mode 100644
index 00000000..7c269577
--- /dev/null
+++ b/tests/integration/broken_models/small_office/measures/python_missing_import/resources/simple_plugin.py
@@ -0,0 +1,18 @@
+import non_existant_module # noqa
+from pyenergyplus.plugin import EnergyPlusPlugin
+
+
+class SimplePlugin(EnergyPlusPlugin):
+ def __init__(self) -> None:
+ super().__init__()
+
+ self.input_handle = None
+ self.output_handle = None
+
+ def on_begin_timestep_before_predictor(self, state):
+ if self.input_handle is None:
+ self.input_handle = self.api.exchange.get_global_handle(state, "input")
+ if self.output_handle is None:
+ self.output_handle = self.api.exchange.get_global_handle(state, "output")
+ self.api.exchange.set_global_value(state, self.output_handle, self.api.exchange.get_global_value(state, self.input_handle))
+ return 0
diff --git a/tests/integration/broken_models/small_office/missing_import.osw b/tests/integration/broken_models/small_office/missing_import.osw
new file mode 100644
index 00000000..b6bfbba6
--- /dev/null
+++ b/tests/integration/broken_models/small_office/missing_import.osw
@@ -0,0 +1,19 @@
+{
+ "seed_file" : "small_office.osm",
+ "weather_file": "USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.epw",
+ "measure_paths": [
+ "./measures/"
+ ],
+ "file_paths": [
+ "./weather/"
+ ],
+ "run_directory": "./run/",
+ "steps" : [
+ {
+ "measure_dir_name" : "python_missing_import",
+ "name" : "PythonEMS",
+ "description" : "Add python EMS to IDF",
+ "modeler_description" : "Add python EMS to IDF",
+ }
+ ]
+}
diff --git a/tests/integration/broken_models/small_office/small_office.osm b/tests/integration/broken_models/small_office/small_office.osm
new file mode 100644
index 00000000..b85b39b1
--- /dev/null
+++ b/tests/integration/broken_models/small_office/small_office.osm
@@ -0,0 +1,8587 @@
+
+OS:Version,
+ {3e03e10b-7442-479f-89e4-113fab36371e}, !- Handle
+ 2.8.1; !- Version Identifier
+
+OS:Site,
+ {e4e0cf83-aa67-462b-ac86-dd69d24de0d1}, !- Handle
+ Chicago Ohare Intl Ap, !- Name
+ 41.98, !- Latitude {deg}
+ -87.92, !- Longitude {deg}
+ -6, !- Time Zone {hr}
+ 201, !- Elevation {m}
+ City; !- Terrain
+
+OS:SimulationControl,
+ {fe5b5f3c-f637-4fd1-a2b3-f4d09456dccb}, !- Handle
+ Yes, !- Do Zone Sizing Calculation
+ Yes, !- Do System Sizing Calculation
+ Yes, !- Do Plant Sizing Calculation
+ No, !- Run Simulation for Sizing Periods
+ Yes, !- Run Simulation for Weather File Run Periods
+ 0.04, !- Loads Convergence Tolerance Value
+ 0.2, !- Temperature Convergence Tolerance Value {deltaC}
+ FullInteriorAndExterior, !- Solar Distribution
+ 25, !- Maximum Number of Warmup Days
+ 6; !- Minimum Number of Warmup Days
+
+OS:Surface,
+ {67ca62ce-e572-4957-8e6a-efb74825f170}, !- Handle
+ Perimeter_ZN_1_wall_south, !- Name
+ Wall, !- Surface Type
+ , !- Construction Name
+ {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space Name
+ Outdoors, !- Outside Boundary Condition
+ , !- Outside Boundary Condition Object
+ SunExposed, !- Sun Exposure
+ WindExposed, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 0, 0, 3.05, !- X,Y,Z Vertex 1 {m}
+ 0, 0, 0, !- X,Y,Z Vertex 2 {m}
+ 27.69, 0, 0, !- X,Y,Z Vertex 3 {m}
+ 27.69, 0, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Connection,
+ {d367abd9-ef96-4df2-a4a5-60b4b9f5779f}, !- Handle
+ {fca4d4d3-2721-42a9-a76c-f4b74826d7aa}, !- Name
+ , !- Source Object
+ 11, !- Outlet Port
+ , !- Target Object
+ 2; !- Inlet Port
+
+OS:Space,
+ {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Handle
+ Perimeter_ZN_1, !- Name
+ {629a271e-7460-4c51-87d3-d2d3125cfac1}, !- Space Type Name
+ , !- Default Construction Set Name
+ , !- Default Schedule Set Name
+ 0, !- Direction of Relative North {deg}
+ 0, !- X Origin {m}
+ 0, !- Y Origin {m}
+ 0, !- Z Origin {m}
+ {2edc3034-10d9-48ff-9f1e-ff89d18bbb3f}, !- Building Story Name
+ {eccf2622-9374-4edf-8caf-1981d96b5c12}, !- Thermal Zone Name
+ Yes, !- Part of Total Floor Area
+ ; !- Design Specification Outdoor Air Object Name
+
+OS:SubSurface,
+ {5cf70f46-9488-45b0-b286-2fd3b9defdcb}, !- Handle
+ Perimeter_ZN_1_wall_south_Window_1, !- Name
+ FixedWindow, !- Sub Surface Type
+ , !- Construction Name
+ {67ca62ce-e572-4957-8e6a-efb74825f170}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 1.39, 0, 2.424, !- X,Y,Z Vertex 1 {m}
+ 1.39, 0, 0.9, !- X,Y,Z Vertex 2 {m}
+ 3.22, 0, 0.9, !- X,Y,Z Vertex 3 {m}
+ 3.22, 0, 2.424; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {f3b8b73c-8caf-40ab-b966-4fbde2e2f57a}, !- Handle
+ Attic_roof_east, !- Name
+ RoofCeiling, !- Surface Type
+ , !- Construction Name
+ {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name
+ Outdoors, !- Outside Boundary Condition
+ , !- Outside Boundary Condition Object
+ SunExposed, !- Sun Exposure
+ WindExposed, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 18.46, 9.23, 6.33, !- X,Y,Z Vertex 1 {m}
+ 28.29, -0.6, 3.05, !- X,Y,Z Vertex 2 {m}
+ 28.29, 19.06, 3.05; !- X,Y,Z Vertex 3 {m}
+
+OS:Connection,
+ {b76c9257-2ba1-41ca-b928-7e4cece1fb38}, !- Handle
+ {8ddc6125-8508-4ec6-bdad-ad6cfff54633}, !- Name
+ , !- Source Object
+ 11, !- Outlet Port
+ , !- Target Object
+ 2; !- Inlet Port
+
+OS:Space,
+ {fb08bb0a-69e7-4942-8807-550e21855286}, !- Handle
+ Attic, !- Name
+ {a8affc2d-d2e8-44c9-85f3-e6d076201869}, !- Space Type Name
+ , !- Default Construction Set Name
+ , !- Default Schedule Set Name
+ 0, !- Direction of Relative North {deg}
+ 0, !- X Origin {m}
+ 0, !- Y Origin {m}
+ 0, !- Z Origin {m}
+ , !- Building Story Name
+ {07da4a00-d5c2-41b4-9f11-98b105ebba18}, !- Thermal Zone Name
+ No; !- Part of Total Floor Area
+
+OS:Surface,
+ {14eb925b-51a2-48c3-b571-9be87c158227}, !- Handle
+ Attic_roof_north, !- Name
+ RoofCeiling, !- Surface Type
+ , !- Construction Name
+ {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name
+ Outdoors, !- Outside Boundary Condition
+ , !- Outside Boundary Condition Object
+ SunExposed, !- Sun Exposure
+ WindExposed, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 18.46, 9.23, 6.33, !- X,Y,Z Vertex 1 {m}
+ 28.29, 19.06, 3.05, !- X,Y,Z Vertex 2 {m}
+ -0.6, 19.06, 3.05, !- X,Y,Z Vertex 3 {m}
+ 9.23, 9.23, 6.33; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {de9219d4-cc0d-45c1-b670-26d576f7fec4}, !- Handle
+ Perimeter_ZN_2_ceiling, !- Name
+ RoofCeiling, !- Surface Type
+ , !- Construction Name
+ {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {5ba0e030-ad8e-4939-9022-603ea15873fd}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 27.69, 0, 3.05, !- X,Y,Z Vertex 1 {m}
+ 27.69, 18.46, 3.05, !- X,Y,Z Vertex 2 {m}
+ 22.69, 13.46, 3.05, !- X,Y,Z Vertex 3 {m}
+ 22.69, 5, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Connection,
+ {3e98f27d-1e5c-47bf-b1dd-320cc71dc280}, !- Handle
+ {14e56078-538e-4195-bf4d-564485d8013c}, !- Name
+ , !- Source Object
+ 11, !- Outlet Port
+ , !- Target Object
+ 2; !- Inlet Port
+
+OS:Space,
+ {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Handle
+ Perimeter_ZN_2, !- Name
+ {629a271e-7460-4c51-87d3-d2d3125cfac1}, !- Space Type Name
+ , !- Default Construction Set Name
+ , !- Default Schedule Set Name
+ 0, !- Direction of Relative North {deg}
+ 0, !- X Origin {m}
+ 0, !- Y Origin {m}
+ 0, !- Z Origin {m}
+ {2edc3034-10d9-48ff-9f1e-ff89d18bbb3f}, !- Building Story Name
+ {4e0efcce-e00c-469a-b646-c4dbfeb628cd}, !- Thermal Zone Name
+ Yes, !- Part of Total Floor Area
+ ; !- Design Specification Outdoor Air Object Name
+
+OS:Surface,
+ {e6e6213c-27e3-4780-914d-aab86a026932}, !- Handle
+ Perimeter_ZN_2_wall_north, !- Name
+ Wall, !- Surface Type
+ , !- Construction Name
+ {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {294e6a4a-4754-4ea0-b450-586c284d51ae}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 27.69, 18.46, 3.05, !- X,Y,Z Vertex 1 {m}
+ 27.69, 18.46, 0, !- X,Y,Z Vertex 2 {m}
+ 22.69, 13.46, 0, !- X,Y,Z Vertex 3 {m}
+ 22.69, 13.46, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {5ad6d532-e8de-4604-a79c-c900df2aa730}, !- Handle
+ Perimeter_ZN_3_wall_south, !- Name
+ Wall, !- Surface Type
+ , !- Construction Name
+ {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {7f4227ad-335c-4683-9a99-6c804048153c}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 5, 13.46, 3.05, !- X,Y,Z Vertex 1 {m}
+ 5, 13.46, 0, !- X,Y,Z Vertex 2 {m}
+ 22.69, 13.46, 0, !- X,Y,Z Vertex 3 {m}
+ 22.69, 13.46, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Connection,
+ {4d957a31-f699-4eae-93e7-35cb0402bdc3}, !- Handle
+ {556b787e-14ea-444a-8f28-da77ff85692d}, !- Name
+ , !- Source Object
+ 11, !- Outlet Port
+ , !- Target Object
+ 2; !- Inlet Port
+
+OS:Space,
+ {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Handle
+ Perimeter_ZN_3, !- Name
+ {629a271e-7460-4c51-87d3-d2d3125cfac1}, !- Space Type Name
+ , !- Default Construction Set Name
+ , !- Default Schedule Set Name
+ 0, !- Direction of Relative North {deg}
+ 0, !- X Origin {m}
+ 0, !- Y Origin {m}
+ 0, !- Z Origin {m}
+ {2edc3034-10d9-48ff-9f1e-ff89d18bbb3f}, !- Building Story Name
+ {afcd34b0-00fa-40af-a2e1-995004075d3f}, !- Thermal Zone Name
+ Yes; !- Part of Total Floor Area
+
+OS:Connection,
+ {99cfc414-45c1-4be7-8757-3ae36bc2af42}, !- Handle
+ {96671398-0007-4bc0-8470-144aceb20b70}, !- Name
+ , !- Source Object
+ 11, !- Outlet Port
+ , !- Target Object
+ 2; !- Inlet Port
+
+OS:Space,
+ {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Handle
+ Perimeter_ZN_4, !- Name
+ {629a271e-7460-4c51-87d3-d2d3125cfac1}, !- Space Type Name
+ , !- Default Construction Set Name
+ , !- Default Schedule Set Name
+ 0, !- Direction of Relative North {deg}
+ 0, !- X Origin {m}
+ 0, !- Y Origin {m}
+ 0, !- Z Origin {m}
+ {2edc3034-10d9-48ff-9f1e-ff89d18bbb3f}, !- Building Story Name
+ {5a3afc2e-d12e-4ab3-b952-581dd46d9df3}, !- Thermal Zone Name
+ Yes; !- Part of Total Floor Area
+
+OS:Surface,
+ {76eef8b9-8d45-4e4a-a6e8-a678fd658045}, !- Handle
+ Perimeter_ZN_2_wall_west, !- Name
+ Wall, !- Surface Type
+ , !- Construction Name
+ {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {72a1b6a0-5c0f-4a8b-a8d5-81bef0ff1769}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 22.69, 13.46, 3.05, !- X,Y,Z Vertex 1 {m}
+ 22.69, 13.46, 0, !- X,Y,Z Vertex 2 {m}
+ 22.69, 5, 0, !- X,Y,Z Vertex 3 {m}
+ 22.69, 5, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {9f3c4b24-4e8e-4b4e-932c-0c0aeb12edab}, !- Handle
+ Perimeter_ZN_4_ceiling, !- Name
+ RoofCeiling, !- Surface Type
+ , !- Construction Name
+ {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {b890eeac-5336-4ed2-9467-56785822dd86}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 0, 0, 3.05, !- X,Y,Z Vertex 1 {m}
+ 5, 5, 3.05, !- X,Y,Z Vertex 2 {m}
+ 5, 13.46, 3.05, !- X,Y,Z Vertex 3 {m}
+ 0, 18.46, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Output:Meter,
+ {abc5d571-df7f-47b1-bf8b-892a6dadede3}, !- Handle
+ Gas:Facility, !- Name
+ Hourly, !- Reporting Frequency
+ True, !- Meter File Only
+ False; !- Cumulative
+
+OS:Surface,
+ {feb7c449-5351-48a2-865e-0e36c2c4fc6f}, !- Handle
+ Core_ZN_ceiling, !- Name
+ RoofCeiling, !- Surface Type
+ , !- Construction Name
+ {32844cd3-cab3-4870-bbb6-6c79a28481b7}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {30049214-f475-466f-8308-e6d33248de87}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 22.69, 5, 3.05, !- X,Y,Z Vertex 1 {m}
+ 22.69, 13.46, 3.05, !- X,Y,Z Vertex 2 {m}
+ 5, 13.46, 3.05, !- X,Y,Z Vertex 3 {m}
+ 5, 5, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Connection,
+ {3cc89c32-b209-45a8-aee8-40997f52820c}, !- Handle
+ {3266c372-df06-4762-8ade-3366935e0120}, !- Name
+ , !- Source Object
+ 11, !- Outlet Port
+ , !- Target Object
+ 2; !- Inlet Port
+
+OS:Space,
+ {32844cd3-cab3-4870-bbb6-6c79a28481b7}, !- Handle
+ Core_ZN, !- Name
+ {629a271e-7460-4c51-87d3-d2d3125cfac1}, !- Space Type Name
+ , !- Default Construction Set Name
+ , !- Default Schedule Set Name
+ 0, !- Direction of Relative North {deg}
+ 0, !- X Origin {m}
+ 0, !- Y Origin {m}
+ 0, !- Z Origin {m}
+ {2edc3034-10d9-48ff-9f1e-ff89d18bbb3f}, !- Building Story Name
+ {28915964-e2c4-4332-a684-5091ad72d321}, !- Thermal Zone Name
+ Yes; !- Part of Total Floor Area
+
+OS:Surface,
+ {f6aedc93-26f5-4756-bb28-f7b245139570}, !- Handle
+ Attic_soffit_north, !- Name
+ Floor, !- Surface Type
+ , !- Construction Name
+ {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name
+ Outdoors, !- Outside Boundary Condition
+ , !- Outside Boundary Condition Object
+ SunExposed, !- Sun Exposure
+ WindExposed, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 28.29, 19.06, 3.05, !- X,Y,Z Vertex 1 {m}
+ 27.69, 18.46, 3.05, !- X,Y,Z Vertex 2 {m}
+ 0, 18.46, 3.05, !- X,Y,Z Vertex 3 {m}
+ -0.6, 19.06, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {cf5a64d9-d084-4725-8267-3f5e6962fc94}, !- Handle
+ Perimeter_ZN_2_floor, !- Name
+ Floor, !- Surface Type
+ , !- Construction Name
+ {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Space Name
+ Ground, !- Outside Boundary Condition
+ , !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 27.69, 18.46, 0, !- X,Y,Z Vertex 1 {m}
+ 27.69, 0, 0, !- X,Y,Z Vertex 2 {m}
+ 22.69, 5, 0, !- X,Y,Z Vertex 3 {m}
+ 22.69, 13.46, 0; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {7f4227ad-335c-4683-9a99-6c804048153c}, !- Handle
+ Core_ZN_wall_north, !- Name
+ Wall, !- Surface Type
+ , !- Construction Name
+ {32844cd3-cab3-4870-bbb6-6c79a28481b7}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {5ad6d532-e8de-4604-a79c-c900df2aa730}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 22.69, 13.46, 3.05, !- X,Y,Z Vertex 1 {m}
+ 22.69, 13.46, 0, !- X,Y,Z Vertex 2 {m}
+ 5, 13.46, 0, !- X,Y,Z Vertex 3 {m}
+ 5, 13.46, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {d4106b28-896a-419d-8c67-83b35ee4d552}, !- Handle
+ Core_ZN_wall_west, !- Name
+ Wall, !- Surface Type
+ , !- Construction Name
+ {32844cd3-cab3-4870-bbb6-6c79a28481b7}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {7db0c075-4e62-4963-865c-3941b58b019a}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 5, 13.46, 3.05, !- X,Y,Z Vertex 1 {m}
+ 5, 13.46, 0, !- X,Y,Z Vertex 2 {m}
+ 5, 5, 0, !- X,Y,Z Vertex 3 {m}
+ 5, 5, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {10adca74-548a-4d13-a7fc-d1068a27bad8}, !- Handle
+ Attic_roof_south, !- Name
+ RoofCeiling, !- Surface Type
+ , !- Construction Name
+ {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name
+ Outdoors, !- Outside Boundary Condition
+ , !- Outside Boundary Condition Object
+ SunExposed, !- Sun Exposure
+ WindExposed, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 9.23, 9.23, 6.33, !- X,Y,Z Vertex 1 {m}
+ -0.6, -0.6, 3.05, !- X,Y,Z Vertex 2 {m}
+ 28.29, -0.6, 3.05, !- X,Y,Z Vertex 3 {m}
+ 18.46, 9.23, 6.33; !- X,Y,Z Vertex 4 {m}
+
+OS:SubSurface,
+ {80155533-5f7b-4962-a469-a417c2c2426b}, !- Handle
+ Perimeter_ZN_3_wall_north_Window_2, !- Name
+ FixedWindow, !- Sub Surface Type
+ , !- Construction Name
+ {17c4f45d-4218-45b0-b696-893c60c109f8}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 21.68, 18.46, 2.424, !- X,Y,Z Vertex 1 {m}
+ 21.68, 18.46, 0.9, !- X,Y,Z Vertex 2 {m}
+ 19.85, 18.46, 0.9, !- X,Y,Z Vertex 3 {m}
+ 19.85, 18.46, 2.424; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {17c4f45d-4218-45b0-b696-893c60c109f8}, !- Handle
+ Perimeter_ZN_3_wall_north, !- Name
+ Wall, !- Surface Type
+ , !- Construction Name
+ {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Space Name
+ Outdoors, !- Outside Boundary Condition
+ , !- Outside Boundary Condition Object
+ SunExposed, !- Sun Exposure
+ WindExposed, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 27.69, 18.46, 3.05, !- X,Y,Z Vertex 1 {m}
+ 27.69, 18.46, 0, !- X,Y,Z Vertex 2 {m}
+ 0, 18.46, 0, !- X,Y,Z Vertex 3 {m}
+ 0, 18.46, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:ConvergenceLimits,
+ {257bad81-3887-44d2-9561-57968d0ebe2d}, !- Handle
+ 1, !- Minimum System Timestep {minutes}
+ 20; !- Maximum HVAC Iterations
+
+OS:Surface,
+ {b366b5a3-078a-4642-9a0a-cdd102cd3eba}, !- Handle
+ Perimeter_ZN_2_wall_south, !- Name
+ Wall, !- Surface Type
+ , !- Construction Name
+ {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {713571c9-f6e5-4b5b-9f42-ad39d5868894}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 22.69, 5, 3.05, !- X,Y,Z Vertex 1 {m}
+ 22.69, 5, 0, !- X,Y,Z Vertex 2 {m}
+ 27.69, 2.04187384066908e-015, 0, !- X,Y,Z Vertex 3 {m}
+ 27.69, 2.04187384066908e-015, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {63b30273-21d2-4b1d-bd16-9edb06da8514}, !- Handle
+ Attic_soffit_west, !- Name
+ Floor, !- Surface Type
+ , !- Construction Name
+ {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name
+ Outdoors, !- Outside Boundary Condition
+ , !- Outside Boundary Condition Object
+ SunExposed, !- Sun Exposure
+ WindExposed, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ -0.6, 19.06, 3.05, !- X,Y,Z Vertex 1 {m}
+ 0, 18.46, 3.05, !- X,Y,Z Vertex 2 {m}
+ 0, 0, 3.05, !- X,Y,Z Vertex 3 {m}
+ -0.6, -0.6, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {de083cd1-af79-470a-a5a9-6fa78e743ccd}, !- Handle
+ Perimeter_ZN_4_floor, !- Name
+ Floor, !- Surface Type
+ , !- Construction Name
+ {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Space Name
+ Ground, !- Outside Boundary Condition
+ , !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 0, 18.46, 0, !- X,Y,Z Vertex 1 {m}
+ 5, 13.46, 0, !- X,Y,Z Vertex 2 {m}
+ 5, 5, 0, !- X,Y,Z Vertex 3 {m}
+ 0, 0, 0; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {677c0d88-4564-44d6-9ac6-251a100e5d72}, !- Handle
+ Perimeter_ZN_4_wall_north, !- Name
+ Wall, !- Surface Type
+ , !- Construction Name
+ {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {2addb368-09d7-4d71-9187-50f89aab0d28}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 5, 13.46, 3.05, !- X,Y,Z Vertex 1 {m}
+ 5, 13.46, 0, !- X,Y,Z Vertex 2 {m}
+ 0, 18.46, 0, !- X,Y,Z Vertex 3 {m}
+ 0, 18.46, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {744c91a9-1025-49a9-ad5f-3252777fd52a}, !- Handle
+ Attic_soffit_east, !- Name
+ Floor, !- Surface Type
+ , !- Construction Name
+ {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name
+ Outdoors, !- Outside Boundary Condition
+ , !- Outside Boundary Condition Object
+ SunExposed, !- Sun Exposure
+ WindExposed, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 28.29, 19.06, 3.05, !- X,Y,Z Vertex 1 {m}
+ 28.29, -0.6, 3.05, !- X,Y,Z Vertex 2 {m}
+ 27.69, 0, 3.05, !- X,Y,Z Vertex 3 {m}
+ 27.69, 18.46, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:SubSurface,
+ {2df821be-f673-4ea5-87b4-c86896014413}, !- Handle
+ Perimeter_ZN_3_wall_north_Window_5, !- Name
+ FixedWindow, !- Sub Surface Type
+ , !- Construction Name
+ {17c4f45d-4218-45b0-b696-893c60c109f8}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 7.84, 18.46, 2.424, !- X,Y,Z Vertex 1 {m}
+ 7.84, 18.46, 0.9, !- X,Y,Z Vertex 2 {m}
+ 6.01, 18.46, 0.9, !- X,Y,Z Vertex 3 {m}
+ 6.01, 18.46, 2.424; !- X,Y,Z Vertex 4 {m}
+
+OS:SubSurface,
+ {cb364a7a-fc44-494f-8c36-bc2e73cb7bff}, !- Handle
+ Perimeter_ZN_1_wall_south_Window_5, !- Name
+ FixedWindow, !- Sub Surface Type
+ , !- Construction Name
+ {67ca62ce-e572-4957-8e6a-efb74825f170}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 19.85, 0, 2.424, !- X,Y,Z Vertex 1 {m}
+ 19.85, 0, 0.9, !- X,Y,Z Vertex 2 {m}
+ 21.68, 0, 0.9, !- X,Y,Z Vertex 3 {m}
+ 21.68, 0, 2.424; !- X,Y,Z Vertex 4 {m}
+
+OS:HeatBalanceAlgorithm,
+ {30aa4e32-ecc1-41fa-8e20-75c7b3a9c558}, !- Handle
+ ConductionTransferFunction, !- Algorithm
+ 200; !- Surface Temperature Upper Limit {C}
+
+OS:Surface,
+ {47ffdd48-31f2-4e14-9cf2-3fe0ba8f9927}, !- Handle
+ Core_ZN_wall_south, !- Name
+ Wall, !- Surface Type
+ , !- Construction Name
+ {32844cd3-cab3-4870-bbb6-6c79a28481b7}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {678af1cc-9075-45b3-843b-3d44eb4901e0}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 5, 5, 3.05, !- X,Y,Z Vertex 1 {m}
+ 5, 5, 0, !- X,Y,Z Vertex 2 {m}
+ 22.69, 5, 0, !- X,Y,Z Vertex 3 {m}
+ 22.69, 5, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:SubSurface,
+ {d229ddc0-288c-468d-9866-579c2434d344}, !- Handle
+ Perimeter_ZN_1_wall_south_Window_4, !- Name
+ FixedWindow, !- Sub Surface Type
+ , !- Construction Name
+ {67ca62ce-e572-4957-8e6a-efb74825f170}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 15.24, 0, 2.424, !- X,Y,Z Vertex 1 {m}
+ 15.24, 0, 0.9, !- X,Y,Z Vertex 2 {m}
+ 17.07, 0, 0.9, !- X,Y,Z Vertex 3 {m}
+ 17.07, 0, 2.424; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {912f372d-b179-468e-9e7f-29298eeec743}, !- Handle
+ Perimeter_ZN_3_ceiling, !- Name
+ RoofCeiling, !- Surface Type
+ , !- Construction Name
+ {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {6846f3e0-5f3c-4764-857d-efef5d44c707}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 22.69, 13.46, 3.05, !- X,Y,Z Vertex 1 {m}
+ 27.69, 18.46, 3.05, !- X,Y,Z Vertex 2 {m}
+ 0, 18.46, 3.05, !- X,Y,Z Vertex 3 {m}
+ 5, 13.46, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {b890eeac-5336-4ed2-9467-56785822dd86}, !- Handle
+ Attic_floor_perimeter_west, !- Name
+ Floor, !- Surface Type
+ , !- Construction Name
+ {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {9f3c4b24-4e8e-4b4e-932c-0c0aeb12edab}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 0, 18.46, 3.05, !- X,Y,Z Vertex 1 {m}
+ 5, 13.46, 3.05, !- X,Y,Z Vertex 2 {m}
+ 5, 5, 3.05, !- X,Y,Z Vertex 3 {m}
+ 0, 0, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {b6ff9519-a9c1-41bb-a9a2-a8a38ed021e1}, !- Handle
+ Perimeter_ZN_2_wall_east, !- Name
+ Wall, !- Surface Type
+ , !- Construction Name
+ {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Space Name
+ Outdoors, !- Outside Boundary Condition
+ , !- Outside Boundary Condition Object
+ SunExposed, !- Sun Exposure
+ WindExposed, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 27.69, 0, 3.05, !- X,Y,Z Vertex 1 {m}
+ 27.69, 0, 0, !- X,Y,Z Vertex 2 {m}
+ 27.69, 18.46, 0, !- X,Y,Z Vertex 3 {m}
+ 27.69, 18.46, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {1b4ea672-9fb0-4630-b4b2-b2587fc83673}, !- Handle
+ Attic_floor_perimeter_south, !- Name
+ Floor, !- Surface Type
+ , !- Construction Name
+ {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {645a4e50-0ece-46bb-aac3-ec237130a18d}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 22.69, 5, 3.05, !- X,Y,Z Vertex 1 {m}
+ 27.69, 0, 3.05, !- X,Y,Z Vertex 2 {m}
+ 0, 0, 3.05, !- X,Y,Z Vertex 3 {m}
+ 5, 5, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {9aa4b0d6-2814-4c71-a486-0c272576ee4d}, !- Handle
+ Perimeter_ZN_1_wall_west, !- Name
+ Wall, !- Surface Type
+ , !- Construction Name
+ {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {10583da6-829d-472d-90f7-81a54a7bb399}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 5, 5, 3.05, !- X,Y,Z Vertex 1 {m}
+ 5, 5, 0, !- X,Y,Z Vertex 2 {m}
+ 0, 0, 0, !- X,Y,Z Vertex 3 {m}
+ 0, 0, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {2addb368-09d7-4d71-9187-50f89aab0d28}, !- Handle
+ Perimeter_ZN_3_wall_west, !- Name
+ Wall, !- Surface Type
+ , !- Construction Name
+ {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {677c0d88-4564-44d6-9ac6-251a100e5d72}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 0, 18.46, 3.05, !- X,Y,Z Vertex 1 {m}
+ 0, 18.46, 0, !- X,Y,Z Vertex 2 {m}
+ 5, 13.46, 0, !- X,Y,Z Vertex 3 {m}
+ 5, 13.46, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:SubSurface,
+ {ab17b1fc-cf5a-4f83-a75f-c979f9e5ec68}, !- Handle
+ Perimeter_ZN_3_wall_north_Window_3, !- Name
+ FixedWindow, !- Sub Surface Type
+ , !- Construction Name
+ {17c4f45d-4218-45b0-b696-893c60c109f8}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 17.07, 18.46, 2.424, !- X,Y,Z Vertex 1 {m}
+ 17.07, 18.46, 0.9, !- X,Y,Z Vertex 2 {m}
+ 15.24, 18.46, 0.9, !- X,Y,Z Vertex 3 {m}
+ 15.24, 18.46, 2.424; !- X,Y,Z Vertex 4 {m}
+
+OS:SubSurface,
+ {6935fc42-b444-4a6b-b07f-234327773d16}, !- Handle
+ Perimeter_ZN_1_wall_south_Window_2, !- Name
+ FixedWindow, !- Sub Surface Type
+ , !- Construction Name
+ {67ca62ce-e572-4957-8e6a-efb74825f170}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 6.01, 0, 2.424, !- X,Y,Z Vertex 1 {m}
+ 6.01, 0, 0.9, !- X,Y,Z Vertex 2 {m}
+ 7.84, 0, 0.9, !- X,Y,Z Vertex 3 {m}
+ 7.84, 0, 2.424; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {0f61baff-cb03-4a25-97fd-0c204a43cad2}, !- Handle
+ Attic_roof_west, !- Name
+ RoofCeiling, !- Surface Type
+ , !- Construction Name
+ {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name
+ Outdoors, !- Outside Boundary Condition
+ , !- Outside Boundary Condition Object
+ SunExposed, !- Sun Exposure
+ WindExposed, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 9.23, 9.23, 6.33, !- X,Y,Z Vertex 1 {m}
+ -0.6, 19.06, 3.05, !- X,Y,Z Vertex 2 {m}
+ -0.6, -0.6, 3.05; !- X,Y,Z Vertex 3 {m}
+
+OS:Surface,
+ {294e6a4a-4754-4ea0-b450-586c284d51ae}, !- Handle
+ Perimeter_ZN_3_wall_east, !- Name
+ Wall, !- Surface Type
+ , !- Construction Name
+ {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {e6e6213c-27e3-4780-914d-aab86a026932}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 22.69, 13.46, 3.05, !- X,Y,Z Vertex 1 {m}
+ 22.69, 13.46, 0, !- X,Y,Z Vertex 2 {m}
+ 27.69, 18.46, 0, !- X,Y,Z Vertex 3 {m}
+ 27.69, 18.46, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:SubSurface,
+ {00249f83-d4db-4412-a65b-516306588f49}, !- Handle
+ Perimeter_ZN_1_wall_south_Window_3, !- Name
+ FixedWindow, !- Sub Surface Type
+ , !- Construction Name
+ {67ca62ce-e572-4957-8e6a-efb74825f170}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 10.62, 0, 2.424, !- X,Y,Z Vertex 1 {m}
+ 10.62, 0, 0.9, !- X,Y,Z Vertex 2 {m}
+ 12.45, 0, 0.9, !- X,Y,Z Vertex 3 {m}
+ 12.45, 0, 2.424; !- X,Y,Z Vertex 4 {m}
+
+OS:SubSurface,
+ {01b570ed-fed9-4e8f-ab7c-dc432196da7b}, !- Handle
+ Perimeter_ZN_3_wall_north_Window_4, !- Name
+ FixedWindow, !- Sub Surface Type
+ , !- Construction Name
+ {17c4f45d-4218-45b0-b696-893c60c109f8}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 12.45, 18.46, 2.424, !- X,Y,Z Vertex 1 {m}
+ 12.45, 18.46, 0.9, !- X,Y,Z Vertex 2 {m}
+ 10.62, 18.46, 0.9, !- X,Y,Z Vertex 3 {m}
+ 10.62, 18.46, 2.424; !- X,Y,Z Vertex 4 {m}
+
+OS:Timestep,
+ {eb583d9a-28e0-49c6-8519-cae0088b5073}, !- Handle
+ 60; !- Number of Timesteps per Hour
+
+OS:Surface,
+ {1f023a99-6062-4e6b-a2ee-74cc9513d97f}, !- Handle
+ Perimeter_ZN_1_floor, !- Name
+ Floor, !- Surface Type
+ , !- Construction Name
+ {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space Name
+ Ground, !- Outside Boundary Condition
+ , !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 22.69, 5, 0, !- X,Y,Z Vertex 1 {m}
+ 27.69, 0, 0, !- X,Y,Z Vertex 2 {m}
+ 0, 0, 0, !- X,Y,Z Vertex 3 {m}
+ 5, 5, 0; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {645a4e50-0ece-46bb-aac3-ec237130a18d}, !- Handle
+ Perimeter_ZN_1_ceiling, !- Name
+ RoofCeiling, !- Surface Type
+ , !- Construction Name
+ {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {1b4ea672-9fb0-4630-b4b2-b2587fc83673}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 27.69, 0, 3.05, !- X,Y,Z Vertex 1 {m}
+ 22.69, 5, 3.05, !- X,Y,Z Vertex 2 {m}
+ 5, 5, 3.05, !- X,Y,Z Vertex 3 {m}
+ 0, 0, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:SubSurface,
+ {e51f02c4-8ab6-4b72-9afa-25754ca41d63}, !- Handle
+ Perimeter_ZN_1_wall_south_Window_6, !- Name
+ FixedWindow, !- Sub Surface Type
+ , !- Construction Name
+ {67ca62ce-e572-4957-8e6a-efb74825f170}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 24.47, 0, 2.424, !- X,Y,Z Vertex 1 {m}
+ 24.47, 0, 0.9, !- X,Y,Z Vertex 2 {m}
+ 26.3, 0, 0.9, !- X,Y,Z Vertex 3 {m}
+ 26.3, 0, 2.424; !- X,Y,Z Vertex 4 {m}
+
+OS:SubSurface,
+ {58a81d86-1089-4c25-9dc2-b3cf3a7551cf}, !- Handle
+ Perimeter_ZN_2_wall_east_Window_1, !- Name
+ FixedWindow, !- Sub Surface Type
+ , !- Construction Name
+ {b6ff9519-a9c1-41bb-a9a2-a8a38ed021e1}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 27.69, 1.39, 2.424, !- X,Y,Z Vertex 1 {m}
+ 27.69, 1.39, 0.9, !- X,Y,Z Vertex 2 {m}
+ 27.69, 3.22, 0.9, !- X,Y,Z Vertex 3 {m}
+ 27.69, 3.22, 2.424; !- X,Y,Z Vertex 4 {m}
+
+OS:SubSurface,
+ {3c3e008b-c13d-493b-a54a-6882ec666bca}, !- Handle
+ Perimeter_ZN_2_wall_east_Window_3, !- Name
+ FixedWindow, !- Sub Surface Type
+ , !- Construction Name
+ {b6ff9519-a9c1-41bb-a9a2-a8a38ed021e1}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 27.69, 10.62, 2.424, !- X,Y,Z Vertex 1 {m}
+ 27.69, 10.62, 0.9, !- X,Y,Z Vertex 2 {m}
+ 27.69, 12.45, 0.9, !- X,Y,Z Vertex 3 {m}
+ 27.69, 12.45, 2.424; !- X,Y,Z Vertex 4 {m}
+
+OS:Output:Meter,
+ {15699204-c979-4451-b40c-3b532d8c0da9}, !- Handle
+ ElectricityNet:Facility, !- Name
+ Hourly, !- Reporting Frequency
+ True, !- Meter File Only
+ False; !- Cumulative
+
+OS:SubSurface,
+ {e5c5c1db-dfe9-4a48-bb35-75ca0b08f7c8}, !- Handle
+ Perimeter_ZN_4_wall_west_Window_4, !- Name
+ FixedWindow, !- Sub Surface Type
+ , !- Construction Name
+ {3977972e-c38f-4caf-ac22-02109f4eaee3}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 0, 3.22, 2.424, !- X,Y,Z Vertex 1 {m}
+ 0, 3.22, 0.9, !- X,Y,Z Vertex 2 {m}
+ 0, 1.39, 0.9, !- X,Y,Z Vertex 3 {m}
+ 0, 1.39, 2.424; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {3977972e-c38f-4caf-ac22-02109f4eaee3}, !- Handle
+ Perimeter_ZN_4_wall_west, !- Name
+ Wall, !- Surface Type
+ , !- Construction Name
+ {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Space Name
+ Outdoors, !- Outside Boundary Condition
+ , !- Outside Boundary Condition Object
+ SunExposed, !- Sun Exposure
+ WindExposed, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 0, 18.46, 3.05, !- X,Y,Z Vertex 1 {m}
+ 0, 18.46, 0, !- X,Y,Z Vertex 2 {m}
+ 0, 0, 0, !- X,Y,Z Vertex 3 {m}
+ 0, 0, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {678af1cc-9075-45b3-843b-3d44eb4901e0}, !- Handle
+ Perimeter_ZN_1_wall_north, !- Name
+ Wall, !- Surface Type
+ , !- Construction Name
+ {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {47ffdd48-31f2-4e14-9cf2-3fe0ba8f9927}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 22.69, 5, 3.05, !- X,Y,Z Vertex 1 {m}
+ 22.69, 5, 0, !- X,Y,Z Vertex 2 {m}
+ 5, 5, 0, !- X,Y,Z Vertex 3 {m}
+ 5, 5, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:SubSurface,
+ {bf062f5b-d087-4887-96ba-89e2cd6a703c}, !- Handle
+ Perimeter_ZN_4_wall_west_Window_2, !- Name
+ FixedWindow, !- Sub Surface Type
+ , !- Construction Name
+ {3977972e-c38f-4caf-ac22-02109f4eaee3}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 0, 12.45, 2.424, !- X,Y,Z Vertex 1 {m}
+ 0, 12.45, 0.9, !- X,Y,Z Vertex 2 {m}
+ 0, 10.62, 0.9, !- X,Y,Z Vertex 3 {m}
+ 0, 10.62, 2.424; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {5ba0e030-ad8e-4939-9022-603ea15873fd}, !- Handle
+ Attic_floor_perimeter_east, !- Name
+ Floor, !- Surface Type
+ , !- Construction Name
+ {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {de9219d4-cc0d-45c1-b670-26d576f7fec4}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 27.69, 18.46, 3.05, !- X,Y,Z Vertex 1 {m}
+ 27.69, 0, 3.05, !- X,Y,Z Vertex 2 {m}
+ 22.69, 5, 3.05, !- X,Y,Z Vertex 3 {m}
+ 22.69, 13.46, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Output:Meter,
+ {d446ed18-52cc-487c-bf58-c78a8edaa642}, !- Handle
+ Electricity:Facility, !- Name
+ Hourly, !- Reporting Frequency
+ True, !- Meter File Only
+ False; !- Cumulative
+
+OS:Surface,
+ {72a1b6a0-5c0f-4a8b-a8d5-81bef0ff1769}, !- Handle
+ Core_ZN_wall_east, !- Name
+ Wall, !- Surface Type
+ , !- Construction Name
+ {32844cd3-cab3-4870-bbb6-6c79a28481b7}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {76eef8b9-8d45-4e4a-a6e8-a678fd658045}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 22.69, 5, 3.05, !- X,Y,Z Vertex 1 {m}
+ 22.69, 5, 0, !- X,Y,Z Vertex 2 {m}
+ 22.69, 13.46, 0, !- X,Y,Z Vertex 3 {m}
+ 22.69, 13.46, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {d0826a01-d018-4104-931a-9173a72e19b7}, !- Handle
+ Attic_soffit_south, !- Name
+ Floor, !- Surface Type
+ , !- Construction Name
+ {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name
+ Outdoors, !- Outside Boundary Condition
+ , !- Outside Boundary Condition Object
+ SunExposed, !- Sun Exposure
+ WindExposed, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 27.69, 0, 3.05, !- X,Y,Z Vertex 1 {m}
+ 28.29, -0.6, 3.05, !- X,Y,Z Vertex 2 {m}
+ -0.6, -0.6, 3.05, !- X,Y,Z Vertex 3 {m}
+ 0, 0, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {31889fa0-d974-455a-a2bd-f5abe47e7f37}, !- Handle
+ Perimeter_ZN_3_floor, !- Name
+ Floor, !- Surface Type
+ , !- Construction Name
+ {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Space Name
+ Ground, !- Outside Boundary Condition
+ , !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 27.69, 18.46, 0, !- X,Y,Z Vertex 1 {m}
+ 22.69, 13.46, 0, !- X,Y,Z Vertex 2 {m}
+ 5, 13.46, 0, !- X,Y,Z Vertex 3 {m}
+ 0, 18.46, 0; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {7db0c075-4e62-4963-865c-3941b58b019a}, !- Handle
+ Perimeter_ZN_4_wall_east, !- Name
+ Wall, !- Surface Type
+ , !- Construction Name
+ {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {d4106b28-896a-419d-8c67-83b35ee4d552}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 5, 5, 3.05, !- X,Y,Z Vertex 1 {m}
+ 5, 5, 0, !- X,Y,Z Vertex 2 {m}
+ 5, 13.46, 0, !- X,Y,Z Vertex 3 {m}
+ 5, 13.46, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {30049214-f475-466f-8308-e6d33248de87}, !- Handle
+ Attic_floor_core, !- Name
+ Floor, !- Surface Type
+ , !- Construction Name
+ {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {feb7c449-5351-48a2-865e-0e36c2c4fc6f}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 22.69, 13.46, 3.05, !- X,Y,Z Vertex 1 {m}
+ 22.69, 5, 3.05, !- X,Y,Z Vertex 2 {m}
+ 5, 5, 3.05, !- X,Y,Z Vertex 3 {m}
+ 5, 13.46, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {713571c9-f6e5-4b5b-9f42-ad39d5868894}, !- Handle
+ Perimeter_ZN_1_wall_east, !- Name
+ Wall, !- Surface Type
+ , !- Construction Name
+ {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {b366b5a3-078a-4642-9a0a-cdd102cd3eba}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 27.69, 2.04187384066908e-015, 3.05, !- X,Y,Z Vertex 1 {m}
+ 27.69, 2.04187384066908e-015, 0, !- X,Y,Z Vertex 2 {m}
+ 22.69, 5, 0, !- X,Y,Z Vertex 3 {m}
+ 22.69, 5, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:SubSurface,
+ {f689c536-53ce-4401-983e-669e62dc4035}, !- Handle
+ Perimeter_ZN_2_wall_east_Window_4, !- Name
+ FixedWindow, !- Sub Surface Type
+ , !- Construction Name
+ {b6ff9519-a9c1-41bb-a9a2-a8a38ed021e1}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 27.69, 15.24, 2.424, !- X,Y,Z Vertex 1 {m}
+ 27.69, 15.24, 0.9, !- X,Y,Z Vertex 2 {m}
+ 27.69, 17.07, 0.9, !- X,Y,Z Vertex 3 {m}
+ 27.69, 17.07, 2.424; !- X,Y,Z Vertex 4 {m}
+
+OS:SubSurface,
+ {1658ab79-d8c2-42b6-9b7d-92ec9fd1924f}, !- Handle
+ Perimeter_ZN_2_wall_east_Window_2, !- Name
+ FixedWindow, !- Sub Surface Type
+ , !- Construction Name
+ {b6ff9519-a9c1-41bb-a9a2-a8a38ed021e1}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 27.69, 6.01, 2.424, !- X,Y,Z Vertex 1 {m}
+ 27.69, 6.01, 0.9, !- X,Y,Z Vertex 2 {m}
+ 27.69, 7.84, 0.9, !- X,Y,Z Vertex 3 {m}
+ 27.69, 7.84, 2.424; !- X,Y,Z Vertex 4 {m}
+
+OS:RunPeriod,
+ {94267dee-950c-4c53-aa76-7a4b668d0573}, !- Handle
+ Run Period 1, !- Name
+ 2, !- Begin Month
+ 2, !- Begin Day of Month
+ 2, !- End Month
+ 28, !- End Day of Month
+ No, !- Use Weather File Holidays and Special Days
+ No, !- Use Weather File Daylight Saving Period
+ No, !- Apply Weekend Holiday Rule
+ Yes, !- Use Weather File Rain Indicators
+ Yes, !- Use Weather File Snow Indicators
+ 1; !- Number of Times Runperiod to be Repeated
+
+OS:YearDescription,
+ {c909b14d-25f4-4587-81ac-13c1e4bb0508}, !- Handle
+ , !- Calendar Year
+ Sunday; !- Day of Week for Start Day
+
+OS:Surface,
+ {6846f3e0-5f3c-4764-857d-efef5d44c707}, !- Handle
+ Attic_floor_perimeter_north, !- Name
+ Floor, !- Surface Type
+ , !- Construction Name
+ {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {912f372d-b179-468e-9e7f-29298eeec743}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 27.69, 18.46, 3.05, !- X,Y,Z Vertex 1 {m}
+ 22.69, 13.46, 3.05, !- X,Y,Z Vertex 2 {m}
+ 5, 13.46, 3.05, !- X,Y,Z Vertex 3 {m}
+ 0, 18.46, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:ShadowCalculation,
+ {208066fd-3337-431a-92af-1b641ddb4c8e}, !- Handle
+ 30, !- Calculation Frequency
+ 15000; !- Maximum Figures in Shadow Overlap Calculations
+
+OS:SubSurface,
+ {7601ac5c-8c78-486c-8a6b-46d19f4aef2f}, !- Handle
+ Perimeter_ZN_4_wall_west_Window_3, !- Name
+ FixedWindow, !- Sub Surface Type
+ , !- Construction Name
+ {3977972e-c38f-4caf-ac22-02109f4eaee3}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 0, 7.84, 2.424, !- X,Y,Z Vertex 1 {m}
+ 0, 7.84, 0.9, !- X,Y,Z Vertex 2 {m}
+ 0, 6.01, 0.9, !- X,Y,Z Vertex 3 {m}
+ 0, 6.01, 2.424; !- X,Y,Z Vertex 4 {m}
+
+OS:Building,
+ {6b25c3c7-39e4-4be7-84a9-17e80feecaf5}, !- Handle
+ SmallOffice-5A Unitary, !- Name
+ , !- Building Sector Type
+ 0, !- North Axis {deg}
+ , !- Nominal Floor to Floor Height {m}
+ , !- Space Type Name
+ {43439ea6-b207-4356-ab36-b087c1b4dd53}, !- Default Construction Set Name
+ , !- Default Schedule Set Name
+ 1, !- Standards Number of Stories
+ 1, !- Standards Number of Above Ground Stories
+ , !- Standards Template
+ SmallOffice; !- Standards Building Type
+
+OS:Surface,
+ {10583da6-829d-472d-90f7-81a54a7bb399}, !- Handle
+ Perimeter_ZN_4_wall_south, !- Name
+ Wall, !- Surface Type
+ , !- Construction Name
+ {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Space Name
+ Surface, !- Outside Boundary Condition
+ {9aa4b0d6-2814-4c71-a486-0c272576ee4d}, !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 0, 0, 3.05, !- X,Y,Z Vertex 1 {m}
+ 0, 0, 0, !- X,Y,Z Vertex 2 {m}
+ 5, 5, 0, !- X,Y,Z Vertex 3 {m}
+ 5, 5, 3.05; !- X,Y,Z Vertex 4 {m}
+
+OS:SubSurface,
+ {30959840-2498-4755-bd79-a6730b388911}, !- Handle
+ Perimeter_ZN_4_wall_west_Window_1, !- Name
+ FixedWindow, !- Sub Surface Type
+ , !- Construction Name
+ {3977972e-c38f-4caf-ac22-02109f4eaee3}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 0, 17.07, 2.424, !- X,Y,Z Vertex 1 {m}
+ 0, 17.07, 0.9, !- X,Y,Z Vertex 2 {m}
+ 0, 15.24, 0.9, !- X,Y,Z Vertex 3 {m}
+ 0, 15.24, 2.424; !- X,Y,Z Vertex 4 {m}
+
+OS:Surface,
+ {1d4e0950-59cb-4339-b400-f4a8bebb3997}, !- Handle
+ Core_ZN_floor, !- Name
+ Floor, !- Surface Type
+ , !- Construction Name
+ {32844cd3-cab3-4870-bbb6-6c79a28481b7}, !- Space Name
+ Ground, !- Outside Boundary Condition
+ , !- Outside Boundary Condition Object
+ NoSun, !- Sun Exposure
+ NoWind, !- Wind Exposure
+ , !- View Factor to Ground
+ , !- Number of Vertices
+ 22.69, 13.46, 0, !- X,Y,Z Vertex 1 {m}
+ 22.69, 5, 0, !- X,Y,Z Vertex 2 {m}
+ 5, 5, 0, !- X,Y,Z Vertex 3 {m}
+ 5, 13.46, 0; !- X,Y,Z Vertex 4 {m}
+
+OS:SubSurface,
+ {931ae67d-55c0-4873-bdaf-9b304c8e6ddf}, !- Handle
+ Perimeter_ZN_3_wall_north_Window_1, !- Name
+ FixedWindow, !- Sub Surface Type
+ , !- Construction Name
+ {17c4f45d-4218-45b0-b696-893c60c109f8}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 26.3, 18.46, 2.424, !- X,Y,Z Vertex 1 {m}
+ 26.3, 18.46, 0.9, !- X,Y,Z Vertex 2 {m}
+ 24.47, 18.46, 0.9, !- X,Y,Z Vertex 3 {m}
+ 24.47, 18.46, 2.424; !- X,Y,Z Vertex 4 {m}
+
+OS:SubSurface,
+ {092b1b3c-7a6e-4ded-9a20-f857dd391a41}, !- Handle
+ Perimeter_ZN_3_wall_north_Window_6, !- Name
+ FixedWindow, !- Sub Surface Type
+ , !- Construction Name
+ {17c4f45d-4218-45b0-b696-893c60c109f8}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 3.22, 18.46, 2.424, !- X,Y,Z Vertex 1 {m}
+ 3.22, 18.46, 0.9, !- X,Y,Z Vertex 2 {m}
+ 1.39, 18.46, 0.9, !- X,Y,Z Vertex 3 {m}
+ 1.39, 18.46, 2.424; !- X,Y,Z Vertex 4 {m}
+
+OS:SubSurface,
+ {53588f1b-5734-4f40-b8d3-73d92c10e021}, !- Handle
+ Perimeter_ZN_1_wall_south_door, !- Name
+ GlassDoor, !- Sub Surface Type
+ , !- Construction Name
+ {67ca62ce-e572-4957-8e6a-efb74825f170}, !- Surface Name
+ , !- Outside Boundary Condition Object
+ , !- View Factor to Ground
+ , !- Shading Control Name
+ , !- Frame and Divider Name
+ 1, !- Multiplier
+ , !- Number of Vertices
+ 12.93, 0, 2.134, !- X,Y,Z Vertex 1 {m}
+ 12.93, 0, 0, !- X,Y,Z Vertex 2 {m}
+ 14.76, 0, 0, !- X,Y,Z Vertex 3 {m}
+ 14.76, 0, 2.134; !- X,Y,Z Vertex 4 {m}
+
+OS:Facility,
+ {8b48fb85-9058-4291-a948-6088f0592bb3}; !- Handle
+
+OS:BuildingStory,
+ {2edc3034-10d9-48ff-9f1e-ff89d18bbb3f}, !- Handle
+ Building Story 1, !- Name
+ 0, !- Nominal Z Coordinate {m}
+ , !- Nominal Floor to Floor Height {m}
+ , !- Default Construction Set Name
+ , !- Default Schedule Set Name
+ {edf75d60-088c-496a-87da-556d74439047}; !- Group Rendering Name
+
+OS:SpaceType,
+ {629a271e-7460-4c51-87d3-d2d3125cfac1}, !- Handle
+ Office WholeBuilding - Sm Office, !- Name
+ , !- Default Construction Set Name
+ {9dc4e963-eaf9-4f02-9731-8aeda2294db4}, !- Default Schedule Set Name
+ {30ff0848-5cdc-4dd8-a086-1caeb68bb0d8}, !- Group Rendering Name
+ {e6dfb89d-c79f-4077-ae54-a56c9861f769}, !- Design Specification Outdoor Air Object Name
+ , !- Standards Template
+ Office, !- Standards Building Type
+ WholeBuilding - Sm Office; !- Standards Space Type
+
+OS:SpaceType,
+ {a8affc2d-d2e8-44c9-85f3-e6d076201869}, !- Handle
+ Office Attic, !- Name
+ {5dbc5807-b4cd-48b8-a864-61afd371e1f2}, !- Default Construction Set Name
+ {a93117e9-e1db-4c0b-84f7-2e0f5aa859ce}, !- Default Schedule Set Name
+ {464e0ca9-ee56-43ac-be06-ca07903d50e4}, !- Group Rendering Name
+ {b1e0eab9-6fed-4c82-a687-26e9e44dbd0a}, !- Design Specification Outdoor Air Object Name
+ , !- Standards Template
+ Office, !- Standards Building Type
+ Attic; !- Standards Space Type
+
+OS:Rendering:Color,
+ {464e0ca9-ee56-43ac-be06-ca07903d50e4}, !- Handle
+ Office Attic 1, !- Name
+ 120, !- Rendering Red Value
+ 149, !- Rendering Green Value
+ 230; !- Rendering Blue Value
+
+OS:DesignSpecification:OutdoorAir,
+ {b1e0eab9-6fed-4c82-a687-26e9e44dbd0a}, !- Handle
+ Office Attic Ventilation, !- Name
+ , !- Outdoor Air Method
+ 0, !- Outdoor Air Flow per Person {m3/s-person}
+ 0, !- Outdoor Air Flow per Floor Area {m3/s-m2}
+ , !- Outdoor Air Flow Rate {m3/s}
+ 0, !- Outdoor Air Flow Air Changes per Hour {1/hr}
+ ; !- Outdoor Air Flow Rate Fraction Schedule Name
+
+OS:DefaultScheduleSet,
+ {a93117e9-e1db-4c0b-84f7-2e0f5aa859ce}, !- Handle
+ Office Attic Schedule Set, !- Name
+ , !- Hours of Operation Schedule Name
+ , !- Number of People Schedule Name
+ , !- People Activity Level Schedule Name
+ , !- Lighting Schedule Name
+ , !- Electric Equipment Schedule Name
+ , !- Gas Equipment Schedule Name
+ , !- Hot Water Equipment Schedule Name
+ {ef22c4e0-071c-497a-9d4a-84f7b59f5651}, !- Infiltration Schedule Name
+ , !- Steam Equipment Schedule Name
+ ; !- Other Equipment Schedule Name
+
+OS:Schedule:Ruleset,
+ {ef22c4e0-071c-497a-9d4a-84f7b59f5651}, !- Handle
+ OfficeLarge INFIL_SCH_PNNL, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ {4cd505ce-cbe6-4555-8dee-02e32b19585b}, !- Default Day Schedule Name
+ {af08fa08-6654-41e8-bd66-013e6dca80e4}, !- Summer Design Day Schedule Name
+ {28f8a1cd-ec0a-4760-b51d-4b2c6d4ba03d}; !- Winter Design Day Schedule Name
+
+OS:Schedule:Day,
+ {4cd505ce-cbe6-4555-8dee-02e32b19585b}, !- Handle
+ OfficeLarge INFIL_SCH_PNNL Default, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 1; !- Value Until Time 1
+
+OS:Schedule:Day,
+ {af08fa08-6654-41e8-bd66-013e6dca80e4}, !- Handle
+ OfficeLarge INFIL_SCH_PNNL Summer Design Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 6, !- Hour 1
+ 0, !- Minute 1
+ 1, !- Value Until Time 1
+ 22, !- Hour 2
+ 0, !- Minute 2
+ 0.25, !- Value Until Time 2
+ 24, !- Hour 3
+ 0, !- Minute 3
+ 1; !- Value Until Time 3
+
+OS:Schedule:Rule,
+ {a7e23df8-8b3b-4f88-8b78-d47af83d29f6}, !- Handle
+ Schedule Rule 1, !- Name
+ {ef22c4e0-071c-497a-9d4a-84f7b59f5651}, !- Schedule Ruleset Name
+ 1, !- Rule Order
+ {341ae3c0-1e4b-438d-a349-78c4d893609b}, !- Day Schedule Name
+ , !- Apply Sunday
+ Yes, !- Apply Monday
+ Yes, !- Apply Tuesday
+ Yes, !- Apply Wednesday
+ Yes, !- Apply Thursday
+ Yes, !- Apply Friday
+ , !- Apply Saturday
+ , !- Apply Holiday
+ DateRange, !- Date Specification Type
+ 1, !- Start Month
+ 1, !- Start Day
+ 12, !- End Month
+ 31; !- End Day
+
+OS:Schedule:Day,
+ {341ae3c0-1e4b-438d-a349-78c4d893609b}, !- Handle
+ OfficeLarge INFIL_SCH_PNNL SmrDsn Wkdy Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 6, !- Hour 1
+ 0, !- Minute 1
+ 1, !- Value Until Time 1
+ 22, !- Hour 2
+ 0, !- Minute 2
+ 0.25, !- Value Until Time 2
+ 24, !- Hour 3
+ 0, !- Minute 3
+ 1; !- Value Until Time 3
+
+OS:Schedule:Day,
+ {28f8a1cd-ec0a-4760-b51d-4b2c6d4ba03d}, !- Handle
+ OfficeLarge INFIL_SCH_PNNL Winter Design Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 6, !- Hour 1
+ 0, !- Minute 1
+ 1, !- Value Until Time 1
+ 18, !- Hour 2
+ 0, !- Minute 2
+ 0.25, !- Value Until Time 2
+ 24, !- Hour 3
+ 0, !- Minute 3
+ 1; !- Value Until Time 3
+
+OS:Schedule:Rule,
+ {55097f0a-4cf3-405f-bcff-92084b900f0d}, !- Handle
+ Schedule Rule 2, !- Name
+ {ef22c4e0-071c-497a-9d4a-84f7b59f5651}, !- Schedule Ruleset Name
+ 0, !- Rule Order
+ {11021c79-21b2-410d-8761-4ca0169659f2}, !- Day Schedule Name
+ , !- Apply Sunday
+ , !- Apply Monday
+ , !- Apply Tuesday
+ , !- Apply Wednesday
+ , !- Apply Thursday
+ , !- Apply Friday
+ Yes, !- Apply Saturday
+ , !- Apply Holiday
+ DateRange, !- Date Specification Type
+ 1, !- Start Month
+ 1, !- Start Day
+ 12, !- End Month
+ 31; !- End Day
+
+OS:Schedule:Day,
+ {11021c79-21b2-410d-8761-4ca0169659f2}, !- Handle
+ OfficeLarge INFIL_SCH_PNNL WntrDsn Sat Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 6, !- Hour 1
+ 0, !- Minute 1
+ 1, !- Value Until Time 1
+ 18, !- Hour 2
+ 0, !- Minute 2
+ 0.25, !- Value Until Time 2
+ 24, !- Hour 3
+ 0, !- Minute 3
+ 1; !- Value Until Time 3
+
+OS:ScheduleTypeLimits,
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Handle
+ Fractional, !- Name
+ 0, !- Lower Limit Value
+ 1, !- Upper Limit Value
+ Continuous; !- Numeric Type
+
+OS:ThermostatSetpoint:DualSetpoint,
+ {a3cd6643-7831-4264-9074-5bfe5f37f78f}, !- Handle
+ Office Attic Thermostat; !- Name
+
+OS:Rendering:Color,
+ {30ff0848-5cdc-4dd8-a086-1caeb68bb0d8}, !- Handle
+ Office WholeBuilding - Sm Office 1, !- Name
+ 120, !- Rendering Red Value
+ 230, !- Rendering Green Value
+ 199; !- Rendering Blue Value
+
+OS:People:Definition,
+ {3031b171-109a-44ae-9de9-5736c93b0cfd}, !- Handle
+ Office WholeBuilding - Sm Office People Definition, !- Name
+ People/Area, !- Number of People Calculation Method
+ , !- Number of People {people}
+ 0.0602778983335744, !- People per Space Floor Area {person/m2}
+ , !- Space Floor Area per Person {m2/person}
+ 0.3; !- Fraction Radiant
+
+OS:People,
+ {a01b9518-0d63-4370-9865-d6053c901e72}, !- Handle
+ Office WholeBuilding - Sm Office People, !- Name
+ {3031b171-109a-44ae-9de9-5736c93b0cfd}, !- People Definition Name
+ {629a271e-7460-4c51-87d3-d2d3125cfac1}, !- Space or SpaceType Name
+ , !- Number of People Schedule Name
+ , !- Activity Level Schedule Name
+ , !- Surface Name/Angle Factor List Name
+ {aec93a38-365e-4bbb-913e-1665f358a2dc}, !- Work Efficiency Schedule Name
+ {d29a5bab-97c5-40ae-a77f-70ff33b2440c}, !- Clothing Insulation Schedule Name
+ {be7c18ee-b179-4be1-bfe1-f53cb7cb4929}, !- Air Velocity Schedule Name
+ 1; !- Multiplier
+
+OS:Schedule:Ruleset,
+ {d29a5bab-97c5-40ae-a77f-70ff33b2440c}, !- Handle
+ Clothing Schedule, !- Name
+ {4883d6af-171a-4672-a7f3-205f0523266e}, !- Schedule Type Limits Name
+ {eb0ff46a-33ed-4634-a4aa-a1751d528c9f}; !- Default Day Schedule Name
+
+OS:Schedule:Day,
+ {eb0ff46a-33ed-4634-a4aa-a1751d528c9f}, !- Handle
+ Clothing Schedule Default Winter Clothes, !- Name
+ {4883d6af-171a-4672-a7f3-205f0523266e}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 1; !- Value Until Time 1
+
+OS:Schedule:Rule,
+ {76cc82df-9813-439f-8cf7-814913e90951}, !- Handle
+ Schedule Rule 3, !- Name
+ {d29a5bab-97c5-40ae-a77f-70ff33b2440c}, !- Schedule Ruleset Name
+ 0, !- Rule Order
+ {1e708e87-e5ea-429a-b96d-c3c136e48fa6}, !- Day Schedule Name
+ , !- Apply Sunday
+ , !- Apply Monday
+ , !- Apply Tuesday
+ , !- Apply Wednesday
+ , !- Apply Thursday
+ , !- Apply Friday
+ , !- Apply Saturday
+ , !- Apply Holiday
+ DateRange, !- Date Specification Type
+ 5, !- Start Month
+ 1, !- Start Day
+ 9, !- End Month
+ 30; !- End Day
+
+OS:Schedule:Day,
+ {1e708e87-e5ea-429a-b96d-c3c136e48fa6}, !- Handle
+ Clothing Schedule Summer Clothes, !- Name
+ {4883d6af-171a-4672-a7f3-205f0523266e}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 0.5; !- Value Until Time 1
+
+OS:ScheduleTypeLimits,
+ {4883d6af-171a-4672-a7f3-205f0523266e}, !- Handle
+ ClothingInsulation, !- Name
+ 0, !- Lower Limit Value
+ , !- Upper Limit Value
+ Continuous, !- Numeric Type
+ ClothingInsulation; !- Unit Type
+
+OS:Schedule:Ruleset,
+ {be7c18ee-b179-4be1-bfe1-f53cb7cb4929}, !- Handle
+ Air Velocity Schedule, !- Name
+ {3143140e-acca-42b6-b979-89e20a8bd33e}, !- Schedule Type Limits Name
+ {69a57694-cf56-4827-b49a-a48a97f4f746}; !- Default Day Schedule Name
+
+OS:Schedule:Day,
+ {69a57694-cf56-4827-b49a-a48a97f4f746}, !- Handle
+ Air Velocity Schedule Default, !- Name
+ {3143140e-acca-42b6-b979-89e20a8bd33e}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 0.2; !- Value Until Time 1
+
+OS:ScheduleTypeLimits,
+ {3143140e-acca-42b6-b979-89e20a8bd33e}, !- Handle
+ Velocity, !- Name
+ 0, !- Lower Limit Value
+ , !- Upper Limit Value
+ Continuous, !- Numeric Type
+ Velocity; !- Unit Type
+
+OS:Schedule:Ruleset,
+ {aec93a38-365e-4bbb-913e-1665f358a2dc}, !- Handle
+ Work Efficiency Schedule, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ {2ed19a06-2b81-49e2-895a-b0faf9183bcf}; !- Default Day Schedule Name
+
+OS:Schedule:Day,
+ {2ed19a06-2b81-49e2-895a-b0faf9183bcf}, !- Handle
+ Work Efficiency Schedule Default, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 0; !- Value Until Time 1
+
+OS:Lights:Definition,
+ {f23b6d4a-5c04-4ea6-bb04-6fc4c45f5db2}, !- Handle
+ Office WholeBuilding - Sm Office Lights Definition, !- Name
+ Watts/Area, !- Design Level Calculation Method
+ , !- Lighting Level {W}
+ 8.82640654170197, !- Watts per Space Floor Area {W/m2}
+ , !- Watts per Person {W/person}
+ 0.7, !- Fraction Radiant
+ 0.2; !- Fraction Visible
+
+OS:Lights,
+ {bbf996f3-4cee-4137-bd55-e7d62c9e5160}, !- Handle
+ Office WholeBuilding - Sm Office Lights, !- Name
+ {f23b6d4a-5c04-4ea6-bb04-6fc4c45f5db2}, !- Lights Definition Name
+ {629a271e-7460-4c51-87d3-d2d3125cfac1}, !- Space or SpaceType Name
+ , !- Schedule Name
+ 1, !- Fraction Replaceable
+ , !- Multiplier
+ General; !- End-Use Subcategory
+
+OS:ElectricEquipment:Definition,
+ {7b0ff6cf-6cb1-4643-bfa7-afb1ab990652}, !- Handle
+ Office WholeBuilding - Sm Office Elec Equip Definition, !- Name
+ Watts/Area, !- Design Level Calculation Method
+ , !- Design Level {W}
+ 6.78126356252712, !- Watts per Space Floor Area {W/m2}
+ ; !- Watts per Person {W/person}
+
+OS:ElectricEquipment,
+ {42270f41-5ab1-484a-b5ee-5e9c2e91b492}, !- Handle
+ Office WholeBuilding - Sm Office Elec Equip, !- Name
+ {7b0ff6cf-6cb1-4643-bfa7-afb1ab990652}, !- Electric Equipment Definition Name
+ {629a271e-7460-4c51-87d3-d2d3125cfac1}, !- Space or SpaceType Name
+ , !- Schedule Name
+ , !- Multiplier
+ General; !- End-Use Subcategory
+
+OS:DesignSpecification:OutdoorAir,
+ {e6dfb89d-c79f-4077-ae54-a56c9861f769}, !- Handle
+ Office WholeBuilding - Sm Office Ventilation, !- Name
+ Sum, !- Outdoor Air Method
+ 0, !- Outdoor Air Flow per Person {m3/s-person}
+ 0.0004318, !- Outdoor Air Flow per Floor Area {m3/s-m2}
+ 0, !- Outdoor Air Flow Rate {m3/s}
+ 0, !- Outdoor Air Flow Air Changes per Hour {1/hr}
+ ; !- Outdoor Air Flow Rate Fraction Schedule Name
+
+OS:DefaultScheduleSet,
+ {9dc4e963-eaf9-4f02-9731-8aeda2294db4}, !- Handle
+ Office WholeBuilding - Sm Office Schedule Set, !- Name
+ , !- Hours of Operation Schedule Name
+ {e7ccc403-db4a-44c7-a102-16180f0ba854}, !- Number of People Schedule Name
+ {6ae7c6d5-275f-4ba7-9e4b-76a1cb8ad97e}, !- People Activity Level Schedule Name
+ {3e2fc2f6-24f9-4710-b4c0-210fd3bbf695}, !- Lighting Schedule Name
+ {8ead7c67-f361-462f-954d-b4d73a49a795}, !- Electric Equipment Schedule Name
+ , !- Gas Equipment Schedule Name
+ , !- Hot Water Equipment Schedule Name
+ {a360263d-aeda-4f75-bafa-3da4772922a8}, !- Infiltration Schedule Name
+ , !- Steam Equipment Schedule Name
+ ; !- Other Equipment Schedule Name
+
+OS:Schedule:Ruleset,
+ {e7ccc403-db4a-44c7-a102-16180f0ba854}, !- Handle
+ OfficeSmall BLDG_OCC_SCH, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ {5e77fde5-bbf8-441d-9aac-ca96bbf529c7}, !- Default Day Schedule Name
+ {dad63d4c-600c-4508-ae3e-c12682204df3}, !- Summer Design Day Schedule Name
+ {61f0e8a0-ef9b-450c-981c-96d62a892d80}; !- Winter Design Day Schedule Name
+
+OS:Schedule:Day,
+ {5e77fde5-bbf8-441d-9aac-ca96bbf529c7}, !- Handle
+ OfficeSmall BLDG_OCC_SCH Default, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 0; !- Value Until Time 1
+
+OS:Schedule:Day,
+ {61f0e8a0-ef9b-450c-981c-96d62a892d80}, !- Handle
+ OfficeSmall BLDG_OCC_SCH Winter Design Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 0; !- Value Until Time 1
+
+OS:Schedule:Day,
+ {dad63d4c-600c-4508-ae3e-c12682204df3}, !- Handle
+ OfficeSmall BLDG_OCC_SCH Summer Design Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 1; !- Value Until Time 1
+
+OS:Schedule:Rule,
+ {f8d8be8c-489b-4bba-b728-5f33c5b793b9}, !- Handle
+ Schedule Rule 4, !- Name
+ {e7ccc403-db4a-44c7-a102-16180f0ba854}, !- Schedule Ruleset Name
+ 0, !- Rule Order
+ {404d6e07-bec4-4a35-b78d-48d15a995946}, !- Day Schedule Name
+ , !- Apply Sunday
+ Yes, !- Apply Monday
+ Yes, !- Apply Tuesday
+ Yes, !- Apply Wednesday
+ Yes, !- Apply Thursday
+ Yes, !- Apply Friday
+ , !- Apply Saturday
+ , !- Apply Holiday
+ DateRange, !- Date Specification Type
+ 1, !- Start Month
+ 1, !- Start Day
+ 12, !- End Month
+ 31; !- End Day
+
+OS:Schedule:Day,
+ {404d6e07-bec4-4a35-b78d-48d15a995946}, !- Handle
+ OfficeSmall BLDG_OCC_SCH Wkdy Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 6, !- Hour 1
+ 0, !- Minute 1
+ 0, !- Value Until Time 1
+ 7, !- Hour 2
+ 0, !- Minute 2
+ 0.11, !- Value Until Time 2
+ 8, !- Hour 3
+ 0, !- Minute 3
+ 0.21, !- Value Until Time 3
+ 12, !- Hour 4
+ 0, !- Minute 4
+ 1, !- Value Until Time 4
+ 13, !- Hour 5
+ 0, !- Minute 5
+ 0.53, !- Value Until Time 5
+ 17, !- Hour 6
+ 0, !- Minute 6
+ 1, !- Value Until Time 6
+ 18, !- Hour 7
+ 0, !- Minute 7
+ 0.32, !- Value Until Time 7
+ 22, !- Hour 8
+ 0, !- Minute 8
+ 0.11, !- Value Until Time 8
+ 23, !- Hour 9
+ 0, !- Minute 9
+ 0.05, !- Value Until Time 9
+ 24, !- Hour 10
+ 0, !- Minute 10
+ 0; !- Value Until Time 10
+
+OS:Schedule:Ruleset,
+ {6ae7c6d5-275f-4ba7-9e4b-76a1cb8ad97e}, !- Handle
+ OfficeSmall ACTIVITY_SCH, !- Name
+ {8104ed65-ad94-4bee-a008-208d5952ea9a}, !- Schedule Type Limits Name
+ {35693924-338f-4812-9508-bc2c2320acaa}, !- Default Day Schedule Name
+ {380cbff0-f2e7-4255-adcd-41598c6c24e2}, !- Summer Design Day Schedule Name
+ {553e287a-9d5b-40c8-abf8-f2f4a8acf6d2}; !- Winter Design Day Schedule Name
+
+OS:Schedule:Day,
+ {35693924-338f-4812-9508-bc2c2320acaa}, !- Handle
+ OfficeSmall ACTIVITY_SCH Default, !- Name
+ {8104ed65-ad94-4bee-a008-208d5952ea9a}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 120; !- Value Until Time 1
+
+OS:Schedule:Day,
+ {553e287a-9d5b-40c8-abf8-f2f4a8acf6d2}, !- Handle
+ OfficeSmall ACTIVITY_SCH Winter Design Day, !- Name
+ {8104ed65-ad94-4bee-a008-208d5952ea9a}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 120; !- Value Until Time 1
+
+OS:Schedule:Day,
+ {380cbff0-f2e7-4255-adcd-41598c6c24e2}, !- Handle
+ OfficeSmall ACTIVITY_SCH Summer Design Day, !- Name
+ {8104ed65-ad94-4bee-a008-208d5952ea9a}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 120; !- Value Until Time 1
+
+OS:ScheduleTypeLimits,
+ {8104ed65-ad94-4bee-a008-208d5952ea9a}, !- Handle
+ ActivityLevel, !- Name
+ 0, !- Lower Limit Value
+ , !- Upper Limit Value
+ Continuous, !- Numeric Type
+ ActivityLevel; !- Unit Type
+
+OS:Schedule:Ruleset,
+ {3e2fc2f6-24f9-4710-b4c0-210fd3bbf695}, !- Handle
+ OfficeSmall BLDG_LIGHT_SCH_2013, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ {ab38070c-332c-4bfa-9795-324d18932f1a}, !- Default Day Schedule Name
+ {545bd10a-e06f-4b37-87fb-097c62bc50e4}, !- Summer Design Day Schedule Name
+ {035b3de6-a57c-4b7d-ad65-f8313ba5b5e8}; !- Winter Design Day Schedule Name
+
+OS:Schedule:Day,
+ {ab38070c-332c-4bfa-9795-324d18932f1a}, !- Handle
+ OfficeSmall BLDG_LIGHT_SCH_2013 Default, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 5, !- Hour 1
+ 0, !- Minute 1
+ 0.18, !- Value Until Time 1
+ 6, !- Hour 2
+ 0, !- Minute 2
+ 0.23, !- Value Until Time 2
+ 7, !- Hour 3
+ 0, !- Minute 3
+ 0.178641345, !- Value Until Time 3
+ 8, !- Hour 4
+ 0, !- Minute 4
+ 0.32621463, !- Value Until Time 4
+ 12, !- Hour 5
+ 0, !- Minute 5
+ 0.69903135, !- Value Until Time 5
+ 13, !- Hour 6
+ 0, !- Minute 6
+ 0.6213612, !- Value Until Time 6
+ 17, !- Hour 7
+ 0, !- Minute 7
+ 0.69903135, !- Value Until Time 7
+ 18, !- Hour 8
+ 0, !- Minute 8
+ 0.473787915, !- Value Until Time 8
+ 20, !- Hour 9
+ 0, !- Minute 9
+ 0.32621463, !- Value Until Time 9
+ 22, !- Hour 10
+ 0, !- Minute 10
+ 0.24854448, !- Value Until Time 10
+ 23, !- Hour 11
+ 0, !- Minute 11
+ 0.178641345, !- Value Until Time 11
+ 24, !- Hour 12
+ 0, !- Minute 12
+ 0.18; !- Value Until Time 12
+
+OS:Schedule:Rule,
+ {e5137793-6155-4f38-b9ac-67faf4cb228c}, !- Handle
+ Schedule Rule 5, !- Name
+ {3e2fc2f6-24f9-4710-b4c0-210fd3bbf695}, !- Schedule Ruleset Name
+ 1, !- Rule Order
+ {4406b98b-31bd-4dc2-a658-13bcf3846951}, !- Day Schedule Name
+ , !- Apply Sunday
+ Yes, !- Apply Monday
+ Yes, !- Apply Tuesday
+ Yes, !- Apply Wednesday
+ Yes, !- Apply Thursday
+ Yes, !- Apply Friday
+ , !- Apply Saturday
+ , !- Apply Holiday
+ DateRange, !- Date Specification Type
+ 1, !- Start Month
+ 1, !- Start Day
+ 12, !- End Month
+ 31; !- End Day
+
+OS:Schedule:Day,
+ {4406b98b-31bd-4dc2-a658-13bcf3846951}, !- Handle
+ OfficeSmall BLDG_LIGHT_SCH_2013 Default Wkdy Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 5, !- Hour 1
+ 0, !- Minute 1
+ 0.18, !- Value Until Time 1
+ 6, !- Hour 2
+ 0, !- Minute 2
+ 0.23, !- Value Until Time 2
+ 7, !- Hour 3
+ 0, !- Minute 3
+ 0.178641345, !- Value Until Time 3
+ 8, !- Hour 4
+ 0, !- Minute 4
+ 0.32621463, !- Value Until Time 4
+ 12, !- Hour 5
+ 0, !- Minute 5
+ 0.69903135, !- Value Until Time 5
+ 13, !- Hour 6
+ 0, !- Minute 6
+ 0.6213612, !- Value Until Time 6
+ 17, !- Hour 7
+ 0, !- Minute 7
+ 0.69903135, !- Value Until Time 7
+ 18, !- Hour 8
+ 0, !- Minute 8
+ 0.473787915, !- Value Until Time 8
+ 20, !- Hour 9
+ 0, !- Minute 9
+ 0.32621463, !- Value Until Time 9
+ 22, !- Hour 10
+ 0, !- Minute 10
+ 0.24854448, !- Value Until Time 10
+ 23, !- Hour 11
+ 0, !- Minute 11
+ 0.178641345, !- Value Until Time 11
+ 24, !- Hour 12
+ 0, !- Minute 12
+ 0.18; !- Value Until Time 12
+
+OS:Schedule:Day,
+ {545bd10a-e06f-4b37-87fb-097c62bc50e4}, !- Handle
+ OfficeSmall BLDG_LIGHT_SCH_2013 Summer Design Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 1; !- Value Until Time 1
+
+OS:Schedule:Rule,
+ {c9c872b7-a3e2-4684-88a1-a3f527bd2637}, !- Handle
+ Schedule Rule 6, !- Name
+ {3e2fc2f6-24f9-4710-b4c0-210fd3bbf695}, !- Schedule Ruleset Name
+ 0, !- Rule Order
+ {b08a7022-e154-434e-8d52-2c9017c4d21b}, !- Day Schedule Name
+ Yes, !- Apply Sunday
+ , !- Apply Monday
+ , !- Apply Tuesday
+ , !- Apply Wednesday
+ , !- Apply Thursday
+ , !- Apply Friday
+ Yes, !- Apply Saturday
+ , !- Apply Holiday
+ DateRange, !- Date Specification Type
+ 1, !- Start Month
+ 1, !- Start Day
+ 12, !- End Month
+ 31; !- End Day
+
+OS:Schedule:Day,
+ {b08a7022-e154-434e-8d52-2c9017c4d21b}, !- Handle
+ OfficeSmall BLDG_LIGHT_SCH_2013 Wknd Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 0.18; !- Value Until Time 1
+
+OS:Schedule:Day,
+ {035b3de6-a57c-4b7d-ad65-f8313ba5b5e8}, !- Handle
+ OfficeSmall BLDG_LIGHT_SCH_2013 Winter Design Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 0; !- Value Until Time 1
+
+OS:Schedule:Ruleset,
+ {8ead7c67-f361-462f-954d-b4d73a49a795}, !- Handle
+ OfficeSmall BLDG_EQUIP_SCH_2013, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ {c15b6451-113d-471a-baf9-619b6926d762}, !- Default Day Schedule Name
+ {f5a2c526-e37f-4e47-b8da-7eff487c655d}, !- Summer Design Day Schedule Name
+ {b108ab75-a9da-4117-881e-5f51cdbf9445}; !- Winter Design Day Schedule Name
+
+OS:Schedule:Day,
+ {c15b6451-113d-471a-baf9-619b6926d762}, !- Handle
+ OfficeSmall BLDG_EQUIP_SCH_2013 Default, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 6, !- Hour 1
+ 0, !- Minute 1
+ 0.4094775565, !- Value Until Time 1
+ 8, !- Hour 2
+ 0, !- Minute 2
+ 0.4797526335, !- Value Until Time 2
+ 12, !- Hour 3
+ 0, !- Minute 3
+ 0.959505267, !- Value Until Time 3
+ 13, !- Hour 4
+ 0, !- Minute 4
+ 0.90193495098, !- Value Until Time 4
+ 17, !- Hour 5
+ 0, !- Minute 5
+ 0.959505267, !- Value Until Time 5
+ 18, !- Hour 6
+ 0, !- Minute 6
+ 0.4797526335, !- Value Until Time 6
+ 23, !- Hour 7
+ 0, !- Minute 7
+ 0.1919010534, !- Value Until Time 7
+ 24, !- Hour 8
+ 0, !- Minute 8
+ 0.163791022; !- Value Until Time 8
+
+OS:Schedule:Rule,
+ {a1898d48-f090-4d81-a26e-0ab049abe955}, !- Handle
+ Schedule Rule 7, !- Name
+ {8ead7c67-f361-462f-954d-b4d73a49a795}, !- Schedule Ruleset Name
+ 1, !- Rule Order
+ {337306e3-b404-4a68-bc99-79afe05dcf30}, !- Day Schedule Name
+ , !- Apply Sunday
+ Yes, !- Apply Monday
+ Yes, !- Apply Tuesday
+ Yes, !- Apply Wednesday
+ Yes, !- Apply Thursday
+ Yes, !- Apply Friday
+ , !- Apply Saturday
+ , !- Apply Holiday
+ DateRange, !- Date Specification Type
+ 1, !- Start Month
+ 1, !- Start Day
+ 12, !- End Month
+ 31; !- End Day
+
+OS:Schedule:Day,
+ {337306e3-b404-4a68-bc99-79afe05dcf30}, !- Handle
+ OfficeSmall BLDG_EQUIP_SCH_2013 Default Wkdy Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 6, !- Hour 1
+ 0, !- Minute 1
+ 0.4094775565, !- Value Until Time 1
+ 8, !- Hour 2
+ 0, !- Minute 2
+ 0.4797526335, !- Value Until Time 2
+ 12, !- Hour 3
+ 0, !- Minute 3
+ 0.959505267, !- Value Until Time 3
+ 13, !- Hour 4
+ 0, !- Minute 4
+ 0.90193495098, !- Value Until Time 4
+ 17, !- Hour 5
+ 0, !- Minute 5
+ 0.959505267, !- Value Until Time 5
+ 18, !- Hour 6
+ 0, !- Minute 6
+ 0.4797526335, !- Value Until Time 6
+ 23, !- Hour 7
+ 0, !- Minute 7
+ 0.1919010534, !- Value Until Time 7
+ 24, !- Hour 8
+ 0, !- Minute 8
+ 0.163791022; !- Value Until Time 8
+
+OS:Schedule:Day,
+ {f5a2c526-e37f-4e47-b8da-7eff487c655d}, !- Handle
+ OfficeSmall BLDG_EQUIP_SCH_2013 Summer Design Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 1; !- Value Until Time 1
+
+OS:Schedule:Rule,
+ {079a9612-2149-45f3-b8fb-d21c1c73c27a}, !- Handle
+ Schedule Rule 8, !- Name
+ {8ead7c67-f361-462f-954d-b4d73a49a795}, !- Schedule Ruleset Name
+ 0, !- Rule Order
+ {45eef2c0-77a8-41a1-b042-1fbffddf69e0}, !- Day Schedule Name
+ Yes, !- Apply Sunday
+ , !- Apply Monday
+ , !- Apply Tuesday
+ , !- Apply Wednesday
+ , !- Apply Thursday
+ , !- Apply Friday
+ Yes, !- Apply Saturday
+ , !- Apply Holiday
+ DateRange, !- Date Specification Type
+ 1, !- Start Month
+ 1, !- Start Day
+ 12, !- End Month
+ 31; !- End Day
+
+OS:Schedule:Day,
+ {45eef2c0-77a8-41a1-b042-1fbffddf69e0}, !- Handle
+ OfficeSmall BLDG_EQUIP_SCH_2013 Wknd Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 0.1637910226; !- Value Until Time 1
+
+OS:Schedule:Day,
+ {b108ab75-a9da-4117-881e-5f51cdbf9445}, !- Handle
+ OfficeSmall BLDG_EQUIP_SCH_2013 Winter Design Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 0; !- Value Until Time 1
+
+OS:Schedule:Ruleset,
+ {a360263d-aeda-4f75-bafa-3da4772922a8}, !- Handle
+ OfficeSmall INFIL_QUARTER_ON_SCH, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ {ba6a7c05-295f-4417-b227-2e3f0a7ee329}, !- Default Day Schedule Name
+ {707374c5-a1d0-45a4-91b7-d6ff2ed8d16e}, !- Summer Design Day Schedule Name
+ {d4cace85-ca92-4aeb-8260-ea9fa458c3ec}; !- Winter Design Day Schedule Name
+
+OS:Schedule:Day,
+ {ba6a7c05-295f-4417-b227-2e3f0a7ee329}, !- Handle
+ OfficeSmall INFIL_QUARTER_ON_SCH Default, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 1; !- Value Until Time 1
+
+OS:Schedule:Day,
+ {707374c5-a1d0-45a4-91b7-d6ff2ed8d16e}, !- Handle
+ OfficeSmall INFIL_QUARTER_ON_SCH Summer Design Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 7, !- Hour 1
+ 0, !- Minute 1
+ 1, !- Value Until Time 1
+ 19, !- Hour 2
+ 0, !- Minute 2
+ 0.25, !- Value Until Time 2
+ 24, !- Hour 3
+ 0, !- Minute 3
+ 1; !- Value Until Time 3
+
+OS:Schedule:Rule,
+ {52766bae-17e7-4402-8231-b0430db6bb52}, !- Handle
+ Schedule Rule 9, !- Name
+ {a360263d-aeda-4f75-bafa-3da4772922a8}, !- Schedule Ruleset Name
+ 1, !- Rule Order
+ {fc01d6fc-d969-44d1-a67c-a9ff3e5b6cd6}, !- Day Schedule Name
+ , !- Apply Sunday
+ Yes, !- Apply Monday
+ Yes, !- Apply Tuesday
+ Yes, !- Apply Wednesday
+ Yes, !- Apply Thursday
+ Yes, !- Apply Friday
+ , !- Apply Saturday
+ , !- Apply Holiday
+ DateRange, !- Date Specification Type
+ 1, !- Start Month
+ 1, !- Start Day
+ 12, !- End Month
+ 31; !- End Day
+
+OS:Schedule:Day,
+ {fc01d6fc-d969-44d1-a67c-a9ff3e5b6cd6}, !- Handle
+ OfficeSmall INFIL_QUARTER_ON_SCH SmrDsn Wkdy Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 7, !- Hour 1
+ 0, !- Minute 1
+ 1, !- Value Until Time 1
+ 19, !- Hour 2
+ 0, !- Minute 2
+ 0.25, !- Value Until Time 2
+ 24, !- Hour 3
+ 0, !- Minute 3
+ 1; !- Value Until Time 3
+
+OS:Schedule:Day,
+ {d4cace85-ca92-4aeb-8260-ea9fa458c3ec}, !- Handle
+ OfficeSmall INFIL_QUARTER_ON_SCH Winter Design Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 7, !- Hour 1
+ 0, !- Minute 1
+ 1, !- Value Until Time 1
+ 18, !- Hour 2
+ 0, !- Minute 2
+ 0.25, !- Value Until Time 2
+ 24, !- Hour 3
+ 0, !- Minute 3
+ 1; !- Value Until Time 3
+
+OS:Schedule:Rule,
+ {724f72fd-20c3-4c46-bf63-6c95bcdbae4e}, !- Handle
+ Schedule Rule 10, !- Name
+ {a360263d-aeda-4f75-bafa-3da4772922a8}, !- Schedule Ruleset Name
+ 0, !- Rule Order
+ {3a15d0a5-3713-4a26-b0e9-1769737d7390}, !- Day Schedule Name
+ , !- Apply Sunday
+ , !- Apply Monday
+ , !- Apply Tuesday
+ , !- Apply Wednesday
+ , !- Apply Thursday
+ , !- Apply Friday
+ Yes, !- Apply Saturday
+ , !- Apply Holiday
+ DateRange, !- Date Specification Type
+ 1, !- Start Month
+ 1, !- Start Day
+ 12, !- End Month
+ 31; !- End Day
+
+OS:Schedule:Day,
+ {3a15d0a5-3713-4a26-b0e9-1769737d7390}, !- Handle
+ OfficeSmall INFIL_QUARTER_ON_SCH WntrDsn Sat Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 7, !- Hour 1
+ 0, !- Minute 1
+ 1, !- Value Until Time 1
+ 18, !- Hour 2
+ 0, !- Minute 2
+ 0.25, !- Value Until Time 2
+ 24, !- Hour 3
+ 0, !- Minute 3
+ 1; !- Value Until Time 3
+
+OS:ThermostatSetpoint:DualSetpoint,
+ {25d4bc1b-3e28-44db-a022-9e0d435e9b38}, !- Handle
+ Office WholeBuilding - Sm Office Thermostat, !- Name
+ {706f2bd2-54aa-4a93-85dc-82a98ce2b46c}, !- Heating Setpoint Temperature Schedule Name
+ {4636603a-6678-47b5-9691-213155abb876}; !- Cooling Setpoint Temperature Schedule Name
+
+OS:Schedule:Ruleset,
+ {706f2bd2-54aa-4a93-85dc-82a98ce2b46c}, !- Handle
+ OfficeSmall HTGSETP_SCH_NO_OPTIMUM, !- Name
+ {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name
+ {31614d21-10b7-4980-9ee4-576068f2fac5}, !- Default Day Schedule Name
+ {0888b612-d347-4524-b9e8-455ae925676e}, !- Summer Design Day Schedule Name
+ {772db231-eb39-41fa-b99f-07e70a0a1dd6}; !- Winter Design Day Schedule Name
+
+OS:Schedule:Day,
+ {31614d21-10b7-4980-9ee4-576068f2fac5}, !- Handle
+ OfficeSmall HTGSETP_SCH_NO_OPTIMUM Default, !- Name
+ {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 15.56; !- Value Until Time 1
+
+OS:Schedule:Day,
+ {0888b612-d347-4524-b9e8-455ae925676e}, !- Handle
+ OfficeSmall HTGSETP_SCH_NO_OPTIMUM Summer Design Day, !- Name
+ {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 15.56; !- Value Until Time 1
+
+OS:Schedule:Rule,
+ {920ed06a-b082-4798-8224-fcac66decf11}, !- Handle
+ Schedule Rule 11, !- Name
+ {706f2bd2-54aa-4a93-85dc-82a98ce2b46c}, !- Schedule Ruleset Name
+ 0, !- Rule Order
+ {a27f0771-908c-4832-85ee-6da06dd0d7db}, !- Day Schedule Name
+ , !- Apply Sunday
+ Yes, !- Apply Monday
+ Yes, !- Apply Tuesday
+ Yes, !- Apply Wednesday
+ Yes, !- Apply Thursday
+ Yes, !- Apply Friday
+ , !- Apply Saturday
+ , !- Apply Holiday
+ DateRange, !- Date Specification Type
+ 1, !- Start Month
+ 1, !- Start Day
+ 12, !- End Month
+ 31; !- End Day
+
+OS:Schedule:Day,
+ {a27f0771-908c-4832-85ee-6da06dd0d7db}, !- Handle
+ OfficeSmall HTGSETP_SCH_NO_OPTIMUM Wkdy Day, !- Name
+ {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 6, !- Hour 1
+ 0, !- Minute 1
+ 15.56, !- Value Until Time 1
+ 19, !- Hour 2
+ 0, !- Minute 2
+ 21.11, !- Value Until Time 2
+ 24, !- Hour 3
+ 0, !- Minute 3
+ 15.56; !- Value Until Time 3
+
+OS:Schedule:Day,
+ {772db231-eb39-41fa-b99f-07e70a0a1dd6}, !- Handle
+ OfficeSmall HTGSETP_SCH_NO_OPTIMUM Winter Design Day, !- Name
+ {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 21.11; !- Value Until Time 1
+
+OS:ScheduleTypeLimits,
+ {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Handle
+ Temperature, !- Name
+ , !- Lower Limit Value
+ , !- Upper Limit Value
+ Continuous, !- Numeric Type
+ Temperature; !- Unit Type
+
+OS:Schedule:Ruleset,
+ {4636603a-6678-47b5-9691-213155abb876}, !- Handle
+ OfficeSmall CLGSETP_SCH_NO_OPTIMUM, !- Name
+ {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name
+ {eed4a8a2-a1a9-43d9-9c5b-3f244a818663}, !- Default Day Schedule Name
+ {323fee06-642b-4b0a-91f7-f214c4706d0f}, !- Summer Design Day Schedule Name
+ {6785e2dd-eeda-4d98-bbf4-26357d318b29}; !- Winter Design Day Schedule Name
+
+OS:Schedule:Day,
+ {eed4a8a2-a1a9-43d9-9c5b-3f244a818663}, !- Handle
+ OfficeSmall CLGSETP_SCH_NO_OPTIMUM Default, !- Name
+ {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 29.44; !- Value Until Time 1
+
+OS:Schedule:Day,
+ {323fee06-642b-4b0a-91f7-f214c4706d0f}, !- Handle
+ OfficeSmall CLGSETP_SCH_NO_OPTIMUM Summer Design Day, !- Name
+ {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 23.89; !- Value Until Time 1
+
+OS:Schedule:Rule,
+ {79acc6aa-c212-4d8d-80e2-5cbb92befc12}, !- Handle
+ Schedule Rule 12, !- Name
+ {4636603a-6678-47b5-9691-213155abb876}, !- Schedule Ruleset Name
+ 0, !- Rule Order
+ {b3de3f91-7fad-4d80-8753-398f4596f01a}, !- Day Schedule Name
+ , !- Apply Sunday
+ Yes, !- Apply Monday
+ Yes, !- Apply Tuesday
+ Yes, !- Apply Wednesday
+ Yes, !- Apply Thursday
+ Yes, !- Apply Friday
+ , !- Apply Saturday
+ , !- Apply Holiday
+ DateRange, !- Date Specification Type
+ 1, !- Start Month
+ 1, !- Start Day
+ 12, !- End Month
+ 31; !- End Day
+
+OS:Schedule:Day,
+ {b3de3f91-7fad-4d80-8753-398f4596f01a}, !- Handle
+ OfficeSmall CLGSETP_SCH_NO_OPTIMUM Wkdy Day, !- Name
+ {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 6, !- Hour 1
+ 0, !- Minute 1
+ 29.44, !- Value Until Time 1
+ 18, !- Hour 2
+ 0, !- Minute 2
+ 23.89, !- Value Until Time 2
+ 24, !- Hour 3
+ 0, !- Minute 3
+ 29.44; !- Value Until Time 3
+
+OS:Schedule:Day,
+ {6785e2dd-eeda-4d98-bbf4-26357d318b29}, !- Handle
+ OfficeSmall CLGSETP_SCH_NO_OPTIMUM Winter Design Day, !- Name
+ {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 29.44; !- Value Until Time 1
+
+OS:SpaceInfiltration:DesignFlowRate,
+ {2b6b3334-68f2-46f2-8545-78c9f21690df}, !- Handle
+ Perimeter_ZN_1 Infiltration, !- Name
+ {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space or SpaceType Name
+ {a360263d-aeda-4f75-bafa-3da4772922a8}, !- Schedule Name
+ Flow/ExteriorArea, !- Design Flow Rate Calculation Method
+ , !- Design Flow Rate {m3/s}
+ , !- Flow per Space Floor Area {m3/s-m2}
+ 0.000569573389606515, !- Flow per Exterior Surface Area {m3/s-m2}
+ , !- Air Changes per Hour {1/hr}
+ 0, !- Constant Term Coefficient
+ 0, !- Temperature Term Coefficient
+ 0.224, !- Velocity Term Coefficient
+ 0; !- Velocity Squared Term Coefficient
+
+OS:SpaceInfiltration:DesignFlowRate,
+ {ed54b4b2-6c52-4cfa-95c5-9c2884c2fa4d}, !- Handle
+ Perimeter_ZN_2 Infiltration, !- Name
+ {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Space or SpaceType Name
+ {a360263d-aeda-4f75-bafa-3da4772922a8}, !- Schedule Name
+ Flow/ExteriorArea, !- Design Flow Rate Calculation Method
+ , !- Design Flow Rate {m3/s}
+ , !- Flow per Space Floor Area {m3/s-m2}
+ 0.000569573389606516, !- Flow per Exterior Surface Area {m3/s-m2}
+ , !- Air Changes per Hour {1/hr}
+ 0, !- Constant Term Coefficient
+ 0, !- Temperature Term Coefficient
+ 0.224, !- Velocity Term Coefficient
+ 0; !- Velocity Squared Term Coefficient
+
+OS:SpaceInfiltration:DesignFlowRate,
+ {1f7fa6b2-7e03-4397-87cc-4b435a564c0e}, !- Handle
+ Perimeter_ZN_3 Infiltration, !- Name
+ {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Space or SpaceType Name
+ {a360263d-aeda-4f75-bafa-3da4772922a8}, !- Schedule Name
+ Flow/ExteriorArea, !- Design Flow Rate Calculation Method
+ , !- Design Flow Rate {m3/s}
+ , !- Flow per Space Floor Area {m3/s-m2}
+ 0.000569573389606516, !- Flow per Exterior Surface Area {m3/s-m2}
+ , !- Air Changes per Hour {1/hr}
+ 0, !- Constant Term Coefficient
+ 0, !- Temperature Term Coefficient
+ 0.224, !- Velocity Term Coefficient
+ 0; !- Velocity Squared Term Coefficient
+
+OS:SpaceInfiltration:DesignFlowRate,
+ {a1a09f6a-2638-4476-ba70-90ff2c4c4818}, !- Handle
+ Perimeter_ZN_4 Infiltration, !- Name
+ {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Space or SpaceType Name
+ {a360263d-aeda-4f75-bafa-3da4772922a8}, !- Schedule Name
+ Flow/ExteriorArea, !- Design Flow Rate Calculation Method
+ , !- Design Flow Rate {m3/s}
+ , !- Flow per Space Floor Area {m3/s-m2}
+ 0.000569573389606516, !- Flow per Exterior Surface Area {m3/s-m2}
+ , !- Air Changes per Hour {1/hr}
+ 0, !- Constant Term Coefficient
+ 0, !- Temperature Term Coefficient
+ 0.224, !- Velocity Term Coefficient
+ 0; !- Velocity Squared Term Coefficient
+
+OS:SurfaceConvectionAlgorithm:Inside,
+ {7a876238-be0d-4c77-bd5d-482bfe885e8a}, !- Handle
+ TARP; !- Algorithm
+
+OS:SurfaceConvectionAlgorithm:Outside,
+ {3ba87ecf-0049-4919-84b3-e75242187323}, !- Handle
+ TARP; !- Algorithm
+
+OS:Material:NoMass,
+ {8258d3ce-2d5b-4aab-a611-c03ef07500e5}, !- Handle
+ CP02 CARPET PAD, !- Name
+ VeryRough, !- Roughness
+ 0.21648, !- Thermal Resistance {m2-K/W}
+ 0.9, !- Thermal Absorptance
+ 0.7, !- Solar Absorptance
+ 0.8; !- Visible Absorptance
+
+OS:Material,
+ {2b07f62b-a057-4e96-84b1-c3044d2010e2}, !- Handle
+ 100mm Normalweight concrete floor, !- Name
+ MediumSmooth, !- Roughness
+ 0.1016, !- Thickness {m}
+ 2.31, !- Conductivity {W/m-K}
+ 2322, !- Density {kg/m3}
+ 832; !- Specific Heat {J/kg-K}
+
+OS:Material:NoMass,
+ {a7924022-c277-48c4-b630-0bac890ca27e}, !- Handle
+ Nonres_Floor_Insulation, !- Name
+ MediumSmooth, !- Roughness
+ 2.88291975297193, !- Thermal Resistance {m2-K/W}
+ 0.9, !- Thermal Absorptance
+ 0.7, !- Solar Absorptance
+ 0.7; !- Visible Absorptance
+
+OS:Material,
+ {f55c83df-b14b-4e7d-a5a7-5d3cb5773743}, !- Handle
+ G01 13mm gypsum board, !- Name
+ Smooth, !- Roughness
+ 0.0127, !- Thickness {m}
+ 0.16, !- Conductivity {W/m-K}
+ 800, !- Density {kg/m3}
+ 1090, !- Specific Heat {J/kg-K}
+ 0.9, !- Thermal Absorptance
+ 0.7, !- Solar Absorptance
+ 0.5; !- Visible Absorptance
+
+OS:Material,
+ {09a9a622-4334-475e-ad85-1053aa51e6b8}, !- Handle
+ M10 200mm concrete block basement wall, !- Name
+ MediumRough, !- Roughness
+ 0.2032, !- Thickness {m}
+ 1.326, !- Conductivity {W/m-K}
+ 1842, !- Density {kg/m3}
+ 912; !- Specific Heat {J/kg-K}
+
+OS:DefaultConstructionSet,
+ {43439ea6-b207-4356-ab36-b087c1b4dd53}, !- Handle
+ 90.1-2013 - SmOffice - ASHRAE 169-2006-5A, !- Name
+ {edaf5054-c05b-463b-81ad-4e31d2955970}, !- Default Exterior Surface Constructions Name
+ {0413e2e5-2b47-41a6-a29d-0f19cb17c0ea}, !- Default Interior Surface Constructions Name
+ {e08fbe7f-5641-4af4-ae17-3fabbb5e03b0}, !- Default Ground Contact Surface Constructions Name
+ {654846de-dd01-4acc-8f1c-5a85ad54e00e}, !- Default Exterior SubSurface Constructions Name
+ {596623c9-bf89-43c6-8d68-40455cc98389}, !- Default Interior SubSurface Constructions Name
+ {62dc41c8-486e-41f9-9982-bbec7364489c}, !- Interior Partition Construction Name
+ , !- Space Shading Construction Name
+ , !- Building Shading Construction Name
+ , !- Site Shading Construction Name
+ ; !- Adiabatic Surface Construction Name
+
+OS:DefaultSurfaceConstructions,
+ {edaf5054-c05b-463b-81ad-4e31d2955970}, !- Handle
+ Default Surface Constructions 1, !- Name
+ {f9442173-380c-4ab1-80d3-9d6982578b4b}, !- Floor Construction Name
+ {1429a5d1-b368-4f38-aee7-00d91d7217cc}, !- Wall Construction Name
+ {a8be2a61-33e1-4109-9fed-7d561df58731}; !- Roof Ceiling Construction Name
+
+OS:Construction,
+ {f9442173-380c-4ab1-80d3-9d6982578b4b}, !- Handle
+ Typical Insulated Exterior Mass Floor R-19.61, !- Name
+ {0eb72719-6e78-4c4e-bf1e-fd7da64cb80f}, !- Surface Rendering Name
+ {c66f70f4-f41c-4376-9141-4e9e10d378f6}, !- Layer 1
+ {b60ca716-1db7-4313-bb48-cb3db545021e}, !- Layer 2
+ {ba2c7d65-d8e5-4501-8734-3f0425d019d1}; !- Layer 3
+
+OS:StandardsInformation:Construction,
+ {481ebe91-3014-4880-be4d-a0aea8a0d847}, !- Handle
+ {f9442173-380c-4ab1-80d3-9d6982578b4b}, !- Construction Name
+ ExteriorFloor, !- Intended Surface Type
+ Mass; !- Standards Construction Type
+
+OS:Material:NoMass,
+ {c66f70f4-f41c-4376-9141-4e9e10d378f6}, !- Handle
+ Typical Insulation R-17.04, !- Name
+ Smooth, !- Roughness
+ 3.00071808532413, !- Thermal Resistance {m2-K/W}
+ 0.9, !- Thermal Absorptance
+ 0.7, !- Solar Absorptance
+ 0.7; !- Visible Absorptance
+
+OS:Material,
+ {b60ca716-1db7-4313-bb48-cb3db545021e}, !- Handle
+ 4 in. Normalweight Concrete Floor, !- Name
+ MediumRough, !- Roughness
+ 0.1016, !- Thickness {m}
+ 2.31, !- Conductivity {W/m-K}
+ 2321.99999999999, !- Density {kg/m3}
+ 831.999999999997, !- Specific Heat {J/kg-K}
+ 0.9, !- Thermal Absorptance
+ 0.7, !- Solar Absorptance
+ 0.7; !- Visible Absorptance
+
+OS:Material:NoMass,
+ {ba2c7d65-d8e5-4501-8734-3f0425d019d1}, !- Handle
+ Typical Carpet Pad, !- Name
+ Smooth, !- Roughness
+ 0.216479986995276, !- Thermal Resistance {m2-K/W}
+ 0.9, !- Thermal Absorptance
+ 0.7, !- Solar Absorptance
+ 0.8; !- Visible Absorptance
+
+OS:Construction,
+ {1429a5d1-b368-4f38-aee7-00d91d7217cc}, !- Handle
+ Typical Insulated Wood Framed Exterior Wall R-19.61, !- Name
+ {9519cb8f-4106-4dfb-b8b9-5ad2c7e88617}, !- Surface Rendering Name
+ {d35641ab-9739-409d-b777-ed1aa61f9d24}, !- Layer 1
+ {bbcd2525-b654-4ba5-a387-163a9738174b}, !- Layer 2
+ {6c2e9510-8383-419e-8208-7fcc6c168a5b}, !- Layer 3
+ {bbcd2525-b654-4ba5-a387-163a9738174b}; !- Layer 4
+
+OS:StandardsInformation:Construction,
+ {2c639462-6701-4ae2-b484-8cf519376461}, !- Handle
+ {1429a5d1-b368-4f38-aee7-00d91d7217cc}, !- Construction Name
+ ExteriorWall, !- Intended Surface Type
+ WoodFramed; !- Standards Construction Type
+
+OS:Material,
+ {d35641ab-9739-409d-b777-ed1aa61f9d24}, !- Handle
+ 25mm Stucco, !- Name
+ Smooth, !- Roughness
+ 0.0254, !- Thickness {m}
+ 0.719999999999999, !- Conductivity {W/m-K}
+ 1855.99999999999, !- Density {kg/m3}
+ 839.999999999997, !- Specific Heat {J/kg-K}
+ 0.9, !- Thermal Absorptance
+ 0.7, !- Solar Absorptance
+ 0.7; !- Visible Absorptance
+
+OS:Material,
+ {bbcd2525-b654-4ba5-a387-163a9738174b}, !- Handle
+ 5/8 in. Gypsum Board, !- Name
+ MediumSmooth, !- Roughness
+ 0.0159, !- Thickness {m}
+ 0.159999999999999, !- Conductivity {W/m-K}
+ 799.999999999999, !- Density {kg/m3}
+ 1090, !- Specific Heat {J/kg-K}
+ 0.9, !- Thermal Absorptance
+ 0.7, !- Solar Absorptance
+ 0.7; !- Visible Absorptance
+
+OS:Material:NoMass,
+ {6c2e9510-8383-419e-8208-7fcc6c168a5b}, !- Handle
+ Typical Insulation R-17.43, !- Name
+ Smooth, !- Roughness
+ 3.06941942260806, !- Thermal Resistance {m2-K/W}
+ 0.9, !- Thermal Absorptance
+ 0.7, !- Solar Absorptance
+ 0.7; !- Visible Absorptance
+
+OS:Construction,
+ {a8be2a61-33e1-4109-9fed-7d561df58731}, !- Handle
+ Typical Wood Joist Attic Floor R-47.62, !- Name
+ {cc8346ac-8b59-4ad5-b357-67214d44e4fe}, !- Surface Rendering Name
+ {bbcd2525-b654-4ba5-a387-163a9738174b}, !- Layer 1
+ {1e677f16-8b76-45d0-b73a-5c07aabb5659}; !- Layer 2
+
+OS:StandardsInformation:Construction,
+ {0562ae0e-dbf1-48e5-a227-9eb7c435c1b8}, !- Handle
+ {a8be2a61-33e1-4109-9fed-7d561df58731}, !- Construction Name
+ AtticFloor, !- Intended Surface Type
+ WoodFramed; !- Standards Construction Type
+
+OS:Material:NoMass,
+ {1e677f16-8b76-45d0-b73a-5c07aabb5659}, !- Handle
+ Typical Insulation R-45.98, !- Name
+ Smooth, !- Roughness
+ 8.09838632642688, !- Thermal Resistance {m2-K/W}
+ 0.9, !- Thermal Absorptance
+ 0.7, !- Solar Absorptance
+ 0.7; !- Visible Absorptance
+
+OS:DefaultSurfaceConstructions,
+ {0413e2e5-2b47-41a6-a29d-0f19cb17c0ea}, !- Handle
+ Default Surface Constructions 2, !- Name
+ {c169bfac-9474-437c-8523-50c0b9a4f1cd}, !- Floor Construction Name
+ {4d2040a3-87f5-459a-b429-e2ac4b2437ec}, !- Wall Construction Name
+ {ed623cfb-e3fe-4266-ad1b-09810eb4b6ff}; !- Roof Ceiling Construction Name
+
+OS:Construction,
+ {c169bfac-9474-437c-8523-50c0b9a4f1cd}, !- Handle
+ Typical Interior Floor, !- Name
+ {e140f18b-0726-4e7c-9d09-b04c9c6e66ae}, !- Surface Rendering Name
+ {2b07f62b-a057-4e96-84b1-c3044d2010e2}, !- Layer 1
+ {8258d3ce-2d5b-4aab-a611-c03ef07500e5}; !- Layer 2
+
+OS:StandardsInformation:Construction,
+ {3c6c70c7-7892-4d55-9911-eb53bdb9fc4b}, !- Handle
+ {c169bfac-9474-437c-8523-50c0b9a4f1cd}, !- Construction Name
+ InteriorFloor, !- Intended Surface Type
+ ; !- Standards Construction Type
+
+OS:Construction,
+ {4d2040a3-87f5-459a-b429-e2ac4b2437ec}, !- Handle
+ Typical Interior Wall, !- Name
+ {d4156f49-65c8-463e-80e2-4f97d2093a61}, !- Surface Rendering Name
+ {f55c83df-b14b-4e7d-a5a7-5d3cb5773743}, !- Layer 1
+ {f55c83df-b14b-4e7d-a5a7-5d3cb5773743}; !- Layer 2
+
+OS:StandardsInformation:Construction,
+ {80109ace-1da7-49bf-99d1-1b1b37094217}, !- Handle
+ {4d2040a3-87f5-459a-b429-e2ac4b2437ec}, !- Construction Name
+ InteriorWall, !- Intended Surface Type
+ ; !- Standards Construction Type
+
+OS:Construction,
+ {ed623cfb-e3fe-4266-ad1b-09810eb4b6ff}, !- Handle
+ Typical Interior Ceiling, !- Name
+ {34b78464-26b6-4806-8090-1d7cff3d0b35}, !- Surface Rendering Name
+ {8258d3ce-2d5b-4aab-a611-c03ef07500e5}, !- Layer 1
+ {2b07f62b-a057-4e96-84b1-c3044d2010e2}; !- Layer 2
+
+OS:StandardsInformation:Construction,
+ {c8f4011a-be0b-4be4-ab5f-61037d343dcf}, !- Handle
+ {ed623cfb-e3fe-4266-ad1b-09810eb4b6ff}, !- Construction Name
+ InteriorCeiling, !- Intended Surface Type
+ ; !- Standards Construction Type
+
+OS:DefaultSurfaceConstructions,
+ {e08fbe7f-5641-4af4-ae17-3fabbb5e03b0}, !- Handle
+ Default Surface Constructions 3, !- Name
+ {59ef7eca-d79b-4f97-ba97-9468a156e2c5}, !- Floor Construction Name
+ {558e5152-59e5-4e9e-9e56-1f2d39be1122}, !- Wall Construction Name
+ ; !- Roof Ceiling Construction Name
+
+OS:Construction,
+ {59ef7eca-d79b-4f97-ba97-9468a156e2c5}, !- Handle
+ Typical Insulated Carpeted 8in Slab Floor, !- Name
+ {af9c7b95-5abc-41d3-bef8-304fc144a613}, !- Surface Rendering Name
+ {469c7810-0b24-41df-b22f-a2bfe1485983}, !- Layer 1
+ {ba2c7d65-d8e5-4501-8734-3f0425d019d1}; !- Layer 2
+
+OS:StandardsInformation:Construction,
+ {960859d6-4943-410a-b9f5-696a039f27c7}, !- Handle
+ {59ef7eca-d79b-4f97-ba97-9468a156e2c5}, !- Construction Name
+ GroundContactFloor, !- Intended Surface Type
+ Mass; !- Standards Construction Type
+
+OS:Material:NoMass,
+ {c80eed9d-fe69-4e84-8abd-97a123639c47}, !- Handle
+ Typical Insulation R-1.15, !- Name
+ Smooth, !- Roughness
+ 0.202509043390129, !- Thermal Resistance {m2-K/W}
+ 0.9, !- Thermal Absorptance
+ 0.7, !- Solar Absorptance
+ 0.7; !- Visible Absorptance
+
+OS:Material,
+ {469c7810-0b24-41df-b22f-a2bfe1485983}, !- Handle
+ 8 in. Normalweight Concrete Floor, !- Name
+ MediumRough, !- Roughness
+ 0.2032, !- Thickness {m}
+ 2.31, !- Conductivity {W/m-K}
+ 2321.99999999999, !- Density {kg/m3}
+ 831.999999999997, !- Specific Heat {J/kg-K}
+ 0.9, !- Thermal Absorptance
+ 0.7, !- Solar Absorptance
+ 0.7; !- Visible Absorptance
+
+OS:Construction,
+ {558e5152-59e5-4e9e-9e56-1f2d39be1122}, !- Handle
+ Typical Insulated Basement Mass Wall, !- Name
+ {5bf5a1cf-9a10-4a77-b04f-a3b1c02a3c2d}, !- Surface Rendering Name
+ {81c6d30e-ff52-4f2e-9eee-17ff02a15841}; !- Layer 1
+
+OS:StandardsInformation:Construction,
+ {b4119094-d1d0-456d-91d2-16ed39732d46}, !- Handle
+ {558e5152-59e5-4e9e-9e56-1f2d39be1122}, !- Construction Name
+ GroundContactWall, !- Intended Surface Type
+ Mass; !- Standards Construction Type
+
+OS:Material,
+ {81c6d30e-ff52-4f2e-9eee-17ff02a15841}, !- Handle
+ 8 in. Concrete Block Basement Wall, !- Name
+ MediumRough, !- Roughness
+ 0.2032, !- Thickness {m}
+ 1.326, !- Conductivity {W/m-K}
+ 1841.99999999999, !- Density {kg/m3}
+ 911.999999999999, !- Specific Heat {J/kg-K}
+ 0.9, !- Thermal Absorptance
+ 0.7, !- Solar Absorptance
+ 0.7; !- Visible Absorptance
+
+OS:DefaultSubSurfaceConstructions,
+ {654846de-dd01-4acc-8f1c-5a85ad54e00e}, !- Handle
+ Default Sub Surface Constructions 1, !- Name
+ {5ffe9241-9c34-4a77-83c4-b52402ae2d4f}, !- Fixed Window Construction Name
+ {5ffe9241-9c34-4a77-83c4-b52402ae2d4f}, !- Operable Window Construction Name
+ {8d23af8b-9997-4410-b1da-981606998f47}, !- Door Construction Name
+ {573c04ff-59e5-4cee-8639-68659201f734}, !- Glass Door Construction Name
+ {2d16ade9-92ed-45cf-91dc-167914d438b3}, !- Overhead Door Construction Name
+ {89db0e08-1cd6-4806-aba2-d90fe900273a}, !- Skylight Construction Name
+ {8aa13b36-63e3-4093-8bf3-129da1390385}, !- Tubular Daylight Dome Construction Name
+ {8aa13b36-63e3-4093-8bf3-129da1390385}; !- Tubular Daylight Diffuser Construction Name
+
+OS:Construction,
+ {5ffe9241-9c34-4a77-83c4-b52402ae2d4f}, !- Handle
+ U 0.48 SHGC 0.40 Dbl Ref-D Clr 6mm/13mm, !- Name
+ {7c3bf8f6-a386-4373-b88d-ec9f1edf9d1f}, !- Surface Rendering Name
+ {80af6122-eb24-441d-a5a9-55555527f240}, !- Layer 1
+ {4244b4dd-5a35-467e-80fe-e38aaefc958b}, !- Layer 2
+ {2fb3c495-68c6-4e2b-895b-04bad2226747}; !- Layer 3
+
+OS:StandardsInformation:Construction,
+ {8e54a5b9-0bff-4f8e-93ac-ee976f8f7f19}, !- Handle
+ {5ffe9241-9c34-4a77-83c4-b52402ae2d4f}, !- Construction Name
+ ExteriorWindow, !- Intended Surface Type
+ Metal framing (all other), !- Standards Construction Type
+ , !- Perturbable Layer
+ , !- Perturbable Layer Type
+ , !- Other Perturbable Layer Type
+ , !- Construction Standard
+ , !- Construction Standard Source
+ , !- Fenestration Type
+ , !- Fenestration Assembly Context
+ , !- Fenestration Number of Panes
+ Metal Framing; !- Fenestration Frame Type
+
+OS:WindowMaterial:Glazing,
+ {80af6122-eb24-441d-a5a9-55555527f240}, !- Handle
+ REF D CLEAR 6MM, !- Name
+ SpectralAverage, !- Optical Data Type
+ , !- Window Glass Spectral Data Set Name
+ 0.00599999999999998, !- Thickness {m}
+ 0.429, !- Solar Transmittance at Normal Incidence
+ 0.308, !- Front Side Solar Reflectance at Normal Incidence
+ 0.379, !- Back Side Solar Reflectance at Normal Incidence
+ 0.334, !- Visible Transmittance at Normal Incidence
+ 0.453, !- Front Side Visible Reflectance at Normal Incidence
+ 0.505, !- Back Side Visible Reflectance at Normal Incidence
+ 0, !- Infrared Transmittance at Normal Incidence
+ 0.84, !- Front Side Infrared Hemispherical Emissivity
+ 0.82, !- Back Side Infrared Hemispherical Emissivity
+ 0.9, !- Conductivity {W/m-K}
+ 1, !- Dirt Correction Factor for Solar and Visible Transmittance
+ No; !- Solar Diffusing
+
+OS:WindowMaterial:Gas,
+ {4244b4dd-5a35-467e-80fe-e38aaefc958b}, !- Handle
+ AIR 13MM, !- Name
+ Air, !- Gas Type
+ 0.0127; !- Thickness {m}
+
+OS:WindowMaterial:Glazing,
+ {2fb3c495-68c6-4e2b-895b-04bad2226747}, !- Handle
+ CLEAR 6MM, !- Name
+ SpectralAverage, !- Optical Data Type
+ , !- Window Glass Spectral Data Set Name
+ 0.00599999999999998, !- Thickness {m}
+ 0.775, !- Solar Transmittance at Normal Incidence
+ 0.071, !- Front Side Solar Reflectance at Normal Incidence
+ 0.071, !- Back Side Solar Reflectance at Normal Incidence
+ 0.881, !- Visible Transmittance at Normal Incidence
+ 0.08, !- Front Side Visible Reflectance at Normal Incidence
+ 0.08, !- Back Side Visible Reflectance at Normal Incidence
+ 0, !- Infrared Transmittance at Normal Incidence
+ 0.84, !- Front Side Infrared Hemispherical Emissivity
+ 0.84, !- Back Side Infrared Hemispherical Emissivity
+ 0.9, !- Conductivity {W/m-K}
+ 1, !- Dirt Correction Factor for Solar and Visible Transmittance
+ No; !- Solar Diffusing
+
+OS:Construction,
+ {8d23af8b-9997-4410-b1da-981606998f47}, !- Handle
+ Typical Insulated Metal Door R-2.0, !- Name
+ {7f63c944-1f94-4c1f-9998-1974c22cb14c}, !- Surface Rendering Name
+ {1223b4ec-675d-45e9-a0dc-8fcc5bd972a6}, !- Layer 1
+ {c80eed9d-fe69-4e84-8abd-97a123639c47}; !- Layer 2
+
+OS:StandardsInformation:Construction,
+ {01e3b50e-a4f8-43f9-a194-7bf045380bcd}, !- Handle
+ {8d23af8b-9997-4410-b1da-981606998f47}, !- Construction Name
+ ExteriorDoor, !- Intended Surface Type
+ ; !- Standards Construction Type
+
+OS:Material,
+ {1223b4ec-675d-45e9-a0dc-8fcc5bd972a6}, !- Handle
+ F08 Metal surface, !- Name
+ Smooth, !- Roughness
+ 0.0008, !- Thickness {m}
+ 45.2800000000001, !- Conductivity {W/m-K}
+ 7823.99999999999, !- Density {kg/m3}
+ 500, !- Specific Heat {J/kg-K}
+ 0.9, !- Thermal Absorptance
+ 0.7, !- Solar Absorptance
+ 0.7; !- Visible Absorptance
+
+OS:Construction,
+ {573c04ff-59e5-4cee-8639-68659201f734}, !- Handle
+ U 0.44 SHGC 0.26 Dbl Ref-B-H Clr 6mm/13mm Air, !- Name
+ {28cf615c-acc2-492e-8cc0-57e309e9fff8}, !- Surface Rendering Name
+ {e5235694-4438-407b-bd79-b363a41ba3f1}, !- Layer 1
+ {4244b4dd-5a35-467e-80fe-e38aaefc958b}, !- Layer 2
+ {2fb3c495-68c6-4e2b-895b-04bad2226747}; !- Layer 3
+
+OS:StandardsInformation:Construction,
+ {56339b4f-6028-4083-a675-431f04a96128}, !- Handle
+ {573c04ff-59e5-4cee-8639-68659201f734}, !- Construction Name
+ ExteriorWindow, !- Intended Surface Type
+ Metal framing (all other), !- Standards Construction Type
+ , !- Perturbable Layer
+ , !- Perturbable Layer Type
+ , !- Other Perturbable Layer Type
+ , !- Construction Standard
+ , !- Construction Standard Source
+ , !- Fenestration Type
+ , !- Fenestration Assembly Context
+ , !- Fenestration Number of Panes
+ Metal Framing; !- Fenestration Frame Type
+
+OS:WindowMaterial:Glazing,
+ {e5235694-4438-407b-bd79-b363a41ba3f1}, !- Handle
+ REF B CLEAR HI 6MM, !- Name
+ SpectralAverage, !- Optical Data Type
+ , !- Window Glass Spectral Data Set Name
+ 0.00599999999999998, !- Thickness {m}
+ 0.24, !- Solar Transmittance at Normal Incidence
+ 0.16, !- Front Side Solar Reflectance at Normal Incidence
+ 0.32, !- Back Side Solar Reflectance at Normal Incidence
+ 0.3, !- Visible Transmittance at Normal Incidence
+ 0.16, !- Front Side Visible Reflectance at Normal Incidence
+ 0.29, !- Back Side Visible Reflectance at Normal Incidence
+ 0, !- Infrared Transmittance at Normal Incidence
+ 0.84, !- Front Side Infrared Hemispherical Emissivity
+ 0.6, !- Back Side Infrared Hemispherical Emissivity
+ 0.9, !- Conductivity {W/m-K}
+ 1, !- Dirt Correction Factor for Solar and Visible Transmittance
+ No; !- Solar Diffusing
+
+OS:Construction,
+ {2d16ade9-92ed-45cf-91dc-167914d438b3}, !- Handle
+ Typical Overhead Door R-2.0, !- Name
+ {82043cf7-cc71-401f-899c-e9cb0ad72a46}, !- Surface Rendering Name
+ {44fab86f-850a-4b6a-b793-fc592eb7c473}; !- Layer 1
+
+OS:StandardsInformation:Construction,
+ {90e54da4-2bb7-408b-bc5a-83ce31c25cfa}, !- Handle
+ {2d16ade9-92ed-45cf-91dc-167914d438b3}, !- Construction Name
+ ExteriorDoor, !- Intended Surface Type
+ RollUp; !- Standards Construction Type
+
+OS:Material:NoMass,
+ {44fab86f-850a-4b6a-b793-fc592eb7c473}, !- Handle
+ Typical Insulation R-1.15 1, !- Name
+ Smooth, !- Roughness
+ 0.202526711234652, !- Thermal Resistance {m2-K/W}
+ 0.9, !- Thermal Absorptance
+ 0.7, !- Solar Absorptance
+ 0.7; !- Visible Absorptance
+
+OS:Construction,
+ {89db0e08-1cd6-4806-aba2-d90fe900273a}, !- Handle
+ Window_U_0.50_SHGC_0.40_Skylight_Frame_Width_0.430_in, !- Name
+ {885f01f5-51d3-4835-9b28-91528bd98a7b}, !- Surface Rendering Name
+ {82a53b69-bec0-476e-b49a-0f3afa0405dc}, !- Layer 1
+ {9af2d285-0efd-4227-9d2b-c807fb4d34b6}, !- Layer 2
+ {965f3366-dbc1-41f7-a251-ee341c3dff1f}; !- Layer 3
+
+OS:StandardsInformation:Construction,
+ {3b236bca-cd72-4a1f-ae1d-94867e6fe2f8}, !- Handle
+ {89db0e08-1cd6-4806-aba2-d90fe900273a}, !- Construction Name
+ Skylight, !- Intended Surface Type
+ ; !- Standards Construction Type
+
+OS:WindowMaterial:Glazing,
+ {82a53b69-bec0-476e-b49a-0f3afa0405dc}, !- Handle
+ Glass_2052_LayerAvg, !- Name
+ SpectralAverage, !- Optical Data Type
+ , !- Window Glass Spectral Data Set Name
+ 0.00837, !- Thickness {m}
+ 0.507767, !- Solar Transmittance at Normal Incidence
+ 0.05422805, !- Front Side Solar Reflectance at Normal Incidence
+ 0.05449309, !- Back Side Solar Reflectance at Normal Incidence
+ 0.586833, !- Visible Transmittance at Normal Incidence
+ 0.05805, !- Front Side Visible Reflectance at Normal Incidence
+ 0.058397, !- Back Side Visible Reflectance at Normal Incidence
+ 0, !- Infrared Transmittance at Normal Incidence
+ 0.84, !- Front Side Infrared Hemispherical Emissivity
+ 0.84, !- Back Side Infrared Hemispherical Emissivity
+ 0.999999999999999, !- Conductivity {W/m-K}
+ 1, !- Dirt Correction Factor for Solar and Visible Transmittance
+ No; !- Solar Diffusing
+
+OS:WindowMaterial:Gas,
+ {9af2d285-0efd-4227-9d2b-c807fb4d34b6}, !- Handle
+ Gap_1_W_0_0038, !- Name
+ Air, !- Gas Type
+ 0.00379999999999999; !- Thickness {m}
+
+OS:WindowMaterial:Glazing,
+ {965f3366-dbc1-41f7-a251-ee341c3dff1f}, !- Handle
+ Glass_2027F_LayerAvg, !- Name
+ SpectralAverage, !- Optical Data Type
+ , !- Window Glass Spectral Data Set Name
+ 0.00399999999999998, !- Thickness {m}
+ 0.369744, !- Solar Transmittance at Normal Incidence
+ 0.4700695, !- Front Side Solar Reflectance at Normal Incidence
+ 0.340935, !- Back Side Solar Reflectance at Normal Incidence
+ 0.765222, !- Visible Transmittance at Normal Incidence
+ 0.0546, !- Front Side Visible Reflectance at Normal Incidence
+ 0.073741, !- Back Side Visible Reflectance at Normal Incidence
+ 0, !- Infrared Transmittance at Normal Incidence
+ 0.03675, !- Front Side Infrared Hemispherical Emissivity
+ 0.84, !- Back Side Infrared Hemispherical Emissivity
+ 0.999999999999999, !- Conductivity {W/m-K}
+ 1, !- Dirt Correction Factor for Solar and Visible Transmittance
+ No; !- Solar Diffusing
+
+OS:Construction,
+ {8aa13b36-63e3-4093-8bf3-129da1390385}, !- Handle
+ Typical Interior Window, !- Name
+ {7a52ddc4-c19e-4f4d-9c71-22692b8d2663}, !- Surface Rendering Name
+ {35ce1593-a0b3-4768-8801-92a079223853}; !- Layer 1
+
+OS:StandardsInformation:Construction,
+ {e024aca7-675b-40c8-b081-814fa533b249}, !- Handle
+ {8aa13b36-63e3-4093-8bf3-129da1390385}, !- Construction Name
+ InteriorWindow, !- Intended Surface Type
+ ; !- Standards Construction Type
+
+OS:WindowMaterial:Glazing,
+ {35ce1593-a0b3-4768-8801-92a079223853}, !- Handle
+ Clear 3mm, !- Name
+ SpectralAverage, !- Optical Data Type
+ , !- Window Glass Spectral Data Set Name
+ 0.00299999999999999, !- Thickness {m}
+ 0.837, !- Solar Transmittance at Normal Incidence
+ 0.075, !- Front Side Solar Reflectance at Normal Incidence
+ 0.075, !- Back Side Solar Reflectance at Normal Incidence
+ 0.898, !- Visible Transmittance at Normal Incidence
+ 0.081, !- Front Side Visible Reflectance at Normal Incidence
+ 0.081, !- Back Side Visible Reflectance at Normal Incidence
+ 0, !- Infrared Transmittance at Normal Incidence
+ 0.84, !- Front Side Infrared Hemispherical Emissivity
+ 0.84, !- Back Side Infrared Hemispherical Emissivity
+ 0.9, !- Conductivity {W/m-K}
+ 1, !- Dirt Correction Factor for Solar and Visible Transmittance
+ No; !- Solar Diffusing
+
+OS:DefaultSubSurfaceConstructions,
+ {596623c9-bf89-43c6-8d68-40455cc98389}, !- Handle
+ Default Sub Surface Constructions 2, !- Name
+ {8aa13b36-63e3-4093-8bf3-129da1390385}, !- Fixed Window Construction Name
+ {8aa13b36-63e3-4093-8bf3-129da1390385}, !- Operable Window Construction Name
+ {f54222b9-2215-427e-9496-49996d4c495b}, !- Door Construction Name
+ , !- Glass Door Construction Name
+ , !- Overhead Door Construction Name
+ , !- Skylight Construction Name
+ , !- Tubular Daylight Dome Construction Name
+ ; !- Tubular Daylight Diffuser Construction Name
+
+OS:Construction,
+ {f54222b9-2215-427e-9496-49996d4c495b}, !- Handle
+ Typical Interior Door, !- Name
+ {46853a40-696d-4ea9-8312-54ff93c50e86}, !- Surface Rendering Name
+ {82ac3188-a430-4450-b370-800bea459e25}; !- Layer 1
+
+OS:StandardsInformation:Construction,
+ {47aed312-c6d7-45d6-9852-b9a9e675e80f}, !- Handle
+ {f54222b9-2215-427e-9496-49996d4c495b}, !- Construction Name
+ InteriorDoor, !- Intended Surface Type
+ ; !- Standards Construction Type
+
+OS:Material,
+ {82ac3188-a430-4450-b370-800bea459e25}, !- Handle
+ G05 25mm wood, !- Name
+ MediumSmooth, !- Roughness
+ 0.0254, !- Thickness {m}
+ 0.15, !- Conductivity {W/m-K}
+ 608, !- Density {kg/m3}
+ 1630, !- Specific Heat {J/kg-K}
+ 0.9, !- Thermal Absorptance
+ 0.5, !- Solar Absorptance
+ 0.5; !- Visible Absorptance
+
+OS:Construction,
+ {62dc41c8-486e-41f9-9982-bbec7364489c}, !- Handle
+ Typical Interior Partition, !- Name
+ {ce2d45f0-c2a6-4e6f-83ef-997adcdc7c74}, !- Surface Rendering Name
+ {82ac3188-a430-4450-b370-800bea459e25}; !- Layer 1
+
+OS:StandardsInformation:Construction,
+ {4cdc1ccb-3d82-4618-bcb6-3b54a652873b}, !- Handle
+ {62dc41c8-486e-41f9-9982-bbec7364489c}, !- Construction Name
+ InteriorPartition, !- Intended Surface Type
+ ; !- Standards Construction Type
+
+OS:DefaultConstructionSet,
+ {5dbc5807-b4cd-48b8-a864-61afd371e1f2}, !- Handle
+ 90.1-2013 - - Attic - ASHRAE 169-2006-5A, !- Name
+ {21068159-8a22-4197-8b0c-9d3f4c29d196}, !- Default Exterior Surface Constructions Name
+ {ae30cfc2-f7cd-4c87-8f99-f8027bba74bf}, !- Default Interior Surface Constructions Name
+ {76043c50-86a9-4ebb-9371-3d553d65a153}, !- Default Ground Contact Surface Constructions Name
+ {d914df09-0548-4194-a9ba-902288ebcbaf}, !- Default Exterior SubSurface Constructions Name
+ {ae348522-e5f1-43df-8bc5-bc2433ffa177}, !- Default Interior SubSurface Constructions Name
+ , !- Interior Partition Construction Name
+ , !- Space Shading Construction Name
+ , !- Building Shading Construction Name
+ , !- Site Shading Construction Name
+ ; !- Adiabatic Surface Construction Name
+
+OS:DefaultSurfaceConstructions,
+ {21068159-8a22-4197-8b0c-9d3f4c29d196}, !- Handle
+ Default Surface Constructions 4, !- Name
+ {91adb0cb-52e3-4838-890c-5238cb88ec06}, !- Floor Construction Name
+ , !- Wall Construction Name
+ {89ac7279-fd78-4979-8f87-988693849c51}; !- Roof Ceiling Construction Name
+
+OS:Construction,
+ {91adb0cb-52e3-4838-890c-5238cb88ec06}, !- Handle
+ Typical Attic Soffit, !- Name
+ {34d874e9-b837-4a65-bdbd-a5f975bb80f9}, !- Surface Rendering Name
+ {3bdc8dcd-01e5-48c7-a401-7524108e3f78}; !- Layer 1
+
+OS:StandardsInformation:Construction,
+ {4372f7ab-a3cd-4967-8566-921a37c02d84}, !- Handle
+ {91adb0cb-52e3-4838-890c-5238cb88ec06}, !- Construction Name
+ AtticWall, !- Intended Surface Type
+ ; !- Standards Construction Type
+
+OS:Material,
+ {3bdc8dcd-01e5-48c7-a401-7524108e3f78}, !- Handle
+ 5/8 in. Plywood, !- Name
+ Smooth, !- Roughness
+ 0.0159, !- Thickness {m}
+ 0.12, !- Conductivity {W/m-K}
+ 543.999999999999, !- Density {kg/m3}
+ 1210, !- Specific Heat {J/kg-K}
+ 0.9, !- Thermal Absorptance
+ 0.7, !- Solar Absorptance
+ 0.7; !- Visible Absorptance
+
+OS:Construction,
+ {89ac7279-fd78-4979-8f87-988693849c51}, !- Handle
+ Typical Uninsulated Wood Joist Attic Roof, !- Name
+ {a30e7eb2-1254-49a2-b1b5-e1413f2065f3}, !- Surface Rendering Name
+ {18c5487d-a09a-4e64-a041-f5c3c9e81974}, !- Layer 1
+ {3bdc8dcd-01e5-48c7-a401-7524108e3f78}; !- Layer 2
+
+OS:StandardsInformation:Construction,
+ {cfd9e4a5-70c4-4434-a8b6-16bfc2bda796}, !- Handle
+ {89ac7279-fd78-4979-8f87-988693849c51}, !- Construction Name
+ AtticRoof, !- Intended Surface Type
+ ; !- Standards Construction Type
+
+OS:Material,
+ {18c5487d-a09a-4e64-a041-f5c3c9e81974}, !- Handle
+ Asphalt Shingles, !- Name
+ VeryRough, !- Roughness
+ 0.00319999999999998, !- Thickness {m}
+ 0.04, !- Conductivity {W/m-K}
+ 1120, !- Density {kg/m3}
+ 1260, !- Specific Heat {J/kg-K}
+ 0.9, !- Thermal Absorptance
+ 0.7, !- Solar Absorptance
+ 0.7; !- Visible Absorptance
+
+OS:DefaultSurfaceConstructions,
+ {ae30cfc2-f7cd-4c87-8f99-f8027bba74bf}, !- Handle
+ Default Surface Constructions 5, !- Name
+ {bf9e8846-caf9-46db-ac12-350610818d66}, !- Floor Construction Name
+ , !- Wall Construction Name
+ ; !- Roof Ceiling Construction Name
+
+OS:Construction,
+ {bf9e8846-caf9-46db-ac12-350610818d66}, !- Handle
+ Typical Wood Joist Attic Floor R-47.62 1, !- Name
+ {6ccecaf3-2f76-48b3-a946-19a63151d25b}, !- Surface Rendering Name
+ {bbcd2525-b654-4ba5-a387-163a9738174b}, !- Layer 1
+ {cd08bafc-6927-4671-bc05-967e4c35db55}; !- Layer 2
+
+OS:StandardsInformation:Construction,
+ {dfdbab25-a7a2-407c-9aea-26e537b627c4}, !- Handle
+ {bf9e8846-caf9-46db-ac12-350610818d66}, !- Construction Name
+ AtticFloor, !- Intended Surface Type
+ WoodFramed; !- Standards Construction Type
+
+OS:Material:NoMass,
+ {cd08bafc-6927-4671-bc05-967e4c35db55}, !- Handle
+ Typical Insulation R-45.98 1, !- Name
+ Smooth, !- Roughness
+ 8.09838632642688, !- Thermal Resistance {m2-K/W}
+ 0.9, !- Thermal Absorptance
+ 0.7, !- Solar Absorptance
+ 0.7; !- Visible Absorptance
+
+OS:DefaultSurfaceConstructions,
+ {76043c50-86a9-4ebb-9371-3d553d65a153}, !- Handle
+ Default Surface Constructions 6, !- Name
+ , !- Floor Construction Name
+ , !- Wall Construction Name
+ ; !- Roof Ceiling Construction Name
+
+OS:DefaultSubSurfaceConstructions,
+ {d914df09-0548-4194-a9ba-902288ebcbaf}, !- Handle
+ Default Sub Surface Constructions 3, !- Name
+ , !- Fixed Window Construction Name
+ , !- Operable Window Construction Name
+ , !- Door Construction Name
+ , !- Glass Door Construction Name
+ , !- Overhead Door Construction Name
+ , !- Skylight Construction Name
+ , !- Tubular Daylight Dome Construction Name
+ ; !- Tubular Daylight Diffuser Construction Name
+
+OS:DefaultSubSurfaceConstructions,
+ {ae348522-e5f1-43df-8bc5-bc2433ffa177}, !- Handle
+ Default Sub Surface Constructions 4, !- Name
+ , !- Fixed Window Construction Name
+ , !- Operable Window Construction Name
+ , !- Door Construction Name
+ , !- Glass Door Construction Name
+ , !- Overhead Door Construction Name
+ , !- Skylight Construction Name
+ , !- Tubular Daylight Dome Construction Name
+ ; !- Tubular Daylight Diffuser Construction Name
+
+OS:Material,
+ {9566481e-a051-48ec-b353-0db4053666d4}, !- Handle
+ Std Wood 6inch, !- Name
+ MediumSmooth, !- Roughness
+ 0.15, !- Thickness {m}
+ 0.12, !- Conductivity {W/m-K}
+ 540, !- Density {kg/m3}
+ 1210, !- Specific Heat {J/kg-K}
+ 0.9, !- Thermal Absorptance
+ 0.7, !- Solar Absorptance
+ 0.7; !- Visible Absorptance
+
+OS:Construction,
+ {8afb0e32-b868-4aae-9748-e45e6d724ed6}, !- Handle
+ InteriorFurnishings, !- Name
+ {08dd4ddb-7106-417c-a4cc-8ae1b6a8e191}, !- Surface Rendering Name
+ {9566481e-a051-48ec-b353-0db4053666d4}; !- Layer 1
+
+OS:InternalMass:Definition,
+ {ad359729-df44-4476-99bf-acd120e975be}, !- Handle
+ Internal Mass Definition 1, !- Name
+ {8afb0e32-b868-4aae-9748-e45e6d724ed6}, !- Construction Name
+ SurfaceArea/Area, !- Design Level Calculation Method
+ , !- Surface Area {m2}
+ 2, !- Surface Area per Space Floor Area {dimensionless}
+ ; !- Surface Area per Person {m2/person}
+
+OS:InternalMass,
+ {9a9f9958-acfe-4339-92d3-dad2740e57cd}, !- Handle
+ Perimeter_ZN_1 Mass, !- Name
+ {ad359729-df44-4476-99bf-acd120e975be}, !- Internal Mass Definition Name
+ {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space or SpaceType Name
+ 1; !- Multiplier
+
+OS:InternalMass,
+ {248f5e3a-9908-424c-9c69-0ad01f9c1200}, !- Handle
+ Perimeter_ZN_2 Mass, !- Name
+ {ad359729-df44-4476-99bf-acd120e975be}, !- Internal Mass Definition Name
+ {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Space or SpaceType Name
+ 1; !- Multiplier
+
+OS:InternalMass,
+ {b49490ba-fe68-4af4-bef0-76ef95d2e727}, !- Handle
+ Perimeter_ZN_3 Mass, !- Name
+ {ad359729-df44-4476-99bf-acd120e975be}, !- Internal Mass Definition Name
+ {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Space or SpaceType Name
+ 1; !- Multiplier
+
+OS:InternalMass,
+ {7f28e4b3-7532-44c3-8465-a84edf3de868}, !- Handle
+ Perimeter_ZN_4 Mass, !- Name
+ {ad359729-df44-4476-99bf-acd120e975be}, !- Internal Mass Definition Name
+ {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Space or SpaceType Name
+ 1; !- Multiplier
+
+OS:InternalMass,
+ {5107db3c-624f-475c-9788-9f1d93121b0b}, !- Handle
+ Core_ZN Mass, !- Name
+ {ad359729-df44-4476-99bf-acd120e975be}, !- Internal Mass Definition Name
+ {32844cd3-cab3-4870-bbb6-6c79a28481b7}, !- Space or SpaceType Name
+ 1; !- Multiplier
+
+OS:ThermalZone,
+ {07da4a00-d5c2-41b4-9f11-98b105ebba18}, !- Handle
+ Attic ZN, !- Name
+ , !- Multiplier
+ , !- Ceiling Height {m}
+ , !- Volume {m3}
+ , !- Floor Area {m2}
+ , !- Zone Inside Convection Algorithm
+ , !- Zone Outside Convection Algorithm
+ , !- Zone Conditioning Equipment List Name
+ {f2f86e6c-2741-4e12-84f8-df3a22386bb2}, !- Zone Air Inlet Port List
+ {01f8cb4b-431c-4de4-81c1-a3b5f915bb21}, !- Zone Air Exhaust Port List
+ {162173d8-56d6-46a9-a522-d513b1b783e3}, !- Zone Air Node Name
+ {e77865b3-da9f-4815-9c47-61652c834671}, !- Zone Return Air Port List
+ , !- Primary Daylighting Control Name
+ , !- Fraction of Zone Controlled by Primary Daylighting Control
+ , !- Secondary Daylighting Control Name
+ , !- Fraction of Zone Controlled by Secondary Daylighting Control
+ , !- Illuminance Map Name
+ {246c1889-e62b-4a65-9bbe-a0c333537e0a}, !- Group Rendering Name
+ {c892e56c-e995-4335-ad8a-e9fef4768248}, !- Thermostat Name
+ No; !- Use Ideal Air Loads
+
+OS:Node,
+ {75462882-d73c-4ad2-b367-0e6732ffc56f}, !- Handle
+ Attic ZN Zone Air Node, !- Name
+ {162173d8-56d6-46a9-a522-d513b1b783e3}, !- Inlet Port
+ ; !- Outlet Port
+
+OS:Connection,
+ {162173d8-56d6-46a9-a522-d513b1b783e3}, !- Handle
+ {3e1680f1-b898-4953-9735-e67533ec8774}, !- Name
+ {07da4a00-d5c2-41b4-9f11-98b105ebba18}, !- Source Object
+ 11, !- Outlet Port
+ {75462882-d73c-4ad2-b367-0e6732ffc56f}, !- Target Object
+ 2; !- Inlet Port
+
+OS:PortList,
+ {f2f86e6c-2741-4e12-84f8-df3a22386bb2}, !- Handle
+ {f1aee1b2-7c1e-40d7-b531-5b97161fbcc2}, !- Name
+ {07da4a00-d5c2-41b4-9f11-98b105ebba18}; !- HVAC Component
+
+OS:PortList,
+ {01f8cb4b-431c-4de4-81c1-a3b5f915bb21}, !- Handle
+ {8952d9c7-86c3-4c97-b664-3e0ef47fe278}, !- Name
+ {07da4a00-d5c2-41b4-9f11-98b105ebba18}; !- HVAC Component
+
+OS:PortList,
+ {e77865b3-da9f-4815-9c47-61652c834671}, !- Handle
+ {39e668dd-6569-4fbb-ab11-26c499ff2fbe}, !- Name
+ {07da4a00-d5c2-41b4-9f11-98b105ebba18}; !- HVAC Component
+
+OS:Sizing:Zone,
+ {9d2b0bfe-9939-4bfb-9139-8f613e14d00d}, !- Handle
+ {07da4a00-d5c2-41b4-9f11-98b105ebba18}, !- Zone or ZoneList Name
+ SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
+ 14, !- Zone Cooling Design Supply Air Temperature {C}
+ 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
+ SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
+ 40, !- Zone Heating Design Supply Air Temperature {C}
+ 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC}
+ 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air}
+ 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air}
+ , !- Zone Heating Sizing Factor
+ , !- Zone Cooling Sizing Factor
+ DesignDay, !- Cooling Design Air Flow Method
+ , !- Cooling Design Air Flow Rate {m3/s}
+ , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
+ , !- Cooling Minimum Air Flow {m3/s}
+ , !- Cooling Minimum Air Flow Fraction
+ DesignDay, !- Heating Design Air Flow Method
+ , !- Heating Design Air Flow Rate {m3/s}
+ , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
+ , !- Heating Maximum Air Flow {m3/s}
+ , !- Heating Maximum Air Flow Fraction
+ , !- Design Zone Air Distribution Effectiveness in Cooling Mode
+ , !- Design Zone Air Distribution Effectiveness in Heating Mode
+ No, !- Account for Dedicated Outdoor Air System
+ NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy
+ autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C}
+ autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C}
+
+OS:ZoneHVAC:EquipmentList,
+ {b66fd9b4-d505-42d7-9a80-8fc00e6031ea}, !- Handle
+ Attic ZN Zone HVAC Equipment List, !- Name
+ {07da4a00-d5c2-41b4-9f11-98b105ebba18}; !- Thermal Zone
+
+OS:ThermostatSetpoint:DualSetpoint,
+ {c892e56c-e995-4335-ad8a-e9fef4768248}, !- Handle
+ Office Attic Thermostat 1; !- Name
+
+OS:ThermalZone,
+ {28915964-e2c4-4332-a684-5091ad72d321}, !- Handle
+ Core_ZN ZN, !- Name
+ , !- Multiplier
+ , !- Ceiling Height {m}
+ , !- Volume {m3}
+ , !- Floor Area {m2}
+ , !- Zone Inside Convection Algorithm
+ , !- Zone Outside Convection Algorithm
+ , !- Zone Conditioning Equipment List Name
+ {d73eaa54-329c-48e5-9af9-8ae91fe06393}, !- Zone Air Inlet Port List
+ {e15fea07-7acb-4f28-8d5a-265b326015a2}, !- Zone Air Exhaust Port List
+ {994a1b93-2160-4988-86db-2a2fa46dfe4a}, !- Zone Air Node Name
+ {8ecbc7fc-f7b1-48b8-8307-4767d3fab1f8}, !- Zone Return Air Port List
+ , !- Primary Daylighting Control Name
+ , !- Fraction of Zone Controlled by Primary Daylighting Control
+ , !- Secondary Daylighting Control Name
+ , !- Fraction of Zone Controlled by Secondary Daylighting Control
+ , !- Illuminance Map Name
+ {3baa8fec-a42d-48fb-b854-35aac5d2f82e}, !- Group Rendering Name
+ {058f3966-48da-47df-a237-4d358331db5f}, !- Thermostat Name
+ No; !- Use Ideal Air Loads
+
+OS:Node,
+ {7467fbcc-3fa1-455d-96d1-974b056b19c0}, !- Handle
+ Core_ZN ZN Zone Air Node, !- Name
+ {994a1b93-2160-4988-86db-2a2fa46dfe4a}, !- Inlet Port
+ ; !- Outlet Port
+
+OS:Connection,
+ {994a1b93-2160-4988-86db-2a2fa46dfe4a}, !- Handle
+ {155b3c56-aacb-424a-8585-2803f3afafed}, !- Name
+ {28915964-e2c4-4332-a684-5091ad72d321}, !- Source Object
+ 11, !- Outlet Port
+ {7467fbcc-3fa1-455d-96d1-974b056b19c0}, !- Target Object
+ 2; !- Inlet Port
+
+OS:PortList,
+ {d73eaa54-329c-48e5-9af9-8ae91fe06393}, !- Handle
+ {f43f69c0-e14e-4dbb-9460-0ddc066ab541}, !- Name
+ {28915964-e2c4-4332-a684-5091ad72d321}, !- HVAC Component
+ {31f407fe-6b67-4565-85ea-a72d41da5d78}; !- Port 1
+
+OS:PortList,
+ {e15fea07-7acb-4f28-8d5a-265b326015a2}, !- Handle
+ {84ae3b5a-3b9c-4e2b-be38-0b7fe2fed131}, !- Name
+ {28915964-e2c4-4332-a684-5091ad72d321}; !- HVAC Component
+
+OS:PortList,
+ {8ecbc7fc-f7b1-48b8-8307-4767d3fab1f8}, !- Handle
+ {781ce7f3-9ee8-4f33-b059-db533f9af809}, !- Name
+ {28915964-e2c4-4332-a684-5091ad72d321}, !- HVAC Component
+ {014cc4de-d1f6-4893-a610-af4b6bd4e914}; !- Port 1
+
+OS:Sizing:Zone,
+ {b79dd67a-d9fd-456c-9233-1f5a71b189f3}, !- Handle
+ {28915964-e2c4-4332-a684-5091ad72d321}, !- Zone or ZoneList Name
+ SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
+ 12.7777777777778, !- Zone Cooling Design Supply Air Temperature {C}
+ 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
+ SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
+ 50.0000000000001, !- Zone Heating Design Supply Air Temperature {C}
+ 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC}
+ 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air}
+ 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air}
+ , !- Zone Heating Sizing Factor
+ , !- Zone Cooling Sizing Factor
+ DesignDay, !- Cooling Design Air Flow Method
+ , !- Cooling Design Air Flow Rate {m3/s}
+ , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
+ , !- Cooling Minimum Air Flow {m3/s}
+ , !- Cooling Minimum Air Flow Fraction
+ DesignDay, !- Heating Design Air Flow Method
+ , !- Heating Design Air Flow Rate {m3/s}
+ , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
+ , !- Heating Maximum Air Flow {m3/s}
+ , !- Heating Maximum Air Flow Fraction
+ , !- Design Zone Air Distribution Effectiveness in Cooling Mode
+ , !- Design Zone Air Distribution Effectiveness in Heating Mode
+ No, !- Account for Dedicated Outdoor Air System
+ NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy
+ autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C}
+ autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C}
+
+OS:ZoneHVAC:EquipmentList,
+ {165a0622-b8c8-4ae5-b8f1-a950173cfe43}, !- Handle
+ Core_ZN ZN Zone HVAC Equipment List, !- Name
+ {28915964-e2c4-4332-a684-5091ad72d321}, !- Thermal Zone
+ , !- Load Distribution Scheme
+ {9c121e06-a74a-4bc1-842e-a0f3f81fce0c}, !- Zone Equipment 1
+ 1, !- Zone Equipment Cooling Sequence 1
+ 1, !- Zone Equipment Heating or No-Load Sequence 1
+ , !- Zone Equipment Sequential Cooling Fraction 1
+ ; !- Zone Equipment Sequential Heating Fraction 1
+
+OS:ThermostatSetpoint:DualSetpoint,
+ {058f3966-48da-47df-a237-4d358331db5f}, !- Handle
+ Office WholeBuilding - Sm Office Thermostat 1, !- Name
+ {706f2bd2-54aa-4a93-85dc-82a98ce2b46c}, !- Heating Setpoint Temperature Schedule Name
+ {4636603a-6678-47b5-9691-213155abb876}; !- Cooling Setpoint Temperature Schedule Name
+
+OS:ThermalZone,
+ {eccf2622-9374-4edf-8caf-1981d96b5c12}, !- Handle
+ Perimeter_ZN_1 ZN, !- Name
+ , !- Multiplier
+ , !- Ceiling Height {m}
+ , !- Volume {m3}
+ , !- Floor Area {m2}
+ , !- Zone Inside Convection Algorithm
+ , !- Zone Outside Convection Algorithm
+ , !- Zone Conditioning Equipment List Name
+ {2deb7de2-4a0d-408e-95d1-c7bfeed54d2a}, !- Zone Air Inlet Port List
+ {b7e7df1f-5f69-4a94-9119-d6611d9e2d41}, !- Zone Air Exhaust Port List
+ {aec10616-162f-412c-97a8-140db04c389f}, !- Zone Air Node Name
+ {ad152a86-a2a5-4296-b589-502e7b1efd2d}, !- Zone Return Air Port List
+ {29c04ddc-9800-41e2-9f13-7ef9813ebbe4}, !- Primary Daylighting Control Name
+ 0.2399, !- Fraction of Zone Controlled by Primary Daylighting Control
+ {cb15831a-9a03-4081-b8d6-2e6c345aa5f3}, !- Secondary Daylighting Control Name
+ 0.0302, !- Fraction of Zone Controlled by Secondary Daylighting Control
+ , !- Illuminance Map Name
+ {70f53569-f093-48ea-93f1-2f7bf55290fd}, !- Group Rendering Name
+ {44ab086d-134e-41de-a836-694790b3468f}, !- Thermostat Name
+ No; !- Use Ideal Air Loads
+
+OS:Node,
+ {d3d9d00a-6bc1-4ada-9612-75ab4dbe6132}, !- Handle
+ Perimeter_ZN_1 ZN Zone Air Node, !- Name
+ {aec10616-162f-412c-97a8-140db04c389f}, !- Inlet Port
+ ; !- Outlet Port
+
+OS:Connection,
+ {aec10616-162f-412c-97a8-140db04c389f}, !- Handle
+ {5903b8ca-33ad-4973-af8c-b077d051a05a}, !- Name
+ {eccf2622-9374-4edf-8caf-1981d96b5c12}, !- Source Object
+ 11, !- Outlet Port
+ {d3d9d00a-6bc1-4ada-9612-75ab4dbe6132}, !- Target Object
+ 2; !- Inlet Port
+
+OS:PortList,
+ {2deb7de2-4a0d-408e-95d1-c7bfeed54d2a}, !- Handle
+ {da19c425-0036-4b42-96ae-fe7fbf03029d}, !- Name
+ {eccf2622-9374-4edf-8caf-1981d96b5c12}, !- HVAC Component
+ {7688355c-d28d-49a5-94e4-1e0faa562dd4}; !- Port 1
+
+OS:PortList,
+ {b7e7df1f-5f69-4a94-9119-d6611d9e2d41}, !- Handle
+ {712f06ab-c4c8-4945-bebf-50e26de04016}, !- Name
+ {eccf2622-9374-4edf-8caf-1981d96b5c12}; !- HVAC Component
+
+OS:PortList,
+ {ad152a86-a2a5-4296-b589-502e7b1efd2d}, !- Handle
+ {7b7c57f6-aec5-4aa7-a292-8d8bd6d6732f}, !- Name
+ {eccf2622-9374-4edf-8caf-1981d96b5c12}, !- HVAC Component
+ {b9de8eaa-7cc8-4046-bd43-56b2f5723ac7}; !- Port 1
+
+OS:Sizing:Zone,
+ {13ab8e33-ad06-4de8-8aac-2bf87060c4f1}, !- Handle
+ {eccf2622-9374-4edf-8caf-1981d96b5c12}, !- Zone or ZoneList Name
+ SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
+ 12.7777777777778, !- Zone Cooling Design Supply Air Temperature {C}
+ 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
+ SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
+ 50.0000000000001, !- Zone Heating Design Supply Air Temperature {C}
+ 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC}
+ 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air}
+ 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air}
+ , !- Zone Heating Sizing Factor
+ , !- Zone Cooling Sizing Factor
+ DesignDay, !- Cooling Design Air Flow Method
+ , !- Cooling Design Air Flow Rate {m3/s}
+ , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
+ , !- Cooling Minimum Air Flow {m3/s}
+ , !- Cooling Minimum Air Flow Fraction
+ DesignDay, !- Heating Design Air Flow Method
+ , !- Heating Design Air Flow Rate {m3/s}
+ , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
+ , !- Heating Maximum Air Flow {m3/s}
+ , !- Heating Maximum Air Flow Fraction
+ , !- Design Zone Air Distribution Effectiveness in Cooling Mode
+ , !- Design Zone Air Distribution Effectiveness in Heating Mode
+ No, !- Account for Dedicated Outdoor Air System
+ NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy
+ autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C}
+ autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C}
+
+OS:ZoneHVAC:EquipmentList,
+ {36921682-81a2-4219-bcaa-a5ef0547f1e2}, !- Handle
+ Perimeter_ZN_1 ZN Zone HVAC Equipment List, !- Name
+ {eccf2622-9374-4edf-8caf-1981d96b5c12}, !- Thermal Zone
+ , !- Load Distribution Scheme
+ {18b950bb-4f7e-467b-b136-a51044e9bc6e}, !- Zone Equipment 1
+ 1, !- Zone Equipment Cooling Sequence 1
+ 1, !- Zone Equipment Heating or No-Load Sequence 1
+ , !- Zone Equipment Sequential Cooling Fraction 1
+ ; !- Zone Equipment Sequential Heating Fraction 1
+
+OS:ThermostatSetpoint:DualSetpoint,
+ {44ab086d-134e-41de-a836-694790b3468f}, !- Handle
+ Office WholeBuilding - Sm Office Thermostat 2, !- Name
+ {706f2bd2-54aa-4a93-85dc-82a98ce2b46c}, !- Heating Setpoint Temperature Schedule Name
+ {4636603a-6678-47b5-9691-213155abb876}; !- Cooling Setpoint Temperature Schedule Name
+
+OS:ThermalZone,
+ {4e0efcce-e00c-469a-b646-c4dbfeb628cd}, !- Handle
+ Perimeter_ZN_2 ZN, !- Name
+ , !- Multiplier
+ , !- Ceiling Height {m}
+ , !- Volume {m3}
+ , !- Floor Area {m2}
+ , !- Zone Inside Convection Algorithm
+ , !- Zone Outside Convection Algorithm
+ , !- Zone Conditioning Equipment List Name
+ {d6cb6915-46e1-4851-abac-235d6ef97fbc}, !- Zone Air Inlet Port List
+ {8609f1b6-5f6e-4e83-91cb-9da156c46b27}, !- Zone Air Exhaust Port List
+ {74ca4bb0-1d06-454b-a3a8-77d87dd0bfa4}, !- Zone Air Node Name
+ {dbf0eedf-d000-4dee-a462-4f0f9d32096f}, !- Zone Return Air Port List
+ {5e6e04dc-84e6-42ce-8c31-1c223002cdf9}, !- Primary Daylighting Control Name
+ 0.2399, !- Fraction of Zone Controlled by Primary Daylighting Control
+ {47d6946f-e9ad-4198-9993-e0c0cc89062d}, !- Secondary Daylighting Control Name
+ 0.0302, !- Fraction of Zone Controlled by Secondary Daylighting Control
+ , !- Illuminance Map Name
+ {243c8142-8d16-4009-8ffd-f577e4933f94}, !- Group Rendering Name
+ {5e3d159d-4df9-4510-ba7b-1841f97d108f}, !- Thermostat Name
+ No; !- Use Ideal Air Loads
+
+OS:Node,
+ {63683039-10fd-4a5b-afed-958cb3aa53dd}, !- Handle
+ Perimeter_ZN_2 ZN Zone Air Node, !- Name
+ {74ca4bb0-1d06-454b-a3a8-77d87dd0bfa4}, !- Inlet Port
+ ; !- Outlet Port
+
+OS:Connection,
+ {74ca4bb0-1d06-454b-a3a8-77d87dd0bfa4}, !- Handle
+ {dd1a8a9a-adb5-4627-b432-af8c93e8fd48}, !- Name
+ {4e0efcce-e00c-469a-b646-c4dbfeb628cd}, !- Source Object
+ 11, !- Outlet Port
+ {63683039-10fd-4a5b-afed-958cb3aa53dd}, !- Target Object
+ 2; !- Inlet Port
+
+OS:PortList,
+ {d6cb6915-46e1-4851-abac-235d6ef97fbc}, !- Handle
+ {dcb41f8c-9355-48e6-9b90-e0a75d967ae3}, !- Name
+ {4e0efcce-e00c-469a-b646-c4dbfeb628cd}, !- HVAC Component
+ {e483d5fe-47c9-461e-8f0b-cb01f35530f3}; !- Port 1
+
+OS:PortList,
+ {8609f1b6-5f6e-4e83-91cb-9da156c46b27}, !- Handle
+ {63658dfd-1142-4a6f-989f-86a893b12045}, !- Name
+ {4e0efcce-e00c-469a-b646-c4dbfeb628cd}; !- HVAC Component
+
+OS:PortList,
+ {dbf0eedf-d000-4dee-a462-4f0f9d32096f}, !- Handle
+ {deac2e44-ed61-4bb6-b6b7-651090f4cef4}, !- Name
+ {4e0efcce-e00c-469a-b646-c4dbfeb628cd}, !- HVAC Component
+ {9800cc72-c39a-4296-99fb-0d26a6b3d5b9}; !- Port 1
+
+OS:Sizing:Zone,
+ {dd315bb0-8727-4d22-a928-96c895204b75}, !- Handle
+ {4e0efcce-e00c-469a-b646-c4dbfeb628cd}, !- Zone or ZoneList Name
+ SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
+ 12.7777777777778, !- Zone Cooling Design Supply Air Temperature {C}
+ 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
+ SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
+ 50.0000000000001, !- Zone Heating Design Supply Air Temperature {C}
+ 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC}
+ 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air}
+ 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air}
+ , !- Zone Heating Sizing Factor
+ , !- Zone Cooling Sizing Factor
+ DesignDay, !- Cooling Design Air Flow Method
+ , !- Cooling Design Air Flow Rate {m3/s}
+ , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
+ , !- Cooling Minimum Air Flow {m3/s}
+ , !- Cooling Minimum Air Flow Fraction
+ DesignDay, !- Heating Design Air Flow Method
+ , !- Heating Design Air Flow Rate {m3/s}
+ , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
+ , !- Heating Maximum Air Flow {m3/s}
+ , !- Heating Maximum Air Flow Fraction
+ , !- Design Zone Air Distribution Effectiveness in Cooling Mode
+ , !- Design Zone Air Distribution Effectiveness in Heating Mode
+ No, !- Account for Dedicated Outdoor Air System
+ NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy
+ autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C}
+ autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C}
+
+OS:ZoneHVAC:EquipmentList,
+ {5bb78c53-e41c-4399-93ce-534414f55cb4}, !- Handle
+ Perimeter_ZN_2 ZN Zone HVAC Equipment List, !- Name
+ {4e0efcce-e00c-469a-b646-c4dbfeb628cd}, !- Thermal Zone
+ , !- Load Distribution Scheme
+ {2383fe41-6853-4ba0-8c95-0f721c92afa6}, !- Zone Equipment 1
+ 1, !- Zone Equipment Cooling Sequence 1
+ 1, !- Zone Equipment Heating or No-Load Sequence 1
+ , !- Zone Equipment Sequential Cooling Fraction 1
+ ; !- Zone Equipment Sequential Heating Fraction 1
+
+OS:ThermostatSetpoint:DualSetpoint,
+ {5e3d159d-4df9-4510-ba7b-1841f97d108f}, !- Handle
+ Office WholeBuilding - Sm Office Thermostat 3, !- Name
+ {706f2bd2-54aa-4a93-85dc-82a98ce2b46c}, !- Heating Setpoint Temperature Schedule Name
+ {4636603a-6678-47b5-9691-213155abb876}; !- Cooling Setpoint Temperature Schedule Name
+
+OS:ThermalZone,
+ {afcd34b0-00fa-40af-a2e1-995004075d3f}, !- Handle
+ Perimeter_ZN_3 ZN, !- Name
+ , !- Multiplier
+ , !- Ceiling Height {m}
+ , !- Volume {m3}
+ , !- Floor Area {m2}
+ , !- Zone Inside Convection Algorithm
+ , !- Zone Outside Convection Algorithm
+ , !- Zone Conditioning Equipment List Name
+ {7306ee17-b69f-4842-9e6a-6066149e388f}, !- Zone Air Inlet Port List
+ {99d771cd-7bc7-4810-a983-f89559880d00}, !- Zone Air Exhaust Port List
+ {5a7ea51f-e90a-4482-b73d-eaa826170f8b}, !- Zone Air Node Name
+ {fce25264-f646-4a33-bd2c-610a5157d5ce}, !- Zone Return Air Port List
+ {cc3ca2b8-f129-4cf7-97bf-65d52f85e103}, !- Primary Daylighting Control Name
+ 0.2399, !- Fraction of Zone Controlled by Primary Daylighting Control
+ {6226a1a2-28d1-4edb-b0fa-d5193545176d}, !- Secondary Daylighting Control Name
+ 0.0302, !- Fraction of Zone Controlled by Secondary Daylighting Control
+ , !- Illuminance Map Name
+ {8099925b-bbb3-4288-82ad-ca9d72507faf}, !- Group Rendering Name
+ {20c60451-53d3-4681-b37d-e904d396f5d1}, !- Thermostat Name
+ No; !- Use Ideal Air Loads
+
+OS:Node,
+ {54ef281f-8cc8-4b3f-92f5-e439a97762ce}, !- Handle
+ Perimeter_ZN_3 ZN Zone Air Node, !- Name
+ {5a7ea51f-e90a-4482-b73d-eaa826170f8b}, !- Inlet Port
+ ; !- Outlet Port
+
+OS:Connection,
+ {5a7ea51f-e90a-4482-b73d-eaa826170f8b}, !- Handle
+ {e5b8a42a-5438-4502-a9ae-d5d4052d6fdb}, !- Name
+ {afcd34b0-00fa-40af-a2e1-995004075d3f}, !- Source Object
+ 11, !- Outlet Port
+ {54ef281f-8cc8-4b3f-92f5-e439a97762ce}, !- Target Object
+ 2; !- Inlet Port
+
+OS:PortList,
+ {7306ee17-b69f-4842-9e6a-6066149e388f}, !- Handle
+ {182bb312-5575-4d9b-8c82-9025a9c0e1d9}, !- Name
+ {afcd34b0-00fa-40af-a2e1-995004075d3f}, !- HVAC Component
+ {3a84ce54-a894-4b40-a410-c931fcac8ad4}; !- Port 1
+
+OS:PortList,
+ {99d771cd-7bc7-4810-a983-f89559880d00}, !- Handle
+ {352da116-ba86-4f3c-ab91-292187a0b2b7}, !- Name
+ {afcd34b0-00fa-40af-a2e1-995004075d3f}; !- HVAC Component
+
+OS:PortList,
+ {fce25264-f646-4a33-bd2c-610a5157d5ce}, !- Handle
+ {6214e10f-fbf5-4f0a-9a78-fbc17e5f7499}, !- Name
+ {afcd34b0-00fa-40af-a2e1-995004075d3f}, !- HVAC Component
+ {712c73a6-f6c7-4ad0-9a8c-3316db2d501d}; !- Port 1
+
+OS:Sizing:Zone,
+ {5dcc36c3-5a8b-4539-8932-da6d8c5d53d8}, !- Handle
+ {afcd34b0-00fa-40af-a2e1-995004075d3f}, !- Zone or ZoneList Name
+ SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
+ 12.7777777777778, !- Zone Cooling Design Supply Air Temperature {C}
+ 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
+ SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
+ 50.0000000000001, !- Zone Heating Design Supply Air Temperature {C}
+ 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC}
+ 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air}
+ 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air}
+ , !- Zone Heating Sizing Factor
+ , !- Zone Cooling Sizing Factor
+ DesignDay, !- Cooling Design Air Flow Method
+ , !- Cooling Design Air Flow Rate {m3/s}
+ , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
+ , !- Cooling Minimum Air Flow {m3/s}
+ , !- Cooling Minimum Air Flow Fraction
+ DesignDay, !- Heating Design Air Flow Method
+ , !- Heating Design Air Flow Rate {m3/s}
+ , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
+ , !- Heating Maximum Air Flow {m3/s}
+ , !- Heating Maximum Air Flow Fraction
+ , !- Design Zone Air Distribution Effectiveness in Cooling Mode
+ , !- Design Zone Air Distribution Effectiveness in Heating Mode
+ No, !- Account for Dedicated Outdoor Air System
+ NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy
+ autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C}
+ autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C}
+
+OS:ZoneHVAC:EquipmentList,
+ {47b7612f-c538-4ca1-abd9-f6a66dc1db3a}, !- Handle
+ Perimeter_ZN_3 ZN Zone HVAC Equipment List, !- Name
+ {afcd34b0-00fa-40af-a2e1-995004075d3f}, !- Thermal Zone
+ , !- Load Distribution Scheme
+ {ab40a91f-e5b7-4089-8dfc-acdb012395d3}, !- Zone Equipment 1
+ 1, !- Zone Equipment Cooling Sequence 1
+ 1, !- Zone Equipment Heating or No-Load Sequence 1
+ , !- Zone Equipment Sequential Cooling Fraction 1
+ ; !- Zone Equipment Sequential Heating Fraction 1
+
+OS:ThermostatSetpoint:DualSetpoint,
+ {20c60451-53d3-4681-b37d-e904d396f5d1}, !- Handle
+ Office WholeBuilding - Sm Office Thermostat 4, !- Name
+ {706f2bd2-54aa-4a93-85dc-82a98ce2b46c}, !- Heating Setpoint Temperature Schedule Name
+ {4636603a-6678-47b5-9691-213155abb876}; !- Cooling Setpoint Temperature Schedule Name
+
+OS:ThermalZone,
+ {5a3afc2e-d12e-4ab3-b952-581dd46d9df3}, !- Handle
+ Perimeter_ZN_4 ZN, !- Name
+ , !- Multiplier
+ , !- Ceiling Height {m}
+ , !- Volume {m3}
+ , !- Floor Area {m2}
+ , !- Zone Inside Convection Algorithm
+ , !- Zone Outside Convection Algorithm
+ , !- Zone Conditioning Equipment List Name
+ {2267fd06-4370-4ce4-8b33-0658f94bcffb}, !- Zone Air Inlet Port List
+ {527312a8-1292-4303-95de-cfcdbdb74fc2}, !- Zone Air Exhaust Port List
+ {c909efb5-2a6b-4f3c-bd61-df6571d24baf}, !- Zone Air Node Name
+ {f1585e10-8de9-45cf-8fe9-ea11287281fd}, !- Zone Return Air Port List
+ {7631782d-b3aa-491a-9d3e-369c98f1e06d}, !- Primary Daylighting Control Name
+ 0.2399, !- Fraction of Zone Controlled by Primary Daylighting Control
+ {627dad3e-5081-480f-972e-fedac2af7954}, !- Secondary Daylighting Control Name
+ 0.0302, !- Fraction of Zone Controlled by Secondary Daylighting Control
+ , !- Illuminance Map Name
+ {09fe54ee-333d-4141-b67e-950510581a11}, !- Group Rendering Name
+ {4e1baa59-f6f8-45ed-8c13-ca0628f9bac5}, !- Thermostat Name
+ No; !- Use Ideal Air Loads
+
+OS:Node,
+ {ef3ff3d7-e13f-4b6f-8030-ede51c9dea08}, !- Handle
+ Perimeter_ZN_4 ZN Zone Air Node, !- Name
+ {c909efb5-2a6b-4f3c-bd61-df6571d24baf}, !- Inlet Port
+ ; !- Outlet Port
+
+OS:Connection,
+ {c909efb5-2a6b-4f3c-bd61-df6571d24baf}, !- Handle
+ {a74818c2-ec3d-48fa-b509-7d4322e129e3}, !- Name
+ {5a3afc2e-d12e-4ab3-b952-581dd46d9df3}, !- Source Object
+ 11, !- Outlet Port
+ {ef3ff3d7-e13f-4b6f-8030-ede51c9dea08}, !- Target Object
+ 2; !- Inlet Port
+
+OS:PortList,
+ {2267fd06-4370-4ce4-8b33-0658f94bcffb}, !- Handle
+ {e79761dd-c64a-40f4-9e51-d4eaae595f63}, !- Name
+ {5a3afc2e-d12e-4ab3-b952-581dd46d9df3}, !- HVAC Component
+ {17a53905-6fa9-48a7-b620-fa5aee33ec94}; !- Port 1
+
+OS:PortList,
+ {527312a8-1292-4303-95de-cfcdbdb74fc2}, !- Handle
+ {41d6aba2-0b0f-4438-8ef4-d9eaee3d1872}, !- Name
+ {5a3afc2e-d12e-4ab3-b952-581dd46d9df3}; !- HVAC Component
+
+OS:PortList,
+ {f1585e10-8de9-45cf-8fe9-ea11287281fd}, !- Handle
+ {a6b5f7a0-714d-4d1f-a3bb-86e11d4a6920}, !- Name
+ {5a3afc2e-d12e-4ab3-b952-581dd46d9df3}, !- HVAC Component
+ {20fde348-4a73-4c5b-a767-83b56440c134}; !- Port 1
+
+OS:Sizing:Zone,
+ {6e33beda-b018-452d-b415-0d7e247717f1}, !- Handle
+ {5a3afc2e-d12e-4ab3-b952-581dd46d9df3}, !- Zone or ZoneList Name
+ SupplyAirTemperature, !- Zone Cooling Design Supply Air Temperature Input Method
+ 12.7777777777778, !- Zone Cooling Design Supply Air Temperature {C}
+ 11.11, !- Zone Cooling Design Supply Air Temperature Difference {deltaC}
+ SupplyAirTemperature, !- Zone Heating Design Supply Air Temperature Input Method
+ 50.0000000000001, !- Zone Heating Design Supply Air Temperature {C}
+ 11.11, !- Zone Heating Design Supply Air Temperature Difference {deltaC}
+ 0.0085, !- Zone Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-air}
+ 0.008, !- Zone Heating Design Supply Air Humidity Ratio {kg-H2O/kg-air}
+ , !- Zone Heating Sizing Factor
+ , !- Zone Cooling Sizing Factor
+ DesignDay, !- Cooling Design Air Flow Method
+ , !- Cooling Design Air Flow Rate {m3/s}
+ , !- Cooling Minimum Air Flow per Zone Floor Area {m3/s-m2}
+ , !- Cooling Minimum Air Flow {m3/s}
+ , !- Cooling Minimum Air Flow Fraction
+ DesignDay, !- Heating Design Air Flow Method
+ , !- Heating Design Air Flow Rate {m3/s}
+ , !- Heating Maximum Air Flow per Zone Floor Area {m3/s-m2}
+ , !- Heating Maximum Air Flow {m3/s}
+ , !- Heating Maximum Air Flow Fraction
+ , !- Design Zone Air Distribution Effectiveness in Cooling Mode
+ , !- Design Zone Air Distribution Effectiveness in Heating Mode
+ No, !- Account for Dedicated Outdoor Air System
+ NeutralSupplyAir, !- Dedicated Outdoor Air System Control Strategy
+ autosize, !- Dedicated Outdoor Air Low Setpoint Temperature for Design {C}
+ autosize; !- Dedicated Outdoor Air High Setpoint Temperature for Design {C}
+
+OS:ZoneHVAC:EquipmentList,
+ {7d5676f8-6b34-46d4-8b16-8de13e24d868}, !- Handle
+ Perimeter_ZN_4 ZN Zone HVAC Equipment List, !- Name
+ {5a3afc2e-d12e-4ab3-b952-581dd46d9df3}, !- Thermal Zone
+ , !- Load Distribution Scheme
+ {a19e599d-fbdd-49ce-bafc-97c4d16050ef}, !- Zone Equipment 1
+ 1, !- Zone Equipment Cooling Sequence 1
+ 1, !- Zone Equipment Heating or No-Load Sequence 1
+ , !- Zone Equipment Sequential Cooling Fraction 1
+ ; !- Zone Equipment Sequential Heating Fraction 1
+
+OS:ThermostatSetpoint:DualSetpoint,
+ {4e1baa59-f6f8-45ed-8c13-ca0628f9bac5}, !- Handle
+ Office WholeBuilding - Sm Office Thermostat 5, !- Name
+ {706f2bd2-54aa-4a93-85dc-82a98ce2b46c}, !- Heating Setpoint Temperature Schedule Name
+ {4636603a-6678-47b5-9691-213155abb876}; !- Cooling Setpoint Temperature Schedule Name
+
+OS:Schedule:Ruleset,
+ {d49fcb19-899c-4ad6-a766-4b44490b7b3c}, !- Handle
+ OfficeSmall HVACOperationSchd, !- Name
+ {48baeb6c-4b7b-4ed4-b6e9-8aec399e0994}, !- Schedule Type Limits Name
+ {e224512e-7feb-4809-a3cc-349ad90d7c74}, !- Default Day Schedule Name
+ {13bc31bb-1292-4965-8dcc-701a67822064}, !- Summer Design Day Schedule Name
+ {f7ceebd2-a3bd-4976-ac34-c2c68ef3a2da}; !- Winter Design Day Schedule Name
+
+OS:Schedule:Day,
+ {e224512e-7feb-4809-a3cc-349ad90d7c74}, !- Handle
+ OfficeSmall HVACOperationSchd Default, !- Name
+ {48baeb6c-4b7b-4ed4-b6e9-8aec399e0994}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 0; !- Value Until Time 1
+
+OS:Schedule:Day,
+ {f7ceebd2-a3bd-4976-ac34-c2c68ef3a2da}, !- Handle
+ OfficeSmall HVACOperationSchd Winter Design Day, !- Name
+ {48baeb6c-4b7b-4ed4-b6e9-8aec399e0994}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 0; !- Value Until Time 1
+
+OS:Schedule:Day,
+ {13bc31bb-1292-4965-8dcc-701a67822064}, !- Handle
+ OfficeSmall HVACOperationSchd Summer Design Day, !- Name
+ {48baeb6c-4b7b-4ed4-b6e9-8aec399e0994}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 6, !- Hour 1
+ 0, !- Minute 1
+ 0, !- Value Until Time 1
+ 19, !- Hour 2
+ 0, !- Minute 2
+ 1, !- Value Until Time 2
+ 24, !- Hour 3
+ 0, !- Minute 3
+ 0; !- Value Until Time 3
+
+OS:Schedule:Rule,
+ {1a09ca8d-276a-4321-8628-77b6301b6b4c}, !- Handle
+ Schedule Rule 13, !- Name
+ {d49fcb19-899c-4ad6-a766-4b44490b7b3c}, !- Schedule Ruleset Name
+ 0, !- Rule Order
+ {7cb9a909-a4bc-487a-9039-9c89d6e46446}, !- Day Schedule Name
+ , !- Apply Sunday
+ Yes, !- Apply Monday
+ Yes, !- Apply Tuesday
+ Yes, !- Apply Wednesday
+ Yes, !- Apply Thursday
+ Yes, !- Apply Friday
+ , !- Apply Saturday
+ , !- Apply Holiday
+ DateRange, !- Date Specification Type
+ 1, !- Start Month
+ 1, !- Start Day
+ 12, !- End Month
+ 31; !- End Day
+
+OS:Schedule:Day,
+ {7cb9a909-a4bc-487a-9039-9c89d6e46446}, !- Handle
+ OfficeSmall HVACOperationSchd SmrDsn Wkdy Day, !- Name
+ {48baeb6c-4b7b-4ed4-b6e9-8aec399e0994}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 6, !- Hour 1
+ 0, !- Minute 1
+ 0, !- Value Until Time 1
+ 19, !- Hour 2
+ 0, !- Minute 2
+ 1, !- Value Until Time 2
+ 24, !- Hour 3
+ 0, !- Minute 3
+ 0; !- Value Until Time 3
+
+OS:Schedule:Ruleset,
+ {6fd5b25f-47a9-463a-b553-2c877a434a9d}, !- Handle
+ OfficeSmall MinOA_MotorizedDamper_Sched, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ {204ee436-709d-44df-9671-ce79ca472acb}, !- Default Day Schedule Name
+ {a16cf07f-c6a1-4c89-afcf-0f4869479327}, !- Summer Design Day Schedule Name
+ {517d4a1d-daf0-4d8d-8bf5-5fcf503fd016}; !- Winter Design Day Schedule Name
+
+OS:Schedule:Day,
+ {204ee436-709d-44df-9671-ce79ca472acb}, !- Handle
+ OfficeSmall MinOA_MotorizedDamper_Sched Default, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 0; !- Value Until Time 1
+
+OS:Schedule:Day,
+ {517d4a1d-daf0-4d8d-8bf5-5fcf503fd016}, !- Handle
+ OfficeSmall MinOA_MotorizedDamper_Sched Winter Design Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 0; !- Value Until Time 1
+
+OS:Schedule:Day,
+ {a16cf07f-c6a1-4c89-afcf-0f4869479327}, !- Handle
+ OfficeSmall MinOA_MotorizedDamper_Sched Summer Design Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 7, !- Hour 1
+ 0, !- Minute 1
+ 0, !- Value Until Time 1
+ 19, !- Hour 2
+ 0, !- Minute 2
+ 1, !- Value Until Time 2
+ 24, !- Hour 3
+ 0, !- Minute 3
+ 0; !- Value Until Time 3
+
+OS:Schedule:Rule,
+ {194236ba-6ee2-4a66-b4db-00e38a134820}, !- Handle
+ Schedule Rule 14, !- Name
+ {6fd5b25f-47a9-463a-b553-2c877a434a9d}, !- Schedule Ruleset Name
+ 0, !- Rule Order
+ {49e896a1-9932-44e7-9f71-7804973dceef}, !- Day Schedule Name
+ , !- Apply Sunday
+ Yes, !- Apply Monday
+ Yes, !- Apply Tuesday
+ Yes, !- Apply Wednesday
+ Yes, !- Apply Thursday
+ Yes, !- Apply Friday
+ , !- Apply Saturday
+ , !- Apply Holiday
+ DateRange, !- Date Specification Type
+ 1, !- Start Month
+ 1, !- Start Day
+ 12, !- End Month
+ 31; !- End Day
+
+OS:Schedule:Day,
+ {49e896a1-9932-44e7-9f71-7804973dceef}, !- Handle
+ OfficeSmall MinOA_MotorizedDamper_Sched SmrDsn Wkdy Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 7, !- Hour 1
+ 0, !- Minute 1
+ 0, !- Value Until Time 1
+ 19, !- Hour 2
+ 0, !- Minute 2
+ 1, !- Value Until Time 2
+ 24, !- Hour 3
+ 0, !- Minute 3
+ 0; !- Value Until Time 3
+
+OS:AirLoopHVAC,
+ {d3278b01-fd11-4dfc-b91e-81e3287f7d2f}, !- Handle
+ Perimeter_ZN_1 ZN PSZ-AC-2, !- Name
+ , !- Controller List Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule
+ {b0d58489-edde-4d28-be94-d08c0aac8fe6}, !- Availability Manager List Name
+ AutoSize, !- Design Supply Air Flow Rate {m3/s}
+ , !- Branch List Name
+ , !- Connector List Name
+ {baeef746-5e99-4ce9-aad6-d2508d236e8a}, !- Supply Side Inlet Node Name
+ {bc7ed5dd-ea46-4ba6-8110-c3f7a959647b}, !- Demand Side Outlet Node Name
+ {b8a8b3e4-e708-48ed-ab18-00bc3b2d91dc}, !- Demand Side Inlet Node A
+ {ea53f009-863c-482d-8766-178089689a74}, !- Supply Side Outlet Node A
+ , !- Demand Side Inlet Node B
+ , !- Supply Side Outlet Node B
+ , !- Return Air Bypass Flow Temperature Setpoint Schedule Name
+ {eb796e67-e1d8-4d8c-85a2-e330450825d7}, !- Demand Mixer Name
+ {131f2e06-4b99-4e5e-9f72-6f37753027c2}, !- Demand Splitter A Name
+ , !- Demand Splitter B Name
+ ; !- Supply Splitter Name
+
+OS:Node,
+ {be3c5886-cc13-48f4-8551-a581c3d1e3ab}, !- Handle
+ Perimeter_ZN_1 ZN PSZ-AC-2 Supply Inlet Node, !- Name
+ {baeef746-5e99-4ce9-aad6-d2508d236e8a}, !- Inlet Port
+ {48eb1be5-650c-4008-9deb-cf499f268a92}; !- Outlet Port
+
+OS:Node,
+ {9d7a635f-0f4d-4d34-8f5c-cf7bbbe7ced1}, !- Handle
+ Perimeter_ZN_1 ZN PSZ-AC-2 Supply Outlet Node, !- Name
+ {a8ea02d4-5be3-4233-83ac-a87ea321a687}, !- Inlet Port
+ {ea53f009-863c-482d-8766-178089689a74}; !- Outlet Port
+
+OS:Connection,
+ {baeef746-5e99-4ce9-aad6-d2508d236e8a}, !- Handle
+ {a18e6d40-5716-4bb0-a5a5-e344f9b359c4}, !- Name
+ {d3278b01-fd11-4dfc-b91e-81e3287f7d2f}, !- Source Object
+ 8, !- Outlet Port
+ {be3c5886-cc13-48f4-8551-a581c3d1e3ab}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {ea53f009-863c-482d-8766-178089689a74}, !- Handle
+ {47750c02-9b8e-4b5f-8468-adc236e16b9c}, !- Name
+ {9d7a635f-0f4d-4d34-8f5c-cf7bbbe7ced1}, !- Source Object
+ 3, !- Outlet Port
+ {d3278b01-fd11-4dfc-b91e-81e3287f7d2f}, !- Target Object
+ 11; !- Inlet Port
+
+OS:Node,
+ {6d2d51b5-b3e7-4906-a7be-e26131b218b2}, !- Handle
+ Perimeter_ZN_1 ZN PSZ-AC-2 Demand Inlet Node, !- Name
+ {b8a8b3e4-e708-48ed-ab18-00bc3b2d91dc}, !- Inlet Port
+ {b0e7be06-aba3-4d64-8ce1-d1bab682e3ab}; !- Outlet Port
+
+OS:Node,
+ {0c9e56cd-695e-43a2-ad3f-b8d18b9a8655}, !- Handle
+ Perimeter_ZN_1 ZN PSZ-AC-2 Demand Outlet Node, !- Name
+ {a44c1dfc-935a-495c-a3f0-4048e0fff4a7}, !- Inlet Port
+ {bc7ed5dd-ea46-4ba6-8110-c3f7a959647b}; !- Outlet Port
+
+OS:Node,
+ {c96cfc42-ebfc-42ad-8cd0-d65edc2bffa4}, !- Handle
+ Perimeter_ZN_1 ZN PSZ-AC-2 Diffuser Outlet Air Node, !- Name
+ {aae85020-f6df-4127-b118-3bb2deda02ed}, !- Inlet Port
+ {7688355c-d28d-49a5-94e4-1e0faa562dd4}; !- Outlet Port
+
+OS:Connection,
+ {b8a8b3e4-e708-48ed-ab18-00bc3b2d91dc}, !- Handle
+ {3e573329-e109-479a-bf0c-f45b2625c1c0}, !- Name
+ {d3278b01-fd11-4dfc-b91e-81e3287f7d2f}, !- Source Object
+ 10, !- Outlet Port
+ {6d2d51b5-b3e7-4906-a7be-e26131b218b2}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {bc7ed5dd-ea46-4ba6-8110-c3f7a959647b}, !- Handle
+ {44fb3f9f-354d-4e1c-af94-5b1ba3b87c4c}, !- Name
+ {0c9e56cd-695e-43a2-ad3f-b8d18b9a8655}, !- Source Object
+ 3, !- Outlet Port
+ {d3278b01-fd11-4dfc-b91e-81e3287f7d2f}, !- Target Object
+ 9; !- Inlet Port
+
+OS:AirLoopHVAC:ZoneSplitter,
+ {131f2e06-4b99-4e5e-9f72-6f37753027c2}, !- Handle
+ Air Loop HVAC Zone Splitter 1, !- Name
+ {b0e7be06-aba3-4d64-8ce1-d1bab682e3ab}, !- Inlet Node Name
+ {fba7ceca-090b-4d43-83b0-9db6b4ae7e4a}; !- Outlet Node Name 1
+
+OS:AirLoopHVAC:ZoneMixer,
+ {eb796e67-e1d8-4d8c-85a2-e330450825d7}, !- Handle
+ Air Loop HVAC Zone Mixer 1, !- Name
+ {a44c1dfc-935a-495c-a3f0-4048e0fff4a7}, !- Outlet Node Name
+ {e38147ac-0968-4c0d-9b81-8c135c81a02e}; !- Inlet Node Name 1
+
+OS:Connection,
+ {b0e7be06-aba3-4d64-8ce1-d1bab682e3ab}, !- Handle
+ {0126ac82-7a74-4321-b007-344bd22ba7b9}, !- Name
+ {6d2d51b5-b3e7-4906-a7be-e26131b218b2}, !- Source Object
+ 3, !- Outlet Port
+ {131f2e06-4b99-4e5e-9f72-6f37753027c2}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {a44c1dfc-935a-495c-a3f0-4048e0fff4a7}, !- Handle
+ {b4f587e2-317e-4633-96d5-a21cedbfaacf}, !- Name
+ {eb796e67-e1d8-4d8c-85a2-e330450825d7}, !- Source Object
+ 2, !- Outlet Port
+ {0c9e56cd-695e-43a2-ad3f-b8d18b9a8655}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Sizing:System,
+ {2f2e9bf1-23cf-40a2-bfb8-6c88e85094d9}, !- Handle
+ {d3278b01-fd11-4dfc-b91e-81e3287f7d2f}, !- AirLoop Name
+ Sensible, !- Type of Load to Size On
+ Autosize, !- Design Outdoor Air Flow Rate {m3/s}
+ 1, !- Central Heating Maximum System Air Flow Ratio
+ 7.22222222222229, !- Preheat Design Temperature {C}
+ 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air}
+ 12.7777777777778, !- Precool Design Temperature {C}
+ 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air}
+ 12.7777777777778, !- Central Cooling Design Supply Air Temperature {C}
+ 50.0000000000001, !- Central Heating Design Supply Air Temperature {C}
+ Coincident, !- Sizing Option
+ No, !- 100% Outdoor Air in Cooling
+ No, !- 100% Outdoor Air in Heating
+ 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air}
+ 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air}
+ DesignDay, !- Cooling Design Air Flow Method
+ 0, !- Cooling Design Air Flow Rate {m3/s}
+ DesignDay, !- Heating Design Air Flow Method
+ 0, !- Heating Design Air Flow Rate {m3/s}
+ ZoneSum, !- System Outdoor Air Method
+ 1, !- Zone Maximum Outdoor Air Fraction {dimensionless}
+ 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
+ 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
+ 3.9475456e-005, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
+ 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
+ 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate
+ 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
+ 3.1588213e-005, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
+ CoolingDesignCapacity, !- Cooling Design Capacity Method
+ autosize, !- Cooling Design Capacity {W}
+ 234.7, !- Cooling Design Capacity Per Floor Area {W/m2}
+ 1, !- Fraction of Autosized Cooling Design Capacity
+ HeatingDesignCapacity, !- Heating Design Capacity Method
+ autosize, !- Heating Design Capacity {W}
+ 157, !- Heating Design Capacity Per Floor Area {W/m2}
+ 1, !- Fraction of Autosized Heating Design Capacity
+ OnOff; !- Central Cooling Capacity Control Method
+
+OS:Schedule:Constant,
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Handle
+ Always On Discrete, !- Name
+ {48baeb6c-4b7b-4ed4-b6e9-8aec399e0994}, !- Schedule Type Limits Name
+ 1; !- Value
+
+OS:ScheduleTypeLimits,
+ {48baeb6c-4b7b-4ed4-b6e9-8aec399e0994}, !- Handle
+ OnOff, !- Name
+ 0, !- Lower Limit Value
+ 1, !- Upper Limit Value
+ Discrete, !- Numeric Type
+ Availability; !- Unit Type
+
+OS:AvailabilityManagerAssignmentList,
+ {b0d58489-edde-4d28-be94-d08c0aac8fe6}, !- Handle
+ Air Loop HVAC 1 AvailabilityManagerAssignmentList, !- Name
+ {1fa5209c-f5cc-4350-8d93-224258069c38}; !- Availability Manager Name 1
+
+OS:SetpointManager:SingleZone:Reheat,
+ {fd5f15ee-3b0e-4649-a514-20dc1df824a5}, !- Handle
+ Perimeter_ZN_1 ZN Setpoint Manager SZ Reheat, !- Name
+ 12.7777777777778, !- Minimum Supply Air Temperature {C}
+ 50.0000000000001, !- Maximum Supply Air Temperature {C}
+ {eccf2622-9374-4edf-8caf-1981d96b5c12}, !- Control Zone Name
+ {9d7a635f-0f4d-4d34-8f5c-cf7bbbe7ced1}; !- Setpoint Node or NodeList Name
+
+OS:Fan:OnOff,
+ {533f2ab7-d7e3-45a1-91e6-9b732dfa5fa7}, !- Handle
+ Perimeter_ZN_1 ZN PSZ-AC-2 Fan, !- Name
+ {d49fcb19-899c-4ad6-a766-4b44490b7b3c}, !- Availability Schedule Name
+ 0.55575, !- Fan Total Efficiency
+ 622.722275, !- Pressure Rise {Pa}
+ autosize, !- Maximum Flow Rate {m3/s}
+ 0.855, !- Motor Efficiency
+ 1, !- Motor In Airstream Fraction
+ , !- Air Inlet Node Name
+ , !- Air Outlet Node Name
+ {34207ea2-c58f-4f99-a7c4-803437258097}, !- Fan Power Ratio Function of Speed Ratio Curve Name
+ {4e72f5c2-0649-4490-94de-aecf9e45dd28}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
+ ; !- End-Use Subcategory
+
+OS:Curve:Exponent,
+ {34207ea2-c58f-4f99-a7c4-803437258097}, !- Handle
+ Fan On Off Power Curve, !- Name
+ 1, !- Coefficient1 Constant
+ 0, !- Coefficient2 Constant
+ 0, !- Coefficient3 Constant
+ 0, !- Minimum Value of x
+ 1, !- Maximum Value of x
+ , !- Minimum Curve Output
+ , !- Maximum Curve Output
+ , !- Input Unit Type for X
+ ; !- Output Unit Type
+
+OS:Curve:Cubic,
+ {4e72f5c2-0649-4490-94de-aecf9e45dd28}, !- Handle
+ Fan On Off Efficiency Curve, !- Name
+ 1, !- Coefficient1 Constant
+ 0, !- Coefficient2 x
+ 0, !- Coefficient3 x**2
+ 0, !- Coefficient4 x**3
+ 0, !- Minimum Value of x
+ 1; !- Maximum Value of x
+
+OS:Coil:Heating:DX:SingleSpeed,
+ {5554c762-691e-4726-913b-2ab9a0a777bb}, !- Handle
+ Perimeter_ZN_1 ZN HP Htg Coil 23 Clg kBtu/hr 8.0HSPF, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ Autosize, !- Rated Total Heating Capacity {W}
+ 3.3592, !- Rated COP {W/W}
+ Autosize, !- Rated Air Flow Rate {m3/s}
+ 773.3, !- Rated Supply Fan Power Per Volume Flow Rate {W/(m3/s)}
+ , !- Air Inlet Node Name
+ , !- Air Outlet Node Name
+ {1bfea7f1-1095-458e-b853-eaf9b2498d5f}, !- Total Heating Capacity Function of Temperature Curve Name
+ {280d9688-bd63-492e-a346-6275aabe749e}, !- Total Heating Capacity Function of Flow Fraction Curve Name
+ {8aff4225-4594-4306-8181-1471256a4a20}, !- Energy Input Ratio Function of Temperature Curve Name
+ {5ce2ca36-993a-47f3-88f4-bad9af8ac9a3}, !- Energy Input Ratio Function of Flow Fraction Curve Name
+ {714c0395-0263-444c-a4f6-d9e78a580913}, !- Part Load Fraction Correlation Curve Name
+ {a3b0f2cb-17f9-4bfc-8141-e43861f2d9dd}, !- Defrost Energy Input Ratio Function of Temperature Curve Name
+ -12.2, !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
+ 1.67, !- Maximum Outdoor Dry-Bulb Temperature for Defrost Operation {C}
+ 50, !- Crankcase Heater Capacity {W}
+ 4.4, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
+ ReverseCycle, !- Defrost Strategy
+ OnDemand, !- Defrost Control
+ , !- Defrost Time Period Fraction
+ 2000; !- Resistive Defrost Heater Capacity {W}
+
+OS:Curve:Biquadratic,
+ {a3b0f2cb-17f9-4bfc-8141-e43861f2d9dd}, !- Handle
+ Perimeter_ZN_1 ZN HP Htg Coil Defrost EIR Func of Temp Curve 1, !- Name
+ 0.297145, !- Coefficient1 Constant
+ 0.0430933, !- Coefficient2 x
+ -0.000748766, !- Coefficient3 x**2
+ 0.00597727, !- Coefficient4 y
+ 0.000482112, !- Coefficient5 y**2
+ -0.000956448, !- Coefficient6 x*y
+ 12.77778, !- Minimum Value of x
+ 23.88889, !- Maximum Value of x
+ 21.11111, !- Minimum Value of y
+ 46.11111; !- Maximum Value of y
+
+OS:Coil:Heating:Gas,
+ {7c0a306e-cc46-437c-a9ff-194fa01f6d00}, !- Handle
+ Perimeter_ZN_1 ZN PSZ-AC-2 Gas Backup Htg Coil, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ 0.8, !- Gas Burner Efficiency
+ AutoSize, !- Nominal Capacity {W}
+ , !- Air Inlet Node Name
+ , !- Air Outlet Node Name
+ , !- Temperature Setpoint Node Name
+ 0, !- Parasitic Electric Load {W}
+ , !- Part Load Fraction Correlation Curve Name
+ 0; !- Parasitic Gas Load {W}
+
+OS:Coil:Cooling:DX:SingleSpeed,
+ {14d7e419-87a8-4173-8993-d326eccd122a}, !- Handle
+ Perimeter_ZN_1 ZN PSZ-AC-2 1spd DX HP Clg Coil 23kBtu/hr 14.0SEER, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ autosize, !- Rated Total Cooling Capacity {W}
+ autosize, !- Rated Sensible Heat Ratio
+ 4.11713235489972, !- Rated COP {W/W}
+ autosize, !- Rated Air Flow Rate {m3/s}
+ 773.3, !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
+ , !- Air Inlet Node Name
+ , !- Air Outlet Node Name
+ {e6cebddc-27fb-4158-9b04-49e64c32b2ed}, !- Total Cooling Capacity Function of Temperature Curve Name
+ {6708f17c-3967-4daf-89fb-e9625d394634}, !- Total Cooling Capacity Function of Flow Fraction Curve Name
+ {626baf5b-350e-404e-81da-48addd8de7f7}, !- Energy Input Ratio Function of Temperature Curve Name
+ {dfc9bddf-e7f5-4a36-93ca-5ed1d66665cb}, !- Energy Input Ratio Function of Flow Fraction Curve Name
+ {714c0395-0263-444c-a4f6-d9e78a580913}, !- Part Load Fraction Correlation Curve Name
+ , !- Nominal Time for Condensate Removal to Begin {s}
+ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
+ , !- Maximum Cycling Rate {cycles/hr}
+ , !- Latent Capacity Time Constant {s}
+ , !- Condenser Air Inlet Node Name
+ AirCooled, !- Condenser Type
+ 0, !- Evaporative Condenser Effectiveness {dimensionless}
+ Autosize, !- Evaporative Condenser Air Flow Rate {m3/s}
+ Autosize, !- Evaporative Condenser Pump Rated Power Consumption {W}
+ 0, !- Crankcase Heater Capacity {W}
+ 0, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
+ , !- Supply Water Storage Tank Name
+ , !- Condensate Collection Water Storage Tank Name
+ 0, !- Basin Heater Capacity {W/K}
+ 10, !- Basin Heater Setpoint Temperature {C}
+ ; !- Basin Heater Operating Schedule Name
+
+OS:AirLoopHVAC:UnitaryHeatPump:AirToAir,
+ {0dc1822f-b147-435f-865d-ef4882238f57}, !- Handle
+ Perimeter_ZN_1 ZN PSZ-AC-2 Unitary HP, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ {bbf954b7-05ce-4a7e-9215-50ef39fd54f4}, !- Air Inlet Node Name
+ {a8ea02d4-5be3-4233-83ac-a87ea321a687}, !- Air Outlet Node Name
+ Autosize, !- Supply Air Flow Rate During Cooling Operation {m3/s}
+ Autosize, !- Supply Air Flow Rate During Heating Operation {m3/s}
+ , !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s}
+ {eccf2622-9374-4edf-8caf-1981d96b5c12}, !- Controlling Zone or Thermostat Location
+ {533f2ab7-d7e3-45a1-91e6-9b732dfa5fa7}, !- Supply Air Fan Name
+ {5554c762-691e-4726-913b-2ab9a0a777bb}, !- Heating Coil Name
+ {14d7e419-87a8-4173-8993-d326eccd122a}, !- Cooling Coil Name
+ {7c0a306e-cc46-437c-a9ff-194fa01f6d00}, !- Supplemental Heating Coil Name
+ Autosize, !- Maximum Supply Air Temperature from Supplemental Heater {C}
+ 4.44444444444446, !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
+ BlowThrough, !- Fan Placement
+ {d49fcb19-899c-4ad6-a766-4b44490b7b3c}; !- Supply Air Fan Operating Mode Schedule Name
+
+OS:Connection,
+ {a8ea02d4-5be3-4233-83ac-a87ea321a687}, !- Handle
+ {f5422441-f8d3-48ef-91b2-f05b0335e73f}, !- Name
+ {0dc1822f-b147-435f-865d-ef4882238f57}, !- Source Object
+ 4, !- Outlet Port
+ {9d7a635f-0f4d-4d34-8f5c-cf7bbbe7ced1}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Controller:OutdoorAir,
+ {abe926bb-ab69-4174-97c2-34d66b4ccc07}, !- Handle
+ Perimeter_ZN_1 ZN PSZ-AC-2 OA System Controller, !- Name
+ , !- Relief Air Outlet Node Name
+ , !- Return Air Node Name
+ , !- Mixed Air Node Name
+ , !- Actuator Node Name
+ 0, !- Minimum Outdoor Air Flow Rate {m3/s}
+ Autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
+ NoEconomizer, !- Economizer Control Type
+ ModulateFlow, !- Economizer Control Action Type
+ 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C}
+ 64000, !- Economizer Maximum Limit Enthalpy {J/kg}
+ , !- Economizer Maximum Limit Dewpoint Temperature {C}
+ , !- Electronic Enthalpy Limit Curve Name
+ , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
+ NoLockout, !- Lockout Type
+ FixedMinimum, !- Minimum Limit Type
+ {6fd5b25f-47a9-463a-b553-2c877a434a9d}, !- Minimum Outdoor Air Schedule Name
+ , !- Minimum Fraction of Outdoor Air Schedule Name
+ , !- Maximum Fraction of Outdoor Air Schedule Name
+ {6575a07f-2eaa-4442-ad64-b7f2632ae7fe}, !- Controller Mechanical Ventilation
+ , !- Time of Day Economizer Control Schedule Name
+ No, !- High Humidity Control
+ , !- Humidistat Control Zone Name
+ , !- High Humidity Outdoor Air Flow Ratio
+ , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
+ BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
+
+OS:Controller:MechanicalVentilation,
+ {6575a07f-2eaa-4442-ad64-b7f2632ae7fe}, !- Handle
+ Controller Mechanical Ventilation 1, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule
+ , !- Demand Controlled Ventilation
+ ZoneSum; !- System Outdoor Air Method
+
+OS:AirLoopHVAC:OutdoorAirSystem,
+ {8313823d-1198-4de3-8c3b-622b7519b781}, !- Handle
+ Perimeter_ZN_1 ZN PSZ-AC-2 OA System, !- Name
+ {abe926bb-ab69-4174-97c2-34d66b4ccc07}, !- Controller Name
+ , !- Outdoor Air Equipment List Name
+ , !- Availability Manager List Name
+ {9b873d15-ccab-45b5-b29e-9c8590142b98}, !- Mixed Air Node Name
+ {4485d71e-e696-4626-ba14-e4a05b9511fe}, !- Outdoor Air Stream Node Name
+ {41c47de8-7ada-4b55-87e7-b70ec998d297}, !- Relief Air Stream Node Name
+ {48eb1be5-650c-4008-9deb-cf499f268a92}; !- Return Air Stream Node Name
+
+OS:Node,
+ {3f2f4a16-e90d-4e46-8ce2-3f910be88dc5}, !- Handle
+ Perimeter_ZN_1 ZN PSZ-AC-2 Outdoor Air Node, !- Name
+ , !- Inlet Port
+ {4485d71e-e696-4626-ba14-e4a05b9511fe}; !- Outlet Port
+
+OS:Connection,
+ {4485d71e-e696-4626-ba14-e4a05b9511fe}, !- Handle
+ {23d82b17-070f-4a99-b4b1-3f7c9af7ac55}, !- Name
+ {3f2f4a16-e90d-4e46-8ce2-3f910be88dc5}, !- Source Object
+ 3, !- Outlet Port
+ {8313823d-1198-4de3-8c3b-622b7519b781}, !- Target Object
+ 6; !- Inlet Port
+
+OS:Node,
+ {8c3e3de6-8133-469e-8b16-2b8a43718947}, !- Handle
+ Perimeter_ZN_1 ZN PSZ-AC-2 Relief Air Node, !- Name
+ {41c47de8-7ada-4b55-87e7-b70ec998d297}, !- Inlet Port
+ ; !- Outlet Port
+
+OS:Connection,
+ {41c47de8-7ada-4b55-87e7-b70ec998d297}, !- Handle
+ {ee28fc52-a006-4157-af9e-6d0a73f83720}, !- Name
+ {8313823d-1198-4de3-8c3b-622b7519b781}, !- Source Object
+ 7, !- Outlet Port
+ {8c3e3de6-8133-469e-8b16-2b8a43718947}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Node,
+ {74006b4e-a6db-4bd7-b1cf-f4f9f9611a9c}, !- Handle
+ Perimeter_ZN_1 ZN PSZ-AC-2 Mixed Air Node, !- Name
+ {9b873d15-ccab-45b5-b29e-9c8590142b98}, !- Inlet Port
+ {bbf954b7-05ce-4a7e-9215-50ef39fd54f4}; !- Outlet Port
+
+OS:Connection,
+ {48eb1be5-650c-4008-9deb-cf499f268a92}, !- Handle
+ {5cfd6cd0-94e8-435e-809b-3fef11118560}, !- Name
+ {be3c5886-cc13-48f4-8551-a581c3d1e3ab}, !- Source Object
+ 3, !- Outlet Port
+ {8313823d-1198-4de3-8c3b-622b7519b781}, !- Target Object
+ 8; !- Inlet Port
+
+OS:Connection,
+ {9b873d15-ccab-45b5-b29e-9c8590142b98}, !- Handle
+ {1374759c-ed86-42fa-86de-6a89cdb44dfa}, !- Name
+ {8313823d-1198-4de3-8c3b-622b7519b781}, !- Source Object
+ 5, !- Outlet Port
+ {74006b4e-a6db-4bd7-b1cf-f4f9f9611a9c}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {bbf954b7-05ce-4a7e-9215-50ef39fd54f4}, !- Handle
+ {752743f7-01ab-4fd9-b0d6-ef20b31ec68d}, !- Name
+ {74006b4e-a6db-4bd7-b1cf-f4f9f9611a9c}, !- Source Object
+ 3, !- Outlet Port
+ {0dc1822f-b147-435f-865d-ef4882238f57}, !- Target Object
+ 3; !- Inlet Port
+
+OS:AvailabilityManager:NightCycle,
+ {1fa5209c-f5cc-4350-8d93-224258069c38}, !- Handle
+ Availability Manager Night Cycle 1, !- Name
+ , !- Applicability Schedule
+ , !- Fan Schedule
+ CycleOnAny, !- Control Type
+ 1, !- Thermostat Tolerance {deltaC}
+ , !- Cycling Run Time Control Type
+ 1800, !- Cycling Run Time {s}
+ {b6df60a6-cf6d-48dd-a9c1-49c9e5be456c}, !- Control Zone or Zone List Name
+ {af173723-66a8-42e4-b709-89ba51d0b904}, !- Cooling Control Zone or Zone List Name
+ {53819454-c07f-44a5-89bc-e18f1d7328e7}, !- Heating Control Zone or Zone List Name
+ {b5f00678-608e-4cf5-844c-a5905bc01379}; !- Heating Zone Fans Only Zone or Zone List Name
+
+OS:ModelObjectList,
+ {b6df60a6-cf6d-48dd-a9c1-49c9e5be456c}, !- Handle
+ Availability Manager Night Cycle 1 Heating Zone Fans Only Zone List; !- Name
+
+OS:ModelObjectList,
+ {af173723-66a8-42e4-b709-89ba51d0b904}, !- Handle
+ {272d5bab-ab31-4753-aaa8-16a5b5f8144a}; !- Name
+
+OS:ModelObjectList,
+ {53819454-c07f-44a5-89bc-e18f1d7328e7}, !- Handle
+ {2f43fac3-805e-4e04-bcd3-662924b9376d}; !- Name
+
+OS:ModelObjectList,
+ {b5f00678-608e-4cf5-844c-a5905bc01379}, !- Handle
+ {8b41f098-64b2-4e0c-88e0-fd614ad14f84}; !- Name
+
+OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat,
+ {18b950bb-4f7e-467b-b136-a51044e9bc6e}, !- Handle
+ Perimeter_ZN_1 ZN PSZ-AC-2 Diffuser, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ {9949679b-9ef2-4b38-85ee-2ca81455d1c5}, !- Air Inlet Node Name
+ {aae85020-f6df-4127-b118-3bb2deda02ed}, !- Air Outlet Node Name
+ AutoSize; !- Maximum Air Flow Rate {m3/s}
+
+OS:Node,
+ {05ee4db1-559c-43e0-850f-c56f05d9c15c}, !- Handle
+ Perimeter_ZN_1 ZN Return Air Node, !- Name
+ {b9de8eaa-7cc8-4046-bd43-56b2f5723ac7}, !- Inlet Port
+ {e38147ac-0968-4c0d-9b81-8c135c81a02e}; !- Outlet Port
+
+OS:Connection,
+ {7688355c-d28d-49a5-94e4-1e0faa562dd4}, !- Handle
+ {75f106f6-5918-4e07-925a-c3a96af019fc}, !- Name
+ {c96cfc42-ebfc-42ad-8cd0-d65edc2bffa4}, !- Source Object
+ 3, !- Outlet Port
+ {2deb7de2-4a0d-408e-95d1-c7bfeed54d2a}, !- Target Object
+ 3; !- Inlet Port
+
+OS:Connection,
+ {b9de8eaa-7cc8-4046-bd43-56b2f5723ac7}, !- Handle
+ {7947db56-8327-4e41-b93a-4d5c8561ca79}, !- Name
+ {ad152a86-a2a5-4296-b589-502e7b1efd2d}, !- Source Object
+ 3, !- Outlet Port
+ {05ee4db1-559c-43e0-850f-c56f05d9c15c}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {e38147ac-0968-4c0d-9b81-8c135c81a02e}, !- Handle
+ {349dfa9c-1096-4a4b-b707-0caaf2bc8e77}, !- Name
+ {05ee4db1-559c-43e0-850f-c56f05d9c15c}, !- Source Object
+ 3, !- Outlet Port
+ {eb796e67-e1d8-4d8c-85a2-e330450825d7}, !- Target Object
+ 3; !- Inlet Port
+
+OS:Node,
+ {eb233d66-1fff-44b4-a4bf-3349e02ab4ca}, !- Handle
+ Perimeter_ZN_1 ZN PSZ-AC-2 Diffuser Inlet Air Node, !- Name
+ {fba7ceca-090b-4d43-83b0-9db6b4ae7e4a}, !- Inlet Port
+ {9949679b-9ef2-4b38-85ee-2ca81455d1c5}; !- Outlet Port
+
+OS:Connection,
+ {fba7ceca-090b-4d43-83b0-9db6b4ae7e4a}, !- Handle
+ {ae0330c6-ea91-426e-a78c-a8544ce1fae2}, !- Name
+ {131f2e06-4b99-4e5e-9f72-6f37753027c2}, !- Source Object
+ 3, !- Outlet Port
+ {eb233d66-1fff-44b4-a4bf-3349e02ab4ca}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {9949679b-9ef2-4b38-85ee-2ca81455d1c5}, !- Handle
+ {4f3a4d10-05b2-4815-8182-1d3bff5c3779}, !- Name
+ {eb233d66-1fff-44b4-a4bf-3349e02ab4ca}, !- Source Object
+ 3, !- Outlet Port
+ {18b950bb-4f7e-467b-b136-a51044e9bc6e}, !- Target Object
+ 3; !- Inlet Port
+
+OS:Connection,
+ {aae85020-f6df-4127-b118-3bb2deda02ed}, !- Handle
+ {6b8eb4b7-7ccd-4637-8e04-279fc7099862}, !- Name
+ {18b950bb-4f7e-467b-b136-a51044e9bc6e}, !- Source Object
+ 4, !- Outlet Port
+ {c96cfc42-ebfc-42ad-8cd0-d65edc2bffa4}, !- Target Object
+ 2; !- Inlet Port
+
+OS:AirLoopHVAC,
+ {1f5f8333-86c5-42a7-91eb-a79a208a768e}, !- Handle
+ Perimeter_ZN_2 ZN PSZ-AC-3, !- Name
+ , !- Controller List Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule
+ {98757b6d-f3c9-42f1-9eba-358461445113}, !- Availability Manager List Name
+ AutoSize, !- Design Supply Air Flow Rate {m3/s}
+ , !- Branch List Name
+ , !- Connector List Name
+ {ae358309-f60f-4522-bf20-260ec1ca5082}, !- Supply Side Inlet Node Name
+ {0999525f-8f77-4063-92d7-1eefd3274d18}, !- Demand Side Outlet Node Name
+ {8eb4a132-5b25-4f7b-90c6-ae4da6328a3d}, !- Demand Side Inlet Node A
+ {a6c2d522-238b-4ad1-b693-ed54aa05d112}, !- Supply Side Outlet Node A
+ , !- Demand Side Inlet Node B
+ , !- Supply Side Outlet Node B
+ , !- Return Air Bypass Flow Temperature Setpoint Schedule Name
+ {2763ebcf-d320-44de-8fcd-f99be196b5a6}, !- Demand Mixer Name
+ {95005018-eff6-436b-8327-5c42324ea477}, !- Demand Splitter A Name
+ , !- Demand Splitter B Name
+ ; !- Supply Splitter Name
+
+OS:Node,
+ {6d1eb6dc-06db-430a-864d-669b72e78124}, !- Handle
+ Perimeter_ZN_2 ZN PSZ-AC-3 Supply Inlet Node, !- Name
+ {ae358309-f60f-4522-bf20-260ec1ca5082}, !- Inlet Port
+ {6e1266c2-e34b-4733-a6ce-e328c865f02f}; !- Outlet Port
+
+OS:Node,
+ {c62d6114-7a46-4ab4-8917-1b539cfd45fd}, !- Handle
+ Perimeter_ZN_2 ZN PSZ-AC-3 Supply Outlet Node, !- Name
+ {4b50d120-396b-40ec-8427-e8dd4a622648}, !- Inlet Port
+ {a6c2d522-238b-4ad1-b693-ed54aa05d112}; !- Outlet Port
+
+OS:Connection,
+ {ae358309-f60f-4522-bf20-260ec1ca5082}, !- Handle
+ {a90cceff-6c8c-4ed9-a87c-c812c47fd169}, !- Name
+ {1f5f8333-86c5-42a7-91eb-a79a208a768e}, !- Source Object
+ 8, !- Outlet Port
+ {6d1eb6dc-06db-430a-864d-669b72e78124}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {a6c2d522-238b-4ad1-b693-ed54aa05d112}, !- Handle
+ {0d344e6a-9dcc-4f36-ae05-687addfbe516}, !- Name
+ {c62d6114-7a46-4ab4-8917-1b539cfd45fd}, !- Source Object
+ 3, !- Outlet Port
+ {1f5f8333-86c5-42a7-91eb-a79a208a768e}, !- Target Object
+ 11; !- Inlet Port
+
+OS:Node,
+ {c10219c2-6ae9-402c-91b2-5538a0554d4e}, !- Handle
+ Perimeter_ZN_2 ZN PSZ-AC-3 Demand Inlet Node, !- Name
+ {8eb4a132-5b25-4f7b-90c6-ae4da6328a3d}, !- Inlet Port
+ {f903d338-eca6-4616-b7e6-404674d60f2e}; !- Outlet Port
+
+OS:Node,
+ {c2cbab81-a577-4535-81d7-af94fd7789e0}, !- Handle
+ Perimeter_ZN_2 ZN PSZ-AC-3 Demand Outlet Node, !- Name
+ {64fae683-f612-46c2-b5c9-ba84ac8b506a}, !- Inlet Port
+ {0999525f-8f77-4063-92d7-1eefd3274d18}; !- Outlet Port
+
+OS:Node,
+ {4bf48fd2-2112-4f31-a0b6-2117bc85e671}, !- Handle
+ Perimeter_ZN_2 ZN PSZ-AC-3 Diffuser Outlet Air Node, !- Name
+ {9a777df6-4ebb-4f78-9b7a-8e274e70b7a2}, !- Inlet Port
+ {e483d5fe-47c9-461e-8f0b-cb01f35530f3}; !- Outlet Port
+
+OS:Connection,
+ {8eb4a132-5b25-4f7b-90c6-ae4da6328a3d}, !- Handle
+ {18e19bc5-e747-426b-a53b-383c626e0293}, !- Name
+ {1f5f8333-86c5-42a7-91eb-a79a208a768e}, !- Source Object
+ 10, !- Outlet Port
+ {c10219c2-6ae9-402c-91b2-5538a0554d4e}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {0999525f-8f77-4063-92d7-1eefd3274d18}, !- Handle
+ {750f0e12-a4c1-4348-a78c-490f56a12140}, !- Name
+ {c2cbab81-a577-4535-81d7-af94fd7789e0}, !- Source Object
+ 3, !- Outlet Port
+ {1f5f8333-86c5-42a7-91eb-a79a208a768e}, !- Target Object
+ 9; !- Inlet Port
+
+OS:AirLoopHVAC:ZoneSplitter,
+ {95005018-eff6-436b-8327-5c42324ea477}, !- Handle
+ Air Loop HVAC Zone Splitter 2, !- Name
+ {f903d338-eca6-4616-b7e6-404674d60f2e}, !- Inlet Node Name
+ {76b23e77-a973-40de-84fe-96763835de12}; !- Outlet Node Name 1
+
+OS:AirLoopHVAC:ZoneMixer,
+ {2763ebcf-d320-44de-8fcd-f99be196b5a6}, !- Handle
+ Air Loop HVAC Zone Mixer 2, !- Name
+ {64fae683-f612-46c2-b5c9-ba84ac8b506a}, !- Outlet Node Name
+ {07d24d16-500c-4d84-868b-69bbb1b99daa}; !- Inlet Node Name 1
+
+OS:Connection,
+ {f903d338-eca6-4616-b7e6-404674d60f2e}, !- Handle
+ {dc077fef-3752-45c4-9817-4f9850878a3f}, !- Name
+ {c10219c2-6ae9-402c-91b2-5538a0554d4e}, !- Source Object
+ 3, !- Outlet Port
+ {95005018-eff6-436b-8327-5c42324ea477}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {64fae683-f612-46c2-b5c9-ba84ac8b506a}, !- Handle
+ {e9459eb2-e8f9-44df-9760-a36fce9ec80f}, !- Name
+ {2763ebcf-d320-44de-8fcd-f99be196b5a6}, !- Source Object
+ 2, !- Outlet Port
+ {c2cbab81-a577-4535-81d7-af94fd7789e0}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Sizing:System,
+ {d2716fba-4254-4bae-955b-716934a1fbb8}, !- Handle
+ {1f5f8333-86c5-42a7-91eb-a79a208a768e}, !- AirLoop Name
+ Sensible, !- Type of Load to Size On
+ Autosize, !- Design Outdoor Air Flow Rate {m3/s}
+ 1, !- Central Heating Maximum System Air Flow Ratio
+ 7.22222222222229, !- Preheat Design Temperature {C}
+ 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air}
+ 12.7777777777778, !- Precool Design Temperature {C}
+ 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air}
+ 12.7777777777778, !- Central Cooling Design Supply Air Temperature {C}
+ 50.0000000000001, !- Central Heating Design Supply Air Temperature {C}
+ Coincident, !- Sizing Option
+ No, !- 100% Outdoor Air in Cooling
+ No, !- 100% Outdoor Air in Heating
+ 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air}
+ 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air}
+ DesignDay, !- Cooling Design Air Flow Method
+ 0, !- Cooling Design Air Flow Rate {m3/s}
+ DesignDay, !- Heating Design Air Flow Method
+ 0, !- Heating Design Air Flow Rate {m3/s}
+ ZoneSum, !- System Outdoor Air Method
+ 1, !- Zone Maximum Outdoor Air Fraction {dimensionless}
+ 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
+ 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
+ 3.9475456e-005, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
+ 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
+ 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate
+ 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
+ 3.1588213e-005, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
+ CoolingDesignCapacity, !- Cooling Design Capacity Method
+ autosize, !- Cooling Design Capacity {W}
+ 234.7, !- Cooling Design Capacity Per Floor Area {W/m2}
+ 1, !- Fraction of Autosized Cooling Design Capacity
+ HeatingDesignCapacity, !- Heating Design Capacity Method
+ autosize, !- Heating Design Capacity {W}
+ 157, !- Heating Design Capacity Per Floor Area {W/m2}
+ 1, !- Fraction of Autosized Heating Design Capacity
+ OnOff; !- Central Cooling Capacity Control Method
+
+OS:AvailabilityManagerAssignmentList,
+ {98757b6d-f3c9-42f1-9eba-358461445113}, !- Handle
+ Air Loop HVAC 1 AvailabilityManagerAssignmentList 1, !- Name
+ {e3ec262d-9e6d-4a6b-ab90-34107b150d5f}; !- Availability Manager Name 1
+
+OS:SetpointManager:SingleZone:Reheat,
+ {3318e577-947a-4e2b-bdd4-039c7db61b61}, !- Handle
+ Perimeter_ZN_2 ZN Setpoint Manager SZ Reheat, !- Name
+ 12.7777777777778, !- Minimum Supply Air Temperature {C}
+ 50.0000000000001, !- Maximum Supply Air Temperature {C}
+ {4e0efcce-e00c-469a-b646-c4dbfeb628cd}, !- Control Zone Name
+ {c62d6114-7a46-4ab4-8917-1b539cfd45fd}; !- Setpoint Node or NodeList Name
+
+OS:Fan:OnOff,
+ {0289862a-16ae-4393-8990-ea72a250d06c}, !- Handle
+ Perimeter_ZN_2 ZN PSZ-AC-3 Fan, !- Name
+ {d49fcb19-899c-4ad6-a766-4b44490b7b3c}, !- Availability Schedule Name
+ 0.55575, !- Fan Total Efficiency
+ 622.722275, !- Pressure Rise {Pa}
+ autosize, !- Maximum Flow Rate {m3/s}
+ 0.855, !- Motor Efficiency
+ 1, !- Motor In Airstream Fraction
+ , !- Air Inlet Node Name
+ , !- Air Outlet Node Name
+ {17d58b98-80cd-418e-8028-8dab1c09b278}, !- Fan Power Ratio Function of Speed Ratio Curve Name
+ {c03a3765-7369-4b06-ac93-60e23abebc92}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
+ ; !- End-Use Subcategory
+
+OS:Curve:Exponent,
+ {17d58b98-80cd-418e-8028-8dab1c09b278}, !- Handle
+ Fan On Off Power Curve 1, !- Name
+ 1, !- Coefficient1 Constant
+ 0, !- Coefficient2 Constant
+ 0, !- Coefficient3 Constant
+ 0, !- Minimum Value of x
+ 1, !- Maximum Value of x
+ , !- Minimum Curve Output
+ , !- Maximum Curve Output
+ , !- Input Unit Type for X
+ ; !- Output Unit Type
+
+OS:Curve:Cubic,
+ {c03a3765-7369-4b06-ac93-60e23abebc92}, !- Handle
+ Fan On Off Efficiency Curve 1, !- Name
+ 1, !- Coefficient1 Constant
+ 0, !- Coefficient2 x
+ 0, !- Coefficient3 x**2
+ 0, !- Coefficient4 x**3
+ 0, !- Minimum Value of x
+ 1; !- Maximum Value of x
+
+OS:Coil:Heating:DX:SingleSpeed,
+ {bb5bda5a-67ed-4c99-a17e-d90f020fb1f7}, !- Handle
+ Perimeter_ZN_2 ZN HP Htg Coil 17 Clg kBtu/hr 8.0HSPF, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ Autosize, !- Rated Total Heating Capacity {W}
+ 3.3592, !- Rated COP {W/W}
+ Autosize, !- Rated Air Flow Rate {m3/s}
+ 773.3, !- Rated Supply Fan Power Per Volume Flow Rate {W/(m3/s)}
+ , !- Air Inlet Node Name
+ , !- Air Outlet Node Name
+ {1bfea7f1-1095-458e-b853-eaf9b2498d5f}, !- Total Heating Capacity Function of Temperature Curve Name
+ {280d9688-bd63-492e-a346-6275aabe749e}, !- Total Heating Capacity Function of Flow Fraction Curve Name
+ {8aff4225-4594-4306-8181-1471256a4a20}, !- Energy Input Ratio Function of Temperature Curve Name
+ {5ce2ca36-993a-47f3-88f4-bad9af8ac9a3}, !- Energy Input Ratio Function of Flow Fraction Curve Name
+ {714c0395-0263-444c-a4f6-d9e78a580913}, !- Part Load Fraction Correlation Curve Name
+ {7173ff1f-c282-4763-85fe-bd232e8adf0a}, !- Defrost Energy Input Ratio Function of Temperature Curve Name
+ -12.2, !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
+ 1.67, !- Maximum Outdoor Dry-Bulb Temperature for Defrost Operation {C}
+ 50, !- Crankcase Heater Capacity {W}
+ 4.4, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
+ ReverseCycle, !- Defrost Strategy
+ OnDemand, !- Defrost Control
+ , !- Defrost Time Period Fraction
+ 2000; !- Resistive Defrost Heater Capacity {W}
+
+OS:Curve:Biquadratic,
+ {7173ff1f-c282-4763-85fe-bd232e8adf0a}, !- Handle
+ Perimeter_ZN_2 ZN HP Htg Coil Defrost EIR Func of Temp Curve 1, !- Name
+ 0.297145, !- Coefficient1 Constant
+ 0.0430933, !- Coefficient2 x
+ -0.000748766, !- Coefficient3 x**2
+ 0.00597727, !- Coefficient4 y
+ 0.000482112, !- Coefficient5 y**2
+ -0.000956448, !- Coefficient6 x*y
+ 12.77778, !- Minimum Value of x
+ 23.88889, !- Maximum Value of x
+ 21.11111, !- Minimum Value of y
+ 46.11111; !- Maximum Value of y
+
+OS:Coil:Heating:Gas,
+ {8f6ca639-6dfc-482e-8f8a-821edd608207}, !- Handle
+ Perimeter_ZN_2 ZN PSZ-AC-3 Gas Backup Htg Coil, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ 0.8, !- Gas Burner Efficiency
+ AutoSize, !- Nominal Capacity {W}
+ , !- Air Inlet Node Name
+ , !- Air Outlet Node Name
+ , !- Temperature Setpoint Node Name
+ 0, !- Parasitic Electric Load {W}
+ , !- Part Load Fraction Correlation Curve Name
+ 0; !- Parasitic Gas Load {W}
+
+OS:Coil:Cooling:DX:SingleSpeed,
+ {cbc1f83a-1cdf-48a1-a43e-03d90e23f2be}, !- Handle
+ Perimeter_ZN_2 ZN PSZ-AC-3 1spd DX HP Clg Coil 17kBtu/hr 14.0SEER, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ autosize, !- Rated Total Cooling Capacity {W}
+ autosize, !- Rated Sensible Heat Ratio
+ 4.11713235489972, !- Rated COP {W/W}
+ autosize, !- Rated Air Flow Rate {m3/s}
+ 773.3, !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
+ , !- Air Inlet Node Name
+ , !- Air Outlet Node Name
+ {e6cebddc-27fb-4158-9b04-49e64c32b2ed}, !- Total Cooling Capacity Function of Temperature Curve Name
+ {6708f17c-3967-4daf-89fb-e9625d394634}, !- Total Cooling Capacity Function of Flow Fraction Curve Name
+ {626baf5b-350e-404e-81da-48addd8de7f7}, !- Energy Input Ratio Function of Temperature Curve Name
+ {dfc9bddf-e7f5-4a36-93ca-5ed1d66665cb}, !- Energy Input Ratio Function of Flow Fraction Curve Name
+ {714c0395-0263-444c-a4f6-d9e78a580913}, !- Part Load Fraction Correlation Curve Name
+ , !- Nominal Time for Condensate Removal to Begin {s}
+ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
+ , !- Maximum Cycling Rate {cycles/hr}
+ , !- Latent Capacity Time Constant {s}
+ , !- Condenser Air Inlet Node Name
+ AirCooled, !- Condenser Type
+ 0, !- Evaporative Condenser Effectiveness {dimensionless}
+ Autosize, !- Evaporative Condenser Air Flow Rate {m3/s}
+ Autosize, !- Evaporative Condenser Pump Rated Power Consumption {W}
+ 0, !- Crankcase Heater Capacity {W}
+ 0, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
+ , !- Supply Water Storage Tank Name
+ , !- Condensate Collection Water Storage Tank Name
+ 0, !- Basin Heater Capacity {W/K}
+ 10, !- Basin Heater Setpoint Temperature {C}
+ ; !- Basin Heater Operating Schedule Name
+
+OS:AirLoopHVAC:UnitaryHeatPump:AirToAir,
+ {ee3cb057-ff97-4bb9-a25d-f7bff017c9ee}, !- Handle
+ Perimeter_ZN_2 ZN PSZ-AC-3 Unitary HP, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ {cc2489b9-87f3-48fb-8755-0a7b8ac94ada}, !- Air Inlet Node Name
+ {4b50d120-396b-40ec-8427-e8dd4a622648}, !- Air Outlet Node Name
+ Autosize, !- Supply Air Flow Rate During Cooling Operation {m3/s}
+ Autosize, !- Supply Air Flow Rate During Heating Operation {m3/s}
+ , !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s}
+ {4e0efcce-e00c-469a-b646-c4dbfeb628cd}, !- Controlling Zone or Thermostat Location
+ {0289862a-16ae-4393-8990-ea72a250d06c}, !- Supply Air Fan Name
+ {bb5bda5a-67ed-4c99-a17e-d90f020fb1f7}, !- Heating Coil Name
+ {cbc1f83a-1cdf-48a1-a43e-03d90e23f2be}, !- Cooling Coil Name
+ {8f6ca639-6dfc-482e-8f8a-821edd608207}, !- Supplemental Heating Coil Name
+ Autosize, !- Maximum Supply Air Temperature from Supplemental Heater {C}
+ 4.44444444444446, !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
+ BlowThrough, !- Fan Placement
+ {d49fcb19-899c-4ad6-a766-4b44490b7b3c}; !- Supply Air Fan Operating Mode Schedule Name
+
+OS:Connection,
+ {4b50d120-396b-40ec-8427-e8dd4a622648}, !- Handle
+ {28b65be7-7ce8-4b4f-bc5b-fbe2464eb883}, !- Name
+ {ee3cb057-ff97-4bb9-a25d-f7bff017c9ee}, !- Source Object
+ 4, !- Outlet Port
+ {c62d6114-7a46-4ab4-8917-1b539cfd45fd}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Controller:OutdoorAir,
+ {cf51371a-c1e4-4066-aa67-f9a090e966da}, !- Handle
+ Perimeter_ZN_2 ZN PSZ-AC-3 OA System Controller, !- Name
+ , !- Relief Air Outlet Node Name
+ , !- Return Air Node Name
+ , !- Mixed Air Node Name
+ , !- Actuator Node Name
+ 0, !- Minimum Outdoor Air Flow Rate {m3/s}
+ Autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
+ NoEconomizer, !- Economizer Control Type
+ ModulateFlow, !- Economizer Control Action Type
+ 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C}
+ 64000, !- Economizer Maximum Limit Enthalpy {J/kg}
+ , !- Economizer Maximum Limit Dewpoint Temperature {C}
+ , !- Electronic Enthalpy Limit Curve Name
+ , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
+ NoLockout, !- Lockout Type
+ FixedMinimum, !- Minimum Limit Type
+ {6fd5b25f-47a9-463a-b553-2c877a434a9d}, !- Minimum Outdoor Air Schedule Name
+ , !- Minimum Fraction of Outdoor Air Schedule Name
+ , !- Maximum Fraction of Outdoor Air Schedule Name
+ {2cbc40c0-f92a-4b2c-bb2e-8b75ca5df698}, !- Controller Mechanical Ventilation
+ , !- Time of Day Economizer Control Schedule Name
+ No, !- High Humidity Control
+ , !- Humidistat Control Zone Name
+ , !- High Humidity Outdoor Air Flow Ratio
+ , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
+ BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
+
+OS:Controller:MechanicalVentilation,
+ {2cbc40c0-f92a-4b2c-bb2e-8b75ca5df698}, !- Handle
+ Controller Mechanical Ventilation 2, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule
+ , !- Demand Controlled Ventilation
+ ZoneSum; !- System Outdoor Air Method
+
+OS:AirLoopHVAC:OutdoorAirSystem,
+ {890b74db-2775-4242-9c35-d34bb5d446c3}, !- Handle
+ Perimeter_ZN_2 ZN PSZ-AC-3 OA System, !- Name
+ {cf51371a-c1e4-4066-aa67-f9a090e966da}, !- Controller Name
+ , !- Outdoor Air Equipment List Name
+ , !- Availability Manager List Name
+ {bb8060df-bf1f-4a5a-9403-e316e824732c}, !- Mixed Air Node Name
+ {1bf53203-3c0b-4930-a117-1c53da3b0628}, !- Outdoor Air Stream Node Name
+ {ad4d4a12-973d-4ccb-8dd3-559304a5da31}, !- Relief Air Stream Node Name
+ {6e1266c2-e34b-4733-a6ce-e328c865f02f}; !- Return Air Stream Node Name
+
+OS:Node,
+ {8a0d0c3b-527e-4e5f-ad7f-5e80254c6ece}, !- Handle
+ Perimeter_ZN_2 ZN PSZ-AC-3 Outdoor Air Node, !- Name
+ , !- Inlet Port
+ {1bf53203-3c0b-4930-a117-1c53da3b0628}; !- Outlet Port
+
+OS:Connection,
+ {1bf53203-3c0b-4930-a117-1c53da3b0628}, !- Handle
+ {f1c5f0e4-034e-415a-a1a4-1e395243cca6}, !- Name
+ {8a0d0c3b-527e-4e5f-ad7f-5e80254c6ece}, !- Source Object
+ 3, !- Outlet Port
+ {890b74db-2775-4242-9c35-d34bb5d446c3}, !- Target Object
+ 6; !- Inlet Port
+
+OS:Node,
+ {bc2ec1a9-54ab-40b8-bca7-9de7332150c1}, !- Handle
+ Perimeter_ZN_2 ZN PSZ-AC-3 Relief Air Node, !- Name
+ {ad4d4a12-973d-4ccb-8dd3-559304a5da31}, !- Inlet Port
+ ; !- Outlet Port
+
+OS:Connection,
+ {ad4d4a12-973d-4ccb-8dd3-559304a5da31}, !- Handle
+ {cddba4d4-20c1-4fd4-813e-dc3353970037}, !- Name
+ {890b74db-2775-4242-9c35-d34bb5d446c3}, !- Source Object
+ 7, !- Outlet Port
+ {bc2ec1a9-54ab-40b8-bca7-9de7332150c1}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Node,
+ {23df35b8-e339-47ba-bcc7-2648896bcbe5}, !- Handle
+ Perimeter_ZN_2 ZN PSZ-AC-3 Mixed Air Node, !- Name
+ {bb8060df-bf1f-4a5a-9403-e316e824732c}, !- Inlet Port
+ {cc2489b9-87f3-48fb-8755-0a7b8ac94ada}; !- Outlet Port
+
+OS:Connection,
+ {6e1266c2-e34b-4733-a6ce-e328c865f02f}, !- Handle
+ {8933361c-e9df-47b6-b412-826af85f771b}, !- Name
+ {6d1eb6dc-06db-430a-864d-669b72e78124}, !- Source Object
+ 3, !- Outlet Port
+ {890b74db-2775-4242-9c35-d34bb5d446c3}, !- Target Object
+ 8; !- Inlet Port
+
+OS:Connection,
+ {bb8060df-bf1f-4a5a-9403-e316e824732c}, !- Handle
+ {c25c7b3e-ba7b-4a88-98fe-77ca48384272}, !- Name
+ {890b74db-2775-4242-9c35-d34bb5d446c3}, !- Source Object
+ 5, !- Outlet Port
+ {23df35b8-e339-47ba-bcc7-2648896bcbe5}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {cc2489b9-87f3-48fb-8755-0a7b8ac94ada}, !- Handle
+ {e32c4f3e-3c02-4228-94bc-ec324df800a0}, !- Name
+ {23df35b8-e339-47ba-bcc7-2648896bcbe5}, !- Source Object
+ 3, !- Outlet Port
+ {ee3cb057-ff97-4bb9-a25d-f7bff017c9ee}, !- Target Object
+ 3; !- Inlet Port
+
+OS:AvailabilityManager:NightCycle,
+ {e3ec262d-9e6d-4a6b-ab90-34107b150d5f}, !- Handle
+ Availability Manager Night Cycle 2, !- Name
+ , !- Applicability Schedule
+ , !- Fan Schedule
+ CycleOnAny, !- Control Type
+ 1, !- Thermostat Tolerance {deltaC}
+ , !- Cycling Run Time Control Type
+ 1800, !- Cycling Run Time {s}
+ {b99f07c3-a30c-45eb-b900-c5961ceeaa12}, !- Control Zone or Zone List Name
+ {686e1109-2630-4471-90a3-283ce6a3a9a9}, !- Cooling Control Zone or Zone List Name
+ {741cf195-8cdd-4ab1-a52d-e40f3aa91027}, !- Heating Control Zone or Zone List Name
+ {c0476eaa-254f-4003-b346-f26b19ec8a70}; !- Heating Zone Fans Only Zone or Zone List Name
+
+OS:ModelObjectList,
+ {b99f07c3-a30c-45eb-b900-c5961ceeaa12}, !- Handle
+ Availability Manager Night Cycle 2 Heating Zone Fans Only Zone List; !- Name
+
+OS:ModelObjectList,
+ {686e1109-2630-4471-90a3-283ce6a3a9a9}, !- Handle
+ {4110b42d-b4bd-4c29-b921-1958b6fd7b75}; !- Name
+
+OS:ModelObjectList,
+ {741cf195-8cdd-4ab1-a52d-e40f3aa91027}, !- Handle
+ {84a524f2-e794-4ae3-ab62-043a9d1aa4f1}; !- Name
+
+OS:ModelObjectList,
+ {c0476eaa-254f-4003-b346-f26b19ec8a70}, !- Handle
+ {7e2c9ef9-9fcd-4e7e-b026-9358fa413fea}; !- Name
+
+OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat,
+ {2383fe41-6853-4ba0-8c95-0f721c92afa6}, !- Handle
+ Perimeter_ZN_2 ZN PSZ-AC-3 Diffuser, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ {37b487ff-ee3e-4907-a1ef-f2c21cb30c18}, !- Air Inlet Node Name
+ {9a777df6-4ebb-4f78-9b7a-8e274e70b7a2}, !- Air Outlet Node Name
+ AutoSize; !- Maximum Air Flow Rate {m3/s}
+
+OS:Node,
+ {a5776e75-bd30-44bc-8c74-abe8a4303185}, !- Handle
+ Perimeter_ZN_2 ZN Return Air Node, !- Name
+ {9800cc72-c39a-4296-99fb-0d26a6b3d5b9}, !- Inlet Port
+ {07d24d16-500c-4d84-868b-69bbb1b99daa}; !- Outlet Port
+
+OS:Connection,
+ {e483d5fe-47c9-461e-8f0b-cb01f35530f3}, !- Handle
+ {e8a70625-f175-4663-ac41-0bbcdca4638c}, !- Name
+ {4bf48fd2-2112-4f31-a0b6-2117bc85e671}, !- Source Object
+ 3, !- Outlet Port
+ {d6cb6915-46e1-4851-abac-235d6ef97fbc}, !- Target Object
+ 3; !- Inlet Port
+
+OS:Connection,
+ {9800cc72-c39a-4296-99fb-0d26a6b3d5b9}, !- Handle
+ {d7b9c658-de5c-4fc2-90fb-15e3678904e0}, !- Name
+ {dbf0eedf-d000-4dee-a462-4f0f9d32096f}, !- Source Object
+ 3, !- Outlet Port
+ {a5776e75-bd30-44bc-8c74-abe8a4303185}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {07d24d16-500c-4d84-868b-69bbb1b99daa}, !- Handle
+ {e2352ed4-95d9-4cee-83c8-8c686d94b2e9}, !- Name
+ {a5776e75-bd30-44bc-8c74-abe8a4303185}, !- Source Object
+ 3, !- Outlet Port
+ {2763ebcf-d320-44de-8fcd-f99be196b5a6}, !- Target Object
+ 3; !- Inlet Port
+
+OS:Node,
+ {dc389caf-ca95-4d61-b7e5-3ac35e979ea2}, !- Handle
+ Perimeter_ZN_2 ZN PSZ-AC-3 Diffuser Inlet Air Node, !- Name
+ {76b23e77-a973-40de-84fe-96763835de12}, !- Inlet Port
+ {37b487ff-ee3e-4907-a1ef-f2c21cb30c18}; !- Outlet Port
+
+OS:Connection,
+ {76b23e77-a973-40de-84fe-96763835de12}, !- Handle
+ {12d70b6e-68e7-4809-8cc8-97ffa197285d}, !- Name
+ {95005018-eff6-436b-8327-5c42324ea477}, !- Source Object
+ 3, !- Outlet Port
+ {dc389caf-ca95-4d61-b7e5-3ac35e979ea2}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {37b487ff-ee3e-4907-a1ef-f2c21cb30c18}, !- Handle
+ {185477f2-4da7-4bfb-8716-4704f21b4f9a}, !- Name
+ {dc389caf-ca95-4d61-b7e5-3ac35e979ea2}, !- Source Object
+ 3, !- Outlet Port
+ {2383fe41-6853-4ba0-8c95-0f721c92afa6}, !- Target Object
+ 3; !- Inlet Port
+
+OS:Connection,
+ {9a777df6-4ebb-4f78-9b7a-8e274e70b7a2}, !- Handle
+ {83affba7-0853-44dc-b389-d343307713f5}, !- Name
+ {2383fe41-6853-4ba0-8c95-0f721c92afa6}, !- Source Object
+ 4, !- Outlet Port
+ {4bf48fd2-2112-4f31-a0b6-2117bc85e671}, !- Target Object
+ 2; !- Inlet Port
+
+OS:AirLoopHVAC,
+ {ac45fbf6-7c5e-4add-ad06-ba0d06741283}, !- Handle
+ Perimeter_ZN_3 ZN PSZ-AC-4, !- Name
+ , !- Controller List Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule
+ {27ee141d-acd1-4332-ab94-6acfb62b97c8}, !- Availability Manager List Name
+ AutoSize, !- Design Supply Air Flow Rate {m3/s}
+ , !- Branch List Name
+ , !- Connector List Name
+ {cc470ff7-231f-411e-9963-a299e84a6aed}, !- Supply Side Inlet Node Name
+ {33de808f-abd2-4bbf-a556-d29361030b05}, !- Demand Side Outlet Node Name
+ {4054c22f-b3d4-43af-884f-04d2776a0d70}, !- Demand Side Inlet Node A
+ {7a5401a5-d05e-458e-b51f-80a9fb17aaa0}, !- Supply Side Outlet Node A
+ , !- Demand Side Inlet Node B
+ , !- Supply Side Outlet Node B
+ , !- Return Air Bypass Flow Temperature Setpoint Schedule Name
+ {2e490107-8236-4863-9269-b0cca22607f5}, !- Demand Mixer Name
+ {5959bc36-dcda-4866-bb80-34cee3b72166}, !- Demand Splitter A Name
+ , !- Demand Splitter B Name
+ ; !- Supply Splitter Name
+
+OS:Node,
+ {f1069a92-7630-4565-ba9c-53a3d975ef8c}, !- Handle
+ Perimeter_ZN_3 ZN PSZ-AC-4 Supply Inlet Node, !- Name
+ {cc470ff7-231f-411e-9963-a299e84a6aed}, !- Inlet Port
+ {f84622bf-5c97-49b0-a98a-023ba8a272f4}; !- Outlet Port
+
+OS:Node,
+ {f2f047e7-14f5-40a0-bd2b-a79a211033a2}, !- Handle
+ Perimeter_ZN_3 ZN PSZ-AC-4 Supply Outlet Node, !- Name
+ {ac6bec65-8f75-425e-9f3a-af62f033b8cc}, !- Inlet Port
+ {7a5401a5-d05e-458e-b51f-80a9fb17aaa0}; !- Outlet Port
+
+OS:Connection,
+ {cc470ff7-231f-411e-9963-a299e84a6aed}, !- Handle
+ {29adae53-7080-4238-a473-8621c58c3ddc}, !- Name
+ {ac45fbf6-7c5e-4add-ad06-ba0d06741283}, !- Source Object
+ 8, !- Outlet Port
+ {f1069a92-7630-4565-ba9c-53a3d975ef8c}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {7a5401a5-d05e-458e-b51f-80a9fb17aaa0}, !- Handle
+ {02d345c9-0cd1-42b6-93aa-d745f9905f4f}, !- Name
+ {f2f047e7-14f5-40a0-bd2b-a79a211033a2}, !- Source Object
+ 3, !- Outlet Port
+ {ac45fbf6-7c5e-4add-ad06-ba0d06741283}, !- Target Object
+ 11; !- Inlet Port
+
+OS:Node,
+ {d2ae12c1-426c-42ff-93cc-d211c241e086}, !- Handle
+ Perimeter_ZN_3 ZN PSZ-AC-4 Demand Inlet Node, !- Name
+ {4054c22f-b3d4-43af-884f-04d2776a0d70}, !- Inlet Port
+ {3891e8a5-5447-490d-9e94-1a25f03c8ff4}; !- Outlet Port
+
+OS:Node,
+ {8d90200a-2ac3-455c-895a-c82c4bb39dea}, !- Handle
+ Perimeter_ZN_3 ZN PSZ-AC-4 Demand Outlet Node, !- Name
+ {e1fe610d-e012-407f-81a5-8bcdad6e0c96}, !- Inlet Port
+ {33de808f-abd2-4bbf-a556-d29361030b05}; !- Outlet Port
+
+OS:Node,
+ {d359491d-c8f7-4fce-88db-9623ca2a6587}, !- Handle
+ Perimeter_ZN_3 ZN PSZ-AC-4 Diffuser Outlet Air Node, !- Name
+ {2cafbfc5-4153-42af-95bc-57276f700354}, !- Inlet Port
+ {3a84ce54-a894-4b40-a410-c931fcac8ad4}; !- Outlet Port
+
+OS:Connection,
+ {4054c22f-b3d4-43af-884f-04d2776a0d70}, !- Handle
+ {2e8c699c-289d-44f9-bc44-1f58cd6f2c07}, !- Name
+ {ac45fbf6-7c5e-4add-ad06-ba0d06741283}, !- Source Object
+ 10, !- Outlet Port
+ {d2ae12c1-426c-42ff-93cc-d211c241e086}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {33de808f-abd2-4bbf-a556-d29361030b05}, !- Handle
+ {ffd4b593-5e69-4efa-8f4d-e602ed88935a}, !- Name
+ {8d90200a-2ac3-455c-895a-c82c4bb39dea}, !- Source Object
+ 3, !- Outlet Port
+ {ac45fbf6-7c5e-4add-ad06-ba0d06741283}, !- Target Object
+ 9; !- Inlet Port
+
+OS:AirLoopHVAC:ZoneSplitter,
+ {5959bc36-dcda-4866-bb80-34cee3b72166}, !- Handle
+ Air Loop HVAC Zone Splitter 3, !- Name
+ {3891e8a5-5447-490d-9e94-1a25f03c8ff4}, !- Inlet Node Name
+ {b0c7226a-635f-4a4a-964c-b5280cd98495}; !- Outlet Node Name 1
+
+OS:AirLoopHVAC:ZoneMixer,
+ {2e490107-8236-4863-9269-b0cca22607f5}, !- Handle
+ Air Loop HVAC Zone Mixer 3, !- Name
+ {e1fe610d-e012-407f-81a5-8bcdad6e0c96}, !- Outlet Node Name
+ {f4619427-1183-4dc7-8abd-5722fd66e488}; !- Inlet Node Name 1
+
+OS:Connection,
+ {3891e8a5-5447-490d-9e94-1a25f03c8ff4}, !- Handle
+ {1f24457e-4e83-4ac9-a958-44d59b0bbb67}, !- Name
+ {d2ae12c1-426c-42ff-93cc-d211c241e086}, !- Source Object
+ 3, !- Outlet Port
+ {5959bc36-dcda-4866-bb80-34cee3b72166}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {e1fe610d-e012-407f-81a5-8bcdad6e0c96}, !- Handle
+ {de410ed5-bcbc-4e41-8f57-615708b83ba8}, !- Name
+ {2e490107-8236-4863-9269-b0cca22607f5}, !- Source Object
+ 2, !- Outlet Port
+ {8d90200a-2ac3-455c-895a-c82c4bb39dea}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Sizing:System,
+ {f84182ee-0227-4bf7-b0b9-7359de6358d0}, !- Handle
+ {ac45fbf6-7c5e-4add-ad06-ba0d06741283}, !- AirLoop Name
+ Sensible, !- Type of Load to Size On
+ Autosize, !- Design Outdoor Air Flow Rate {m3/s}
+ 1, !- Central Heating Maximum System Air Flow Ratio
+ 7.22222222222229, !- Preheat Design Temperature {C}
+ 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air}
+ 12.7777777777778, !- Precool Design Temperature {C}
+ 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air}
+ 12.7777777777778, !- Central Cooling Design Supply Air Temperature {C}
+ 50.0000000000001, !- Central Heating Design Supply Air Temperature {C}
+ Coincident, !- Sizing Option
+ No, !- 100% Outdoor Air in Cooling
+ No, !- 100% Outdoor Air in Heating
+ 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air}
+ 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air}
+ DesignDay, !- Cooling Design Air Flow Method
+ 0, !- Cooling Design Air Flow Rate {m3/s}
+ DesignDay, !- Heating Design Air Flow Method
+ 0, !- Heating Design Air Flow Rate {m3/s}
+ ZoneSum, !- System Outdoor Air Method
+ 1, !- Zone Maximum Outdoor Air Fraction {dimensionless}
+ 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
+ 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
+ 3.9475456e-005, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
+ 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
+ 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate
+ 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
+ 3.1588213e-005, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
+ CoolingDesignCapacity, !- Cooling Design Capacity Method
+ autosize, !- Cooling Design Capacity {W}
+ 234.7, !- Cooling Design Capacity Per Floor Area {W/m2}
+ 1, !- Fraction of Autosized Cooling Design Capacity
+ HeatingDesignCapacity, !- Heating Design Capacity Method
+ autosize, !- Heating Design Capacity {W}
+ 157, !- Heating Design Capacity Per Floor Area {W/m2}
+ 1, !- Fraction of Autosized Heating Design Capacity
+ OnOff; !- Central Cooling Capacity Control Method
+
+OS:AvailabilityManagerAssignmentList,
+ {27ee141d-acd1-4332-ab94-6acfb62b97c8}, !- Handle
+ Air Loop HVAC 1 AvailabilityManagerAssignmentList 2, !- Name
+ {ff37cdb5-ec3a-4493-a65e-3b27efb199aa}; !- Availability Manager Name 1
+
+OS:SetpointManager:SingleZone:Reheat,
+ {06fc5959-8315-4199-a785-4a7742ac3d6c}, !- Handle
+ Perimeter_ZN_3 ZN Setpoint Manager SZ Reheat, !- Name
+ 12.7777777777778, !- Minimum Supply Air Temperature {C}
+ 50.0000000000001, !- Maximum Supply Air Temperature {C}
+ {afcd34b0-00fa-40af-a2e1-995004075d3f}, !- Control Zone Name
+ {f2f047e7-14f5-40a0-bd2b-a79a211033a2}; !- Setpoint Node or NodeList Name
+
+OS:Fan:OnOff,
+ {afd30c0b-79d4-4a87-a936-f358d84e91c5}, !- Handle
+ Perimeter_ZN_3 ZN PSZ-AC-4 Fan, !- Name
+ {d49fcb19-899c-4ad6-a766-4b44490b7b3c}, !- Availability Schedule Name
+ 0.55575, !- Fan Total Efficiency
+ 622.722275, !- Pressure Rise {Pa}
+ autosize, !- Maximum Flow Rate {m3/s}
+ 0.855, !- Motor Efficiency
+ 1, !- Motor In Airstream Fraction
+ , !- Air Inlet Node Name
+ , !- Air Outlet Node Name
+ {a713ee58-d24c-4f9f-9b12-b3b47fe1a19b}, !- Fan Power Ratio Function of Speed Ratio Curve Name
+ {6307a962-a689-47ae-a26f-3bbb3e73cf36}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
+ ; !- End-Use Subcategory
+
+OS:Curve:Exponent,
+ {a713ee58-d24c-4f9f-9b12-b3b47fe1a19b}, !- Handle
+ Fan On Off Power Curve 2, !- Name
+ 1, !- Coefficient1 Constant
+ 0, !- Coefficient2 Constant
+ 0, !- Coefficient3 Constant
+ 0, !- Minimum Value of x
+ 1, !- Maximum Value of x
+ , !- Minimum Curve Output
+ , !- Maximum Curve Output
+ , !- Input Unit Type for X
+ ; !- Output Unit Type
+
+OS:Curve:Cubic,
+ {6307a962-a689-47ae-a26f-3bbb3e73cf36}, !- Handle
+ Fan On Off Efficiency Curve 2, !- Name
+ 1, !- Coefficient1 Constant
+ 0, !- Coefficient2 x
+ 0, !- Coefficient3 x**2
+ 0, !- Coefficient4 x**3
+ 0, !- Minimum Value of x
+ 1; !- Maximum Value of x
+
+OS:Coil:Heating:DX:SingleSpeed,
+ {981887c6-f2be-473e-8cf3-911cf272c764}, !- Handle
+ Perimeter_ZN_3 ZN HP Htg Coil 20 Clg kBtu/hr 8.0HSPF, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ Autosize, !- Rated Total Heating Capacity {W}
+ 3.3592, !- Rated COP {W/W}
+ Autosize, !- Rated Air Flow Rate {m3/s}
+ 773.3, !- Rated Supply Fan Power Per Volume Flow Rate {W/(m3/s)}
+ , !- Air Inlet Node Name
+ , !- Air Outlet Node Name
+ {1bfea7f1-1095-458e-b853-eaf9b2498d5f}, !- Total Heating Capacity Function of Temperature Curve Name
+ {280d9688-bd63-492e-a346-6275aabe749e}, !- Total Heating Capacity Function of Flow Fraction Curve Name
+ {8aff4225-4594-4306-8181-1471256a4a20}, !- Energy Input Ratio Function of Temperature Curve Name
+ {5ce2ca36-993a-47f3-88f4-bad9af8ac9a3}, !- Energy Input Ratio Function of Flow Fraction Curve Name
+ {714c0395-0263-444c-a4f6-d9e78a580913}, !- Part Load Fraction Correlation Curve Name
+ {a111a42c-308a-4006-9d5d-3bdb6194720c}, !- Defrost Energy Input Ratio Function of Temperature Curve Name
+ -12.2, !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
+ 1.67, !- Maximum Outdoor Dry-Bulb Temperature for Defrost Operation {C}
+ 50, !- Crankcase Heater Capacity {W}
+ 4.4, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
+ ReverseCycle, !- Defrost Strategy
+ OnDemand, !- Defrost Control
+ , !- Defrost Time Period Fraction
+ 2000; !- Resistive Defrost Heater Capacity {W}
+
+OS:Curve:Biquadratic,
+ {a111a42c-308a-4006-9d5d-3bdb6194720c}, !- Handle
+ Perimeter_ZN_3 ZN HP Htg Coil Defrost EIR Func of Temp Curve 1, !- Name
+ 0.297145, !- Coefficient1 Constant
+ 0.0430933, !- Coefficient2 x
+ -0.000748766, !- Coefficient3 x**2
+ 0.00597727, !- Coefficient4 y
+ 0.000482112, !- Coefficient5 y**2
+ -0.000956448, !- Coefficient6 x*y
+ 12.77778, !- Minimum Value of x
+ 23.88889, !- Maximum Value of x
+ 21.11111, !- Minimum Value of y
+ 46.11111; !- Maximum Value of y
+
+OS:Coil:Heating:Gas,
+ {edb4ccb9-9636-46dc-8118-d3d971ab8268}, !- Handle
+ Perimeter_ZN_3 ZN PSZ-AC-4 Gas Backup Htg Coil, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ 0.8, !- Gas Burner Efficiency
+ AutoSize, !- Nominal Capacity {W}
+ , !- Air Inlet Node Name
+ , !- Air Outlet Node Name
+ , !- Temperature Setpoint Node Name
+ 0, !- Parasitic Electric Load {W}
+ , !- Part Load Fraction Correlation Curve Name
+ 0; !- Parasitic Gas Load {W}
+
+OS:Coil:Cooling:DX:SingleSpeed,
+ {09a50d2b-8fd9-4df4-9d2a-81f066f89fd7}, !- Handle
+ Perimeter_ZN_3 ZN PSZ-AC-4 1spd DX HP Clg Coil 20kBtu/hr 14.0SEER, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ autosize, !- Rated Total Cooling Capacity {W}
+ autosize, !- Rated Sensible Heat Ratio
+ 4.11713235489972, !- Rated COP {W/W}
+ autosize, !- Rated Air Flow Rate {m3/s}
+ 773.3, !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
+ , !- Air Inlet Node Name
+ , !- Air Outlet Node Name
+ {e6cebddc-27fb-4158-9b04-49e64c32b2ed}, !- Total Cooling Capacity Function of Temperature Curve Name
+ {6708f17c-3967-4daf-89fb-e9625d394634}, !- Total Cooling Capacity Function of Flow Fraction Curve Name
+ {626baf5b-350e-404e-81da-48addd8de7f7}, !- Energy Input Ratio Function of Temperature Curve Name
+ {dfc9bddf-e7f5-4a36-93ca-5ed1d66665cb}, !- Energy Input Ratio Function of Flow Fraction Curve Name
+ {714c0395-0263-444c-a4f6-d9e78a580913}, !- Part Load Fraction Correlation Curve Name
+ , !- Nominal Time for Condensate Removal to Begin {s}
+ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
+ , !- Maximum Cycling Rate {cycles/hr}
+ , !- Latent Capacity Time Constant {s}
+ , !- Condenser Air Inlet Node Name
+ AirCooled, !- Condenser Type
+ 0, !- Evaporative Condenser Effectiveness {dimensionless}
+ Autosize, !- Evaporative Condenser Air Flow Rate {m3/s}
+ Autosize, !- Evaporative Condenser Pump Rated Power Consumption {W}
+ 0, !- Crankcase Heater Capacity {W}
+ 0, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
+ , !- Supply Water Storage Tank Name
+ , !- Condensate Collection Water Storage Tank Name
+ 0, !- Basin Heater Capacity {W/K}
+ 10, !- Basin Heater Setpoint Temperature {C}
+ ; !- Basin Heater Operating Schedule Name
+
+OS:AirLoopHVAC:UnitaryHeatPump:AirToAir,
+ {69d87029-8eb9-42cc-a480-aabeec377f4d}, !- Handle
+ Perimeter_ZN_3 ZN PSZ-AC-4 Unitary HP, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ {4807b52c-e60a-47aa-803c-541c02eeff73}, !- Air Inlet Node Name
+ {ac6bec65-8f75-425e-9f3a-af62f033b8cc}, !- Air Outlet Node Name
+ Autosize, !- Supply Air Flow Rate During Cooling Operation {m3/s}
+ Autosize, !- Supply Air Flow Rate During Heating Operation {m3/s}
+ , !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s}
+ {afcd34b0-00fa-40af-a2e1-995004075d3f}, !- Controlling Zone or Thermostat Location
+ {afd30c0b-79d4-4a87-a936-f358d84e91c5}, !- Supply Air Fan Name
+ {981887c6-f2be-473e-8cf3-911cf272c764}, !- Heating Coil Name
+ {09a50d2b-8fd9-4df4-9d2a-81f066f89fd7}, !- Cooling Coil Name
+ {edb4ccb9-9636-46dc-8118-d3d971ab8268}, !- Supplemental Heating Coil Name
+ Autosize, !- Maximum Supply Air Temperature from Supplemental Heater {C}
+ 4.44444444444446, !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
+ BlowThrough, !- Fan Placement
+ {d49fcb19-899c-4ad6-a766-4b44490b7b3c}; !- Supply Air Fan Operating Mode Schedule Name
+
+OS:Connection,
+ {ac6bec65-8f75-425e-9f3a-af62f033b8cc}, !- Handle
+ {8ebaa7ab-8244-409e-9d7f-28ec5f1a34eb}, !- Name
+ {69d87029-8eb9-42cc-a480-aabeec377f4d}, !- Source Object
+ 4, !- Outlet Port
+ {f2f047e7-14f5-40a0-bd2b-a79a211033a2}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Controller:OutdoorAir,
+ {5e4158c9-fb0c-4729-99f7-fcac6bf37c29}, !- Handle
+ Perimeter_ZN_3 ZN PSZ-AC-4 OA System Controller, !- Name
+ , !- Relief Air Outlet Node Name
+ , !- Return Air Node Name
+ , !- Mixed Air Node Name
+ , !- Actuator Node Name
+ 0, !- Minimum Outdoor Air Flow Rate {m3/s}
+ Autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
+ NoEconomizer, !- Economizer Control Type
+ ModulateFlow, !- Economizer Control Action Type
+ 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C}
+ 64000, !- Economizer Maximum Limit Enthalpy {J/kg}
+ , !- Economizer Maximum Limit Dewpoint Temperature {C}
+ , !- Electronic Enthalpy Limit Curve Name
+ , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
+ NoLockout, !- Lockout Type
+ FixedMinimum, !- Minimum Limit Type
+ {6fd5b25f-47a9-463a-b553-2c877a434a9d}, !- Minimum Outdoor Air Schedule Name
+ , !- Minimum Fraction of Outdoor Air Schedule Name
+ , !- Maximum Fraction of Outdoor Air Schedule Name
+ {1796bad4-4a8b-4fe3-a273-81022ea8f71f}, !- Controller Mechanical Ventilation
+ , !- Time of Day Economizer Control Schedule Name
+ No, !- High Humidity Control
+ , !- Humidistat Control Zone Name
+ , !- High Humidity Outdoor Air Flow Ratio
+ , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
+ BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
+
+OS:Controller:MechanicalVentilation,
+ {1796bad4-4a8b-4fe3-a273-81022ea8f71f}, !- Handle
+ Controller Mechanical Ventilation 3, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule
+ , !- Demand Controlled Ventilation
+ ZoneSum; !- System Outdoor Air Method
+
+OS:AirLoopHVAC:OutdoorAirSystem,
+ {47404cbb-024a-4983-81b7-b6562a0d2cc4}, !- Handle
+ Perimeter_ZN_3 ZN PSZ-AC-4 OA System, !- Name
+ {5e4158c9-fb0c-4729-99f7-fcac6bf37c29}, !- Controller Name
+ , !- Outdoor Air Equipment List Name
+ , !- Availability Manager List Name
+ {afab294b-e3e9-46a4-b193-f22519a632db}, !- Mixed Air Node Name
+ {11e3b0be-6d38-44d2-93db-50482d079db0}, !- Outdoor Air Stream Node Name
+ {669e109d-da50-4547-ab5a-f17d9d56795d}, !- Relief Air Stream Node Name
+ {f84622bf-5c97-49b0-a98a-023ba8a272f4}; !- Return Air Stream Node Name
+
+OS:Node,
+ {c19df335-6e60-40f6-baa3-cd801d92cc92}, !- Handle
+ Perimeter_ZN_3 ZN PSZ-AC-4 Outdoor Air Node, !- Name
+ , !- Inlet Port
+ {11e3b0be-6d38-44d2-93db-50482d079db0}; !- Outlet Port
+
+OS:Connection,
+ {11e3b0be-6d38-44d2-93db-50482d079db0}, !- Handle
+ {adfd1b01-e9e3-4bcb-a3a2-3c82a6acb894}, !- Name
+ {c19df335-6e60-40f6-baa3-cd801d92cc92}, !- Source Object
+ 3, !- Outlet Port
+ {47404cbb-024a-4983-81b7-b6562a0d2cc4}, !- Target Object
+ 6; !- Inlet Port
+
+OS:Node,
+ {e7e28750-399d-404a-9e98-49ca409f15e5}, !- Handle
+ Perimeter_ZN_3 ZN PSZ-AC-4 Relief Air Node, !- Name
+ {669e109d-da50-4547-ab5a-f17d9d56795d}, !- Inlet Port
+ ; !- Outlet Port
+
+OS:Connection,
+ {669e109d-da50-4547-ab5a-f17d9d56795d}, !- Handle
+ {14212df6-58af-4362-bf92-542c3e648ba4}, !- Name
+ {47404cbb-024a-4983-81b7-b6562a0d2cc4}, !- Source Object
+ 7, !- Outlet Port
+ {e7e28750-399d-404a-9e98-49ca409f15e5}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Node,
+ {5cf98751-7e53-4696-855e-88af374166a3}, !- Handle
+ Perimeter_ZN_3 ZN PSZ-AC-4 Mixed Air Node, !- Name
+ {afab294b-e3e9-46a4-b193-f22519a632db}, !- Inlet Port
+ {4807b52c-e60a-47aa-803c-541c02eeff73}; !- Outlet Port
+
+OS:Connection,
+ {f84622bf-5c97-49b0-a98a-023ba8a272f4}, !- Handle
+ {bf1c1517-e3d1-4b4f-ac89-60880f68a141}, !- Name
+ {f1069a92-7630-4565-ba9c-53a3d975ef8c}, !- Source Object
+ 3, !- Outlet Port
+ {47404cbb-024a-4983-81b7-b6562a0d2cc4}, !- Target Object
+ 8; !- Inlet Port
+
+OS:Connection,
+ {afab294b-e3e9-46a4-b193-f22519a632db}, !- Handle
+ {9f7b3ed7-c0d6-4d4b-b9f1-7f0b1d6ef19c}, !- Name
+ {47404cbb-024a-4983-81b7-b6562a0d2cc4}, !- Source Object
+ 5, !- Outlet Port
+ {5cf98751-7e53-4696-855e-88af374166a3}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {4807b52c-e60a-47aa-803c-541c02eeff73}, !- Handle
+ {8d847753-f906-4b73-acfe-b4766b43043d}, !- Name
+ {5cf98751-7e53-4696-855e-88af374166a3}, !- Source Object
+ 3, !- Outlet Port
+ {69d87029-8eb9-42cc-a480-aabeec377f4d}, !- Target Object
+ 3; !- Inlet Port
+
+OS:AvailabilityManager:NightCycle,
+ {ff37cdb5-ec3a-4493-a65e-3b27efb199aa}, !- Handle
+ Availability Manager Night Cycle 3, !- Name
+ , !- Applicability Schedule
+ , !- Fan Schedule
+ CycleOnAny, !- Control Type
+ 1, !- Thermostat Tolerance {deltaC}
+ , !- Cycling Run Time Control Type
+ 1800, !- Cycling Run Time {s}
+ {a4c8f941-05d7-4ea8-88e1-7505c04666dc}, !- Control Zone or Zone List Name
+ {d6981c6f-f022-4c27-8bea-cf7dfe80a9b6}, !- Cooling Control Zone or Zone List Name
+ {41db7002-5b10-40ee-976e-4deac6e71b04}, !- Heating Control Zone or Zone List Name
+ {a7b00de4-d445-429c-801e-763723863177}; !- Heating Zone Fans Only Zone or Zone List Name
+
+OS:ModelObjectList,
+ {a4c8f941-05d7-4ea8-88e1-7505c04666dc}, !- Handle
+ Availability Manager Night Cycle 3 Heating Zone Fans Only Zone List; !- Name
+
+OS:ModelObjectList,
+ {d6981c6f-f022-4c27-8bea-cf7dfe80a9b6}, !- Handle
+ {eb35390d-accc-4308-821c-0edb91f31821}; !- Name
+
+OS:ModelObjectList,
+ {41db7002-5b10-40ee-976e-4deac6e71b04}, !- Handle
+ {a1269339-c118-4b5b-9854-a8cad3ae5199}; !- Name
+
+OS:ModelObjectList,
+ {a7b00de4-d445-429c-801e-763723863177}, !- Handle
+ {a4f0427d-6f63-48d4-8e86-fa21faf5251f}; !- Name
+
+OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat,
+ {ab40a91f-e5b7-4089-8dfc-acdb012395d3}, !- Handle
+ Perimeter_ZN_3 ZN PSZ-AC-4 Diffuser, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ {784378ed-7b9d-47a5-83d6-6407c2044bcf}, !- Air Inlet Node Name
+ {2cafbfc5-4153-42af-95bc-57276f700354}, !- Air Outlet Node Name
+ AutoSize; !- Maximum Air Flow Rate {m3/s}
+
+OS:Node,
+ {a6111359-9077-4c29-95b4-38bab698f22b}, !- Handle
+ Perimeter_ZN_3 ZN Return Air Node, !- Name
+ {712c73a6-f6c7-4ad0-9a8c-3316db2d501d}, !- Inlet Port
+ {f4619427-1183-4dc7-8abd-5722fd66e488}; !- Outlet Port
+
+OS:Connection,
+ {3a84ce54-a894-4b40-a410-c931fcac8ad4}, !- Handle
+ {427691b8-9a9b-48b6-a1cf-5219e7a5cc8c}, !- Name
+ {d359491d-c8f7-4fce-88db-9623ca2a6587}, !- Source Object
+ 3, !- Outlet Port
+ {7306ee17-b69f-4842-9e6a-6066149e388f}, !- Target Object
+ 3; !- Inlet Port
+
+OS:Connection,
+ {712c73a6-f6c7-4ad0-9a8c-3316db2d501d}, !- Handle
+ {ac68c5c3-80e7-4d1c-800b-edd94bf27d30}, !- Name
+ {fce25264-f646-4a33-bd2c-610a5157d5ce}, !- Source Object
+ 3, !- Outlet Port
+ {a6111359-9077-4c29-95b4-38bab698f22b}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {f4619427-1183-4dc7-8abd-5722fd66e488}, !- Handle
+ {05c6eddd-5573-428c-9981-221271a81733}, !- Name
+ {a6111359-9077-4c29-95b4-38bab698f22b}, !- Source Object
+ 3, !- Outlet Port
+ {2e490107-8236-4863-9269-b0cca22607f5}, !- Target Object
+ 3; !- Inlet Port
+
+OS:Node,
+ {40977da3-82ed-482f-8469-9cca34ff2a26}, !- Handle
+ Perimeter_ZN_3 ZN PSZ-AC-4 Diffuser Inlet Air Node, !- Name
+ {b0c7226a-635f-4a4a-964c-b5280cd98495}, !- Inlet Port
+ {784378ed-7b9d-47a5-83d6-6407c2044bcf}; !- Outlet Port
+
+OS:Connection,
+ {b0c7226a-635f-4a4a-964c-b5280cd98495}, !- Handle
+ {2d309374-8a3f-4fb6-9298-04d0cbcb1eda}, !- Name
+ {5959bc36-dcda-4866-bb80-34cee3b72166}, !- Source Object
+ 3, !- Outlet Port
+ {40977da3-82ed-482f-8469-9cca34ff2a26}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {784378ed-7b9d-47a5-83d6-6407c2044bcf}, !- Handle
+ {80842bd8-ca30-4b08-819a-32e70e16a8fe}, !- Name
+ {40977da3-82ed-482f-8469-9cca34ff2a26}, !- Source Object
+ 3, !- Outlet Port
+ {ab40a91f-e5b7-4089-8dfc-acdb012395d3}, !- Target Object
+ 3; !- Inlet Port
+
+OS:Connection,
+ {2cafbfc5-4153-42af-95bc-57276f700354}, !- Handle
+ {2867cf64-fac8-493c-bb18-015e4b0ca348}, !- Name
+ {ab40a91f-e5b7-4089-8dfc-acdb012395d3}, !- Source Object
+ 4, !- Outlet Port
+ {d359491d-c8f7-4fce-88db-9623ca2a6587}, !- Target Object
+ 2; !- Inlet Port
+
+OS:AirLoopHVAC,
+ {4961a5e8-e5db-4410-9810-abfd278c45fe}, !- Handle
+ Perimeter_ZN_4 ZN PSZ-AC-5, !- Name
+ , !- Controller List Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule
+ {c45e4e64-249b-4b76-8e4d-8ddefe59e859}, !- Availability Manager List Name
+ AutoSize, !- Design Supply Air Flow Rate {m3/s}
+ , !- Branch List Name
+ , !- Connector List Name
+ {c60d8bbd-9ac0-4a41-a031-6a1e28b67b14}, !- Supply Side Inlet Node Name
+ {c626ce72-f95a-4a6d-bdc5-195e2130ff7d}, !- Demand Side Outlet Node Name
+ {f2decad3-ee53-4643-b9c8-d2184fdf6058}, !- Demand Side Inlet Node A
+ {dcb214ad-605e-40e2-85c8-3da29d500014}, !- Supply Side Outlet Node A
+ , !- Demand Side Inlet Node B
+ , !- Supply Side Outlet Node B
+ , !- Return Air Bypass Flow Temperature Setpoint Schedule Name
+ {7d10d54a-5860-4750-a453-fcea9a9907a6}, !- Demand Mixer Name
+ {08041af0-abec-4cfc-b47f-b69586d346cd}, !- Demand Splitter A Name
+ , !- Demand Splitter B Name
+ ; !- Supply Splitter Name
+
+OS:Node,
+ {f67d6cb9-dbb5-4bac-bb81-0ef9873a86cc}, !- Handle
+ Perimeter_ZN_4 ZN PSZ-AC-5 Supply Inlet Node, !- Name
+ {c60d8bbd-9ac0-4a41-a031-6a1e28b67b14}, !- Inlet Port
+ {9b213694-9619-4fa0-b6ae-369768054a0a}; !- Outlet Port
+
+OS:Node,
+ {e94571f1-6b20-40d7-85a1-c43e8ff8899a}, !- Handle
+ Perimeter_ZN_4 ZN PSZ-AC-5 Supply Outlet Node, !- Name
+ {6ee17dc4-4731-4539-92c9-0c06cc59f8f5}, !- Inlet Port
+ {dcb214ad-605e-40e2-85c8-3da29d500014}; !- Outlet Port
+
+OS:Connection,
+ {c60d8bbd-9ac0-4a41-a031-6a1e28b67b14}, !- Handle
+ {442e219e-33ef-408e-94cf-61b83eb76dae}, !- Name
+ {4961a5e8-e5db-4410-9810-abfd278c45fe}, !- Source Object
+ 8, !- Outlet Port
+ {f67d6cb9-dbb5-4bac-bb81-0ef9873a86cc}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {dcb214ad-605e-40e2-85c8-3da29d500014}, !- Handle
+ {31f6b3d4-2e25-432f-b330-675972ba72a8}, !- Name
+ {e94571f1-6b20-40d7-85a1-c43e8ff8899a}, !- Source Object
+ 3, !- Outlet Port
+ {4961a5e8-e5db-4410-9810-abfd278c45fe}, !- Target Object
+ 11; !- Inlet Port
+
+OS:Node,
+ {5e4e6ad5-5111-4701-96ad-c4a57b5d95ff}, !- Handle
+ Perimeter_ZN_4 ZN PSZ-AC-5 Demand Inlet Node, !- Name
+ {f2decad3-ee53-4643-b9c8-d2184fdf6058}, !- Inlet Port
+ {718d5d4d-432d-4889-96bf-0cedc0bb7411}; !- Outlet Port
+
+OS:Node,
+ {5967feec-fc20-4ac3-9bc6-ec5473f0769f}, !- Handle
+ Perimeter_ZN_4 ZN PSZ-AC-5 Demand Outlet Node, !- Name
+ {612ecc2e-62fa-4b2e-b354-f10c411a204a}, !- Inlet Port
+ {c626ce72-f95a-4a6d-bdc5-195e2130ff7d}; !- Outlet Port
+
+OS:Node,
+ {f0b958f4-544e-41bd-8128-5b2aff05c027}, !- Handle
+ Perimeter_ZN_4 ZN PSZ-AC-5 Diffuser Outlet Air Node, !- Name
+ {73bddb66-14eb-47ad-8c4b-448516b955fb}, !- Inlet Port
+ {17a53905-6fa9-48a7-b620-fa5aee33ec94}; !- Outlet Port
+
+OS:Connection,
+ {f2decad3-ee53-4643-b9c8-d2184fdf6058}, !- Handle
+ {3972b40e-9db5-4be0-8650-001da31c4db3}, !- Name
+ {4961a5e8-e5db-4410-9810-abfd278c45fe}, !- Source Object
+ 10, !- Outlet Port
+ {5e4e6ad5-5111-4701-96ad-c4a57b5d95ff}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {c626ce72-f95a-4a6d-bdc5-195e2130ff7d}, !- Handle
+ {93e00bce-4030-46a1-b763-85e298638606}, !- Name
+ {5967feec-fc20-4ac3-9bc6-ec5473f0769f}, !- Source Object
+ 3, !- Outlet Port
+ {4961a5e8-e5db-4410-9810-abfd278c45fe}, !- Target Object
+ 9; !- Inlet Port
+
+OS:AirLoopHVAC:ZoneSplitter,
+ {08041af0-abec-4cfc-b47f-b69586d346cd}, !- Handle
+ Air Loop HVAC Zone Splitter 4, !- Name
+ {718d5d4d-432d-4889-96bf-0cedc0bb7411}, !- Inlet Node Name
+ {ae3d1dfa-ef14-477a-b45c-d486807559ce}; !- Outlet Node Name 1
+
+OS:AirLoopHVAC:ZoneMixer,
+ {7d10d54a-5860-4750-a453-fcea9a9907a6}, !- Handle
+ Air Loop HVAC Zone Mixer 4, !- Name
+ {612ecc2e-62fa-4b2e-b354-f10c411a204a}, !- Outlet Node Name
+ {446fd0ad-770d-4686-812f-41b73ccc0ffa}; !- Inlet Node Name 1
+
+OS:Connection,
+ {718d5d4d-432d-4889-96bf-0cedc0bb7411}, !- Handle
+ {d540263a-5710-453d-9039-e57121764429}, !- Name
+ {5e4e6ad5-5111-4701-96ad-c4a57b5d95ff}, !- Source Object
+ 3, !- Outlet Port
+ {08041af0-abec-4cfc-b47f-b69586d346cd}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {612ecc2e-62fa-4b2e-b354-f10c411a204a}, !- Handle
+ {7aa8cdea-35b0-4cc8-bf20-49268dd51a1b}, !- Name
+ {7d10d54a-5860-4750-a453-fcea9a9907a6}, !- Source Object
+ 2, !- Outlet Port
+ {5967feec-fc20-4ac3-9bc6-ec5473f0769f}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Sizing:System,
+ {f44627e5-a22f-47d3-938f-dc4706b6f658}, !- Handle
+ {4961a5e8-e5db-4410-9810-abfd278c45fe}, !- AirLoop Name
+ Sensible, !- Type of Load to Size On
+ Autosize, !- Design Outdoor Air Flow Rate {m3/s}
+ 1, !- Central Heating Maximum System Air Flow Ratio
+ 7.22222222222229, !- Preheat Design Temperature {C}
+ 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air}
+ 12.7777777777778, !- Precool Design Temperature {C}
+ 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air}
+ 12.7777777777778, !- Central Cooling Design Supply Air Temperature {C}
+ 50.0000000000001, !- Central Heating Design Supply Air Temperature {C}
+ Coincident, !- Sizing Option
+ No, !- 100% Outdoor Air in Cooling
+ No, !- 100% Outdoor Air in Heating
+ 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air}
+ 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air}
+ DesignDay, !- Cooling Design Air Flow Method
+ 0, !- Cooling Design Air Flow Rate {m3/s}
+ DesignDay, !- Heating Design Air Flow Method
+ 0, !- Heating Design Air Flow Rate {m3/s}
+ ZoneSum, !- System Outdoor Air Method
+ 1, !- Zone Maximum Outdoor Air Fraction {dimensionless}
+ 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
+ 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
+ 3.9475456e-005, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
+ 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
+ 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate
+ 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
+ 3.1588213e-005, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
+ CoolingDesignCapacity, !- Cooling Design Capacity Method
+ autosize, !- Cooling Design Capacity {W}
+ 234.7, !- Cooling Design Capacity Per Floor Area {W/m2}
+ 1, !- Fraction of Autosized Cooling Design Capacity
+ HeatingDesignCapacity, !- Heating Design Capacity Method
+ autosize, !- Heating Design Capacity {W}
+ 157, !- Heating Design Capacity Per Floor Area {W/m2}
+ 1, !- Fraction of Autosized Heating Design Capacity
+ OnOff; !- Central Cooling Capacity Control Method
+
+OS:AvailabilityManagerAssignmentList,
+ {c45e4e64-249b-4b76-8e4d-8ddefe59e859}, !- Handle
+ Air Loop HVAC 1 AvailabilityManagerAssignmentList 3, !- Name
+ {c53fbdc0-83fa-4e65-b37d-7b69e36b78a4}; !- Availability Manager Name 1
+
+OS:SetpointManager:SingleZone:Reheat,
+ {f669576c-edc1-4f96-a935-755aa89fb779}, !- Handle
+ Perimeter_ZN_4 ZN Setpoint Manager SZ Reheat, !- Name
+ 12.7777777777778, !- Minimum Supply Air Temperature {C}
+ 50.0000000000001, !- Maximum Supply Air Temperature {C}
+ {5a3afc2e-d12e-4ab3-b952-581dd46d9df3}, !- Control Zone Name
+ {e94571f1-6b20-40d7-85a1-c43e8ff8899a}; !- Setpoint Node or NodeList Name
+
+OS:Fan:OnOff,
+ {93dfbd18-14d0-4653-a167-2e00b6cf89e2}, !- Handle
+ Perimeter_ZN_4 ZN PSZ-AC-5 Fan, !- Name
+ {d49fcb19-899c-4ad6-a766-4b44490b7b3c}, !- Availability Schedule Name
+ 0.55575, !- Fan Total Efficiency
+ 622.722275, !- Pressure Rise {Pa}
+ autosize, !- Maximum Flow Rate {m3/s}
+ 0.855, !- Motor Efficiency
+ 1, !- Motor In Airstream Fraction
+ , !- Air Inlet Node Name
+ , !- Air Outlet Node Name
+ {eadef28d-9080-4443-a464-29e1e5eb896d}, !- Fan Power Ratio Function of Speed Ratio Curve Name
+ {77359b9e-ca06-45a6-a7df-106cc59c0ff8}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
+ ; !- End-Use Subcategory
+
+OS:Curve:Exponent,
+ {eadef28d-9080-4443-a464-29e1e5eb896d}, !- Handle
+ Fan On Off Power Curve 3, !- Name
+ 1, !- Coefficient1 Constant
+ 0, !- Coefficient2 Constant
+ 0, !- Coefficient3 Constant
+ 0, !- Minimum Value of x
+ 1, !- Maximum Value of x
+ , !- Minimum Curve Output
+ , !- Maximum Curve Output
+ , !- Input Unit Type for X
+ ; !- Output Unit Type
+
+OS:Curve:Cubic,
+ {77359b9e-ca06-45a6-a7df-106cc59c0ff8}, !- Handle
+ Fan On Off Efficiency Curve 3, !- Name
+ 1, !- Coefficient1 Constant
+ 0, !- Coefficient2 x
+ 0, !- Coefficient3 x**2
+ 0, !- Coefficient4 x**3
+ 0, !- Minimum Value of x
+ 1; !- Maximum Value of x
+
+OS:Coil:Heating:DX:SingleSpeed,
+ {c8bd6efc-eccb-47fb-b3ea-e0969a371577}, !- Handle
+ Perimeter_ZN_4 ZN HP Htg Coil 20 Clg kBtu/hr 8.0HSPF, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ Autosize, !- Rated Total Heating Capacity {W}
+ 3.3592, !- Rated COP {W/W}
+ Autosize, !- Rated Air Flow Rate {m3/s}
+ 773.3, !- Rated Supply Fan Power Per Volume Flow Rate {W/(m3/s)}
+ , !- Air Inlet Node Name
+ , !- Air Outlet Node Name
+ {1bfea7f1-1095-458e-b853-eaf9b2498d5f}, !- Total Heating Capacity Function of Temperature Curve Name
+ {280d9688-bd63-492e-a346-6275aabe749e}, !- Total Heating Capacity Function of Flow Fraction Curve Name
+ {8aff4225-4594-4306-8181-1471256a4a20}, !- Energy Input Ratio Function of Temperature Curve Name
+ {5ce2ca36-993a-47f3-88f4-bad9af8ac9a3}, !- Energy Input Ratio Function of Flow Fraction Curve Name
+ {714c0395-0263-444c-a4f6-d9e78a580913}, !- Part Load Fraction Correlation Curve Name
+ {d4f4971e-9bf3-4a30-9242-1d9efd4c4359}, !- Defrost Energy Input Ratio Function of Temperature Curve Name
+ -12.2, !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
+ 1.67, !- Maximum Outdoor Dry-Bulb Temperature for Defrost Operation {C}
+ 50, !- Crankcase Heater Capacity {W}
+ 4.4, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
+ ReverseCycle, !- Defrost Strategy
+ OnDemand, !- Defrost Control
+ , !- Defrost Time Period Fraction
+ 2000; !- Resistive Defrost Heater Capacity {W}
+
+OS:Curve:Biquadratic,
+ {d4f4971e-9bf3-4a30-9242-1d9efd4c4359}, !- Handle
+ Perimeter_ZN_4 ZN HP Htg Coil Defrost EIR Func of Temp Curve 1, !- Name
+ 0.297145, !- Coefficient1 Constant
+ 0.0430933, !- Coefficient2 x
+ -0.000748766, !- Coefficient3 x**2
+ 0.00597727, !- Coefficient4 y
+ 0.000482112, !- Coefficient5 y**2
+ -0.000956448, !- Coefficient6 x*y
+ 12.77778, !- Minimum Value of x
+ 23.88889, !- Maximum Value of x
+ 21.11111, !- Minimum Value of y
+ 46.11111; !- Maximum Value of y
+
+OS:Coil:Heating:Gas,
+ {82d0a4fa-53a5-4cef-b204-6af2adbc85c5}, !- Handle
+ Perimeter_ZN_4 ZN PSZ-AC-5 Gas Backup Htg Coil, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ 0.8, !- Gas Burner Efficiency
+ AutoSize, !- Nominal Capacity {W}
+ , !- Air Inlet Node Name
+ , !- Air Outlet Node Name
+ , !- Temperature Setpoint Node Name
+ 0, !- Parasitic Electric Load {W}
+ , !- Part Load Fraction Correlation Curve Name
+ 0; !- Parasitic Gas Load {W}
+
+OS:Coil:Cooling:DX:SingleSpeed,
+ {c5da1e41-5c31-41d9-9976-e891c458b8af}, !- Handle
+ Perimeter_ZN_4 ZN PSZ-AC-5 1spd DX HP Clg Coil 20kBtu/hr 14.0SEER, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ autosize, !- Rated Total Cooling Capacity {W}
+ autosize, !- Rated Sensible Heat Ratio
+ 4.11713235489972, !- Rated COP {W/W}
+ autosize, !- Rated Air Flow Rate {m3/s}
+ 773.3, !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
+ , !- Air Inlet Node Name
+ , !- Air Outlet Node Name
+ {e6cebddc-27fb-4158-9b04-49e64c32b2ed}, !- Total Cooling Capacity Function of Temperature Curve Name
+ {6708f17c-3967-4daf-89fb-e9625d394634}, !- Total Cooling Capacity Function of Flow Fraction Curve Name
+ {626baf5b-350e-404e-81da-48addd8de7f7}, !- Energy Input Ratio Function of Temperature Curve Name
+ {dfc9bddf-e7f5-4a36-93ca-5ed1d66665cb}, !- Energy Input Ratio Function of Flow Fraction Curve Name
+ {714c0395-0263-444c-a4f6-d9e78a580913}, !- Part Load Fraction Correlation Curve Name
+ , !- Nominal Time for Condensate Removal to Begin {s}
+ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
+ , !- Maximum Cycling Rate {cycles/hr}
+ , !- Latent Capacity Time Constant {s}
+ , !- Condenser Air Inlet Node Name
+ AirCooled, !- Condenser Type
+ 0, !- Evaporative Condenser Effectiveness {dimensionless}
+ Autosize, !- Evaporative Condenser Air Flow Rate {m3/s}
+ Autosize, !- Evaporative Condenser Pump Rated Power Consumption {W}
+ 0, !- Crankcase Heater Capacity {W}
+ 0, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
+ , !- Supply Water Storage Tank Name
+ , !- Condensate Collection Water Storage Tank Name
+ 0, !- Basin Heater Capacity {W/K}
+ 10, !- Basin Heater Setpoint Temperature {C}
+ ; !- Basin Heater Operating Schedule Name
+
+OS:AirLoopHVAC:UnitaryHeatPump:AirToAir,
+ {719ec483-0244-4377-a014-5a54b884b624}, !- Handle
+ Perimeter_ZN_4 ZN PSZ-AC-5 Unitary HP, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ {2a12531e-6e1c-46fb-8dc2-eb42634870c3}, !- Air Inlet Node Name
+ {6ee17dc4-4731-4539-92c9-0c06cc59f8f5}, !- Air Outlet Node Name
+ Autosize, !- Supply Air Flow Rate During Cooling Operation {m3/s}
+ Autosize, !- Supply Air Flow Rate During Heating Operation {m3/s}
+ , !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s}
+ {5a3afc2e-d12e-4ab3-b952-581dd46d9df3}, !- Controlling Zone or Thermostat Location
+ {93dfbd18-14d0-4653-a167-2e00b6cf89e2}, !- Supply Air Fan Name
+ {c8bd6efc-eccb-47fb-b3ea-e0969a371577}, !- Heating Coil Name
+ {c5da1e41-5c31-41d9-9976-e891c458b8af}, !- Cooling Coil Name
+ {82d0a4fa-53a5-4cef-b204-6af2adbc85c5}, !- Supplemental Heating Coil Name
+ Autosize, !- Maximum Supply Air Temperature from Supplemental Heater {C}
+ 4.44444444444446, !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
+ BlowThrough, !- Fan Placement
+ {d49fcb19-899c-4ad6-a766-4b44490b7b3c}; !- Supply Air Fan Operating Mode Schedule Name
+
+OS:Connection,
+ {6ee17dc4-4731-4539-92c9-0c06cc59f8f5}, !- Handle
+ {7ca8e20c-73b7-41e6-9873-369b75eb5b05}, !- Name
+ {719ec483-0244-4377-a014-5a54b884b624}, !- Source Object
+ 4, !- Outlet Port
+ {e94571f1-6b20-40d7-85a1-c43e8ff8899a}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Controller:OutdoorAir,
+ {54fbc07f-01ca-4fe5-b82d-d91802d50374}, !- Handle
+ Perimeter_ZN_4 ZN PSZ-AC-5 OA System Controller, !- Name
+ , !- Relief Air Outlet Node Name
+ , !- Return Air Node Name
+ , !- Mixed Air Node Name
+ , !- Actuator Node Name
+ 0, !- Minimum Outdoor Air Flow Rate {m3/s}
+ Autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
+ NoEconomizer, !- Economizer Control Type
+ ModulateFlow, !- Economizer Control Action Type
+ 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C}
+ 64000, !- Economizer Maximum Limit Enthalpy {J/kg}
+ , !- Economizer Maximum Limit Dewpoint Temperature {C}
+ , !- Electronic Enthalpy Limit Curve Name
+ , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
+ NoLockout, !- Lockout Type
+ FixedMinimum, !- Minimum Limit Type
+ {6fd5b25f-47a9-463a-b553-2c877a434a9d}, !- Minimum Outdoor Air Schedule Name
+ , !- Minimum Fraction of Outdoor Air Schedule Name
+ , !- Maximum Fraction of Outdoor Air Schedule Name
+ {87299834-84be-4ec1-b63f-05ab894e74a8}, !- Controller Mechanical Ventilation
+ , !- Time of Day Economizer Control Schedule Name
+ No, !- High Humidity Control
+ , !- Humidistat Control Zone Name
+ , !- High Humidity Outdoor Air Flow Ratio
+ , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
+ BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
+
+OS:Controller:MechanicalVentilation,
+ {87299834-84be-4ec1-b63f-05ab894e74a8}, !- Handle
+ Controller Mechanical Ventilation 4, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule
+ , !- Demand Controlled Ventilation
+ ZoneSum; !- System Outdoor Air Method
+
+OS:AirLoopHVAC:OutdoorAirSystem,
+ {25c9d3d0-2780-4797-be22-324a1d4d13ba}, !- Handle
+ Perimeter_ZN_4 ZN PSZ-AC-5 OA System, !- Name
+ {54fbc07f-01ca-4fe5-b82d-d91802d50374}, !- Controller Name
+ , !- Outdoor Air Equipment List Name
+ , !- Availability Manager List Name
+ {216b7f86-6488-4428-9da1-163bcd8b1b61}, !- Mixed Air Node Name
+ {2d1e40ad-2cd4-4885-a9fb-2adb9e4f96c0}, !- Outdoor Air Stream Node Name
+ {bb6316cc-581a-4534-a964-96866dfdb93c}, !- Relief Air Stream Node Name
+ {9b213694-9619-4fa0-b6ae-369768054a0a}; !- Return Air Stream Node Name
+
+OS:Node,
+ {d2dded37-2d66-46f5-847a-6e9dea8ce6be}, !- Handle
+ Perimeter_ZN_4 ZN PSZ-AC-5 Outdoor Air Node, !- Name
+ , !- Inlet Port
+ {2d1e40ad-2cd4-4885-a9fb-2adb9e4f96c0}; !- Outlet Port
+
+OS:Connection,
+ {2d1e40ad-2cd4-4885-a9fb-2adb9e4f96c0}, !- Handle
+ {ac21949c-967f-44a9-be2b-f50f6c245a8b}, !- Name
+ {d2dded37-2d66-46f5-847a-6e9dea8ce6be}, !- Source Object
+ 3, !- Outlet Port
+ {25c9d3d0-2780-4797-be22-324a1d4d13ba}, !- Target Object
+ 6; !- Inlet Port
+
+OS:Node,
+ {1c0db91b-5667-4745-96cf-a85df87c5e48}, !- Handle
+ Perimeter_ZN_4 ZN PSZ-AC-5 Relief Air Node, !- Name
+ {bb6316cc-581a-4534-a964-96866dfdb93c}, !- Inlet Port
+ ; !- Outlet Port
+
+OS:Connection,
+ {bb6316cc-581a-4534-a964-96866dfdb93c}, !- Handle
+ {a3122364-c1bf-46b5-93e1-e3d3999209f2}, !- Name
+ {25c9d3d0-2780-4797-be22-324a1d4d13ba}, !- Source Object
+ 7, !- Outlet Port
+ {1c0db91b-5667-4745-96cf-a85df87c5e48}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Node,
+ {fc62571c-7801-445d-bb8d-f36f7047756d}, !- Handle
+ Perimeter_ZN_4 ZN PSZ-AC-5 Mixed Air Node, !- Name
+ {216b7f86-6488-4428-9da1-163bcd8b1b61}, !- Inlet Port
+ {2a12531e-6e1c-46fb-8dc2-eb42634870c3}; !- Outlet Port
+
+OS:Connection,
+ {9b213694-9619-4fa0-b6ae-369768054a0a}, !- Handle
+ {f68a6bc1-e814-4c24-9d82-3924cda6adf4}, !- Name
+ {f67d6cb9-dbb5-4bac-bb81-0ef9873a86cc}, !- Source Object
+ 3, !- Outlet Port
+ {25c9d3d0-2780-4797-be22-324a1d4d13ba}, !- Target Object
+ 8; !- Inlet Port
+
+OS:Connection,
+ {216b7f86-6488-4428-9da1-163bcd8b1b61}, !- Handle
+ {9ae4887a-46e2-4209-ab48-dc7b1d8bcfe2}, !- Name
+ {25c9d3d0-2780-4797-be22-324a1d4d13ba}, !- Source Object
+ 5, !- Outlet Port
+ {fc62571c-7801-445d-bb8d-f36f7047756d}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {2a12531e-6e1c-46fb-8dc2-eb42634870c3}, !- Handle
+ {c1938184-2c37-4634-8095-76ba2fae7b33}, !- Name
+ {fc62571c-7801-445d-bb8d-f36f7047756d}, !- Source Object
+ 3, !- Outlet Port
+ {719ec483-0244-4377-a014-5a54b884b624}, !- Target Object
+ 3; !- Inlet Port
+
+OS:AvailabilityManager:NightCycle,
+ {c53fbdc0-83fa-4e65-b37d-7b69e36b78a4}, !- Handle
+ Availability Manager Night Cycle 4, !- Name
+ , !- Applicability Schedule
+ , !- Fan Schedule
+ CycleOnAny, !- Control Type
+ 1, !- Thermostat Tolerance {deltaC}
+ , !- Cycling Run Time Control Type
+ 1800, !- Cycling Run Time {s}
+ {6c035a44-6799-4478-ab21-54625ba6da27}, !- Control Zone or Zone List Name
+ {6b728f0b-c147-4f0d-83d5-1fae4247b31e}, !- Cooling Control Zone or Zone List Name
+ {c67ad06e-beb0-4a29-9f4a-1604bf7c99fd}, !- Heating Control Zone or Zone List Name
+ {a748863f-0659-408a-b255-3ba79ce2a1de}; !- Heating Zone Fans Only Zone or Zone List Name
+
+OS:ModelObjectList,
+ {6c035a44-6799-4478-ab21-54625ba6da27}, !- Handle
+ Availability Manager Night Cycle 4 Heating Zone Fans Only Zone List; !- Name
+
+OS:ModelObjectList,
+ {6b728f0b-c147-4f0d-83d5-1fae4247b31e}, !- Handle
+ {8c402183-8d3d-4640-91d8-0ef25961df14}; !- Name
+
+OS:ModelObjectList,
+ {c67ad06e-beb0-4a29-9f4a-1604bf7c99fd}, !- Handle
+ {9b5f3984-8740-4dbe-94f7-91923aeb0d10}; !- Name
+
+OS:ModelObjectList,
+ {a748863f-0659-408a-b255-3ba79ce2a1de}, !- Handle
+ {d4653344-1dd8-43b4-8c51-308893bf964c}; !- Name
+
+OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat,
+ {a19e599d-fbdd-49ce-bafc-97c4d16050ef}, !- Handle
+ Perimeter_ZN_4 ZN PSZ-AC-5 Diffuser, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ {35b9ede1-81a0-4da1-b8bb-d81dc4baccb1}, !- Air Inlet Node Name
+ {73bddb66-14eb-47ad-8c4b-448516b955fb}, !- Air Outlet Node Name
+ AutoSize; !- Maximum Air Flow Rate {m3/s}
+
+OS:Node,
+ {f61d0086-0d2a-43fc-9141-80d066d96a1f}, !- Handle
+ Perimeter_ZN_4 ZN Return Air Node, !- Name
+ {20fde348-4a73-4c5b-a767-83b56440c134}, !- Inlet Port
+ {446fd0ad-770d-4686-812f-41b73ccc0ffa}; !- Outlet Port
+
+OS:Connection,
+ {17a53905-6fa9-48a7-b620-fa5aee33ec94}, !- Handle
+ {cfb73121-ce2b-4942-942c-eb65e17ce645}, !- Name
+ {f0b958f4-544e-41bd-8128-5b2aff05c027}, !- Source Object
+ 3, !- Outlet Port
+ {2267fd06-4370-4ce4-8b33-0658f94bcffb}, !- Target Object
+ 3; !- Inlet Port
+
+OS:Connection,
+ {20fde348-4a73-4c5b-a767-83b56440c134}, !- Handle
+ {9bc4fe19-5b8f-4190-8df6-5bd35f66e7b4}, !- Name
+ {f1585e10-8de9-45cf-8fe9-ea11287281fd}, !- Source Object
+ 3, !- Outlet Port
+ {f61d0086-0d2a-43fc-9141-80d066d96a1f}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {446fd0ad-770d-4686-812f-41b73ccc0ffa}, !- Handle
+ {ea35bf80-fb10-4e07-85a1-52275999aba7}, !- Name
+ {f61d0086-0d2a-43fc-9141-80d066d96a1f}, !- Source Object
+ 3, !- Outlet Port
+ {7d10d54a-5860-4750-a453-fcea9a9907a6}, !- Target Object
+ 3; !- Inlet Port
+
+OS:Node,
+ {6820810d-84d2-4b41-a9c5-d9ca33891623}, !- Handle
+ Perimeter_ZN_4 ZN PSZ-AC-5 Diffuser Inlet Air Node, !- Name
+ {ae3d1dfa-ef14-477a-b45c-d486807559ce}, !- Inlet Port
+ {35b9ede1-81a0-4da1-b8bb-d81dc4baccb1}; !- Outlet Port
+
+OS:Connection,
+ {ae3d1dfa-ef14-477a-b45c-d486807559ce}, !- Handle
+ {6b5597c2-2415-49cd-a62f-fd7c549058a8}, !- Name
+ {08041af0-abec-4cfc-b47f-b69586d346cd}, !- Source Object
+ 3, !- Outlet Port
+ {6820810d-84d2-4b41-a9c5-d9ca33891623}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {35b9ede1-81a0-4da1-b8bb-d81dc4baccb1}, !- Handle
+ {8efb0185-e4d8-4e48-9659-c9a32cb71a20}, !- Name
+ {6820810d-84d2-4b41-a9c5-d9ca33891623}, !- Source Object
+ 3, !- Outlet Port
+ {a19e599d-fbdd-49ce-bafc-97c4d16050ef}, !- Target Object
+ 3; !- Inlet Port
+
+OS:Connection,
+ {73bddb66-14eb-47ad-8c4b-448516b955fb}, !- Handle
+ {ae663d85-ea98-40de-b376-0504c28953bc}, !- Name
+ {a19e599d-fbdd-49ce-bafc-97c4d16050ef}, !- Source Object
+ 4, !- Outlet Port
+ {f0b958f4-544e-41bd-8128-5b2aff05c027}, !- Target Object
+ 2; !- Inlet Port
+
+OS:AirLoopHVAC,
+ {3df111c7-e4a5-4079-beee-9ab23462dd52}, !- Handle
+ Core_ZN ZN PSZ-AC-1, !- Name
+ , !- Controller List Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule
+ {e6acfac1-27d2-447c-8d1b-a9c86fc93fab}, !- Availability Manager List Name
+ AutoSize, !- Design Supply Air Flow Rate {m3/s}
+ , !- Branch List Name
+ , !- Connector List Name
+ {08de9a6c-5559-444b-9858-4ed0c9029b74}, !- Supply Side Inlet Node Name
+ {09837894-1829-48ae-b4d6-e11f3a2e0c90}, !- Demand Side Outlet Node Name
+ {92cb28d9-6faf-42da-982c-51f5a5fc4bb3}, !- Demand Side Inlet Node A
+ {9eaf4bc8-c560-4bed-b838-1a3d1ed021b3}, !- Supply Side Outlet Node A
+ , !- Demand Side Inlet Node B
+ , !- Supply Side Outlet Node B
+ , !- Return Air Bypass Flow Temperature Setpoint Schedule Name
+ {6afeb765-2d8b-4c14-8f83-3c3946184d15}, !- Demand Mixer Name
+ {05f491f1-d24d-4940-ae67-74db88ab279a}, !- Demand Splitter A Name
+ , !- Demand Splitter B Name
+ ; !- Supply Splitter Name
+
+OS:Node,
+ {692a1087-0ff7-44c0-b63e-d094f6edde4c}, !- Handle
+ Core_ZN ZN PSZ-AC-1 Supply Inlet Node, !- Name
+ {08de9a6c-5559-444b-9858-4ed0c9029b74}, !- Inlet Port
+ {fe8e0891-adce-4796-8495-0f8958cd50e1}; !- Outlet Port
+
+OS:Node,
+ {0f2eb9cf-9dfa-4fe4-a399-0404fbe87aae}, !- Handle
+ Core_ZN ZN PSZ-AC-1 Supply Outlet Node, !- Name
+ {a03dbe1d-8959-44f2-92ad-2e4b93b08edd}, !- Inlet Port
+ {9eaf4bc8-c560-4bed-b838-1a3d1ed021b3}; !- Outlet Port
+
+OS:Connection,
+ {08de9a6c-5559-444b-9858-4ed0c9029b74}, !- Handle
+ {bc4675f3-5378-497e-a285-5e1ce2331398}, !- Name
+ {3df111c7-e4a5-4079-beee-9ab23462dd52}, !- Source Object
+ 8, !- Outlet Port
+ {692a1087-0ff7-44c0-b63e-d094f6edde4c}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {9eaf4bc8-c560-4bed-b838-1a3d1ed021b3}, !- Handle
+ {cbc69c70-522c-4d63-a012-a45f83bd4727}, !- Name
+ {0f2eb9cf-9dfa-4fe4-a399-0404fbe87aae}, !- Source Object
+ 3, !- Outlet Port
+ {3df111c7-e4a5-4079-beee-9ab23462dd52}, !- Target Object
+ 11; !- Inlet Port
+
+OS:Node,
+ {3ffe5dbb-44ac-4a82-9b69-9385e7c39f7b}, !- Handle
+ Core_ZN ZN PSZ-AC-1 Demand Inlet Node, !- Name
+ {92cb28d9-6faf-42da-982c-51f5a5fc4bb3}, !- Inlet Port
+ {2f76e5b2-ab19-4eae-9589-8517181c3d94}; !- Outlet Port
+
+OS:Node,
+ {ef3e17ec-43aa-4db9-9e7e-e45d57b70c72}, !- Handle
+ Core_ZN ZN PSZ-AC-1 Demand Outlet Node, !- Name
+ {c97892ba-b803-49f0-8e25-3df879f8f701}, !- Inlet Port
+ {09837894-1829-48ae-b4d6-e11f3a2e0c90}; !- Outlet Port
+
+OS:Node,
+ {91668706-7873-4dee-a5ab-d5a3690efa11}, !- Handle
+ Core_ZN ZN PSZ-AC-1 Diffuser Outlet Air Node, !- Name
+ {30486f50-39e9-4e20-8b9a-50e2c1db074e}, !- Inlet Port
+ {31f407fe-6b67-4565-85ea-a72d41da5d78}; !- Outlet Port
+
+OS:Connection,
+ {92cb28d9-6faf-42da-982c-51f5a5fc4bb3}, !- Handle
+ {c079e734-a6c2-4398-b3ff-62c9c9bad148}, !- Name
+ {3df111c7-e4a5-4079-beee-9ab23462dd52}, !- Source Object
+ 10, !- Outlet Port
+ {3ffe5dbb-44ac-4a82-9b69-9385e7c39f7b}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {09837894-1829-48ae-b4d6-e11f3a2e0c90}, !- Handle
+ {e10b43f5-6ce5-4533-b23f-60dac211cb56}, !- Name
+ {ef3e17ec-43aa-4db9-9e7e-e45d57b70c72}, !- Source Object
+ 3, !- Outlet Port
+ {3df111c7-e4a5-4079-beee-9ab23462dd52}, !- Target Object
+ 9; !- Inlet Port
+
+OS:AirLoopHVAC:ZoneSplitter,
+ {05f491f1-d24d-4940-ae67-74db88ab279a}, !- Handle
+ Air Loop HVAC Zone Splitter 5, !- Name
+ {2f76e5b2-ab19-4eae-9589-8517181c3d94}, !- Inlet Node Name
+ {0f1355b3-782f-4e5e-b0aa-8158a65e5df0}; !- Outlet Node Name 1
+
+OS:AirLoopHVAC:ZoneMixer,
+ {6afeb765-2d8b-4c14-8f83-3c3946184d15}, !- Handle
+ Air Loop HVAC Zone Mixer 5, !- Name
+ {c97892ba-b803-49f0-8e25-3df879f8f701}, !- Outlet Node Name
+ {e1b498bd-6857-4e78-89f8-f00c0018fe1e}; !- Inlet Node Name 1
+
+OS:Connection,
+ {2f76e5b2-ab19-4eae-9589-8517181c3d94}, !- Handle
+ {5a401317-9710-4b5b-a6f2-e04b6a16f99b}, !- Name
+ {3ffe5dbb-44ac-4a82-9b69-9385e7c39f7b}, !- Source Object
+ 3, !- Outlet Port
+ {05f491f1-d24d-4940-ae67-74db88ab279a}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {c97892ba-b803-49f0-8e25-3df879f8f701}, !- Handle
+ {9b1814ca-c92e-49ad-a3a0-5d2086731170}, !- Name
+ {6afeb765-2d8b-4c14-8f83-3c3946184d15}, !- Source Object
+ 2, !- Outlet Port
+ {ef3e17ec-43aa-4db9-9e7e-e45d57b70c72}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Sizing:System,
+ {49a5bb14-b1a6-4117-8b6b-078a9e33cc71}, !- Handle
+ {3df111c7-e4a5-4079-beee-9ab23462dd52}, !- AirLoop Name
+ Sensible, !- Type of Load to Size On
+ Autosize, !- Design Outdoor Air Flow Rate {m3/s}
+ 1, !- Central Heating Maximum System Air Flow Ratio
+ 7.22222222222229, !- Preheat Design Temperature {C}
+ 0.008, !- Preheat Design Humidity Ratio {kg-H2O/kg-Air}
+ 12.7777777777778, !- Precool Design Temperature {C}
+ 0.008, !- Precool Design Humidity Ratio {kg-H2O/kg-Air}
+ 12.7777777777778, !- Central Cooling Design Supply Air Temperature {C}
+ 50.0000000000001, !- Central Heating Design Supply Air Temperature {C}
+ Coincident, !- Sizing Option
+ No, !- 100% Outdoor Air in Cooling
+ No, !- 100% Outdoor Air in Heating
+ 0.0085, !- Central Cooling Design Supply Air Humidity Ratio {kg-H2O/kg-Air}
+ 0.008, !- Central Heating Design Supply Air Humidity Ratio {kg-H2O/kg-Air}
+ DesignDay, !- Cooling Design Air Flow Method
+ 0, !- Cooling Design Air Flow Rate {m3/s}
+ DesignDay, !- Heating Design Air Flow Method
+ 0, !- Heating Design Air Flow Rate {m3/s}
+ ZoneSum, !- System Outdoor Air Method
+ 1, !- Zone Maximum Outdoor Air Fraction {dimensionless}
+ 0.0099676501, !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
+ 1, !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
+ 3.9475456e-005, !- Cooling Supply Air Flow Rate Per Unit Cooling Capacity {m3/s-W}
+ 0.0099676501, !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
+ 1, !- Heating Fraction of Autosized Heating Supply Air Flow Rate
+ 1, !- Heating Fraction of Autosized Cooling Supply Air Flow Rate
+ 3.1588213e-005, !- Heating Supply Air Flow Rate Per Unit Heating Capacity {m3/s-W}
+ CoolingDesignCapacity, !- Cooling Design Capacity Method
+ autosize, !- Cooling Design Capacity {W}
+ 234.7, !- Cooling Design Capacity Per Floor Area {W/m2}
+ 1, !- Fraction of Autosized Cooling Design Capacity
+ HeatingDesignCapacity, !- Heating Design Capacity Method
+ autosize, !- Heating Design Capacity {W}
+ 157, !- Heating Design Capacity Per Floor Area {W/m2}
+ 1, !- Fraction of Autosized Heating Design Capacity
+ OnOff; !- Central Cooling Capacity Control Method
+
+OS:AvailabilityManagerAssignmentList,
+ {e6acfac1-27d2-447c-8d1b-a9c86fc93fab}, !- Handle
+ Air Loop HVAC 1 AvailabilityManagerAssignmentList 4, !- Name
+ {bf5f0aba-e17d-4e96-89d8-b15d3e52088c}; !- Availability Manager Name 1
+
+OS:SetpointManager:SingleZone:Reheat,
+ {b7779ec8-c4b2-46bf-8301-6d28f61e89f4}, !- Handle
+ Core_ZN ZN Setpoint Manager SZ Reheat, !- Name
+ 12.7777777777778, !- Minimum Supply Air Temperature {C}
+ 50.0000000000001, !- Maximum Supply Air Temperature {C}
+ {28915964-e2c4-4332-a684-5091ad72d321}, !- Control Zone Name
+ {0f2eb9cf-9dfa-4fe4-a399-0404fbe87aae}; !- Setpoint Node or NodeList Name
+
+OS:Fan:OnOff,
+ {fae230d1-2944-4e46-a37f-905af7c4fad9}, !- Handle
+ Core_ZN ZN PSZ-AC-1 Fan, !- Name
+ {d49fcb19-899c-4ad6-a766-4b44490b7b3c}, !- Availability Schedule Name
+ 0.55575, !- Fan Total Efficiency
+ 622.722275, !- Pressure Rise {Pa}
+ autosize, !- Maximum Flow Rate {m3/s}
+ 0.855, !- Motor Efficiency
+ 1, !- Motor In Airstream Fraction
+ , !- Air Inlet Node Name
+ , !- Air Outlet Node Name
+ {b72ea8cc-3a21-4873-9c70-95e4a37af0bb}, !- Fan Power Ratio Function of Speed Ratio Curve Name
+ {c75271a8-35f9-4ea6-91c1-f48a794b5ffd}, !- Fan Efficiency Ratio Function of Speed Ratio Curve Name
+ ; !- End-Use Subcategory
+
+OS:Curve:Exponent,
+ {b72ea8cc-3a21-4873-9c70-95e4a37af0bb}, !- Handle
+ Fan On Off Power Curve 4, !- Name
+ 1, !- Coefficient1 Constant
+ 0, !- Coefficient2 Constant
+ 0, !- Coefficient3 Constant
+ 0, !- Minimum Value of x
+ 1, !- Maximum Value of x
+ , !- Minimum Curve Output
+ , !- Maximum Curve Output
+ , !- Input Unit Type for X
+ ; !- Output Unit Type
+
+OS:Curve:Cubic,
+ {c75271a8-35f9-4ea6-91c1-f48a794b5ffd}, !- Handle
+ Fan On Off Efficiency Curve 4, !- Name
+ 1, !- Coefficient1 Constant
+ 0, !- Coefficient2 x
+ 0, !- Coefficient3 x**2
+ 0, !- Coefficient4 x**3
+ 0, !- Minimum Value of x
+ 1; !- Maximum Value of x
+
+OS:Coil:Heating:DX:SingleSpeed,
+ {3d1363c2-9dfe-4c7f-aadb-46b5bc6cc45a}, !- Handle
+ Core_ZN ZN HP Htg Coil 21 Clg kBtu/hr 8.0HSPF, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ Autosize, !- Rated Total Heating Capacity {W}
+ 3.3592, !- Rated COP {W/W}
+ Autosize, !- Rated Air Flow Rate {m3/s}
+ 773.3, !- Rated Supply Fan Power Per Volume Flow Rate {W/(m3/s)}
+ , !- Air Inlet Node Name
+ , !- Air Outlet Node Name
+ {1bfea7f1-1095-458e-b853-eaf9b2498d5f}, !- Total Heating Capacity Function of Temperature Curve Name
+ {280d9688-bd63-492e-a346-6275aabe749e}, !- Total Heating Capacity Function of Flow Fraction Curve Name
+ {8aff4225-4594-4306-8181-1471256a4a20}, !- Energy Input Ratio Function of Temperature Curve Name
+ {5ce2ca36-993a-47f3-88f4-bad9af8ac9a3}, !- Energy Input Ratio Function of Flow Fraction Curve Name
+ {714c0395-0263-444c-a4f6-d9e78a580913}, !- Part Load Fraction Correlation Curve Name
+ {f39fdefe-94b1-495f-be8b-fa7f2772420d}, !- Defrost Energy Input Ratio Function of Temperature Curve Name
+ -12.2, !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
+ 1.67, !- Maximum Outdoor Dry-Bulb Temperature for Defrost Operation {C}
+ 50, !- Crankcase Heater Capacity {W}
+ 4.4, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
+ ReverseCycle, !- Defrost Strategy
+ OnDemand, !- Defrost Control
+ , !- Defrost Time Period Fraction
+ 2000; !- Resistive Defrost Heater Capacity {W}
+
+OS:Curve:Biquadratic,
+ {f39fdefe-94b1-495f-be8b-fa7f2772420d}, !- Handle
+ Core_ZN ZN HP Htg Coil Defrost EIR Func of Temp Curve 1, !- Name
+ 0.297145, !- Coefficient1 Constant
+ 0.0430933, !- Coefficient2 x
+ -0.000748766, !- Coefficient3 x**2
+ 0.00597727, !- Coefficient4 y
+ 0.000482112, !- Coefficient5 y**2
+ -0.000956448, !- Coefficient6 x*y
+ 12.77778, !- Minimum Value of x
+ 23.88889, !- Maximum Value of x
+ 21.11111, !- Minimum Value of y
+ 46.11111; !- Maximum Value of y
+
+OS:Coil:Heating:Gas,
+ {ebcb8061-f504-4686-8192-8ca401e02f25}, !- Handle
+ Core_ZN ZN PSZ-AC-1 Gas Backup Htg Coil, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ 0.8, !- Gas Burner Efficiency
+ AutoSize, !- Nominal Capacity {W}
+ , !- Air Inlet Node Name
+ , !- Air Outlet Node Name
+ , !- Temperature Setpoint Node Name
+ 0, !- Parasitic Electric Load {W}
+ , !- Part Load Fraction Correlation Curve Name
+ 0; !- Parasitic Gas Load {W}
+
+OS:Coil:Cooling:DX:SingleSpeed,
+ {306f9220-39df-4717-8034-2377fe37c62c}, !- Handle
+ Core_ZN ZN PSZ-AC-1 1spd DX HP Clg Coil 21kBtu/hr 14.0SEER, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ autosize, !- Rated Total Cooling Capacity {W}
+ autosize, !- Rated Sensible Heat Ratio
+ 4.11713235489972, !- Rated COP {W/W}
+ autosize, !- Rated Air Flow Rate {m3/s}
+ 773.3, !- Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
+ , !- Air Inlet Node Name
+ , !- Air Outlet Node Name
+ {e6cebddc-27fb-4158-9b04-49e64c32b2ed}, !- Total Cooling Capacity Function of Temperature Curve Name
+ {6708f17c-3967-4daf-89fb-e9625d394634}, !- Total Cooling Capacity Function of Flow Fraction Curve Name
+ {626baf5b-350e-404e-81da-48addd8de7f7}, !- Energy Input Ratio Function of Temperature Curve Name
+ {dfc9bddf-e7f5-4a36-93ca-5ed1d66665cb}, !- Energy Input Ratio Function of Flow Fraction Curve Name
+ {714c0395-0263-444c-a4f6-d9e78a580913}, !- Part Load Fraction Correlation Curve Name
+ , !- Nominal Time for Condensate Removal to Begin {s}
+ , !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
+ , !- Maximum Cycling Rate {cycles/hr}
+ , !- Latent Capacity Time Constant {s}
+ , !- Condenser Air Inlet Node Name
+ AirCooled, !- Condenser Type
+ 0, !- Evaporative Condenser Effectiveness {dimensionless}
+ Autosize, !- Evaporative Condenser Air Flow Rate {m3/s}
+ Autosize, !- Evaporative Condenser Pump Rated Power Consumption {W}
+ 0, !- Crankcase Heater Capacity {W}
+ 0, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
+ , !- Supply Water Storage Tank Name
+ , !- Condensate Collection Water Storage Tank Name
+ 0, !- Basin Heater Capacity {W/K}
+ 10, !- Basin Heater Setpoint Temperature {C}
+ ; !- Basin Heater Operating Schedule Name
+
+OS:AirLoopHVAC:UnitaryHeatPump:AirToAir,
+ {8077871c-4876-4ee8-8d42-95240524c801}, !- Handle
+ Core_ZN ZN PSZ-AC-1 Unitary HP, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ {17e4f42f-1605-428a-9200-7c4a8fd5b86d}, !- Air Inlet Node Name
+ {a03dbe1d-8959-44f2-92ad-2e4b93b08edd}, !- Air Outlet Node Name
+ Autosize, !- Supply Air Flow Rate During Cooling Operation {m3/s}
+ Autosize, !- Supply Air Flow Rate During Heating Operation {m3/s}
+ , !- Supply Air Flow Rate When No Cooling or Heating is Needed {m3/s}
+ {28915964-e2c4-4332-a684-5091ad72d321}, !- Controlling Zone or Thermostat Location
+ {fae230d1-2944-4e46-a37f-905af7c4fad9}, !- Supply Air Fan Name
+ {3d1363c2-9dfe-4c7f-aadb-46b5bc6cc45a}, !- Heating Coil Name
+ {306f9220-39df-4717-8034-2377fe37c62c}, !- Cooling Coil Name
+ {ebcb8061-f504-4686-8192-8ca401e02f25}, !- Supplemental Heating Coil Name
+ Autosize, !- Maximum Supply Air Temperature from Supplemental Heater {C}
+ 4.44444444444446, !- Maximum Outdoor Dry-Bulb Temperature for Supplemental Heater Operation {C}
+ BlowThrough, !- Fan Placement
+ {d49fcb19-899c-4ad6-a766-4b44490b7b3c}; !- Supply Air Fan Operating Mode Schedule Name
+
+OS:Connection,
+ {a03dbe1d-8959-44f2-92ad-2e4b93b08edd}, !- Handle
+ {bacc2f63-973f-4e42-b01e-8e57e4a2dfaf}, !- Name
+ {8077871c-4876-4ee8-8d42-95240524c801}, !- Source Object
+ 4, !- Outlet Port
+ {0f2eb9cf-9dfa-4fe4-a399-0404fbe87aae}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Controller:OutdoorAir,
+ {b7a6f178-c695-4a08-8629-2cc00cabb59f}, !- Handle
+ Core_ZN ZN PSZ-AC-1 OA System Controller, !- Name
+ , !- Relief Air Outlet Node Name
+ , !- Return Air Node Name
+ , !- Mixed Air Node Name
+ , !- Actuator Node Name
+ 0, !- Minimum Outdoor Air Flow Rate {m3/s}
+ Autosize, !- Maximum Outdoor Air Flow Rate {m3/s}
+ NoEconomizer, !- Economizer Control Type
+ ModulateFlow, !- Economizer Control Action Type
+ 28, !- Economizer Maximum Limit Dry-Bulb Temperature {C}
+ 64000, !- Economizer Maximum Limit Enthalpy {J/kg}
+ , !- Economizer Maximum Limit Dewpoint Temperature {C}
+ , !- Electronic Enthalpy Limit Curve Name
+ , !- Economizer Minimum Limit Dry-Bulb Temperature {C}
+ NoLockout, !- Lockout Type
+ FixedMinimum, !- Minimum Limit Type
+ {6fd5b25f-47a9-463a-b553-2c877a434a9d}, !- Minimum Outdoor Air Schedule Name
+ , !- Minimum Fraction of Outdoor Air Schedule Name
+ , !- Maximum Fraction of Outdoor Air Schedule Name
+ {0c94440e-3dd7-4954-aa4d-8e04c941790f}, !- Controller Mechanical Ventilation
+ , !- Time of Day Economizer Control Schedule Name
+ No, !- High Humidity Control
+ , !- Humidistat Control Zone Name
+ , !- High Humidity Outdoor Air Flow Ratio
+ , !- Control High Indoor Humidity Based on Outdoor Humidity Ratio
+ BypassWhenWithinEconomizerLimits; !- Heat Recovery Bypass Control Type
+
+OS:Controller:MechanicalVentilation,
+ {0c94440e-3dd7-4954-aa4d-8e04c941790f}, !- Handle
+ Controller Mechanical Ventilation 5, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule
+ , !- Demand Controlled Ventilation
+ ZoneSum; !- System Outdoor Air Method
+
+OS:AirLoopHVAC:OutdoorAirSystem,
+ {531f10aa-296a-4d71-a740-c24ba31c3dde}, !- Handle
+ Core_ZN ZN PSZ-AC-1 OA System, !- Name
+ {b7a6f178-c695-4a08-8629-2cc00cabb59f}, !- Controller Name
+ , !- Outdoor Air Equipment List Name
+ , !- Availability Manager List Name
+ {3f71f642-162a-47bb-adda-69a2eac09bab}, !- Mixed Air Node Name
+ {1e754fc7-e2a1-4ee8-83c2-44db4d8ceb57}, !- Outdoor Air Stream Node Name
+ {1eab5d83-5596-4526-9375-d08b210d86af}, !- Relief Air Stream Node Name
+ {fe8e0891-adce-4796-8495-0f8958cd50e1}; !- Return Air Stream Node Name
+
+OS:Node,
+ {67c607a2-b9a9-4f00-9049-2a5869fc796f}, !- Handle
+ Core_ZN ZN PSZ-AC-1 Outdoor Air Node, !- Name
+ , !- Inlet Port
+ {1e754fc7-e2a1-4ee8-83c2-44db4d8ceb57}; !- Outlet Port
+
+OS:Connection,
+ {1e754fc7-e2a1-4ee8-83c2-44db4d8ceb57}, !- Handle
+ {d4acc5ed-8f0d-4158-bc25-b54c8b6211cb}, !- Name
+ {67c607a2-b9a9-4f00-9049-2a5869fc796f}, !- Source Object
+ 3, !- Outlet Port
+ {531f10aa-296a-4d71-a740-c24ba31c3dde}, !- Target Object
+ 6; !- Inlet Port
+
+OS:Node,
+ {2c952732-6d10-49a5-b857-c81aa53dc500}, !- Handle
+ Core_ZN ZN PSZ-AC-1 Relief Air Node, !- Name
+ {1eab5d83-5596-4526-9375-d08b210d86af}, !- Inlet Port
+ ; !- Outlet Port
+
+OS:Connection,
+ {1eab5d83-5596-4526-9375-d08b210d86af}, !- Handle
+ {308ccf07-3f80-4d7c-84c0-bb58e56b69cf}, !- Name
+ {531f10aa-296a-4d71-a740-c24ba31c3dde}, !- Source Object
+ 7, !- Outlet Port
+ {2c952732-6d10-49a5-b857-c81aa53dc500}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Node,
+ {cca60408-f52e-41ce-8db6-8bb4f7cb4aaf}, !- Handle
+ Core_ZN ZN PSZ-AC-1 Mixed Air Node, !- Name
+ {3f71f642-162a-47bb-adda-69a2eac09bab}, !- Inlet Port
+ {17e4f42f-1605-428a-9200-7c4a8fd5b86d}; !- Outlet Port
+
+OS:Connection,
+ {fe8e0891-adce-4796-8495-0f8958cd50e1}, !- Handle
+ {9aee1f76-7f31-4d74-874e-ab74a0c7e785}, !- Name
+ {692a1087-0ff7-44c0-b63e-d094f6edde4c}, !- Source Object
+ 3, !- Outlet Port
+ {531f10aa-296a-4d71-a740-c24ba31c3dde}, !- Target Object
+ 8; !- Inlet Port
+
+OS:Connection,
+ {3f71f642-162a-47bb-adda-69a2eac09bab}, !- Handle
+ {a812b658-65ce-4a83-a487-d64b5a7a5d06}, !- Name
+ {531f10aa-296a-4d71-a740-c24ba31c3dde}, !- Source Object
+ 5, !- Outlet Port
+ {cca60408-f52e-41ce-8db6-8bb4f7cb4aaf}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {17e4f42f-1605-428a-9200-7c4a8fd5b86d}, !- Handle
+ {1c2ae1e0-fa6d-4dce-8267-df607ac606ae}, !- Name
+ {cca60408-f52e-41ce-8db6-8bb4f7cb4aaf}, !- Source Object
+ 3, !- Outlet Port
+ {8077871c-4876-4ee8-8d42-95240524c801}, !- Target Object
+ 3; !- Inlet Port
+
+OS:AvailabilityManager:NightCycle,
+ {bf5f0aba-e17d-4e96-89d8-b15d3e52088c}, !- Handle
+ Availability Manager Night Cycle 5, !- Name
+ , !- Applicability Schedule
+ , !- Fan Schedule
+ CycleOnAny, !- Control Type
+ 1, !- Thermostat Tolerance {deltaC}
+ , !- Cycling Run Time Control Type
+ 1800, !- Cycling Run Time {s}
+ {220770a1-6dd9-4848-b94b-31b1c6f02e16}, !- Control Zone or Zone List Name
+ {826e4796-baee-4ba1-81f8-88ee44e3052c}, !- Cooling Control Zone or Zone List Name
+ {f2b62f7f-9f07-4c80-8cad-a7b09a7cb917}, !- Heating Control Zone or Zone List Name
+ {08221149-709b-4d0a-ad11-3ac1ee018c78}; !- Heating Zone Fans Only Zone or Zone List Name
+
+OS:ModelObjectList,
+ {220770a1-6dd9-4848-b94b-31b1c6f02e16}, !- Handle
+ Availability Manager Night Cycle 5 Heating Zone Fans Only Zone List; !- Name
+
+OS:ModelObjectList,
+ {826e4796-baee-4ba1-81f8-88ee44e3052c}, !- Handle
+ {f97aba55-4bae-4020-9344-3e8bfe23625b}; !- Name
+
+OS:ModelObjectList,
+ {f2b62f7f-9f07-4c80-8cad-a7b09a7cb917}, !- Handle
+ {6e9b141b-e065-4e25-930f-eca2dd9192a1}; !- Name
+
+OS:ModelObjectList,
+ {08221149-709b-4d0a-ad11-3ac1ee018c78}, !- Handle
+ {665198b1-1766-47b4-b096-c077430d0022}; !- Name
+
+OS:AirTerminal:SingleDuct:ConstantVolume:NoReheat,
+ {9c121e06-a74a-4bc1-842e-a0f3f81fce0c}, !- Handle
+ Core_ZN ZN PSZ-AC-1 Diffuser, !- Name
+ {51203011-f6d7-4f57-bba4-31174cec8925}, !- Availability Schedule Name
+ {7d61252b-e8b5-4eb0-a3ec-aa017e6e8d38}, !- Air Inlet Node Name
+ {30486f50-39e9-4e20-8b9a-50e2c1db074e}, !- Air Outlet Node Name
+ AutoSize; !- Maximum Air Flow Rate {m3/s}
+
+OS:Node,
+ {8de23077-451a-4821-b097-87fb6bf4f656}, !- Handle
+ Core_ZN ZN Return Air Node, !- Name
+ {014cc4de-d1f6-4893-a610-af4b6bd4e914}, !- Inlet Port
+ {e1b498bd-6857-4e78-89f8-f00c0018fe1e}; !- Outlet Port
+
+OS:Connection,
+ {31f407fe-6b67-4565-85ea-a72d41da5d78}, !- Handle
+ {8e260201-f050-42e1-a81b-a5451be29e92}, !- Name
+ {91668706-7873-4dee-a5ab-d5a3690efa11}, !- Source Object
+ 3, !- Outlet Port
+ {d73eaa54-329c-48e5-9af9-8ae91fe06393}, !- Target Object
+ 3; !- Inlet Port
+
+OS:Connection,
+ {014cc4de-d1f6-4893-a610-af4b6bd4e914}, !- Handle
+ {1ec9c05e-eec7-4d13-8d42-38487236a85b}, !- Name
+ {8ecbc7fc-f7b1-48b8-8307-4767d3fab1f8}, !- Source Object
+ 3, !- Outlet Port
+ {8de23077-451a-4821-b097-87fb6bf4f656}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {e1b498bd-6857-4e78-89f8-f00c0018fe1e}, !- Handle
+ {87f81a04-4173-4fe0-937d-d3fc40d427ec}, !- Name
+ {8de23077-451a-4821-b097-87fb6bf4f656}, !- Source Object
+ 3, !- Outlet Port
+ {6afeb765-2d8b-4c14-8f83-3c3946184d15}, !- Target Object
+ 3; !- Inlet Port
+
+OS:Node,
+ {a9ad769c-bb7e-46da-af03-f1770755fbee}, !- Handle
+ Core_ZN ZN PSZ-AC-1 Diffuser Inlet Air Node, !- Name
+ {0f1355b3-782f-4e5e-b0aa-8158a65e5df0}, !- Inlet Port
+ {7d61252b-e8b5-4eb0-a3ec-aa017e6e8d38}; !- Outlet Port
+
+OS:Connection,
+ {0f1355b3-782f-4e5e-b0aa-8158a65e5df0}, !- Handle
+ {64cc7532-494c-45d4-ae47-98376c01cd2c}, !- Name
+ {05f491f1-d24d-4940-ae67-74db88ab279a}, !- Source Object
+ 3, !- Outlet Port
+ {a9ad769c-bb7e-46da-af03-f1770755fbee}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {7d61252b-e8b5-4eb0-a3ec-aa017e6e8d38}, !- Handle
+ {c340a48e-4ad2-4360-a4d3-9405682d35e6}, !- Name
+ {a9ad769c-bb7e-46da-af03-f1770755fbee}, !- Source Object
+ 3, !- Outlet Port
+ {9c121e06-a74a-4bc1-842e-a0f3f81fce0c}, !- Target Object
+ 3; !- Inlet Port
+
+OS:Connection,
+ {30486f50-39e9-4e20-8b9a-50e2c1db074e}, !- Handle
+ {160f6198-e9d0-454c-a352-259ccbb8cd05}, !- Name
+ {9c121e06-a74a-4bc1-842e-a0f3f81fce0c}, !- Source Object
+ 4, !- Outlet Port
+ {91668706-7873-4dee-a5ab-d5a3690efa11}, !- Target Object
+ 2; !- Inlet Port
+
+OS:SpaceInfiltration:DesignFlowRate,
+ {cb34cfd9-7ef9-44d9-a283-591ada3e5ea8}, !- Handle
+ entry door Infiltration, !- Name
+ {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space or SpaceType Name
+ {d171e444-3b82-402d-bddb-3c7175e66e24}, !- Schedule Name
+ Flow/Space, !- Design Flow Rate Calculation Method
+ 0.076455414, !- Design Flow Rate {m3/s}
+ , !- Flow per Space Floor Area {m3/s-m2}
+ , !- Flow per Exterior Surface Area {m3/s-m2}
+ , !- Air Changes per Hour {1/hr}
+ 1, !- Constant Term Coefficient
+ 0, !- Temperature Term Coefficient
+ 0, !- Velocity Term Coefficient
+ 0; !- Velocity Squared Term Coefficient
+
+OS:Schedule:Ruleset,
+ {d171e444-3b82-402d-bddb-3c7175e66e24}, !- Handle
+ OfficeSmall INFIL_Door_Opening_SCH_2013, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ {c626cc8a-9d1e-4ec9-b894-baa8b8482d64}, !- Default Day Schedule Name
+ {b6f1990f-a14f-42b0-9f69-8afd9c10b895}, !- Summer Design Day Schedule Name
+ {f2b68d92-8163-4ad7-80b4-23c1f89e9dc1}; !- Winter Design Day Schedule Name
+
+OS:Schedule:Day,
+ {c626cc8a-9d1e-4ec9-b894-baa8b8482d64}, !- Handle
+ OfficeSmall INFIL_Door_Opening_SCH_2013 Default, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 0; !- Value Until Time 1
+
+OS:Schedule:Day,
+ {f2b68d92-8163-4ad7-80b4-23c1f89e9dc1}, !- Handle
+ OfficeSmall INFIL_Door_Opening_SCH_2013 Winter Design Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 0; !- Value Until Time 1
+
+OS:Schedule:Day,
+ {b6f1990f-a14f-42b0-9f69-8afd9c10b895}, !- Handle
+ OfficeSmall INFIL_Door_Opening_SCH_2013 Summer Design Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 0; !- Value Until Time 1
+
+OS:Schedule:Rule,
+ {b172c4e5-92b1-41c3-9656-573b06b60734}, !- Handle
+ Schedule Rule 15, !- Name
+ {d171e444-3b82-402d-bddb-3c7175e66e24}, !- Schedule Ruleset Name
+ 0, !- Rule Order
+ {e79c26dd-e383-4e71-963c-3fff17a75544}, !- Day Schedule Name
+ , !- Apply Sunday
+ Yes, !- Apply Monday
+ Yes, !- Apply Tuesday
+ Yes, !- Apply Wednesday
+ Yes, !- Apply Thursday
+ Yes, !- Apply Friday
+ , !- Apply Saturday
+ , !- Apply Holiday
+ DateRange, !- Date Specification Type
+ 1, !- Start Month
+ 1, !- Start Day
+ 12, !- End Month
+ 31; !- End Day
+
+OS:Schedule:Day,
+ {e79c26dd-e383-4e71-963c-3fff17a75544}, !- Handle
+ OfficeSmall INFIL_Door_Opening_SCH_2013 Wkdy Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 6, !- Hour 1
+ 0, !- Minute 1
+ 0, !- Value Until Time 1
+ 7, !- Hour 2
+ 0, !- Minute 2
+ 0.131, !- Value Until Time 2
+ 8, !- Hour 3
+ 0, !- Minute 3
+ 1, !- Value Until Time 3
+ 12, !- Hour 4
+ 0, !- Minute 4
+ 0.131, !- Value Until Time 4
+ 13, !- Hour 5
+ 0, !- Minute 5
+ 1, !- Value Until Time 5
+ 17, !- Hour 6
+ 0, !- Minute 6
+ 0.131, !- Value Until Time 6
+ 18, !- Hour 7
+ 0, !- Minute 7
+ 1, !- Value Until Time 7
+ 19, !- Hour 8
+ 0, !- Minute 8
+ 0.131, !- Value Until Time 8
+ 24, !- Hour 9
+ 0, !- Minute 9
+ 0; !- Value Until Time 9
+
+OS:SpaceInfiltration:DesignFlowRate,
+ {4fd04b23-9021-498e-93d4-2668abf62d33}, !- Handle
+ attic Infiltration, !- Name
+ {fb08bb0a-69e7-4942-8807-550e21855286}, !- Space or SpaceType Name
+ {0174d184-6663-43dd-a8b4-93fd61fb4380}, !- Schedule Name
+ Flow/Space, !- Design Flow Rate Calculation Method
+ 0.2001, !- Design Flow Rate {m3/s}
+ , !- Flow per Space Floor Area {m3/s-m2}
+ , !- Flow per Exterior Surface Area {m3/s-m2}
+ , !- Air Changes per Hour {1/hr}
+ 1, !- Constant Term Coefficient
+ 0, !- Temperature Term Coefficient
+ 0, !- Velocity Term Coefficient
+ 0; !- Velocity Squared Term Coefficient
+
+OS:Schedule:Ruleset,
+ {0174d184-6663-43dd-a8b4-93fd61fb4380}, !- Handle
+ Always On, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ {e8e625b7-565b-4639-a2b1-eee2dcc33b6d}; !- Default Day Schedule Name
+
+OS:Schedule:Day,
+ {e8e625b7-565b-4639-a2b1-eee2dcc33b6d}, !- Handle
+ Always On Default, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 1; !- Value Until Time 1
+
+OS:PlantLoop,
+ {03eccf84-2a78-4267-a121-9c00ec2d568f}, !- Handle
+ Main Service Water Loop, !- Name
+ , !- Fluid Type
+ 0, !- Glycol Concentration
+ , !- User Defined Fluid Type
+ , !- Plant Equipment Operation Heating Load
+ , !- Plant Equipment Operation Cooling Load
+ , !- Primary Plant Equipment Operation Scheme
+ {4e98a9f7-8a0b-4c0a-af3c-f79d06121933}, !- Loop Temperature Setpoint Node Name
+ 60, !- Maximum Loop Temperature {C}
+ 10, !- Minimum Loop Temperature {C}
+ , !- Maximum Loop Flow Rate {m3/s}
+ , !- Minimum Loop Flow Rate {m3/s}
+ Autocalculate, !- Plant Loop Volume {m3}
+ {a1865fc4-e90e-439e-838c-0d215ae3ea74}, !- Plant Side Inlet Node Name
+ {4bbfd674-4928-46d7-88c8-7a4e36b5968f}, !- Plant Side Outlet Node Name
+ , !- Plant Side Branch List Name
+ {01e340cf-ff58-4228-89cc-3579ec73901d}, !- Demand Side Inlet Node Name
+ {fd4dcb3f-b5ae-4a23-aa2b-915562c150bf}, !- Demand Side Outlet Node Name
+ , !- Demand Side Branch List Name
+ , !- Demand Side Connector List Name
+ Optimal, !- Load Distribution Scheme
+ {3e955194-5633-400a-8777-06aad2a8d59a}, !- Availability Manager List Name
+ , !- Plant Loop Demand Calculation Scheme
+ , !- Common Pipe Simulation
+ , !- Pressure Simulation Type
+ , !- Plant Equipment Operation Heating Load Schedule
+ , !- Plant Equipment Operation Cooling Load Schedule
+ , !- Primary Plant Equipment Operation Scheme Schedule
+ , !- Component Setpoint Operation Scheme Schedule
+ {e6ed990a-2035-449d-b122-c4c8296fd6ba}, !- Demand Mixer Name
+ {9f23bee3-edc4-4b22-aaa3-2e9833b6ce3d}, !- Demand Splitter Name
+ {529e9895-3441-48c5-8e56-73c5d5b0fc52}, !- Supply Mixer Name
+ {6ed6b54f-d16b-4695-abea-b52a8ef1095b}; !- Supply Splitter Name
+
+OS:Sizing:Plant,
+ {4de3ee3e-464b-4dd9-a902-215f1e014ded}, !- Handle
+ {03eccf84-2a78-4267-a121-9c00ec2d568f}, !- Plant or Condenser Loop Name
+ Heating, !- Loop Type
+ 60.0000000000001, !- Design Loop Exit Temperature {C}
+ 5, !- Loop Design Temperature Difference {deltaC}
+ NonCoincident, !- Sizing Option
+ 1, !- Zone Timesteps in Averaging Window
+ None; !- Coincident Sizing Factor Mode
+
+OS:Node,
+ {0a0aec54-5573-4d11-af61-64d1b68a5f49}, !- Handle
+ Main Service Water Loop Supply Inlet Node, !- Name
+ {a1865fc4-e90e-439e-838c-0d215ae3ea74}, !- Inlet Port
+ {01b3a69b-638c-4d44-ba57-dbd8a996ce39}; !- Outlet Port
+
+OS:Node,
+ {4e98a9f7-8a0b-4c0a-af3c-f79d06121933}, !- Handle
+ Main Service Water Loop Supply Outlet Node, !- Name
+ {92ac48b6-4d7b-4271-aa77-68e84de8efa2}, !- Inlet Port
+ {4bbfd674-4928-46d7-88c8-7a4e36b5968f}; !- Outlet Port
+
+OS:Node,
+ {66db2114-5654-4abe-82a2-49d23056539b}, !- Handle
+ 40gal Electricity Water Heater - 40kBtu/hr 1.0 Therm Eff Supply Inlet Water Node, !- Name
+ {8c3b5d43-b370-4849-9b36-82c9a0f1f9c0}, !- Inlet Port
+ {c4dd33b8-0950-46a9-8751-237370376236}; !- Outlet Port
+
+OS:Connector:Mixer,
+ {529e9895-3441-48c5-8e56-73c5d5b0fc52}, !- Handle
+ Connector Mixer 1, !- Name
+ {b229e5ae-d096-41c3-994f-72dfe2b5e7d2}, !- Outlet Branch Name
+ {ef15a38e-baf9-4d95-94f4-eaeb48b5a67d}, !- Inlet Branch Name 1
+ {bfedbbe9-212d-4f43-8cec-0cd85ff4e1e2}; !- Inlet Branch Name 2
+
+OS:Connector:Splitter,
+ {6ed6b54f-d16b-4695-abea-b52a8ef1095b}, !- Handle
+ Connector Splitter 1, !- Name
+ {c4050bbb-5dcd-4e69-8eb8-f27fda947850}, !- Inlet Branch Name
+ {8c3b5d43-b370-4849-9b36-82c9a0f1f9c0}, !- Outlet Branch Name 1
+ {7c730f0d-a9bb-49ae-bdfe-a6f5c75c53d2}; !- Outlet Branch Name 2
+
+OS:Connection,
+ {a1865fc4-e90e-439e-838c-0d215ae3ea74}, !- Handle
+ {8d147142-6c6a-4ca4-a039-fec4ffadf0b0}, !- Name
+ {03eccf84-2a78-4267-a121-9c00ec2d568f}, !- Source Object
+ 14, !- Outlet Port
+ {0a0aec54-5573-4d11-af61-64d1b68a5f49}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {8c3b5d43-b370-4849-9b36-82c9a0f1f9c0}, !- Handle
+ {1ff490c5-d0c9-42ad-b7ce-07b699e4d939}, !- Name
+ {6ed6b54f-d16b-4695-abea-b52a8ef1095b}, !- Source Object
+ 3, !- Outlet Port
+ {66db2114-5654-4abe-82a2-49d23056539b}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {4bbfd674-4928-46d7-88c8-7a4e36b5968f}, !- Handle
+ {173a7579-e91d-432c-9198-6c1784585822}, !- Name
+ {4e98a9f7-8a0b-4c0a-af3c-f79d06121933}, !- Source Object
+ 3, !- Outlet Port
+ {03eccf84-2a78-4267-a121-9c00ec2d568f}, !- Target Object
+ 15; !- Inlet Port
+
+OS:Node,
+ {7b10a9fd-cf6f-43b0-9c87-476b324d7c13}, !- Handle
+ Main Service Water Loop Demand Inlet Node, !- Name
+ {01e340cf-ff58-4228-89cc-3579ec73901d}, !- Inlet Port
+ {3d35842b-9430-484b-ba08-cf8e61b37b5b}; !- Outlet Port
+
+OS:Node,
+ {0df2aa06-fdcb-4a1f-a9b7-1082fb7b1024}, !- Handle
+ Main Service Water Loop Demand Outlet Node, !- Name
+ {5bb528b8-3f1a-497b-b13d-025431223214}, !- Inlet Port
+ {fd4dcb3f-b5ae-4a23-aa2b-915562c150bf}; !- Outlet Port
+
+OS:Node,
+ {50594ea1-547a-410b-9ab0-171186f5f6a4}, !- Handle
+ Pipe Adiabatic 2 Inlet Water Node, !- Name
+ {48e8e3ff-a1c3-41a2-a432-923dc988f38f}, !- Inlet Port
+ {21b2337c-7b84-4efd-af94-0a8a1aaa09b9}; !- Outlet Port
+
+OS:Connector:Mixer,
+ {e6ed990a-2035-449d-b122-c4c8296fd6ba}, !- Handle
+ Connector Mixer 2, !- Name
+ {9d73560b-007a-41af-96b6-0908aea98255}, !- Outlet Branch Name
+ {67a3adaa-667a-4298-a91d-a620dcd10ddf}, !- Inlet Branch Name 1
+ {1045cfef-dcf7-4c1e-bd6c-48eefbff4cc9}; !- Inlet Branch Name 2
+
+OS:Connector:Splitter,
+ {9f23bee3-edc4-4b22-aaa3-2e9833b6ce3d}, !- Handle
+ Connector Splitter 2, !- Name
+ {8472e582-a486-495c-8adb-408b8d4047dc}, !- Inlet Branch Name
+ {48e8e3ff-a1c3-41a2-a432-923dc988f38f}, !- Outlet Branch Name 1
+ {eff2f1a5-9ccb-456c-899d-d4772a3ca2f5}; !- Outlet Branch Name 2
+
+OS:Connection,
+ {01e340cf-ff58-4228-89cc-3579ec73901d}, !- Handle
+ {65134da2-b927-4523-ac75-ecea64fcdb1c}, !- Name
+ {03eccf84-2a78-4267-a121-9c00ec2d568f}, !- Source Object
+ 17, !- Outlet Port
+ {7b10a9fd-cf6f-43b0-9c87-476b324d7c13}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {48e8e3ff-a1c3-41a2-a432-923dc988f38f}, !- Handle
+ {7a3b508f-2071-4976-bd29-95fa6b9f7298}, !- Name
+ {9f23bee3-edc4-4b22-aaa3-2e9833b6ce3d}, !- Source Object
+ 3, !- Outlet Port
+ {50594ea1-547a-410b-9ab0-171186f5f6a4}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {fd4dcb3f-b5ae-4a23-aa2b-915562c150bf}, !- Handle
+ {51afe520-6d3c-4bd7-b907-ef99371bcf10}, !- Name
+ {0df2aa06-fdcb-4a1f-a9b7-1082fb7b1024}, !- Source Object
+ 3, !- Outlet Port
+ {03eccf84-2a78-4267-a121-9c00ec2d568f}, !- Target Object
+ 18; !- Inlet Port
+
+OS:AvailabilityManagerAssignmentList,
+ {3e955194-5633-400a-8777-06aad2a8d59a}, !- Handle
+ Plant Loop 1 AvailabilityManagerAssignmentList; !- Name
+
+OS:ScheduleTypeLimits,
+ {6350e82a-2704-4431-a501-cad9c8790a16}, !- Handle
+ Temperature Schedule Type Limits, !- Name
+ 0, !- Lower Limit Value
+ 100, !- Upper Limit Value
+ Continuous, !- Numeric Type
+ Temperature; !- Unit Type
+
+OS:Schedule:Ruleset,
+ {e9ba8afa-f7bb-4b7e-ab3c-b7db6d1b1b66}, !- Handle
+ Service Water Loop Temp - 140F, !- Name
+ {6350e82a-2704-4431-a501-cad9c8790a16}, !- Schedule Type Limits Name
+ {c9d5b5b5-0846-47ff-bd50-6be8fb422088}; !- Default Day Schedule Name
+
+OS:Schedule:Day,
+ {c9d5b5b5-0846-47ff-bd50-6be8fb422088}, !- Handle
+ Service Water Loop Temp - 140F Default, !- Name
+ {6350e82a-2704-4431-a501-cad9c8790a16}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 60.0000000000001; !- Value Until Time 1
+
+OS:SetpointManager:Scheduled,
+ {351851af-38f9-4bdf-987e-08151cb0d0ea}, !- Handle
+ Service hot water setpoint manager, !- Name
+ Temperature, !- Control Variable
+ {e9ba8afa-f7bb-4b7e-ab3c-b7db6d1b1b66}, !- Schedule Name
+ {4e98a9f7-8a0b-4c0a-af3c-f79d06121933}; !- Setpoint Node or NodeList Name
+
+OS:Pump:ConstantSpeed,
+ {ef7cdfba-df0b-49f4-8c83-7c1b8cdfb955}, !- Handle
+ Service Water Loop Pump, !- Name
+ {01b3a69b-638c-4d44-ba57-dbd8a996ce39}, !- Inlet Node Name
+ {26d49cc5-e716-4050-ad93-9519a0c94d43}, !- Outlet Node Name
+ autosize, !- Rated Flow Rate {m3/s}
+ 0.001, !- Rated Pump Head {Pa}
+ autosize, !- Rated Power Consumption {W}
+ 0.7, !- Motor Efficiency
+ 0, !- Fraction of Motor Inefficiencies to Fluid Stream
+ Intermittent, !- Pump Control Type
+ , !- Pump Flow Rate Schedule
+ , !- Pump Curve
+ , !- Impeller Diameter {m}
+ , !- Rotational Speed {rev/min}
+ , !- Zone
+ , !- Skin Loss Radiative Fraction
+ PowerPerFlowPerPressure, !- Design Power Sizing Method
+ 348701.1, !- Design Electric Power per Unit Flow Rate {W/(m3/s)}
+ 1.282051282; !- Design Shaft Power per Unit Flow Rate per Unit Head {W-s/m3-Pa}
+
+OS:Node,
+ {4f3821fe-64ec-4126-a8ba-5c350441f5ac}, !- Handle
+ Service Water Loop Pump Outlet Water Node, !- Name
+ {26d49cc5-e716-4050-ad93-9519a0c94d43}, !- Inlet Port
+ {c4050bbb-5dcd-4e69-8eb8-f27fda947850}; !- Outlet Port
+
+OS:Connection,
+ {01b3a69b-638c-4d44-ba57-dbd8a996ce39}, !- Handle
+ {176447a0-0f9d-4507-9824-389d5a00ea58}, !- Name
+ {0a0aec54-5573-4d11-af61-64d1b68a5f49}, !- Source Object
+ 3, !- Outlet Port
+ {ef7cdfba-df0b-49f4-8c83-7c1b8cdfb955}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {26d49cc5-e716-4050-ad93-9519a0c94d43}, !- Handle
+ {52980720-c910-4261-825a-40f9e48778ea}, !- Name
+ {ef7cdfba-df0b-49f4-8c83-7c1b8cdfb955}, !- Source Object
+ 3, !- Outlet Port
+ {4f3821fe-64ec-4126-a8ba-5c350441f5ac}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {c4050bbb-5dcd-4e69-8eb8-f27fda947850}, !- Handle
+ {967bddf0-38a0-4615-99c3-08a40b5a7527}, !- Name
+ {4f3821fe-64ec-4126-a8ba-5c350441f5ac}, !- Source Object
+ 3, !- Outlet Port
+ {6ed6b54f-d16b-4695-abea-b52a8ef1095b}, !- Target Object
+ 2; !- Inlet Port
+
+OS:WaterHeater:Mixed,
+ {e153f659-c9cc-4b67-8116-4f7569078780}, !- Handle
+ 40gal Electricity Water Heater - 40kBtu/hr 1.0 Therm Eff, !- Name
+ 0.151416471358794, !- Tank Volume {m3}
+ {e9ba8afa-f7bb-4b7e-ab3c-b7db6d1b1b66}, !- Setpoint Temperature Schedule Name
+ 2, !- Deadband Temperature Difference {deltaC}
+ 82.2222222222223, !- Maximum Temperature Limit {C}
+ Cycle, !- Heater Control Type
+ 11722.8428068889, !- Heater Maximum Capacity {W}
+ , !- Heater Minimum Capacity {W}
+ , !- Heater Ignition Minimum Flow Rate {m3/s}
+ , !- Heater Ignition Delay {s}
+ Electricity, !- Heater Fuel Type
+ 1, !- Heater Thermal Efficiency
+ , !- Part Load Factor Curve Name
+ 570.999158148646, !- Off Cycle Parasitic Fuel Consumption Rate {W}
+ Electricity, !- Off Cycle Parasitic Fuel Type
+ 0.8, !- Off Cycle Parasitic Heat Fraction to Tank
+ 570.999158148646, !- On Cycle Parasitic Fuel Consumption Rate {W}
+ Electricity, !- On Cycle Parasitic Fuel Type
+ 0, !- On Cycle Parasitic Heat Fraction to Tank
+ ThermalZone, !- Ambient Temperature Indicator
+ , !- Ambient Temperature Schedule Name
+ {28915964-e2c4-4332-a684-5091ad72d321}, !- Ambient Temperature Thermal Zone Name
+ , !- Ambient Temperature Outdoor Air Node Name
+ 1.205980747, !- Off Cycle Loss Coefficient to Ambient Temperature {W/K}
+ , !- Off Cycle Loss Fraction to Thermal Zone
+ 1.205980747, !- On Cycle Loss Coefficient to Ambient Temperature {W/K}
+ , !- On Cycle Loss Fraction to Thermal Zone
+ , !- Peak Use Flow Rate {m3/s}
+ , !- Use Flow Rate Fraction Schedule Name
+ , !- Cold Water Supply Temperature Schedule Name
+ {c4dd33b8-0950-46a9-8751-237370376236}, !- Use Side Inlet Node Name
+ {16d09cb4-9edf-48fa-aa29-27b2dd76ed93}, !- Use Side Outlet Node Name
+ 1, !- Use Side Effectiveness
+ , !- Source Side Inlet Node Name
+ , !- Source Side Outlet Node Name
+ 1, !- Source Side Effectiveness
+ autosize, !- Use Side Design Flow Rate {m3/s}
+ autosize, !- Source Side Design Flow Rate {m3/s}
+ 1.5, !- Indirect Water Heating Recovery Time {hr}
+ IndirectHeatPrimarySetpoint, !- Source Side Flow Control Mode
+ , !- Indirect Alternate Setpoint Temperature Schedule Name
+ General; !- End-Use Subcategory
+
+OS:Schedule:Day,
+ {5c09b822-b057-4fe3-94a1-365ff8c2923d}, !- Handle
+ Schedule Day 23, !- Name
+ {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 22; !- Value Until Time 1
+
+OS:Schedule:Day,
+ {0e42af06-9739-4758-8cf1-0b20b0f68c88}, !- Handle
+ Schedule Day 24, !- Name
+ {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 60; !- Value Until Time 1
+
+OS:Node,
+ {8c268286-420d-461a-8e91-f73bbe0193ca}, !- Handle
+ 40gal Electricity Water Heater - 40kBtu/hr 1.0 Therm Eff Supply Outlet Water Node, !- Name
+ {16d09cb4-9edf-48fa-aa29-27b2dd76ed93}, !- Inlet Port
+ {ef15a38e-baf9-4d95-94f4-eaeb48b5a67d}; !- Outlet Port
+
+OS:Connection,
+ {c4dd33b8-0950-46a9-8751-237370376236}, !- Handle
+ {f8685c48-e45e-4b23-921b-21920e635d53}, !- Name
+ {66db2114-5654-4abe-82a2-49d23056539b}, !- Source Object
+ 3, !- Outlet Port
+ {e153f659-c9cc-4b67-8116-4f7569078780}, !- Target Object
+ 31; !- Inlet Port
+
+OS:Connection,
+ {16d09cb4-9edf-48fa-aa29-27b2dd76ed93}, !- Handle
+ {5dbab109-2cbb-4308-8fa3-484995324abf}, !- Name
+ {e153f659-c9cc-4b67-8116-4f7569078780}, !- Source Object
+ 32, !- Outlet Port
+ {8c268286-420d-461a-8e91-f73bbe0193ca}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {ef15a38e-baf9-4d95-94f4-eaeb48b5a67d}, !- Handle
+ {7727168c-a9ae-42ae-908d-15cbd7be074c}, !- Name
+ {8c268286-420d-461a-8e91-f73bbe0193ca}, !- Source Object
+ 3, !- Outlet Port
+ {529e9895-3441-48c5-8e56-73c5d5b0fc52}, !- Target Object
+ 3; !- Inlet Port
+
+OS:Pipe:Adiabatic,
+ {b094b83b-86e1-44e7-8f94-7e84d4022a9a}, !- Handle
+ Pipe Adiabatic 1, !- Name
+ {23c826f6-8995-4ca7-a6e9-c1bbbf3f3c85}, !- Inlet Node Name
+ {61c390b6-85b1-42c1-afe5-3a4e02422fa3}; !- Outlet Node Name
+
+OS:Node,
+ {749cb0ee-1478-4314-97d0-801160b86bdf}, !- Handle
+ Pipe Adiabatic 1 Inlet Water Node, !- Name
+ {7c730f0d-a9bb-49ae-bdfe-a6f5c75c53d2}, !- Inlet Port
+ {23c826f6-8995-4ca7-a6e9-c1bbbf3f3c85}; !- Outlet Port
+
+OS:Connection,
+ {7c730f0d-a9bb-49ae-bdfe-a6f5c75c53d2}, !- Handle
+ {afe88c96-a919-43f5-af80-a069a7271460}, !- Name
+ {6ed6b54f-d16b-4695-abea-b52a8ef1095b}, !- Source Object
+ 4, !- Outlet Port
+ {749cb0ee-1478-4314-97d0-801160b86bdf}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Node,
+ {97bb26ec-5ff5-4b7c-becb-c68a325849c5}, !- Handle
+ Pipe Adiabatic 1 Outlet Water Node, !- Name
+ {61c390b6-85b1-42c1-afe5-3a4e02422fa3}, !- Inlet Port
+ {bfedbbe9-212d-4f43-8cec-0cd85ff4e1e2}; !- Outlet Port
+
+OS:Connection,
+ {23c826f6-8995-4ca7-a6e9-c1bbbf3f3c85}, !- Handle
+ {4d4185d6-7295-435c-a379-ca497cc1db9a}, !- Name
+ {749cb0ee-1478-4314-97d0-801160b86bdf}, !- Source Object
+ 3, !- Outlet Port
+ {b094b83b-86e1-44e7-8f94-7e84d4022a9a}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {61c390b6-85b1-42c1-afe5-3a4e02422fa3}, !- Handle
+ {7993bd1f-56d2-46e0-a073-b553e65f8193}, !- Name
+ {b094b83b-86e1-44e7-8f94-7e84d4022a9a}, !- Source Object
+ 3, !- Outlet Port
+ {97bb26ec-5ff5-4b7c-becb-c68a325849c5}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {bfedbbe9-212d-4f43-8cec-0cd85ff4e1e2}, !- Handle
+ {cc588341-3493-40be-a0b8-e31f82cfe492}, !- Name
+ {97bb26ec-5ff5-4b7c-becb-c68a325849c5}, !- Source Object
+ 3, !- Outlet Port
+ {529e9895-3441-48c5-8e56-73c5d5b0fc52}, !- Target Object
+ 4; !- Inlet Port
+
+OS:Pipe:Adiabatic,
+ {e89147eb-0b91-410f-829e-d6c403ab7e0a}, !- Handle
+ Pipe Adiabatic 2, !- Name
+ {21b2337c-7b84-4efd-af94-0a8a1aaa09b9}, !- Inlet Node Name
+ {5f501537-9dd0-4a9c-9074-ba05f12b263a}; !- Outlet Node Name
+
+OS:Node,
+ {0fc0308d-3557-4a01-8926-779e734f5617}, !- Handle
+ Pipe Adiabatic 2 Outlet Water Node, !- Name
+ {5f501537-9dd0-4a9c-9074-ba05f12b263a}, !- Inlet Port
+ {67a3adaa-667a-4298-a91d-a620dcd10ddf}; !- Outlet Port
+
+OS:Connection,
+ {21b2337c-7b84-4efd-af94-0a8a1aaa09b9}, !- Handle
+ {369164aa-6e80-42d5-8dc9-4e8061a7f4eb}, !- Name
+ {50594ea1-547a-410b-9ab0-171186f5f6a4}, !- Source Object
+ 3, !- Outlet Port
+ {e89147eb-0b91-410f-829e-d6c403ab7e0a}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {5f501537-9dd0-4a9c-9074-ba05f12b263a}, !- Handle
+ {57d4a8bd-4b00-4a3a-a777-12b903ba1204}, !- Name
+ {e89147eb-0b91-410f-829e-d6c403ab7e0a}, !- Source Object
+ 3, !- Outlet Port
+ {0fc0308d-3557-4a01-8926-779e734f5617}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {67a3adaa-667a-4298-a91d-a620dcd10ddf}, !- Handle
+ {9914625d-16a9-4697-b0f1-f27d6bb8c085}, !- Name
+ {0fc0308d-3557-4a01-8926-779e734f5617}, !- Source Object
+ 3, !- Outlet Port
+ {e6ed990a-2035-449d-b122-c4c8296fd6ba}, !- Target Object
+ 3; !- Inlet Port
+
+OS:Pipe:Adiabatic,
+ {b8664110-0862-40d2-83c7-b16bd92ad80c}, !- Handle
+ Pipe Adiabatic 3, !- Name
+ {07d1f9ef-9f60-4126-a0bc-02784c08450c}, !- Inlet Node Name
+ {92ac48b6-4d7b-4271-aa77-68e84de8efa2}; !- Outlet Node Name
+
+OS:Node,
+ {500ccff3-e373-4ebe-a741-1fa88a38f6b9}, !- Handle
+ Pipe Adiabatic 3 Inlet Water Node, !- Name
+ {b229e5ae-d096-41c3-994f-72dfe2b5e7d2}, !- Inlet Port
+ {07d1f9ef-9f60-4126-a0bc-02784c08450c}; !- Outlet Port
+
+OS:Connection,
+ {b229e5ae-d096-41c3-994f-72dfe2b5e7d2}, !- Handle
+ {146896aa-c380-4745-b179-aa2668f2b98a}, !- Name
+ {529e9895-3441-48c5-8e56-73c5d5b0fc52}, !- Source Object
+ 2, !- Outlet Port
+ {500ccff3-e373-4ebe-a741-1fa88a38f6b9}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {07d1f9ef-9f60-4126-a0bc-02784c08450c}, !- Handle
+ {e2a6721a-b7cd-4dca-85d5-06d6e826579c}, !- Name
+ {500ccff3-e373-4ebe-a741-1fa88a38f6b9}, !- Source Object
+ 3, !- Outlet Port
+ {b8664110-0862-40d2-83c7-b16bd92ad80c}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {92ac48b6-4d7b-4271-aa77-68e84de8efa2}, !- Handle
+ {a1666c77-b6ae-4653-85cb-bfbdbac6065c}, !- Name
+ {b8664110-0862-40d2-83c7-b16bd92ad80c}, !- Source Object
+ 3, !- Outlet Port
+ {4e98a9f7-8a0b-4c0a-af3c-f79d06121933}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Pipe:Adiabatic,
+ {a8583a06-f068-4946-b9bc-335744deeca5}, !- Handle
+ Pipe Adiabatic 4, !- Name
+ {3d35842b-9430-484b-ba08-cf8e61b37b5b}, !- Inlet Node Name
+ {c5b1c918-2dfb-4de0-995c-6a5cb76f9c52}; !- Outlet Node Name
+
+OS:Node,
+ {b15cebb9-f733-4afa-b3c5-1b0cd302df3d}, !- Handle
+ Pipe Adiabatic 4 Outlet Water Node, !- Name
+ {c5b1c918-2dfb-4de0-995c-6a5cb76f9c52}, !- Inlet Port
+ {8472e582-a486-495c-8adb-408b8d4047dc}; !- Outlet Port
+
+OS:Connection,
+ {3d35842b-9430-484b-ba08-cf8e61b37b5b}, !- Handle
+ {72bb0fa4-37eb-41b6-9931-86396f73b343}, !- Name
+ {7b10a9fd-cf6f-43b0-9c87-476b324d7c13}, !- Source Object
+ 3, !- Outlet Port
+ {a8583a06-f068-4946-b9bc-335744deeca5}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {c5b1c918-2dfb-4de0-995c-6a5cb76f9c52}, !- Handle
+ {799763f0-bedd-4294-ac40-2ae611c21b04}, !- Name
+ {a8583a06-f068-4946-b9bc-335744deeca5}, !- Source Object
+ 3, !- Outlet Port
+ {b15cebb9-f733-4afa-b3c5-1b0cd302df3d}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {8472e582-a486-495c-8adb-408b8d4047dc}, !- Handle
+ {0449fb40-8574-483e-8823-c1b3114b8339}, !- Name
+ {b15cebb9-f733-4afa-b3c5-1b0cd302df3d}, !- Source Object
+ 3, !- Outlet Port
+ {9f23bee3-edc4-4b22-aaa3-2e9833b6ce3d}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Pipe:Adiabatic,
+ {a5011592-888f-4dd2-81d1-e99ac43c095e}, !- Handle
+ Pipe Adiabatic 5, !- Name
+ {8561e47e-5829-439b-9f45-f11572535cda}, !- Inlet Node Name
+ {5bb528b8-3f1a-497b-b13d-025431223214}; !- Outlet Node Name
+
+OS:Node,
+ {87706ece-141f-4df5-8ec9-ee0c0354266b}, !- Handle
+ Pipe Adiabatic 5 Inlet Water Node, !- Name
+ {9d73560b-007a-41af-96b6-0908aea98255}, !- Inlet Port
+ {8561e47e-5829-439b-9f45-f11572535cda}; !- Outlet Port
+
+OS:Connection,
+ {9d73560b-007a-41af-96b6-0908aea98255}, !- Handle
+ {c2a96e03-1e96-432e-b7c7-9985d520863e}, !- Name
+ {e6ed990a-2035-449d-b122-c4c8296fd6ba}, !- Source Object
+ 2, !- Outlet Port
+ {87706ece-141f-4df5-8ec9-ee0c0354266b}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {8561e47e-5829-439b-9f45-f11572535cda}, !- Handle
+ {0b6f904d-6f7f-4a44-b536-4d7fdb2b1c9c}, !- Name
+ {87706ece-141f-4df5-8ec9-ee0c0354266b}, !- Source Object
+ 3, !- Outlet Port
+ {a5011592-888f-4dd2-81d1-e99ac43c095e}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {5bb528b8-3f1a-497b-b13d-025431223214}, !- Handle
+ {81ce24aa-027c-4f1d-a7f0-8309863cc84c}, !- Name
+ {a5011592-888f-4dd2-81d1-e99ac43c095e}, !- Source Object
+ 3, !- Outlet Port
+ {0df2aa06-fdcb-4a1f-a9b7-1082fb7b1024}, !- Target Object
+ 2; !- Inlet Port
+
+OS:WaterUse:Connections,
+ {f24d3a45-afa1-4c12-924f-528e5817fe81}, !- Handle
+ Water Use Connections 1, !- Name
+ {9a11b156-e859-4325-8020-204d430b4d28}, !- Inlet Node Name
+ {3d222629-2149-4912-affe-3c86b4fc609d}, !- Outlet Node Name
+ , !- Supply Water Storage Tank Name
+ , !- Reclamation Water Storage Tank Name
+ , !- Hot Water Supply Temperature Schedule Name
+ , !- Cold Water Supply Temperature Schedule Name
+ , !- Drain Water Heat Exchanger Type
+ , !- Drain Water Heat Exchanger Destination
+ , !- Drain Water Heat Exchanger U-Factor Times Area {W/K}
+ {b215b732-7780-4024-a7b4-eed0c0fa8e68}; !- Water Use Equipment Name 1
+
+OS:WaterUse:Equipment:Definition,
+ {a9cf5c25-b4d7-4e7e-b6d2-6d2bd670514d}, !- Handle
+ Main Service Water Use Def 0.06gal/min, !- Name
+ , !- End-Use Subcategory
+ 4.03777256956784e-006, !- Peak Flow Rate {m3/s}
+ {8872c722-f324-4c0b-8113-59aa45367ace}, !- Target Temperature Schedule Name
+ {f5abd91e-4283-4f39-9dd8-adc9d9387588}, !- Sensible Fraction Schedule Name
+ {76660b90-1c19-40c9-ae87-37f50e46a639}; !- Latent Fraction Schedule Name
+
+OS:Schedule:Ruleset,
+ {f5abd91e-4283-4f39-9dd8-adc9d9387588}, !- Handle
+ Fraction Sensible - 0.2, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ {540f336c-001a-4149-b7f3-0c60ff6c2959}; !- Default Day Schedule Name
+
+OS:Schedule:Day,
+ {540f336c-001a-4149-b7f3-0c60ff6c2959}, !- Handle
+ Fraction Sensible - 0.2 Default, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 0.2; !- Value Until Time 1
+
+OS:Schedule:Ruleset,
+ {76660b90-1c19-40c9-ae87-37f50e46a639}, !- Handle
+ Fraction Latent - 0.05, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ {2da536c0-eb27-492f-972f-f5ef79370b2b}; !- Default Day Schedule Name
+
+OS:Schedule:Day,
+ {2da536c0-eb27-492f-972f-f5ef79370b2b}, !- Handle
+ Fraction Latent - 0.05 Default, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 0.05; !- Value Until Time 1
+
+OS:Schedule:Ruleset,
+ {8872c722-f324-4c0b-8113-59aa45367ace}, !- Handle
+ Mixed Water At Faucet Temp - 120F, !- Name
+ {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name
+ {c7678597-879e-494e-ae5b-d57e484483d5}; !- Default Day Schedule Name
+
+OS:Schedule:Day,
+ {c7678597-879e-494e-ae5b-d57e484483d5}, !- Handle
+ Mixed Water At Faucet Temp - 120F Default, !- Name
+ {e92fdb7e-ac44-48e6-af6f-5961d4c07a59}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 48.8888888888889; !- Value Until Time 1
+
+OS:WaterUse:Equipment,
+ {b215b732-7780-4024-a7b4-eed0c0fa8e68}, !- Handle
+ Main Service Water Use 0.06gal/min, !- Name
+ {a9cf5c25-b4d7-4e7e-b6d2-6d2bd670514d}, !- Water Use Equipment Definition Name
+ , !- Space Name
+ {9a5250f5-5af9-49ce-8240-ee12980342b5}; !- Flow Rate Fraction Schedule Name
+
+OS:Schedule:Ruleset,
+ {9a5250f5-5af9-49ce-8240-ee12980342b5}, !- Handle
+ OfficeSmall BLDG_SWH_SCH, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ {ceaac14d-4d5f-4be5-98e8-89c649cbf29a}, !- Default Day Schedule Name
+ {7df48db6-2d63-491b-82fd-9961be889658}, !- Summer Design Day Schedule Name
+ {bf7e6279-980c-408f-8ef3-061982748c66}; !- Winter Design Day Schedule Name
+
+OS:Schedule:Day,
+ {ceaac14d-4d5f-4be5-98e8-89c649cbf29a}, !- Handle
+ OfficeSmall BLDG_SWH_SCH Default, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 0; !- Value Until Time 1
+
+OS:Schedule:Day,
+ {bf7e6279-980c-408f-8ef3-061982748c66}, !- Handle
+ OfficeSmall BLDG_SWH_SCH Winter Design Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 7, !- Hour 1
+ 0, !- Minute 1
+ 0, !- Value Until Time 1
+ 8, !- Hour 2
+ 0, !- Minute 2
+ 0.27, !- Value Until Time 2
+ 9, !- Hour 3
+ 0, !- Minute 3
+ 0.55, !- Value Until Time 3
+ 11, !- Hour 4
+ 0, !- Minute 4
+ 0.64, !- Value Until Time 4
+ 12, !- Hour 5
+ 0, !- Minute 5
+ 0.82, !- Value Until Time 5
+ 13, !- Hour 6
+ 0, !- Minute 6
+ 1, !- Value Until Time 6
+ 14, !- Hour 7
+ 0, !- Minute 7
+ 0.91, !- Value Until Time 7
+ 16, !- Hour 8
+ 0, !- Minute 8
+ 0.55, !- Value Until Time 8
+ 17, !- Hour 9
+ 0, !- Minute 9
+ 0.73, !- Value Until Time 9
+ 19, !- Hour 10
+ 0, !- Minute 10
+ 0.37, !- Value Until Time 10
+ 20, !- Hour 11
+ 0, !- Minute 11
+ 0.18, !- Value Until Time 11
+ 21, !- Hour 12
+ 0, !- Minute 12
+ 0.27, !- Value Until Time 12
+ 22, !- Hour 13
+ 0, !- Minute 13
+ 0.09, !- Value Until Time 13
+ 24, !- Hour 14
+ 0, !- Minute 14
+ 0; !- Value Until Time 14
+
+OS:Schedule:Day,
+ {7df48db6-2d63-491b-82fd-9961be889658}, !- Handle
+ OfficeSmall BLDG_SWH_SCH Summer Design Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 7, !- Hour 1
+ 0, !- Minute 1
+ 0, !- Value Until Time 1
+ 8, !- Hour 2
+ 0, !- Minute 2
+ 0.27, !- Value Until Time 2
+ 9, !- Hour 3
+ 0, !- Minute 3
+ 0.55, !- Value Until Time 3
+ 11, !- Hour 4
+ 0, !- Minute 4
+ 0.64, !- Value Until Time 4
+ 12, !- Hour 5
+ 0, !- Minute 5
+ 0.82, !- Value Until Time 5
+ 13, !- Hour 6
+ 0, !- Minute 6
+ 1, !- Value Until Time 6
+ 14, !- Hour 7
+ 0, !- Minute 7
+ 0.91, !- Value Until Time 7
+ 16, !- Hour 8
+ 0, !- Minute 8
+ 0.55, !- Value Until Time 8
+ 17, !- Hour 9
+ 0, !- Minute 9
+ 0.73, !- Value Until Time 9
+ 19, !- Hour 10
+ 0, !- Minute 10
+ 0.37, !- Value Until Time 10
+ 20, !- Hour 11
+ 0, !- Minute 11
+ 0.18, !- Value Until Time 11
+ 21, !- Hour 12
+ 0, !- Minute 12
+ 0.27, !- Value Until Time 12
+ 22, !- Hour 13
+ 0, !- Minute 13
+ 0.09, !- Value Until Time 13
+ 24, !- Hour 14
+ 0, !- Minute 14
+ 0; !- Value Until Time 14
+
+OS:Schedule:Rule,
+ {0b448069-23b0-442d-b4c5-53cd9318427d}, !- Handle
+ Schedule Rule 16, !- Name
+ {9a5250f5-5af9-49ce-8240-ee12980342b5}, !- Schedule Ruleset Name
+ 0, !- Rule Order
+ {369091e4-572f-4aca-a17a-07f2be0d237c}, !- Day Schedule Name
+ , !- Apply Sunday
+ Yes, !- Apply Monday
+ Yes, !- Apply Tuesday
+ Yes, !- Apply Wednesday
+ Yes, !- Apply Thursday
+ Yes, !- Apply Friday
+ , !- Apply Saturday
+ , !- Apply Holiday
+ DateRange, !- Date Specification Type
+ 1, !- Start Month
+ 1, !- Start Day
+ 12, !- End Month
+ 31; !- End Day
+
+OS:Schedule:Day,
+ {369091e4-572f-4aca-a17a-07f2be0d237c}, !- Handle
+ OfficeSmall BLDG_SWH_SCH WntrDsn SmrDsn Wkdy Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 7, !- Hour 1
+ 0, !- Minute 1
+ 0, !- Value Until Time 1
+ 8, !- Hour 2
+ 0, !- Minute 2
+ 0.27, !- Value Until Time 2
+ 9, !- Hour 3
+ 0, !- Minute 3
+ 0.55, !- Value Until Time 3
+ 11, !- Hour 4
+ 0, !- Minute 4
+ 0.64, !- Value Until Time 4
+ 12, !- Hour 5
+ 0, !- Minute 5
+ 0.82, !- Value Until Time 5
+ 13, !- Hour 6
+ 0, !- Minute 6
+ 1, !- Value Until Time 6
+ 14, !- Hour 7
+ 0, !- Minute 7
+ 0.91, !- Value Until Time 7
+ 16, !- Hour 8
+ 0, !- Minute 8
+ 0.55, !- Value Until Time 8
+ 17, !- Hour 9
+ 0, !- Minute 9
+ 0.73, !- Value Until Time 9
+ 19, !- Hour 10
+ 0, !- Minute 10
+ 0.37, !- Value Until Time 10
+ 20, !- Hour 11
+ 0, !- Minute 11
+ 0.18, !- Value Until Time 11
+ 21, !- Hour 12
+ 0, !- Minute 12
+ 0.27, !- Value Until Time 12
+ 22, !- Hour 13
+ 0, !- Minute 13
+ 0.09, !- Value Until Time 13
+ 24, !- Hour 14
+ 0, !- Minute 14
+ 0; !- Value Until Time 14
+
+OS:Node,
+ {155eda42-a80b-418e-8609-320c15dee80f}, !- Handle
+ Water Use Connections 1 Inlet Water Node, !- Name
+ {eff2f1a5-9ccb-456c-899d-d4772a3ca2f5}, !- Inlet Port
+ {9a11b156-e859-4325-8020-204d430b4d28}; !- Outlet Port
+
+OS:Connection,
+ {eff2f1a5-9ccb-456c-899d-d4772a3ca2f5}, !- Handle
+ {6f496258-b1ff-45cf-88b0-7af839bb8bd7}, !- Name
+ {9f23bee3-edc4-4b22-aaa3-2e9833b6ce3d}, !- Source Object
+ 4, !- Outlet Port
+ {155eda42-a80b-418e-8609-320c15dee80f}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Node,
+ {c3fcef8b-7845-4fab-99c5-0c14929b0cb3}, !- Handle
+ Water Use Connections 1 Outlet Water Node, !- Name
+ {3d222629-2149-4912-affe-3c86b4fc609d}, !- Inlet Port
+ {1045cfef-dcf7-4c1e-bd6c-48eefbff4cc9}; !- Outlet Port
+
+OS:Connection,
+ {9a11b156-e859-4325-8020-204d430b4d28}, !- Handle
+ {0928c5a0-2fef-4a0c-8fd6-186920570064}, !- Name
+ {155eda42-a80b-418e-8609-320c15dee80f}, !- Source Object
+ 3, !- Outlet Port
+ {f24d3a45-afa1-4c12-924f-528e5817fe81}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {3d222629-2149-4912-affe-3c86b4fc609d}, !- Handle
+ {1e06be21-fd99-4a6e-83dc-61b00b415643}, !- Name
+ {f24d3a45-afa1-4c12-924f-528e5817fe81}, !- Source Object
+ 3, !- Outlet Port
+ {c3fcef8b-7845-4fab-99c5-0c14929b0cb3}, !- Target Object
+ 2; !- Inlet Port
+
+OS:Connection,
+ {1045cfef-dcf7-4c1e-bd6c-48eefbff4cc9}, !- Handle
+ {8d7f30ef-0a5e-4ae8-bfe4-fab3cbcdc407}, !- Name
+ {c3fcef8b-7845-4fab-99c5-0c14929b0cb3}, !- Source Object
+ 3, !- Outlet Port
+ {e6ed990a-2035-449d-b122-c4c8296fd6ba}, !- Target Object
+ 4; !- Inlet Port
+
+OS:Exterior:Lights:Definition,
+ {942648cb-4f8c-48ba-946b-652707d76262}, !- Handle
+ Occ Sensing Exterior Lights Def, !- Name
+ 896.07; !- Design Level {W}
+
+OS:Schedule:Ruleset,
+ {1db5eeef-c70d-40c0-84d1-21ebada7fa3b}, !- Handle
+ OfficeSmall Exterior_lighting_schedule_b, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ {1f540397-a64b-47bb-a8fc-cd6ca8681128}, !- Default Day Schedule Name
+ {7a66a666-18b2-440c-89a1-a3c4979bf377}, !- Summer Design Day Schedule Name
+ {715470c6-7e84-4fbe-a4bd-6faaa6be7f46}; !- Winter Design Day Schedule Name
+
+OS:Schedule:Day,
+ {1f540397-a64b-47bb-a8fc-cd6ca8681128}, !- Handle
+ OfficeSmall Exterior_lighting_schedule_b Default, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 6, !- Hour 1
+ 0, !- Minute 1
+ 0.7, !- Value Until Time 1
+ 24, !- Hour 2
+ 0, !- Minute 2
+ 1; !- Value Until Time 2
+
+OS:Schedule:Day,
+ {715470c6-7e84-4fbe-a4bd-6faaa6be7f46}, !- Handle
+ OfficeSmall Exterior_lighting_schedule_b Winter Design Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 6, !- Hour 1
+ 0, !- Minute 1
+ 0.7, !- Value Until Time 1
+ 24, !- Hour 2
+ 0, !- Minute 2
+ 1; !- Value Until Time 2
+
+OS:Schedule:Day,
+ {7a66a666-18b2-440c-89a1-a3c4979bf377}, !- Handle
+ OfficeSmall Exterior_lighting_schedule_b Summer Design Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 6, !- Hour 1
+ 0, !- Minute 1
+ 0.7, !- Value Until Time 1
+ 24, !- Hour 2
+ 0, !- Minute 2
+ 1; !- Value Until Time 2
+
+OS:Exterior:Lights,
+ {0779cb69-b19a-42eb-8772-41b008199ac9}, !- Handle
+ Occ Sensing Exterior Lights Def, !- Name
+ {942648cb-4f8c-48ba-946b-652707d76262}, !- Exterior Lights Definition Name
+ {1db5eeef-c70d-40c0-84d1-21ebada7fa3b}, !- Schedule Name
+ AstronomicalClock, !- Control Option
+ , !- Multiplier
+ General; !- End-Use Subcategory
+
+OS:Exterior:Lights:Definition,
+ {b30bc3e8-d0b6-46fc-8fe2-f214a493aee3}, !- Handle
+ NonDimming Exterior Lights Def, !- Name
+ 40.54; !- Design Level {W}
+
+OS:Schedule:Ruleset,
+ {3bd545df-3396-4417-a2cb-5e5459fd8733}, !- Handle
+ OfficeSmall Exterior_lighting_schedule_a, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ {30f18c1e-50e0-4051-9b57-134230a5367a}, !- Default Day Schedule Name
+ {13f23077-cbaf-42da-b3cc-e6943e63e94e}, !- Summer Design Day Schedule Name
+ {f7e67f7f-90b2-4cab-a588-78fc68400ee1}; !- Winter Design Day Schedule Name
+
+OS:Schedule:Day,
+ {30f18c1e-50e0-4051-9b57-134230a5367a}, !- Handle
+ OfficeSmall Exterior_lighting_schedule_a Default, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 6, !- Hour 1
+ 0, !- Minute 1
+ 0, !- Value Until Time 1
+ 24, !- Hour 2
+ 0, !- Minute 2
+ 1; !- Value Until Time 2
+
+OS:Schedule:Day,
+ {f7e67f7f-90b2-4cab-a588-78fc68400ee1}, !- Handle
+ OfficeSmall Exterior_lighting_schedule_a Winter Design Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 6, !- Hour 1
+ 0, !- Minute 1
+ 0, !- Value Until Time 1
+ 24, !- Hour 2
+ 0, !- Minute 2
+ 1; !- Value Until Time 2
+
+OS:Schedule:Day,
+ {13f23077-cbaf-42da-b3cc-e6943e63e94e}, !- Handle
+ OfficeSmall Exterior_lighting_schedule_a Summer Design Day, !- Name
+ {6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 6, !- Hour 1
+ 0, !- Minute 1
+ 0, !- Value Until Time 1
+ 24, !- Hour 2
+ 0, !- Minute 2
+ 1; !- Value Until Time 2
+
+OS:Exterior:Lights,
+ {fc541f8d-bd79-43e6-b0a6-f7b54fabfb65}, !- Handle
+ NonDimming Exterior Lights Def, !- Name
+ {b30bc3e8-d0b6-46fc-8fe2-f214a493aee3}, !- Exterior Lights Definition Name
+ {3bd545df-3396-4417-a2cb-5e5459fd8733}, !- Schedule Name
+ AstronomicalClock, !- Control Option
+ , !- Multiplier
+ General; !- End-Use Subcategory
+
+OS:Site:WaterMainsTemperature,
+ {ece82226-8fcd-4d1e-8a33-560828d2f472}, !- Handle
+ Correlation, !- Calculation Method
+ , !- Temperature Schedule Name
+ 9.925, !- Annual Average Outdoor Air Temperature {C}
+ 28.7; !- Maximum Difference In Monthly Average Outdoor Air Temperatures {deltaC}
+
+OS:SizingPeriod:DesignDay,
+ {cbdb94b2-9c13-4a4a-9c11-2d8efeb39541}, !- Handle
+ Chicago Ohare Intl Ap Ann Htg 99.6% Condns DB, !- Name
+ -20, !- Maximum Dry-Bulb Temperature {C}
+ 0, !- Daily Dry-Bulb Temperature Range {deltaC}
+ -20, !- Humidity Indicating Conditions at Maximum Dry-Bulb
+ 98934, !- Barometric Pressure {Pa}
+ 4.9, !- Wind Speed {m/s}
+ 270, !- Wind Direction {deg}
+ 0, !- Sky Clearness
+ 0, !- Rain Indicator
+ 0, !- Snow Indicator
+ 21, !- Day of Month
+ 1, !- Month
+ WinterDesignDay, !- Day Type
+ 0, !- Daylight Saving Time Indicator
+ Wetbulb, !- Humidity Indicating Type
+ , !- Humidity Indicating Day Schedule Name
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
+ ASHRAEClearSky; !- Solar Model Indicator
+
+OS:SizingPeriod:DesignDay,
+ {da1c4574-2cbc-41b0-96bd-405a3eb8e8ee}, !- Handle
+ Chicago Ohare Intl Ap Ann Clg .4% Condns DB=>MWB, !- Name
+ 33.3, !- Maximum Dry-Bulb Temperature {C}
+ 10.5, !- Daily Dry-Bulb Temperature Range {deltaC}
+ 23.7, !- Humidity Indicating Conditions at Maximum Dry-Bulb
+ 98934, !- Barometric Pressure {Pa}
+ 5.2, !- Wind Speed {m/s}
+ 230, !- Wind Direction {deg}
+ 0, !- Sky Clearness
+ 0, !- Rain Indicator
+ 0, !- Snow Indicator
+ 21, !- Day of Month
+ 7, !- Month
+ SummerDesignDay, !- Day Type
+ 0, !- Daylight Saving Time Indicator
+ Wetbulb, !- Humidity Indicating Type
+ , !- Humidity Indicating Day Schedule Name
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
+ ASHRAETau, !- Solar Model Indicator
+ , !- Beam Solar Day Schedule Name
+ , !- Diffuse Solar Day Schedule Name
+ 0.455, !- ASHRAE Taub {dimensionless}
+ 2.05; !- ASHRAE Taud {dimensionless}
+
+OS:RunPeriodControl:DaylightSavingTime,
+ {f9c8b597-ae88-49ad-9d3b-8d5df4e4a650}, !- Handle
+ 2nd Sunday in March, !- Start Date
+ 1st Sunday in November; !- End Date
+
+OS:Site:GroundTemperature:BuildingSurface,
+ {f4bdeeb2-54df-4658-aa67-baba6cf6298d}, !- Handle
+ 19.91, !- January Ground Temperature {C}
+ 19.78, !- February Ground Temperature {C}
+ 19.78, !- March Ground Temperature {C}
+ 19.91, !- April Ground Temperature {C}
+ 20.1, !- May Ground Temperature {C}
+ 22.25, !- June Ground Temperature {C}
+ 22.88, !- July Ground Temperature {C}
+ 23.07, !- August Ground Temperature {C}
+ 23.13, !- September Ground Temperature {C}
+ 21.08, !- October Ground Temperature {C}
+ 20.53, !- November Ground Temperature {C}
+ 20.19; !- December Ground Temperature {C}
+
+OS:Sizing:Parameters,
+ {650da5ef-d294-45a3-abd9-bc2edc71a74f}, !- Handle
+ 1.2, !- Heating Sizing Factor
+ 1.2; !- Cooling Sizing Factor
+
+OS:ClimateZones,
+ {ec15d255-d3c9-40e5-b183-5800cac2bf8b}, !- Handle
+ , !- Active Institution
+ , !- Active Year
+ ASHRAE, !- Climate Zone Institution Name 1
+ ANSI/ASHRAE Standard 169, !- Climate Zone Document Name 1
+ 2006, !- Climate Zone Document Year 1
+ 5A, !- Climate Zone Value 1
+ CEC, !- Climate Zone Institution Name 2
+ California Climate Zone Descriptions, !- Climate Zone Document Name 2
+ 1995, !- Climate Zone Document Year 2
+ ; !- Climate Zone Value 2
+
+OS:Schedule:Day,
+ {5e29f1cd-a04c-4e35-bff2-1fb3311c23be}, !- Handle
+ Economizer Max OA Fraction 70 pct Default, !- Name
+ , !- Schedule Type Limits Name
+ , !- Interpolate to Timestep
+ 24, !- Hour 1
+ 0, !- Minute 1
+ 0.7; !- Value Until Time 1
+
+OS:Curve:Cubic,
+ {1bfea7f1-1095-458e-b853-eaf9b2498d5f}, !- Handle
+ HPACHeatCapFT, !- Name
+ 0.758746, !- Coefficient1 Constant
+ 0.027626, !- Coefficient2 x
+ 0.000148716, !- Coefficient3 x**2
+ 3.4992e-006, !- Coefficient4 x**3
+ -20, !- Minimum Value of x
+ 20; !- Maximum Value of x
+
+OS:Curve:Cubic,
+ {280d9688-bd63-492e-a346-6275aabe749e}, !- Handle
+ HPACHeatCapFFF, !- Name
+ 0.84, !- Coefficient1 Constant
+ 0.16, !- Coefficient2 x
+ 0, !- Coefficient3 x**2
+ 0, !- Coefficient4 x**3
+ 0.5, !- Minimum Value of x
+ 1.5; !- Maximum Value of x
+
+OS:Curve:Cubic,
+ {8aff4225-4594-4306-8181-1471256a4a20}, !- Handle
+ HPACHeatEIRFT, !- Name
+ 1.19248, !- Coefficient1 Constant
+ -0.0300438, !- Coefficient2 x
+ 0.00103745, !- Coefficient3 x**2
+ -2.3328e-005, !- Coefficient4 x**3
+ -20, !- Minimum Value of x
+ 20; !- Maximum Value of x
+
+OS:Curve:Quadratic,
+ {5ce2ca36-993a-47f3-88f4-bad9af8ac9a3}, !- Handle
+ HPACHeatEIRFFF, !- Name
+ 1.3824, !- Coefficient1 Constant
+ -0.4336, !- Coefficient2 x
+ 0.0512, !- Coefficient3 x**2
+ 0, !- Minimum Value of x
+ 1; !- Maximum Value of x
+
+OS:Curve:Quadratic,
+ {714c0395-0263-444c-a4f6-d9e78a580913}, !- Handle
+ HPACCOOLPLFFPLR, !- Name
+ 0.85, !- Coefficient1 Constant
+ 0.15, !- Coefficient2 x
+ 0, !- Coefficient3 x**2
+ 0, !- Minimum Value of x
+ 1; !- Maximum Value of x
+
+OS:Curve:Biquadratic,
+ {e6cebddc-27fb-4158-9b04-49e64c32b2ed}, !- Handle
+ HPACCoolCapFT, !- Name
+ 0.766956, !- Coefficient1 Constant
+ 0.0107756, !- Coefficient2 x
+ -4.14703e-005, !- Coefficient3 x**2
+ 0.00134961, !- Coefficient4 y
+ -0.000261144, !- Coefficient5 y**2
+ 0.000457488, !- Coefficient6 x*y
+ 12.77778, !- Minimum Value of x
+ 23.88889, !- Maximum Value of x
+ 21.11111, !- Minimum Value of y
+ 46.11111; !- Maximum Value of y
+
+OS:Curve:Quadratic,
+ {6708f17c-3967-4daf-89fb-e9625d394634}, !- Handle
+ HPACCoolCapFFF, !- Name
+ 0.8, !- Coefficient1 Constant
+ 0.2, !- Coefficient2 x
+ 0, !- Coefficient3 x**2
+ 0.5, !- Minimum Value of x
+ 1.5; !- Maximum Value of x
+
+OS:Curve:Biquadratic,
+ {626baf5b-350e-404e-81da-48addd8de7f7}, !- Handle
+ HPACCOOLEIRFT, !- Name
+ 0.297145, !- Coefficient1 Constant
+ 0.0430933, !- Coefficient2 x
+ -0.000748766, !- Coefficient3 x**2
+ 0.00597727, !- Coefficient4 y
+ 0.000482112, !- Coefficient5 y**2
+ -0.000956448, !- Coefficient6 x*y
+ 12.77778, !- Minimum Value of x
+ 23.88889, !- Maximum Value of x
+ 21.11111, !- Minimum Value of y
+ 46.11111; !- Maximum Value of y
+
+OS:Curve:Quadratic,
+ {dfc9bddf-e7f5-4a36-93ca-5ed1d66665cb}, !- Handle
+ HPACCOOLEIRFFF, !- Name
+ 1.156, !- Coefficient1 Constant
+ -0.1816, !- Coefficient2 x
+ 0.0256, !- Coefficient3 x**2
+ 0.5, !- Minimum Value of x
+ 1.5; !- Maximum Value of x
+
+OS:Daylighting:Control,
+ {29c04ddc-9800-41e2-9f13-7ef9813ebbe4}, !- Handle
+ Perimeter_ZN_1 Daylt Sensor 1, !- Name
+ {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space Name
+ 2.305, !- Position X-Coordinate {m}
+ 1.59984, !- Position Y-Coordinate {m}
+ 0.762, !- Position Z-Coordinate {m}
+ , !- Psi Rotation Around X-Axis {deg}
+ , !- Theta Rotation Around Y-Axis {deg}
+ , !- Phi Rotation Around Z-Axis {deg}
+ 375, !- Illuminance Setpoint {lux}
+ Stepped, !- Lighting Control Type
+ 0.3, !- Minimum Input Power Fraction for Continuous Dimming Control
+ 0.2, !- Minimum Light Output Fraction for Continuous Dimming Control
+ 3, !- Number of Stepped Control Steps
+ 1, !- Probability Lighting will be Reset When Needed in Manual Stepped Control
+ , !- Number of Daylighting Views
+ 22; !- Maximum Allowable Discomfort Glare Index
+
+OS:Daylighting:Control,
+ {cb15831a-9a03-4081-b8d6-2e6c345aa5f3}, !- Handle
+ Perimeter_ZN_1 Daylt Sensor 2, !- Name
+ {72459874-7e2c-4ecd-ae58-b2d96c368b31}, !- Space Name
+ 2.305, !- Position X-Coordinate {m}
+ 3.22392, !- Position Y-Coordinate {m}
+ 0.762, !- Position Z-Coordinate {m}
+ , !- Psi Rotation Around X-Axis {deg}
+ , !- Theta Rotation Around Y-Axis {deg}
+ , !- Phi Rotation Around Z-Axis {deg}
+ 375, !- Illuminance Setpoint {lux}
+ Stepped, !- Lighting Control Type
+ 0.3, !- Minimum Input Power Fraction for Continuous Dimming Control
+ 0.2, !- Minimum Light Output Fraction for Continuous Dimming Control
+ 3, !- Number of Stepped Control Steps
+ 1, !- Probability Lighting will be Reset When Needed in Manual Stepped Control
+ , !- Number of Daylighting Views
+ 22; !- Maximum Allowable Discomfort Glare Index
+
+OS:Daylighting:Control,
+ {5e6e04dc-84e6-42ce-8c31-1c223002cdf9}, !- Handle
+ Perimeter_ZN_2 Daylt Sensor 1, !- Name
+ {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Space Name
+ 26.09016, !- Position X-Coordinate {m}
+ 2.305, !- Position Y-Coordinate {m}
+ 0.762, !- Position Z-Coordinate {m}
+ , !- Psi Rotation Around X-Axis {deg}
+ , !- Theta Rotation Around Y-Axis {deg}
+ , !- Phi Rotation Around Z-Axis {deg}
+ 375, !- Illuminance Setpoint {lux}
+ Stepped, !- Lighting Control Type
+ 0.3, !- Minimum Input Power Fraction for Continuous Dimming Control
+ 0.2, !- Minimum Light Output Fraction for Continuous Dimming Control
+ 3, !- Number of Stepped Control Steps
+ 1, !- Probability Lighting will be Reset When Needed in Manual Stepped Control
+ , !- Number of Daylighting Views
+ 22; !- Maximum Allowable Discomfort Glare Index
+
+OS:Daylighting:Control,
+ {47d6946f-e9ad-4198-9993-e0c0cc89062d}, !- Handle
+ Perimeter_ZN_2 Daylt Sensor 2, !- Name
+ {0ebdaea7-c6cb-452f-b121-7bbfcb1d95b8}, !- Space Name
+ 24.46608, !- Position X-Coordinate {m}
+ 2.305, !- Position Y-Coordinate {m}
+ 0.762, !- Position Z-Coordinate {m}
+ , !- Psi Rotation Around X-Axis {deg}
+ , !- Theta Rotation Around Y-Axis {deg}
+ , !- Phi Rotation Around Z-Axis {deg}
+ 375, !- Illuminance Setpoint {lux}
+ Stepped, !- Lighting Control Type
+ 0.3, !- Minimum Input Power Fraction for Continuous Dimming Control
+ 0.2, !- Minimum Light Output Fraction for Continuous Dimming Control
+ 3, !- Number of Stepped Control Steps
+ 1, !- Probability Lighting will be Reset When Needed in Manual Stepped Control
+ , !- Number of Daylighting Views
+ 22; !- Maximum Allowable Discomfort Glare Index
+
+OS:Daylighting:Control,
+ {cc3ca2b8-f129-4cf7-97bf-65d52f85e103}, !- Handle
+ Perimeter_ZN_3 Daylt Sensor 1, !- Name
+ {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Space Name
+ 25.385, !- Position X-Coordinate {m}
+ 16.86016, !- Position Y-Coordinate {m}
+ 0.762, !- Position Z-Coordinate {m}
+ , !- Psi Rotation Around X-Axis {deg}
+ , !- Theta Rotation Around Y-Axis {deg}
+ , !- Phi Rotation Around Z-Axis {deg}
+ 375, !- Illuminance Setpoint {lux}
+ Stepped, !- Lighting Control Type
+ 0.3, !- Minimum Input Power Fraction for Continuous Dimming Control
+ 0.2, !- Minimum Light Output Fraction for Continuous Dimming Control
+ 3, !- Number of Stepped Control Steps
+ 1, !- Probability Lighting will be Reset When Needed in Manual Stepped Control
+ , !- Number of Daylighting Views
+ 22; !- Maximum Allowable Discomfort Glare Index
+
+OS:Daylighting:Control,
+ {6226a1a2-28d1-4edb-b0fa-d5193545176d}, !- Handle
+ Perimeter_ZN_3 Daylt Sensor 2, !- Name
+ {bb97cae6-ab6e-4ca9-a862-a3e532ee5e5d}, !- Space Name
+ 25.385, !- Position X-Coordinate {m}
+ 15.23608, !- Position Y-Coordinate {m}
+ 0.762, !- Position Z-Coordinate {m}
+ , !- Psi Rotation Around X-Axis {deg}
+ , !- Theta Rotation Around Y-Axis {deg}
+ , !- Phi Rotation Around Z-Axis {deg}
+ 375, !- Illuminance Setpoint {lux}
+ Stepped, !- Lighting Control Type
+ 0.3, !- Minimum Input Power Fraction for Continuous Dimming Control
+ 0.2, !- Minimum Light Output Fraction for Continuous Dimming Control
+ 3, !- Number of Stepped Control Steps
+ 1, !- Probability Lighting will be Reset When Needed in Manual Stepped Control
+ , !- Number of Daylighting Views
+ 22; !- Maximum Allowable Discomfort Glare Index
+
+OS:Daylighting:Control,
+ {7631782d-b3aa-491a-9d3e-369c98f1e06d}, !- Handle
+ Perimeter_ZN_4 Daylt Sensor 1, !- Name
+ {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Space Name
+ 1.59984, !- Position X-Coordinate {m}
+ 16.155, !- Position Y-Coordinate {m}
+ 0.762, !- Position Z-Coordinate {m}
+ , !- Psi Rotation Around X-Axis {deg}
+ , !- Theta Rotation Around Y-Axis {deg}
+ , !- Phi Rotation Around Z-Axis {deg}
+ 375, !- Illuminance Setpoint {lux}
+ Stepped, !- Lighting Control Type
+ 0.3, !- Minimum Input Power Fraction for Continuous Dimming Control
+ 0.2, !- Minimum Light Output Fraction for Continuous Dimming Control
+ 3, !- Number of Stepped Control Steps
+ 1, !- Probability Lighting will be Reset When Needed in Manual Stepped Control
+ , !- Number of Daylighting Views
+ 22; !- Maximum Allowable Discomfort Glare Index
+
+OS:Daylighting:Control,
+ {627dad3e-5081-480f-972e-fedac2af7954}, !- Handle
+ Perimeter_ZN_4 Daylt Sensor 2, !- Name
+ {f9fb4430-2ed2-4cfb-bf10-1172712402a2}, !- Space Name
+ 3.22392, !- Position X-Coordinate {m}
+ 16.155, !- Position Y-Coordinate {m}
+ 0.762, !- Position Z-Coordinate {m}
+ , !- Psi Rotation Around X-Axis {deg}
+ , !- Theta Rotation Around Y-Axis {deg}
+ , !- Phi Rotation Around Z-Axis {deg}
+ 375, !- Illuminance Setpoint {lux}
+ Stepped, !- Lighting Control Type
+ 0.3, !- Minimum Input Power Fraction for Continuous Dimming Control
+ 0.2, !- Minimum Light Output Fraction for Continuous Dimming Control
+ 3, !- Number of Stepped Control Steps
+ 1, !- Probability Lighting will be Reset When Needed in Manual Stepped Control
+ , !- Number of Daylighting Views
+ 22; !- Maximum Allowable Discomfort Glare Index
+
+OS:LifeCycleCost:Parameters,
+ {0f6f1ec3-4e42-4898-a3fd-6c650f861a2d}, !- Handle
+ , !- Analysis Type
+ , !- Discounting Convention
+ , !- Inflation Approach
+ , !- Real Discount Rate
+ , !- Nominal Discount Rate
+ , !- Inflation
+ , !- Base Date Month
+ , !- Base Date Year
+ , !- Service Date Month
+ , !- Service Date Year
+ ; !- Length of Study Period in Years
+
+OS:StandardsInformation:Material,
+ {4e27b039-5cb6-431c-b005-079f516d8551}, !- Handle
+ {8258d3ce-2d5b-4aab-a611-c03ef07500e5}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {d8546bfb-09e5-4b3f-829d-39936a6cb33f}, !- Handle
+ {2b07f62b-a057-4e96-84b1-c3044d2010e2}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {d9d92dd6-12e2-4fda-9a29-3d2e4e3c70c5}, !- Handle
+ {a7924022-c277-48c4-b630-0bac890ca27e}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {33c06034-2723-475b-9214-52b30ca23352}, !- Handle
+ {f55c83df-b14b-4e7d-a5a7-5d3cb5773743}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {bcfaa4c4-f983-4a99-8e1c-054c2d17429e}, !- Handle
+ {09a9a622-4334-475e-ad85-1053aa51e6b8}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {f7b1027d-4bc3-40f5-ab4e-1f0244bd1c50}, !- Handle
+ {c66f70f4-f41c-4376-9141-4e9e10d378f6}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {0898faf4-9eae-4020-88d5-b335c5246795}, !- Handle
+ {b60ca716-1db7-4313-bb48-cb3db545021e}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {e7603d68-3bac-49f3-8b7d-1fa4789dd941}, !- Handle
+ {ba2c7d65-d8e5-4501-8734-3f0425d019d1}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {a36fab02-e469-4575-948c-1f2216487563}, !- Handle
+ {d35641ab-9739-409d-b777-ed1aa61f9d24}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {cfd8f5e6-b5b0-49d7-bb7b-e62baea58c14}, !- Handle
+ {bbcd2525-b654-4ba5-a387-163a9738174b}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {1b5256d6-f7ca-4e95-80ee-b0363d71e76b}, !- Handle
+ {6c2e9510-8383-419e-8208-7fcc6c168a5b}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {47e13670-92ab-4379-8664-d146c026ed9b}, !- Handle
+ {1e677f16-8b76-45d0-b73a-5c07aabb5659}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {53b57b23-caa4-40e0-86e5-2c2bc8249e71}, !- Handle
+ {c80eed9d-fe69-4e84-8abd-97a123639c47}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {8027dc98-fa22-42e4-bb29-48eb4e45f0f6}, !- Handle
+ {469c7810-0b24-41df-b22f-a2bfe1485983}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {5204a25a-a0a9-4c67-9a87-58b7c55432aa}, !- Handle
+ {81c6d30e-ff52-4f2e-9eee-17ff02a15841}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {d52a1211-d6c8-422a-b47e-15c3b2d5774a}, !- Handle
+ {80af6122-eb24-441d-a5a9-55555527f240}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {dc3d05bb-2b5c-45ae-af81-0a5386d86af2}, !- Handle
+ {4244b4dd-5a35-467e-80fe-e38aaefc958b}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {9c0c8e6f-3a95-4ac1-9a9a-898148637dc3}, !- Handle
+ {2fb3c495-68c6-4e2b-895b-04bad2226747}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {7cc0d03d-4cb3-4b49-a366-a8ebcfbb4710}, !- Handle
+ {1223b4ec-675d-45e9-a0dc-8fcc5bd972a6}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {755cbc7c-e061-4d62-8363-5a421a7c9c3a}, !- Handle
+ {e5235694-4438-407b-bd79-b363a41ba3f1}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {03dcef3a-95c3-430f-86b1-208c11cedd3e}, !- Handle
+ {44fab86f-850a-4b6a-b793-fc592eb7c473}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {3ad33f44-38a7-4836-be4b-879c1ad7d624}, !- Handle
+ {82a53b69-bec0-476e-b49a-0f3afa0405dc}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {04642e7b-e215-4e06-baa9-00093227f3bb}, !- Handle
+ {9af2d285-0efd-4227-9d2b-c807fb4d34b6}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {23309384-4984-4cd3-b1e0-8da23b0c840a}, !- Handle
+ {965f3366-dbc1-41f7-a251-ee341c3dff1f}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {5a5febf2-f3d1-4af8-89bf-55870505710d}, !- Handle
+ {35ce1593-a0b3-4768-8801-92a079223853}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {0ca04c2c-59ff-48a3-ab56-c1354f23cac4}, !- Handle
+ {82ac3188-a430-4450-b370-800bea459e25}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {a1721d7d-b3c8-44d5-b68c-9b8ac4c030a8}, !- Handle
+ {3bdc8dcd-01e5-48c7-a401-7524108e3f78}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {130f5381-118e-4e7d-92b4-622ff9f50c79}, !- Handle
+ {18c5487d-a09a-4e64-a041-f5c3c9e81974}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {83014c1e-0005-4491-bad2-b397f44f9351}, !- Handle
+ {cd08bafc-6927-4671-bc05-967e4c35db55}; !- Material Name
+
+OS:StandardsInformation:Material,
+ {030760bf-fa29-430c-bdb2-6c88c7f5d4c6}, !- Handle
+ {9566481e-a051-48ec-b353-0db4053666d4}; !- Material Name
+
+OS:StandardsInformation:Construction,
+ {c9e53b39-2efe-4326-85c0-88b88cdd42f2}, !- Handle
+ {8afb0e32-b868-4aae-9748-e45e6d724ed6}; !- Construction Name
+
+OS:WeatherFile,
+ {7fb34c18-923e-4ec7-9eb1-7b1e5713ccb8}, !- Handle
+ Chicago Ohare Intl Ap, !- City
+ IL, !- State Province Region
+ USA, !- Country
+ TMY3, !- Data Source
+ 725300, !- WMO Number
+ 41.98, !- Latitude {deg}
+ -87.92, !- Longitude {deg}
+ -6, !- Time Zone {hr}
+ 201, !- Elevation {m}
+ file:///private/var/folders/ry/9qrp5ths0g13dj7j20c3c_x93s6z2r/T/OpenStudioApp.T35332/resources/files/USA_IL_Chicago-OHare.Intl.AP.725300_TMY3.epw, !- Url
+ C254B53F; !- Checksum
+
+OS:Rendering:Color,
+ {246c1889-e62b-4a65-9bbe-a0c333537e0a}, !- Handle
+ Rendering Color 1, !- Name
+ 95, !- Rendering Red Value
+ 158, !- Rendering Green Value
+ 160; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {3baa8fec-a42d-48fb-b854-35aac5d2f82e}, !- Handle
+ Rendering Color 2, !- Name
+ 65, !- Rendering Red Value
+ 105, !- Rendering Green Value
+ 225; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {70f53569-f093-48ea-93f1-2f7bf55290fd}, !- Handle
+ Rendering Color 3, !- Name
+ 119, !- Rendering Red Value
+ 136, !- Rendering Green Value
+ 153; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {243c8142-8d16-4009-8ffd-f577e4933f94}, !- Handle
+ Rendering Color 4, !- Name
+ 128, !- Rendering Red Value
+ 0, !- Rendering Green Value
+ 128; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {8099925b-bbb3-4288-82ad-ca9d72507faf}, !- Handle
+ Rendering Color 5, !- Name
+ 0, !- Rendering Red Value
+ 128, !- Rendering Green Value
+ 0; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {09fe54ee-333d-4141-b67e-950510581a11}, !- Handle
+ Rendering Color 6, !- Name
+ 255, !- Rendering Red Value
+ 20, !- Rendering Green Value
+ 147; !- Rendering Blue Value
+
+OS:RadianceParameters,
+ {f52af564-7472-4bca-a7e7-e95194391563}, !- Handle
+ 1, !- Accumulated Rays per Record
+ 0, !- Direct Threshold
+ 1, !- Direct Certainty
+ 1, !- Direct Jitter
+ 1, !- Direct Pretest
+ 6, !- Ambient Bounces VMX
+ 2, !- Ambient Bounces DMX
+ 4050, !- Ambient Divisions VMX
+ 512, !- Ambient Divisions DMX
+ 256, !- Ambient Supersamples
+ 0.001, !- Limit Weight VMX
+ 0.001, !- Limit Weight DMX
+ 500, !- Klems Sampling Density
+ 146; !- Sky Discretization Resolution
+
+OS:ProgramControl,
+ {620e1734-e322-4133-ae08-24e9a0fbd0ad}; !- Handle
+
+OS:OutputControl:ReportingTolerances,
+ {812399d7-e60a-4eaf-97e4-222fdfab3762}; !- Handle
+
+OS:ZoneAirHeatBalanceAlgorithm,
+ {cbb11039-c273-42cf-8019-1f61a1ae15af}, !- Handle
+ ThirdOrderBackwardDifference; !- Algorithm
+
+OS:ZoneAirContaminantBalance,
+ {e20e6be8-f0b7-460f-a9b0-dcab23160a65}; !- Handle
+
+OS:ZoneCapacitanceMultiplier:ResearchSpecial,
+ {5b3ef084-5d47-4408-9cf4-68f1156b7145}, !- Handle
+ , !- Temperature Capacity Multiplier
+ , !- Humidity Capacity Multiplier
+ ; !- Carbon Dioxide Capacity Multiplier
+
+OS:Rendering:Color,
+ {08dd4ddb-7106-417c-a4cc-8ae1b6a8e191}, !- Handle
+ Rendering Color 7, !- Name
+ 188, !- Rendering Red Value
+ 143, !- Rendering Green Value
+ 143; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {6ccecaf3-2f76-48b3-a946-19a63151d25b}, !- Handle
+ Rendering Color 8, !- Name
+ 176, !- Rendering Red Value
+ 224, !- Rendering Green Value
+ 230; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {a30e7eb2-1254-49a2-b1b5-e1413f2065f3}, !- Handle
+ Rendering Color 9, !- Name
+ 255, !- Rendering Red Value
+ 69, !- Rendering Green Value
+ 0; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {34d874e9-b837-4a65-bdbd-a5f975bb80f9}, !- Handle
+ Rendering Color 10, !- Name
+ 255, !- Rendering Red Value
+ 0, !- Rendering Green Value
+ 255; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {ce2d45f0-c2a6-4e6f-83ef-997adcdc7c74}, !- Handle
+ Rendering Color 11, !- Name
+ 175, !- Rendering Red Value
+ 238, !- Rendering Green Value
+ 238; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {46853a40-696d-4ea9-8312-54ff93c50e86}, !- Handle
+ Rendering Color 12, !- Name
+ 255, !- Rendering Red Value
+ 218, !- Rendering Green Value
+ 185; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {7a52ddc4-c19e-4f4d-9c71-22692b8d2663}, !- Handle
+ Rendering Color 13, !- Name
+ 192, !- Rendering Red Value
+ 192, !- Rendering Green Value
+ 192; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {885f01f5-51d3-4835-9b28-91528bd98a7b}, !- Handle
+ Rendering Color 14, !- Name
+ 176, !- Rendering Red Value
+ 196, !- Rendering Green Value
+ 222; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {82043cf7-cc71-401f-899c-e9cb0ad72a46}, !- Handle
+ Rendering Color 15, !- Name
+ 85, !- Rendering Red Value
+ 107, !- Rendering Green Value
+ 47; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {28cf615c-acc2-492e-8cc0-57e309e9fff8}, !- Handle
+ Rendering Color 16, !- Name
+ 135, !- Rendering Red Value
+ 206, !- Rendering Green Value
+ 250; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {7f63c944-1f94-4c1f-9998-1974c22cb14c}, !- Handle
+ Rendering Color 17, !- Name
+ 255, !- Rendering Red Value
+ 165, !- Rendering Green Value
+ 0; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {7c3bf8f6-a386-4373-b88d-ec9f1edf9d1f}, !- Handle
+ Rendering Color 18, !- Name
+ 220, !- Rendering Red Value
+ 20, !- Rendering Green Value
+ 60; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {5bf5a1cf-9a10-4a77-b04f-a3b1c02a3c2d}, !- Handle
+ Rendering Color 19, !- Name
+ 216, !- Rendering Red Value
+ 191, !- Rendering Green Value
+ 216; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {af9c7b95-5abc-41d3-bef8-304fc144a613}, !- Handle
+ Rendering Color 20, !- Name
+ 72, !- Rendering Red Value
+ 61, !- Rendering Green Value
+ 139; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {34b78464-26b6-4806-8090-1d7cff3d0b35}, !- Handle
+ Rendering Color 21, !- Name
+ 255, !- Rendering Red Value
+ 140, !- Rendering Green Value
+ 0; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {d4156f49-65c8-463e-80e2-4f97d2093a61}, !- Handle
+ Rendering Color 22, !- Name
+ 255, !- Rendering Red Value
+ 245, !- Rendering Green Value
+ 238; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {e140f18b-0726-4e7c-9d09-b04c9c6e66ae}, !- Handle
+ Rendering Color 23, !- Name
+ 139, !- Rendering Red Value
+ 0, !- Rendering Green Value
+ 139; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {cc8346ac-8b59-4ad5-b357-67214d44e4fe}, !- Handle
+ Rendering Color 24, !- Name
+ 255, !- Rendering Red Value
+ 255, !- Rendering Green Value
+ 224; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {9519cb8f-4106-4dfb-b8b9-5ad2c7e88617}, !- Handle
+ Rendering Color 25, !- Name
+ 220, !- Rendering Red Value
+ 220, !- Rendering Green Value
+ 220; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {0eb72719-6e78-4c4e-bf1e-fd7da64cb80f}, !- Handle
+ Rendering Color 26, !- Name
+ 188, !- Rendering Red Value
+ 143, !- Rendering Green Value
+ 143; !- Rendering Blue Value
+
+OS:Rendering:Color,
+ {edf75d60-088c-496a-87da-556d74439047}, !- Handle
+ Rendering Color 27, !- Name
+ 255, !- Rendering Red Value
+ 248, !- Rendering Green Value
+ 220; !- Rendering Blue Value
+
+OS:Output:EnergyManagementSystem,
+ {7aee727b-90d9-40de-bc90-48326f434c64}, !- Handle
+ Output Energy Management System 1, !- Name
+ Verbose, !- Actuator Availability Dictionary Reporting
+ None, !- Internal Variable Availability Dictionary Reporting
+ None; !- EMS Runtime Language Debug Output Level
+
+OS:Output:Variable,
+ {4c499353-92b9-42df-b609-6e6a40c766ca}, !- Handle
+ Perimeter_ZN_4 ZN_Zone Mean Air Temperature, !- Name
+ Perimeter_ZN_4 ZN, !- Key Value
+ Zone Mean Air Temperature, !- Variable Name
+ timestep, !- Reporting Frequency
+ , !- Schedule Name
+ True; !- Export To BCVTB
+
+OS:Output:Variable,
+ {c564b63d-1ab4-4f02-a69b-0971c2dee702}, !- Handle
+ Perimeter_ZN_4 ZN_Zone Mean Radiant Temperature, !- Name
+ Perimeter_ZN_4 ZN, !- Key Value
+ Zone Mean Radiant Temperature, !- Variable Name
+ timestep, !- Reporting Frequency
+ , !- Schedule Name
+ True; !- Export To BCVTB
+
+OS:Output:Variable,
+ {25c2898c-277f-493d-b711-c05c19792f06}, !- Handle
+ Perimeter_ZN_4 ZN_Zone Air System Sensible Heating Rate, !- Name
+ Perimeter_ZN_4 ZN, !- Key Value
+ Zone Air System Sensible Heating Rate, !- Variable Name
+ timestep, !- Reporting Frequency
+ , !- Schedule Name
+ True; !- Export To BCVTB
+
+OS:Output:Variable,
+ {d5d04d3e-3195-4288-bc84-dbddd46717ca}, !- Handle
+ Perimeter_ZN_4 ZN_Zone Air System Sensible Cooling Rate, !- Name
+ Perimeter_ZN_4 ZN, !- Key Value
+ Zone Air System Sensible Cooling Rate, !- Variable Name
+ timestep, !- Reporting Frequency
+ , !- Schedule Name
+ True; !- Export To BCVTB
+
+OS:Output:Variable,
+ {a91d87ae-775e-4fce-a435-02e4b0b3408d}, !- Handle
+ Perimeter_ZN_2 ZN_Zone Mean Air Temperature, !- Name
+ Perimeter_ZN_2 ZN, !- Key Value
+ Zone Mean Air Temperature, !- Variable Name
+ timestep, !- Reporting Frequency
+ , !- Schedule Name
+ True; !- Export To BCVTB
+
+OS:Output:Variable,
+ {889ded85-c421-41ee-bfcf-c8f1a201de3b}, !- Handle
+ Perimeter_ZN_2 ZN_Zone Mean Radiant Temperature, !- Name
+ Perimeter_ZN_2 ZN, !- Key Value
+ Zone Mean Radiant Temperature, !- Variable Name
+ timestep, !- Reporting Frequency
+ , !- Schedule Name
+ True; !- Export To BCVTB
+
+OS:Output:Variable,
+ {ad894711-dd6d-4494-84df-5a2eb342a67f}, !- Handle
+ Perimeter_ZN_2 ZN_Zone Air System Sensible Heating Rate, !- Name
+ Perimeter_ZN_2 ZN, !- Key Value
+ Zone Air System Sensible Heating Rate, !- Variable Name
+ timestep, !- Reporting Frequency
+ , !- Schedule Name
+ True; !- Export To BCVTB
+
+OS:Output:Variable,
+ {dd80f838-c648-4c0a-9c71-9e2199a60c2a}, !- Handle
+ Perimeter_ZN_2 ZN_Zone Air System Sensible Cooling Rate, !- Name
+ Perimeter_ZN_2 ZN, !- Key Value
+ Zone Air System Sensible Cooling Rate, !- Variable Name
+ timestep, !- Reporting Frequency
+ , !- Schedule Name
+ True; !- Export To BCVTB
+
+OS:Output:Variable,
+ {a7d7aec1-0e10-4c52-95e3-38b5c1949aa5}, !- Handle
+ Perimeter_ZN_3 ZN_Zone Mean Air Temperature, !- Name
+ Perimeter_ZN_3 ZN, !- Key Value
+ Zone Mean Air Temperature, !- Variable Name
+ timestep, !- Reporting Frequency
+ , !- Schedule Name
+ True; !- Export To BCVTB
+
+OS:Output:Variable,
+ {4c38fb67-3ff7-4a17-81d5-30e0f604bb9c}, !- Handle
+ Perimeter_ZN_3 ZN_Zone Mean Radiant Temperature, !- Name
+ Perimeter_ZN_3 ZN, !- Key Value
+ Zone Mean Radiant Temperature, !- Variable Name
+ timestep, !- Reporting Frequency
+ , !- Schedule Name
+ True; !- Export To BCVTB
+
+OS:Output:Variable,
+ {0f3ce572-141b-40c9-834b-83c76c69e5d3}, !- Handle
+ Perimeter_ZN_3 ZN_Zone Air System Sensible Heating Rate, !- Name
+ Perimeter_ZN_3 ZN, !- Key Value
+ Zone Air System Sensible Heating Rate, !- Variable Name
+ timestep, !- Reporting Frequency
+ , !- Schedule Name
+ True; !- Export To BCVTB
+
+OS:Output:Variable,
+ {3f9e0363-d479-4fa8-adf1-05f98bea7957}, !- Handle
+ Perimeter_ZN_3 ZN_Zone Air System Sensible Cooling Rate, !- Name
+ Perimeter_ZN_3 ZN, !- Key Value
+ Zone Air System Sensible Cooling Rate, !- Variable Name
+ timestep, !- Reporting Frequency
+ , !- Schedule Name
+ True; !- Export To BCVTB
+
+OS:Output:Variable,
+ {bb45f742-3851-4b62-9a5e-7ddc18316965}, !- Handle
+ Perimeter_ZN_1 ZN_Zone Mean Air Temperature, !- Name
+ Perimeter_ZN_1 ZN, !- Key Value
+ Zone Mean Air Temperature, !- Variable Name
+ timestep, !- Reporting Frequency
+ , !- Schedule Name
+ True; !- Export To BCVTB
+
+OS:Output:Variable,
+ {07cc6a2a-6cda-48c7-b29c-38d790bc7c1f}, !- Handle
+ Perimeter_ZN_1 ZN_Zone Mean Radiant Temperature, !- Name
+ Perimeter_ZN_1 ZN, !- Key Value
+ Zone Mean Radiant Temperature, !- Variable Name
+ timestep, !- Reporting Frequency
+ , !- Schedule Name
+ True; !- Export To BCVTB
+
+OS:Output:Variable,
+ {79b5986d-85e2-480e-aff9-00a47946a577}, !- Handle
+ Perimeter_ZN_1 ZN_Zone Air System Sensible Heating Rate, !- Name
+ Perimeter_ZN_1 ZN, !- Key Value
+ Zone Air System Sensible Heating Rate, !- Variable Name
+ timestep, !- Reporting Frequency
+ , !- Schedule Name
+ True; !- Export To BCVTB
+
+OS:Output:Variable,
+ {48b7054e-1800-4b8b-b202-739e050db745}, !- Handle
+ Perimeter_ZN_1 ZN_Zone Air System Sensible Cooling Rate, !- Name
+ Perimeter_ZN_1 ZN, !- Key Value
+ Zone Air System Sensible Cooling Rate, !- Variable Name
+ timestep, !- Reporting Frequency
+ , !- Schedule Name
+ True; !- Export To BCVTB
+
+OS:Output:Variable,
+ {d5b99d54-ac30-4c57-aa11-fd3b537e231b}, !- Handle
+ Core_ZN ZN_Zone Mean Air Temperature, !- Name
+ Core_ZN ZN, !- Key Value
+ Zone Mean Air Temperature, !- Variable Name
+ timestep, !- Reporting Frequency
+ , !- Schedule Name
+ True; !- Export To BCVTB
+
+OS:Output:Variable,
+ {7ac0a84f-5aff-4022-9a55-9a7b24fb6cc7}, !- Handle
+ Core_ZN ZN_Zone Mean Radiant Temperature, !- Name
+ Core_ZN ZN, !- Key Value
+ Zone Mean Radiant Temperature, !- Variable Name
+ timestep, !- Reporting Frequency
+ , !- Schedule Name
+ True; !- Export To BCVTB
+
+OS:Output:Variable,
+ {bcd2185d-8829-4958-a883-83e464674150}, !- Handle
+ Core_ZN ZN_Zone Air System Sensible Heating Rate, !- Name
+ Core_ZN ZN, !- Key Value
+ Zone Air System Sensible Heating Rate, !- Variable Name
+ timestep, !- Reporting Frequency
+ , !- Schedule Name
+ True; !- Export To BCVTB
+
+OS:Output:Variable,
+ {bff551c7-463d-47e3-8b9f-f9f904aad8c9}, !- Handle
+ Core_ZN ZN_Zone Air System Sensible Cooling Rate, !- Name
+ Core_ZN ZN, !- Key Value
+ Zone Air System Sensible Cooling Rate, !- Variable Name
+ timestep, !- Reporting Frequency
+ , !- Schedule Name
+ True; !- Export To BCVTB
diff --git a/tests/integration/models/refrig_case_osw/weather/USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.epw b/tests/integration/broken_models/small_office/weather/USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.epw
similarity index 100%
rename from tests/integration/models/refrig_case_osw/weather/USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.epw
rename to tests/integration/broken_models/small_office/weather/USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.epw
diff --git a/tests/integration/broken_models/small_office/workflow.osw b/tests/integration/broken_models/small_office/workflow.osw
new file mode 100644
index 00000000..fbece8ee
--- /dev/null
+++ b/tests/integration/broken_models/small_office/workflow.osw
@@ -0,0 +1,19 @@
+{
+ "seed_file" : "small_office.osm",
+ "weather_file": "USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.epw",
+ "measure_paths": [
+ "./measures/"
+ ],
+ "file_paths": [
+ "./weather/"
+ ],
+ "run_directory": "./run/",
+ "steps" : [
+ {
+ "measure_dir_name" : "python_ems",
+ "name" : "PythonEMS",
+ "description" : "Add python EMS to IDF",
+ "modeler_description" : "Add python EMS to IDF",
+ }
+ ]
+}
diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py
index 9e85e4fd..a0190dbd 100644
--- a/tests/integration/conftest.py
+++ b/tests/integration/conftest.py
@@ -17,11 +17,21 @@ def pytest_generate_tests(metafunc):
metafunc.parametrize("broken_model_path", model_paths)
+ if "broken_workflow_name" in metafunc.fixturenames:
+ workflow_names = [
+ "bad_callback.osw",
+ "bad_constructor.osw",
+ "bad_module_class.osw",
+ "bad_module_name.osw",
+ "missing_import.osw"
+ ]
+ metafunc.parametrize("broken_workflow_name", workflow_names)
+
model_dir = Path(os.path.dirname(__file__)) / 'models'
if "model_path" in metafunc.fixturenames:
model_paths = [
- model_dir / 'refrig_case_osw',
- model_dir / 'simple_thermostat.fmu'
+ model_dir / 'small_office',
+ model_dir / 'wrapped.fmu'
]
metafunc.parametrize("model_path", model_paths)
diff --git a/tests/integration/models/refrig_case_osw/empty.osm b/tests/integration/models/refrig_case_osw/empty.osm
deleted file mode 100644
index 532dcd6b..00000000
--- a/tests/integration/models/refrig_case_osw/empty.osm
+++ /dev/null
@@ -1,4 +0,0 @@
-
-OS:Version,
- {63d70650-6ebb-455d-be79-3ef9d415f391}, !- Handle
- 3.1.0; !- Version Identifier
diff --git a/tests/integration/models/refrig_case_osw/in.idf b/tests/integration/models/refrig_case_osw/in.idf
deleted file mode 100644
index d3ab0867..00000000
--- a/tests/integration/models/refrig_case_osw/in.idf
+++ /dev/null
@@ -1,3827 +0,0 @@
- Version,24.1;
-
- Building,
- Refrig Case Model, !- Name
- 0, !- North Axis {deg}
- Suburbs, !- Terrain
- 0.04, !- Loads Convergence Tolerance Value {W}
- 0.4, !- Temperature Convergence Tolerance Value {deltaC}
- FullInteriorAndExteriorWithReflections, !- Solar Distribution
- 25, !- Maximum Number of Warmup Days
- 6; !- Minimum Number of Warmup Days
-
- Timestep,60;
-
- SimulationControl,
- No, !- Do Zone Sizing Calculation
- No, !- Do System Sizing Calculation
- No, !- Do Plant Sizing Calculation
- No, !- Run Simulation for Sizing Periods
- Yes, !- Run Simulation for Weather File Run Periods
- , !- Do HVAC Sizing Simulation for Sizing Periods
- ; !- Maximum Number of HVAC Sizing Simulation Passes
-
- RunPeriod,
- Run Period, !- Name
- 1, !- Begin Month
- 8, !- Begin Day of Month
- , !- Begin Year
- 1, !- End Month
- 11, !- End Day of Month
- , !- End Year
- Thursday, !- Day of Week for Start Day
- No, !- Use Weather File Holidays and Special Days
- No, !- Use Weather File Daylight Saving Period
- No, !- Apply Weekend Holiday Rule
- Yes, !- Use Weather File Rain Indicators
- Yes, !- Use Weather File Snow Indicators
- ; !- Treat Weather as Actual
-
- Site:Location,
- Dayton Wright Patterson Air Force Base, !- Name
- 39.83, !- Latitude {deg}
- -84.05, !- Longitude {deg}
- -5, !- Time Zone {hr}
- 250.0; !- Elevation {m}
-
- GlobalGeometryRules,
- UpperLeftCorner, !- Starting Vertex Position
- Counterclockwise, !- Vertex Entry Direction
- Relative; !- Coordinate System
-
- Construction,
- False Floor, !- Name
- 1in Wood; !- Outside Layer
-
- Material,
- 1in Wood, !- Name
- MediumSmooth, !- Roughness
- 0.0254, !- Thickness {m}
- 0.15, !- Conductivity {W/m-K}
- 608, !- Density {kg/m3}
- 1630; !- Specific Heat {J/kg-K}
-
- Construction,
- IEAD Roof, !- Name
- Roof Membrane, !- Outside Layer
- Roof Insulation, !- Layer 2
- Roof Decking; !- Layer 3
-
- Material,
- Roof Membrane, !- Name
- VeryRough, !- Roughness
- 0.0095, !- Thickness {m}
- 0.16, !- Conductivity {W/m-K}
- 1121.29, !- Density {kg/m3}
- 1460, !- Specific Heat {J/kg-K}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material:NoMass,
- Roof Insulation, !- Name
- MediumRough, !- Roughness
- 3.5222, !- Thermal Resistance {m2-K/W}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material,
- Roof Decking, !- Name
- MediumSmooth, !- Roughness
- 0.0015, !- Thickness {m}
- 45.006, !- Conductivity {W/m-K}
- 7680, !- Density {kg/m3}
- 418.4, !- Specific Heat {J/kg-K}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.3; !- Visible Absorptance
-
- Construction,
- Int Wall, !- Name
- 5/8in Gypsum, !- Outside Layer
- Air Gap, !- Layer 2
- 5/8in Gypsum; !- Layer 3
-
- Material,
- 5/8in Gypsum, !- Name
- Smooth, !- Roughness
- 0.015875, !- Thickness {m}
- 0.16, !- Conductivity {W/m-K}
- 800, !- Density {kg/m3}
- 1090, !- Specific Heat {J/kg-K}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Material:AirGap,
- Air Gap, !- Name
- 0.16; !- Thermal Resistance {m2-K/W}
-
- Construction,
- Ext Wall, !- Name
- 4in MW Concrete, !- Outside Layer
- Air Gap, !- Layer 2
- 5/8in Gypsum; !- Layer 3
-
- Material,
- 4in MW Concrete, !- Name
- Rough, !- Roughness
- 0.1000, !- Thickness {m}
- 0.858, !- Conductivity {W/m-K}
- 1968, !- Density {kg/m3}
- 836.8, !- Specific Heat {J/kg-K}
- 0.9, !- Thermal Absorptance
- 0.7, !- Solar Absorptance
- 0.7; !- Visible Absorptance
-
- Zone,
- Zn1, !- Name
- 0, !- Direction of Relative North {deg}
- 0, !- X Origin {m}
- 0, !- Y Origin {m}
- 0, !- Z Origin {m}
- , !- Type
- 1, !- Multiplier
- AutoCalculate, !- Ceiling Height {m}
- AutoCalculate, !- Volume {m3}
- AutoCalculate, !- Floor Area {m2}
- , !- Zone Inside Convection Algorithm
- , !- Zone Outside Convection Algorithm
- Yes; !- Part of Total Floor Area
-
- BuildingSurface:Detailed,
- Zn1 Floor, !- Name
- Floor, !- Surface Type
- False Floor, !- Construction Name
- Zn1, !- Zone Name
- , !- Space Name
- Adiabatic, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- , !- View Factor to Ground
- 4, !- Number of Vertices
- 17.0688,12.8016,0, !- X,Y,Z ==> Vertex 1 {m}
- 17.0688,0,0, !- X,Y,Z ==> Vertex 2 {m}
- 0,0,0, !- X,Y,Z ==> Vertex 3 {m}
- 0,12.8016,0; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Zn1 North Wall, !- Name
- Wall, !- Surface Type
- Int Wall, !- Construction Name
- Zn1, !- Zone Name
- , !- Space Name
- Adiabatic, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- , !- View Factor to Ground
- 4, !- Number of Vertices
- 17.0688,12.8016,4.3688, !- X,Y,Z ==> Vertex 1 {m}
- 17.0688,12.8016,0, !- X,Y,Z ==> Vertex 2 {m}
- 0,12.8016,0, !- X,Y,Z ==> Vertex 3 {m}
- 0,12.8016,4.3688; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Zn1 East Wall, !- Name
- Wall, !- Surface Type
- Ext Wall, !- Construction Name
- Zn1, !- Zone Name
- , !- Space Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- , !- View Factor to Ground
- 4, !- Number of Vertices
- 17.0688,0,4.3688, !- X,Y,Z ==> Vertex 1 {m}
- 17.0688,0,0, !- X,Y,Z ==> Vertex 2 {m}
- 17.0688,12.8016,0, !- X,Y,Z ==> Vertex 3 {m}
- 17.0688,12.8016,4.3688; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Zn1 South Wall, !- Name
- Wall, !- Surface Type
- Int Wall, !- Construction Name
- Zn1, !- Zone Name
- , !- Space Name
- Adiabatic, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- , !- View Factor to Ground
- 4, !- Number of Vertices
- 0,0,4.3688, !- X,Y,Z ==> Vertex 1 {m}
- 0,0,0, !- X,Y,Z ==> Vertex 2 {m}
- 17.0688,0,0, !- X,Y,Z ==> Vertex 3 {m}
- 17.0688,0,4.3688; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Zn1 West Wall, !- Name
- Wall, !- Surface Type
- Int Wall, !- Construction Name
- Zn1, !- Zone Name
- , !- Space Name
- Adiabatic, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- NoSun, !- Sun Exposure
- NoWind, !- Wind Exposure
- , !- View Factor to Ground
- 4, !- Number of Vertices
- 0,12.8016,4.3688, !- X,Y,Z ==> Vertex 1 {m}
- 0,12.8016,0, !- X,Y,Z ==> Vertex 2 {m}
- 0,0,0, !- X,Y,Z ==> Vertex 3 {m}
- 0,0,4.3688; !- X,Y,Z ==> Vertex 4 {m}
-
- BuildingSurface:Detailed,
- Zn1 Roof, !- Name
- Roof, !- Surface Type
- IEAD Roof, !- Construction Name
- Zn1, !- Zone Name
- , !- Space Name
- Outdoors, !- Outside Boundary Condition
- , !- Outside Boundary Condition Object
- SunExposed, !- Sun Exposure
- WindExposed, !- Wind Exposure
- , !- View Factor to Ground
- 4, !- Number of Vertices
- 0,12.8016,4.3688, !- X,Y,Z ==> Vertex 1 {m}
- 0,0,4.3688, !- X,Y,Z ==> Vertex 2 {m}
- 17.0688,0,4.3688, !- X,Y,Z ==> Vertex 3 {m}
- 17.0688,12.8016,4.3688; !- X,Y,Z ==> Vertex 4 {m}
-
- ScheduleTypeLimits,
- On/Off, !- Name
- 0, !- Lower Limit Value
- 1, !- Upper Limit Value
- Discrete, !- Numeric Type
- Dimensionless; !- Unit Type
-
- ScheduleTypeLimits,
- Fraction, !- Name
- 0, !- Lower Limit Value
- 1, !- Upper Limit Value
- Continuous, !- Numeric Type
- Dimensionless; !- Unit Type
-
- Schedule:Constant,Always On,On/Off,1;
-
- Schedule:Constant,Always Off,On/Off,0;
-
- Lights,
- Zn1 Lights, !- Name
- Zn1, !- Zone or ZoneList or Space or SpaceList Name
- Light Sch, !- Schedule Name
- Watts/Area, !- Design Level Calculation Method
- , !- Lighting Level {W}
- 10.764, !- Watts per Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Return Air Fraction
- 0.7, !- Fraction Radiant
- 0.2, !- Fraction Visible
- 1; !- Fraction Replaceable
-
- ElectricEquipment,
- Zn1 Equipment, !- Name
- Zn1, !- Zone or ZoneList or Space or SpaceList Name
- Always On, !- Schedule Name
- EquipmentLevel, !- Design Level Calculation Method
- 500, !- Design Level {W}
- , !- Watts per Floor Area {W/m2}
- , !- Watts per Person {W/person}
- 0, !- Fraction Latent
- 0.7, !- Fraction Radiant
- 0, !- Fraction Lost
- ; !- End-Use Subcategory
-
- Schedule:Compact,
- Light Sch, !- Name
- On/Off, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 06:00,0, !- Field 3
- Until: 18:00,1, !- Field 5
- Until: 24:00,0; !- Field 7
-
- ZoneCapacitanceMultiplier:ResearchSpecial,
- Zn1 Cap Mult, !- Name
- Zn1, !- Zone or ZoneList Name
- 6, !- Temperature Capacity Multiplier
- 6, !- Humidity Capacity Multiplier
- 1, !- Carbon Dioxide Capacity Multiplier
- 1; !- Generic Contaminant Capacity Multiplier
-
- ZoneInfiltration:DesignFlowRate,
- Infiltration, !- Name
- Zn1, !- Zone or ZoneList or Space or SpaceList Name
- Infil Sch, !- Schedule Name
- Flow/Zone, !- Design Flow Rate Calculation Method
- 0.1416, !- Design Flow Rate {m3/s}
- , !- Flow Rate per Floor Area {m3/s-m2}
- , !- Flow Rate per Exterior Surface Area {m3/s-m2}
- , !- Air Changes per Hour {1/hr}
- 1, !- Constant Term Coefficient
- 0, !- Temperature Term Coefficient
- 0, !- Velocity Term Coefficient
- 0; !- Velocity Squared Term Coefficient
-
- Schedule:Compact,
- Infil Sch, !- Name
- On/Off, !- Schedule Type Limits Name
- Through: 4/30, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,0, !- Field 3
- Through: 8/31, !- Field 5
- For: AllDays, !- Field 6
- Until: 06:00,0, !- Field 7
- Until: 18:00,1, !- Field 9
- Until: 24:00,0, !- Field 11
- Through: 12/31, !- Field 13
- For: AllDays, !- Field 14
- Until: 24:00,0; !- Field 15
-
- ZoneControl:Thermostat,
- Zn1 Thermostat, !- Name
- Zn1, !- Zone or ZoneList Name
- Thermostat Control Type Schedule, !- Control Type Schedule Name
- ThermostatSetpoint:DualSetpoint, !- Control 1 Object Type
- Thermostat Setpoint, !- Control 1 Name
- , !- Control 2 Object Type
- , !- Control 2 Name
- , !- Control 3 Object Type
- , !- Control 3 Name
- , !- Control 4 Object Type
- , !- Control 4 Name
- 1; !- Temperature Difference Between Cutout And Setpoint {deltaC}
-
- Schedule:Constant,Thermostat Control Type Schedule,Thermostat Control Type,4;
-
- ScheduleTypeLimits,
- Thermostat Control Type, !- Name
- 0, !- Lower Limit Value
- 4, !- Upper Limit Value
- Discrete, !- Numeric Type
- Control; !- Unit Type
-
- ThermostatSetpoint:DualSetpoint,
- Thermostat Setpoint, !- Name
- Htg Setpoint, !- Heating Setpoint Temperature Schedule Name
- Clg Setpoint; !- Cooling Setpoint Temperature Schedule Name
-
- Schedule:Compact,
- Htg Setpoint, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,21.667; !- Field 3
-
- Schedule:Compact,
- Clg Setpoint, !- Name
- Temperature, !- Schedule Type Limits Name
- Through: 8/11, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,23.889, !- Field 3
- Through: 8/12, !- Field 5
- For: AllDays, !- Field 6
- Until: 9:30,23.889, !- Field 7
- Until: 16:30,23.889, !- Field 9
- Until: 24:00,23.889, !- Field 11
- Through: 12/31, !- Field 13
- For: AllDays, !- Field 14
- Until: 24:00,23.889; !- Field 15
-
- ScheduleTypeLimits,
- Temperature, !- Name
- -100, !- Lower Limit Value
- 100, !- Upper Limit Value
- Continuous, !- Numeric Type
- Temperature; !- Unit Type
-
- ZoneControl:Humidistat,
- Zn1 Humidistat, !- Name
- Zn1, !- Zone Name
- Humid Setpoint, !- Humidifying Relative Humidity Setpoint Schedule Name
- Dehumid Setpoint; !- Dehumidifying Relative Humidity Setpoint Schedule Name
-
- Schedule:Compact,
- Humid Setpoint, !- Name
- Humidity, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,40; !- Field 3
-
- Schedule:Compact,
- Dehumid Setpoint, !- Name
- Humidity, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 24:00,95; !- Field 3
-
- ScheduleTypeLimits,
- Humidity, !- Name
- 0, !- Lower Limit Value
- 100, !- Upper Limit Value
- Continuous, !- Numeric Type
- Percent; !- Unit Type
-
- ZoneHVAC:EquipmentConnections,
- Zn1, !- Zone Name
- Zn1 HVAC Equipment List, !- Zone Conditioning Equipment List Name
- Zn1 Air Inlet Node List, !- Zone Air Inlet Node or NodeList Name
- , !- Zone Air Exhaust Node or NodeList Name
- Zn1 Air Node, !- Zone Air Node Name
- Zn1 Return Air Node; !- Zone Return Air Node or NodeList Name
-
- NodeList,
- Zn1 Air Inlet Node List, !- Name
- Zn1 Supply Air Node; !- Node 1 Name
-
- ZoneHVAC:EquipmentList,
- Zn1 HVAC Equipment List, !- Name
- SequentialLoad, !- Load Distribution Scheme
- ZoneHVAC:AirDistributionUnit, !- Zone Equipment 1 Object Type
- Zn1 Air Terminal Air Dist Unit, !- Zone Equipment 1 Name
- 1, !- Zone Equipment 1 Cooling Sequence
- 1, !- Zone Equipment 1 Heating or No-Load Sequence
- , !- Zone Equipment 1 Sequential Cooling Fraction Schedule Name
- ; !- Zone Equipment 1 Sequential Heating Fraction Schedule Name
-
- AirTerminal:SingleDuct:ConstantVolume:NoReheat,
- Zn1 Air Terminal, !- Name
- Always On, !- Availability Schedule Name
- Zn1 Supply Air Node Terminal Inlet, !- Air Inlet Node Name
- Zn1 Supply Air Node, !- Air Outlet Node Name
- 1.415841, !- Maximum Air Flow Rate {m3/s}
- , !- Design Specification Outdoor Air Object Name
- ; !- Per Person Ventilation Rate Mode
-
- ZoneHVAC:AirDistributionUnit,
- Zn1 Air Terminal Air Dist Unit, !- Name
- Zn1 Supply Air Node, !- Air Distribution Unit Outlet Node Name
- AirTerminal:SingleDuct:ConstantVolume:NoReheat, !- Air Terminal Object Type
- Zn1 Air Terminal, !- Air Terminal Name
- , !- Nominal Upstream Leakage Fraction
- , !- Constant Downstream Leakage Fraction
- ; !- Design Specification Air Terminal Sizing Object Name
-
- SetpointManager:SingleZone:Reheat,
- Zn1 Supply Air Temp Mgr, !- Name
- Temperature, !- Control Variable
- 10, !- Minimum Supply Air Temperature {C}
- 50, !- Maximum Supply Air Temperature {C}
- Zn1, !- Control Zone Name
- Zn1 Air Node, !- Zone Node Name
- Zn1 Supply Air Node, !- Zone Inlet Node Name
- Humidifier Outlet Node; !- Setpoint Node or NodeList Name
-
- SetpointManager:SingleZone:Humidity:Minimum,
- Zn1 Min RH Mgr, !- Name
- Humidifier Outlet Node, !- Setpoint Node or NodeList Name
- Zn1 Air Node; !- Control Zone Air Node Name
-
- SetpointManager:SingleZone:Humidity:Maximum,
- Zn1 Max RH Mgr, !- Name
- Humidifier Outlet Node, !- Setpoint Node or NodeList Name
- Zn1 Air Node; !- Control Zone Air Node Name
-
- AirLoopHVAC,
- RTU, !- Name
- , !- Controller List Name
- , !- Availability Manager List Name
- 1.415841, !- Design Supply Air Flow Rate {m3/s}
- RTU Branches, !- Branch List Name
- , !- Connector List Name
- RTU Supply Inlet Node, !- Supply Side Inlet Node Name
- RTU Demand Outlet Node, !- Demand Side Outlet Node Name
- RTU Demand Inlet Node, !- Demand Side Inlet Node Names
- Humidifier Outlet Node; !- Supply Side Outlet Node Names
-
- AvailabilityManagerAssignmentList,
- RTU Avail Mgr List, !- Name
- AvailabilityManager:Scheduled, !- Availability Manager 1 Object Type
- RTU Avail Mgr; !- Availability Manager 1 Name
-
- AvailabilityManager:Scheduled,
- RTU Avail Mgr, !- Name
- Always On; !- Schedule Name
-
- BranchList,
- RTU Branches, !- Name
- RTU Main Branch; !- Branch 1 Name
-
- Branch,
- RTU Main Branch, !- Name
- , !- Pressure Drop Curve Name
- AirLoopHVAC:UnitarySystem, !- Component 1 Object Type
- RTU, !- Component 1 Name
- RTU Supply Inlet Node, !- Component 1 Inlet Node Name
- RTU Supply Outlet Node, !- Component 1 Outlet Node Name
- Humidifier:Steam:Electric, !- Component 2 Object Type
- Humidifier, !- Component 2 Name
- RTU Supply Outlet Node, !- Component 2 Inlet Node Name
- Humidifier Outlet Node; !- Component 2 Outlet Node Name
-
- AirLoopHVAC:UnitarySystem,
- RTU, !- Name
- Load, !- Control Type
- Zn1, !- Controlling Zone or Thermostat Location
- CoolReheat, !- Dehumidification Control Type
- Always On, !- Availability Schedule Name
- RTU Supply Inlet Node, !- Air Inlet Node Name
- RTU Supply Outlet Node, !- Air Outlet Node Name
- Fan:OnOff, !- Supply Fan Object Type
- RTU Fan, !- Supply Fan Name
- BlowThrough, !- Fan Placement
- Always Off, !- Supply Air Fan Operating Mode Schedule Name
- Coil:Heating:Fuel, !- Heating Coil Object Type
- RTU Heat Coil, !- Heating Coil Name
- , !- DX Heating Coil Sizing Ratio
- Coil:Cooling:DX:SingleSpeed, !- Cooling Coil Object Type
- RTU Cool Coil, !- Cooling Coil Name
- No, !- Use DOAS DX Cooling Coil
- 2, !- Minimum Supply Air Temperature {C}
- LatentWithSensibleLoadControl, !- Latent Load Control
- Coil:Heating:Electric, !- Supplemental Heating Coil Object Type
- RTU Reheat Coil, !- Supplemental Heating Coil Name
- SupplyAirFlowRate, !- Cooling Supply Air Flow Rate Method
- 1.415841, !- Cooling Supply Air Flow Rate {m3/s}
- , !- Cooling Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Cooling Fraction of Autosized Cooling Supply Air Flow Rate
- , !- Cooling Supply Air Flow Rate Per Unit of Capacity {m3/s-W}
- SupplyAirFlowRate, !- Heating Supply Air Flow Rate Method
- 1.415841, !- Heating Supply Air Flow Rate {m3/s}
- , !- Heating Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- Heating Fraction of Autosized Heating Supply Air Flow Rate
- , !- Heating Supply Air Flow Rate Per Unit of Capacity {m3/s-W}
- SupplyAirFlowRate, !- No Load Supply Air Flow Rate Method
- 0, !- No Load Supply Air Flow Rate {m3/s}
- , !- No Load Supply Air Flow Rate Per Floor Area {m3/s-m2}
- , !- No Load Fraction of Autosized Cooling Supply Air Flow Rate
- , !- No Load Fraction of Autosized Heating Supply Air Flow Rate
- , !- No Load Supply Air Flow Rate Per Unit of Capacity During Cooling Operation {m3/s-W}
- , !- No Load Supply Air Flow Rate Per Unit of Capacity During Heating Operation {m3/s-W}
- No, !- No Load Supply Air Flow Rate Control Set To Low Speed
- 80; !- Maximum Supply Air Temperature {C}
-
- OutdoorAir:Node,
- RTU Condenser Node; !- Name
-
- Fan:OnOff,
- RTU Fan, !- Name
- Always On, !- Availability Schedule Name
- 0.4, !- Fan Total Efficiency
- 500, !- Pressure Rise {Pa}
- 1.415841, !- Maximum Flow Rate {m3/s}
- 1, !- Motor Efficiency
- 1, !- Motor In Airstream Fraction
- RTU Supply Inlet Node, !- Air Inlet Node Name
- RTU Cool Coil Inlet Node;!- Air Outlet Node Name
-
- Coil:Cooling:DX:SingleSpeed,
- RTU Cool Coil, !- Name
- Always On, !- Availability Schedule Name
- 26377.5, !- Gross Rated Total Cooling Capacity {W}
- 0.78, !- Gross Rated Sensible Heat Ratio
- 3.9, !- Gross Rated Cooling COP {W/W}
- 1.415841, !- Rated Air Flow Rate {m3/s}
- , !- 2017 Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- , !- 2023 Rated Evaporator Fan Power Per Volume Flow Rate {W/(m3/s)}
- RTU Cool Coil Inlet Node,!- Air Inlet Node Name
- RTU Heat Coil Inlet Node,!- Air Outlet Node Name
- CoolCapfT, !- Total Cooling Capacity Function of Temperature Curve Name
- CoolCapfFF, !- Total Cooling Capacity Function of Flow Fraction Curve Name
- CoolEIRfT, !- Energy Input Ratio Function of Temperature Curve Name
- CoolEIRfFF, !- Energy Input Ratio Function of Flow Fraction Curve Name
- PLFfPLR, !- Part Load Fraction Correlation Curve Name
- , !- Minimum Outdoor Dry-Bulb Temperature for Compressor Operation {C}
- 1000, !- Nominal Time for Condensate Removal to Begin {s}
- 1.5, !- Ratio of Initial Moisture Evaporation Rate and Steady State Latent Capacity {dimensionless}
- 3, !- Maximum Cycling Rate {cycles/hr}
- 45, !- Latent Capacity Time Constant {s}
- RTU Condenser Node, !- Condenser Air Inlet Node Name
- AirCooled, !- Condenser Type
- , !- Evaporative Condenser Effectiveness {dimensionless}
- , !- Evaporative Condenser Air Flow Rate {m3/s}
- , !- Evaporative Condenser Pump Rated Power Consumption {W}
- 0, !- Crankcase Heater Capacity {W}
- , !- Crankcase Heater Capacity Function of Temperature Curve Name
- 10, !- Maximum Outdoor Dry-Bulb Temperature for Crankcase Heater Operation {C}
- , !- Supply Water Storage Tank Name
- , !- Condensate Collection Water Storage Tank Name
- 0, !- Basin Heater Capacity {W/K}
- 2, !- Basin Heater Setpoint Temperature {C}
- , !- Basin Heater Operating Schedule Name
- , !- Sensible Heat Ratio Function of Temperature Curve Name
- , !- Sensible Heat Ratio Function of Flow Fraction Curve Name
- , !- Report ASHRAE Standard 127 Performance Ratings
- ; !- Zone Name for Condenser Placement
-
- Curve:Biquadratic,
- CoolCapfT, !- Name
- 1.6380187, !- Coefficient1 Constant
- -0.0747347, !- Coefficient2 x
- 0.0029747, !- Coefficient3 x**2
- 0.0015201, !- Coefficient4 y
- -0.0000519, !- Coefficient5 y**2
- -0.0004509, !- Coefficient6 x*y
- 13.89, !- Minimum Value of x
- 22.22, !- Maximum Value of x
- 23.89, !- Minimum Value of y
- 51.67, !- Maximum Value of y
- , !- Minimum Curve Output
- , !- Maximum Curve Output
- Temperature, !- Input Unit Type for X
- Temperature, !- Input Unit Type for Y
- Dimensionless; !- Output Unit Type
-
- Curve:Quadratic,
- CoolCapfFF, !- Name
- 0.8185792, !- Coefficient1 Constant
- 0.2831771, !- Coefficient2 x
- -0.1017563, !- Coefficient3 x**2
- 0.875, !- Minimum Value of x
- 1.125; !- Maximum Value of x
-
- Curve:Biquadratic,
- CoolEIRfT, !- Name
- -0.2209648, !- Coefficient1 Constant
- 0.1033303, !- Coefficient2 x
- -0.0030061, !- Coefficient3 x**2
- -0.0070657, !- Coefficient4 y
- 0.0006322, !- Coefficient5 y**2
- -0.0002496, !- Coefficient6 x*y
- 13.89, !- Minimum Value of x
- 22.22, !- Maximum Value of x
- 23.89, !- Minimum Value of y
- 51.67, !- Maximum Value of y
- , !- Minimum Curve Output
- , !- Maximum Curve Output
- Temperature, !- Input Unit Type for X
- Temperature, !- Input Unit Type for Y
- Dimensionless; !- Output Unit Type
-
- Curve:Quadratic,
- CoolEIRfFF, !- Name
- 1.0380778, !- Coefficient1 Constant
- -0.2013868, !- Coefficient2 x
- 0.163309, !- Coefficient3 x**2
- 0.875, !- Minimum Value of x
- 1.125; !- Maximum Value of x
-
- Curve:Quadratic,
- PLFfPLR, !- Name
- 0.85, !- Coefficient1 Constant
- 0.15, !- Coefficient2 x
- 0, !- Coefficient3 x**2
- 0, !- Minimum Value of x
- 1; !- Maximum Value of x
-
- Coil:Heating:Fuel,
- RTU Heat Coil, !- Name
- Always Off, !- Availability Schedule Name
- NaturalGas, !- Fuel Type
- 0.8, !- Burner Efficiency
- 500, !- Nominal Capacity {W}
- RTU Heat Coil Inlet Node,!- Air Inlet Node Name
- RTU Reheat Coil Inlet Node, !- Air Outlet Node Name
- ; !- Temperature Setpoint Node Name
-
- Coil:Heating:Electric,
- RTU Reheat Coil, !- Name
- Always On, !- Availability Schedule Name
- 1, !- Efficiency
- 500, !- Nominal Capacity {W}
- RTU Reheat Coil Inlet Node, !- Air Inlet Node Name
- RTU Supply Outlet Node, !- Air Outlet Node Name
- ; !- Temperature Setpoint Node Name
-
- Humidifier:Steam:Electric,
- Humidifier, !- Name
- Always On, !- Availability Schedule Name
- 0.00000611, !- Rated Capacity {m3/s}
- 16500, !- Rated Power {W}
- 23, !- Rated Fan Power {W}
- 0, !- Standby Power {W}
- RTU Supply Outlet Node, !- Air Inlet Node Name
- Humidifier Outlet Node; !- Air Outlet Node Name
-
- AirLoopHVAC:SupplyPath,
- RTU Supply Path, !- Name
- RTU Demand Inlet Node, !- Supply Air Path Inlet Node Name
- AirLoopHVAC:ZoneSplitter,!- Component 1 Object Type
- RTU Supply Splitter; !- Component 1 Name
-
- AirLoopHVAC:ZoneSplitter,
- RTU Supply Splitter, !- Name
- RTU Demand Inlet Node, !- Inlet Node Name
- Zn1 Supply Air Node Terminal Inlet; !- Outlet 1 Node Name
-
- AirLoopHVAC:ReturnPath,
- RTU Return Air Path, !- Name
- RTU Demand Outlet Node, !- Return Air Path Outlet Node Name
- AirLoopHVAC:ZoneMixer, !- Component 1 Object Type
- RTU Return Mixer; !- Component 1 Name
-
- AirLoopHVAC:ZoneMixer,
- RTU Return Mixer, !- Name
- RTU Demand Outlet Node, !- Outlet Node Name
- Zn1 Return Air Node; !- Inlet 1 Node Name
-
- EnergyManagementSystem:Sensor,
- drybulb_sen, !- Name
- drybulb_sch, !- Output:Variable or Output:Meter Index Key Name
- Schedule Value; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Sensor,
- rh_sen, !- Name
- rh_sch, !- Output:Variable or Output:Meter Index Key Name
- Schedule Value; !- Output:Variable or Output:Meter Name
-
- EnergyManagementSystem:Actuator,
- drybulb_act, !- Name
- Environment, !- Actuated Component Unique Name
- Weather Data, !- Actuated Component Type
- Outdoor Dry Bulb; !- Actuated Component Control Type
-
- EnergyManagementSystem:Actuator,
- rh_act, !- Name
- Environment, !- Actuated Component Unique Name
- Weather Data, !- Actuated Component Type
- Outdoor Relative Humidity; !- Actuated Component Control Type
-
- EnergyManagementSystem:ProgramCallingManager,
- Weather Prgm, !- Name
- BeginTimestepBeforePredictor, !- EnergyPlus Model Calling Point
- Weather_Prgm; !- Program Name 1
-
- EnergyManagementSystem:Program,
- Weather_Prgm, !- Name
- SET dbt = drybulb_sen, !- Program Line 1
- SET rh = rh_sen, !- Program Line 2
- IF dbt == 9999, !-
- SET drybulb_act = null, !-
- SET rh_act = null, !-
- ELSE, !-
- SET drybulb_act = dbt, !-
- SET rh_act = rh, !-
- ENDIF; !-
-
- ScheduleTypeLimits,
- Any Number, !- Name
- , !- Lower Limit Value
- , !- Upper Limit Value
- Continuous, !- Numeric Type
- Dimensionless; !- Unit Type
-
- Schedule:File,
- drybulb_sch, !- Name
- Any Number, !- Schedule Type Limits Name
- ../weather/weather_data.csv, !- File Name
- 3, !- Column Number
- 1, !- Rows to Skip at Top
- 8760, !- Number of Hours of Data
- Comma, !- Column Separator
- No, !- Interpolate to Timestep
- 1, !- Minutes per Item
- Yes; !- Adjust Schedule for Daylight Savings
-
- Schedule:File,
- rh_sch, !- Name
- Any Number, !- Schedule Type Limits Name
- ../weather/weather_data.csv, !- File Name
- 4, !- Column Number
- 1, !- Rows to Skip at Top
- 8760, !- Number of Hours of Data
- Comma, !- Column Separator
- No, !- Interpolate to Timestep
- 1, !- Minutes per Item
- Yes; !- Adjust Schedule for Daylight Savings
-
- PythonPlugin:SearchPaths,
- Python Search Paths, !- Name
- Yes, !- Add Current Working Directory to Search Path
- Yes, !- Add Input File Directory to Search Path
- Yes, !- Add epin Environment Variable to Search Path
- , !- Search Path 1
- , !- Search Path 2
- , !- Search Path 3
- , !- Search Path 4
- ; !- Search Path 5
-
- PythonPlugin:Instance,
- Case Model, !- Name
- No, !- Run During Warmup Days
- in, !- Python Module Name
- CaseModel; !- Plugin Class Name
-
- PythonPlugin:Variables,
- Python Variables, !- Name
- mt1_t_supply, !- Variable Name 1
- mt1_t_return, !- Variable Name 2
- mt1_t_case, !- Variable Name 3
- mt1_t_food, !- Variable Name 4
- mt2_t_supply, !- Variable Name 5
- mt2_t_return, !- Variable Name 6
- mt2_t_case, !- Variable Name 7
- mt2_t_food, !- Variable Name 8
- lt1_t_supply, !- Variable Name 9
- lt1_t_return, !- Variable Name 10
- lt1_t_case, !- Extended Field
- lt1_t_food, !- Extended Field
- lt2_t_supply, !- Extended Field
- lt2_t_return, !- Extended Field
- lt2_t_case, !- Extended Field
- lt2_t_food; !- Extended Field
-
- PythonPlugin:OutputVariable,
- mt1_t_supply, !- Name
- mt1_t_supply, !- Python Plugin Variable Name
- Averaged, !- Type of Data in Variable
- SystemTimestep, !- Update Frequency
- ; !- Units
-
- PythonPlugin:OutputVariable,
- mt1_t_return, !- Name
- mt1_t_return, !- Python Plugin Variable Name
- Averaged, !- Type of Data in Variable
- SystemTimestep, !- Update Frequency
- ; !- Units
-
- PythonPlugin:OutputVariable,
- mt1_t_case, !- Name
- mt1_t_case, !- Python Plugin Variable Name
- Averaged, !- Type of Data in Variable
- SystemTimestep, !- Update Frequency
- ; !- Units
-
- PythonPlugin:OutputVariable,
- mt1_t_food, !- Name
- mt1_t_food, !- Python Plugin Variable Name
- Averaged, !- Type of Data in Variable
- SystemTimestep, !- Update Frequency
- ; !- Units
-
- PythonPlugin:OutputVariable,
- mt2_t_supply, !- Name
- mt2_t_supply, !- Python Plugin Variable Name
- Averaged, !- Type of Data in Variable
- SystemTimestep, !- Update Frequency
- ; !- Units
-
- PythonPlugin:OutputVariable,
- mt2_t_return, !- Name
- mt2_t_return, !- Python Plugin Variable Name
- Averaged, !- Type of Data in Variable
- SystemTimestep, !- Update Frequency
- ; !- Units
-
- PythonPlugin:OutputVariable,
- mt2_t_case, !- Name
- mt2_t_case, !- Python Plugin Variable Name
- Averaged, !- Type of Data in Variable
- SystemTimestep, !- Update Frequency
- ; !- Units
-
- PythonPlugin:OutputVariable,
- mt2_t_food, !- Name
- mt2_t_food, !- Python Plugin Variable Name
- Averaged, !- Type of Data in Variable
- SystemTimestep, !- Update Frequency
- ; !- Units
-
- PythonPlugin:OutputVariable,
- lt1_t_supply, !- Name
- lt1_t_supply, !- Python Plugin Variable Name
- Averaged, !- Type of Data in Variable
- Systemtimestep, !- Update Frequency
- ; !- Units
-
- PythonPlugin:OutputVariable,
- lt1_t_return, !- Name
- lt1_t_return, !- Python Plugin Variable Name
- Averaged, !- Type of Data in Variable
- Systemtimestep, !- Update Frequency
- ; !- Units
-
- PythonPlugin:OutputVariable,
- lt1_t_case, !- Name
- lt1_t_case, !- Python Plugin Variable Name
- Averaged, !- Type of Data in Variable
- Systemtimestep, !- Update Frequency
- ; !- Units
-
- PythonPlugin:OutputVariable,
- lt1_t_food, !- Name
- lt1_t_food, !- Python Plugin Variable Name
- Averaged, !- Type of Data in Variable
- Systemtimestep, !- Update Frequency
- ; !- Units
-
- PythonPlugin:OutputVariable,
- lt2_t_supply, !- Name
- lt2_t_supply, !- Python Plugin Variable Name
- Averaged, !- Type of Data in Variable
- Systemtimestep, !- Update Frequency
- ; !- Units
-
- PythonPlugin:OutputVariable,
- lt2_t_return, !- Name
- lt2_t_return, !- Python Plugin Variable Name
- Averaged, !- Type of Data in Variable
- Systemtimestep, !- Update Frequency
- ; !- Units
-
- PythonPlugin:OutputVariable,
- lt2_t_case, !- Name
- lt2_t_case, !- Python Plugin Variable Name
- Averaged, !- Type of Data in Variable
- Systemtimestep, !- Update Frequency
- ; !- Units
-
- PythonPlugin:OutputVariable,
- lt2_t_food, !- Name
- lt2_t_food, !- Python Plugin Variable Name
- Averaged, !- Type of Data in Variable
- Systemtimestep, !- Update Frequency
- ; !- Units
-
- Output:EnergyManagementSystem,
- None, !- Actuator Availability Dictionary Reporting
- None, !- Internal Variable Availability Dictionary Reporting
- None; !- EMS Runtime Language Debug Output Level
-
- OutputControl:ReportingTolerances,
- 0.5, !- Tolerance for Time Heating Setpoint Not Met {deltaC}
- 0.5; !- Tolerance for Time Cooling Setpoint Not Met {deltaC}
-
- OutputControl:Table:Style,
- HTML; !- Column Separator
-
- Output:Table:SummaryReports,
- AllSummary; !- Report 1 Name
-
- Output:SQLite,
- SimpleAndTabular; !- Option Type
-
- Output:VariableDictionary,IDF,Unsorted;
-
- Output:Meter,InteriorEquipment:Electricity,Timestep;
-
- Output:Variable,*,Site Outdoor Air Drybulb Temperature,timestep,;
-
- Output:Variable,*,Site Outdoor Air Relative Humidity,timestep,;
-
- Output:Variable,Clg Setpoint,Schedule Value,timestep,;
-
- Output:Variable,MT1 Avail Sch,Schedule Value,Timestep;
-
- Output:Variable,MT2 Avail Sch,Schedule Value,Timestep;
-
- Output:Variable,LT1 Avail Sch,Schedule Value,Timestep;
-
- Output:Variable,LT2 Avail Sch,Schedule Value,Timestep;
-
- Output:Variable,MT1 Credit Sch,Schedule Value,Timestep;
-
- Output:Variable,MT2 Credit Sch,Schedule Value,Timestep;
-
- Output:Variable,LT1 Credit Sch,Schedule Value,Timestep;
-
- Output:Variable,LT2 Credit Sch,Schedule Value,Timestep;
-
- Output:Variable,*,Refrigeration System Total Compressor Electricity Rate,timestep,;
-
- Output:Variable,*,Refrigeration System Condenser Fan Electricity Rate,timestep,;
-
- Output:Variable,mt1_t_supply,PythonPlugin:OutputVariable,Timestep,;
-
- Output:Variable,mt1_t_return,PythonPlugin:OutputVariable,Timestep,;
-
- Output:Variable,mt2_t_supply,PythonPlugin:OutputVariable,Timestep,;
-
- Output:Variable,mt2_t_return,PythonPlugin:OutputVariable,Timestep,;
-
- Output:Variable,lt1_t_supply,PythonPlugin:OutputVariable,Timestep,;
-
- Output:Variable,lt1_t_return,PythonPlugin:OutputVariable,Timestep,;
-
- Output:Variable,lt2_t_supply,PythonPlugin:OutputVariable,Timestep,;
-
- Output:Variable,lt2_t_return,PythonPlugin:OutputVariable,Timestep,;
-
- Refrigeration:CaseAndWalkInList,
- LT Case List, !- Name
- LT1, !- Case or WalkIn 1 Name
- LT2; !- Case or WalkIn 2 Name
-
- Refrigeration:CaseAndWalkInList,
- MT Case List, !- Name
- MT1, !- Case or WalkIn 1 Name
- MT2; !- Case or WalkIn 2 Name
-
- Refrigeration:Case,
- LT1, !- Name
- LT1 Avail Sch, !- Availability Schedule Name
- Zn1, !- Zone Name
- 23.778, !- Rated Ambient Temperature {C}
- 55, !- Rated Ambient Relative Humidity {percent}
- 382.321, !- Rated Total Cooling Capacity per Unit Length {W/m}
- 0.1, !- Rated Latent Heat Ratio
- 0.85, !- Rated Runtime Fraction
- 2.349, !- Case Length {m}
- -27.778, !- Case Operating Temperature {C}
- DewpointMethod, !- Latent Case Credit Curve Type
- Glass Door Latent Curve, !- Latent Case Credit Curve Name
- 23.414, !- Standard Case Fan Power per Unit Length {W/m}
- 23.414, !- Operating Case Fan Power per Unit Length {W/m}
- 23.414, !- Standard Case Lighting Power per Unit Length {W/m}
- 23.414, !- Installed Case Lighting Power per Unit Length {W/m}
- Always On, !- Case Lighting Schedule Name
- 1, !- Fraction of Lighting Energy to Case
- 0, !- Case Anti-Sweat Heater Power per Unit Length {W/m}
- 0, !- Minimum Anti-Sweat Heater Power per Unit Length {W/m}
- None, !- Anti-Sweat Heater Control Type
- , !- Humidity at Zero Anti-Sweat Heater Energy {percent}
- 2.159, !- Case Height {m}
- 0.7, !- Fraction of Anti-Sweat Heater Energy to Case
- 505.747, !- Case Defrost Power per Unit Length {W/m}
- ElectricwithTemperatureTermination, !- Case Defrost Type
- LT1 Defrost Sch, !- Case Defrost Schedule Name
- LT1 Defrost Sch, !- Case Defrost Drip-Down Schedule Name
- DewpointMethod, !- Defrost Energy Correction Curve Type
- Glass Door Defrost Curve,!- Defrost Energy Correction Curve Name
- 0, !- Under Case HVAC Return Air Fraction
- Always Off, !- Refrigerated Case Restocking Schedule Name
- LT1 Credit Sch, !- Case Credit Fraction Schedule Name
- -28.3, !- Design Evaporator Temperature or Brine Inlet Temperature {C}
- , !- Average Refrigerant Charge Inventory {kg/m}
- ; !- Under Case HVAC Return Air Node Name
-
- Schedule:Constant,LT1 Credit Sch,Any Number,0;
-
- Schedule:Compact,
- LT1 Defrost Sch, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 01:00,0, !- Field 3
- Until: 01:01,1, !- Field 5
- Until: 12:20,0, !- Field 7
- Until: 12:21,1, !- Field 9
- Until: 24:00,0; !- Field 11
-
- Schedule:Compact,
- LT1 Avail Sch, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 01:00,1, !- Field 3
- Until: 01:40,0, !- Field 5
- Until: 12:20,1, !- Field 7
- Until: 13:00,0, !- Field 9
- Until: 24:00,1; !- Field 11
-
- Refrigeration:Case,
- LT2, !- Name
- LT2 Avail Sch, !- Availability Schedule Name
- Zn1, !- Zone Name
- 23.778, !- Rated Ambient Temperature {C}
- 55, !- Rated Ambient Relative Humidity {percent}
- 382.321, !- Rated Total Cooling Capacity per Unit Length {W/m}
- 0.1, !- Rated Latent Heat Ratio
- 0.85, !- Rated Runtime Fraction
- 2.349, !- Case Length {m}
- -27.778, !- Case Operating Temperature {C}
- DewpointMethod, !- Latent Case Credit Curve Type
- Glass Door Latent Curve, !- Latent Case Credit Curve Name
- 23.414, !- Standard Case Fan Power per Unit Length {W/m}
- 23.414, !- Operating Case Fan Power per Unit Length {W/m}
- 23.414, !- Standard Case Lighting Power per Unit Length {W/m}
- 23.414, !- Installed Case Lighting Power per Unit Length {W/m}
- Always On, !- Case Lighting Schedule Name
- 1, !- Fraction of Lighting Energy to Case
- 177.071, !- Case Anti-Sweat Heater Power per Unit Length {W/m}
- 177.071, !- Minimum Anti-Sweat Heater Power per Unit Length {W/m}
- Constant, !- Anti-Sweat Heater Control Type
- , !- Humidity at Zero Anti-Sweat Heater Energy {percent}
- 2.159, !- Case Height {m}
- 0.7, !- Fraction of Anti-Sweat Heater Energy to Case
- 477.65, !- Case Defrost Power per Unit Length {W/m}
- ElectricwithTemperatureTermination, !- Case Defrost Type
- LT2 Defrost Sch, !- Case Defrost Schedule Name
- LT2 Defrost Sch, !- Case Defrost Drip-Down Schedule Name
- DewpointMethod, !- Defrost Energy Correction Curve Type
- Glass Door Defrost Curve,!- Defrost Energy Correction Curve Name
- 0, !- Under Case HVAC Return Air Fraction
- Always Off, !- Refrigerated Case Restocking Schedule Name
- LT2 Credit Sch, !- Case Credit Fraction Schedule Name
- -28.3, !- Design Evaporator Temperature or Brine Inlet Temperature {C}
- , !- Average Refrigerant Charge Inventory {kg/m}
- ; !- Under Case HVAC Return Air Node Name
-
- Schedule:Constant,LT2 Credit Sch,Any Number,0;
-
- Schedule:Compact,
- LT2 Defrost Sch, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 02:00,0, !- Field 3
- Until: 02:01,1, !- Field 5
- Until: 13:20,0, !- Field 7
- Until: 13:21,1, !- Field 9
- Until: 24:00,0; !- Field 11
-
- Schedule:Compact,
- LT2 Avail Sch, !- Name
- Fraction, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 02:00,1, !- Field 3
- Until: 02:40,0, !- Field 5
- Until: 13:20,1, !- Field 7
- Until: 14:00,0, !- Field 9
- Until: 24:00,1; !- Field 11
-
- Refrigeration:Case,
- MT1, !- Name
- MT1 Avail Sch, !- Availability Schedule Name
- Zn1, !- Zone Name
- 23.778, !- Rated Ambient Temperature {C}
- 55, !- Rated Ambient Relative Humidity {percent}
- 1456.754, !- Rated Total Cooling Capacity per Unit Length {W/m}
- 0.3, !- Rated Latent Heat Ratio
- 0.85, !- Rated Runtime Fraction
- 2.445, !- Case Length {m}
- -5, !- Case Operating Temperature {C}
- DewpointMethod, !- Latent Case Credit Curve Type
- Open Latent Curve, !- Latent Case Credit Curve Name
- 13.497, !- Standard Case Fan Power per Unit Length {W/m}
- 13.497, !- Operating Case Fan Power per Unit Length {W/m}
- 40.491, !- Standard Case Lighting Power per Unit Length {W/m}
- 40.491, !- Installed Case Lighting Power per Unit Length {W/m}
- Always On, !- Case Lighting Schedule Name
- 1, !- Fraction of Lighting Energy to Case
- 0, !- Case Anti-Sweat Heater Power per Unit Length {W/m}
- 0, !- Minimum Anti-Sweat Heater Power per Unit Length {W/m}
- None, !- Anti-Sweat Heater Control Type
- , !- Humidity at Zero Anti-Sweat Heater Energy {percent}
- 2.051, !- Case Height {m}
- 0.7, !- Fraction of Anti-Sweat Heater Energy to Case
- 0, !- Case Defrost Power per Unit Length {W/m}
- OffCycle, !- Case Defrost Type
- MT1 Avail Sch, !- Case Defrost Schedule Name
- MT1 Avail Sch, !- Case Defrost Drip-Down Schedule Name
- None, !- Defrost Energy Correction Curve Type
- , !- Defrost Energy Correction Curve Name
- 0, !- Under Case HVAC Return Air Fraction
- Always Off, !- Refrigerated Case Restocking Schedule Name
- MT1 Credit Sch, !- Case Credit Fraction Schedule Name
- -6.1, !- Design Evaporator Temperature or Brine Inlet Temperature {C}
- , !- Average Refrigerant Charge Inventory {kg/m}
- ; !- Under Case HVAC Return Air Node Name
-
- Schedule:Constant,MT1 Credit Sch,Any Number,0;
-
- Schedule:Compact,
- MT1 Avail Sch, !- Name
- Any Number, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 03:00,1, !- Field 3
- Until: 03:30,0, !- Field 5
- Until: 07:00,1, !- Field 7
- Until: 07:30,0, !- Field 9
- Until: 11:00,1, !- Field 11
- Until: 11:30,0, !- Field 13
- Until: 15:00,1, !- Field 15
- Until: 15:30,0, !- Field 17
- Until: 19:00,1, !- Field 19
- Until: 19:30,0, !- Field 21
- Until: 23:00,1, !- Field 23
- Until: 23:30,0, !- Field 25
- Until: 24:00,1; !- Field 27
-
- Refrigeration:Case,
- MT2, !- Name
- MT2 Avail Sch, !- Availability Schedule Name
- Zn1, !- Zone Name
- 23.778, !- Rated Ambient Temperature {C}
- 55, !- Rated Ambient Relative Humidity {percent}
- 168.889, !- Rated Total Cooling Capacity per Unit Length {W/m}
- 0.1, !- Rated Latent Heat Ratio
- 0.85, !- Rated Runtime Fraction
- 3.896, !- Case Length {m}
- -2.222, !- Case Operating Temperature {C}
- DewpointMethod, !- Latent Case Credit Curve Type
- Glass Door Latent Curve, !- Latent Case Credit Curve Name
- 16.94, !- Standard Case Fan Power per Unit Length {W/m}
- 16.94, !- Operating Case Fan Power per Unit Length {W/m}
- 22.587, !- Standard Case Lighting Power per Unit Length {W/m}
- 22.587, !- Installed Case Lighting Power per Unit Length {W/m}
- Always On, !- Case Lighting Schedule Name
- 1, !- Fraction of Lighting Energy to Case
- 0, !- Case Anti-Sweat Heater Power per Unit Length {W/m}
- 0, !- Minimum Anti-Sweat Heater Power per Unit Length {W/m}
- None, !- Anti-Sweat Heater Control Type
- , !- Humidity at Zero Anti-Sweat Heater Energy {percent}
- 2.159, !- Case Height {m}
- 0.7, !- Fraction of Anti-Sweat Heater Energy to Case
- 0, !- Case Defrost Power per Unit Length {W/m}
- OffCycle, !- Case Defrost Type
- MT2 Avail Sch, !- Case Defrost Schedule Name
- MT2 Avail Sch, !- Case Defrost Drip-Down Schedule Name
- None, !- Defrost Energy Correction Curve Type
- , !- Defrost Energy Correction Curve Name
- 0, !- Under Case HVAC Return Air Fraction
- Always Off, !- Refrigerated Case Restocking Schedule Name
- MT2 Credit Sch, !- Case Credit Fraction Schedule Name
- -6.1, !- Design Evaporator Temperature or Brine Inlet Temperature {C}
- , !- Average Refrigerant Charge Inventory {kg/m}
- ; !- Under Case HVAC Return Air Node Name
-
- Schedule:Constant,MT2 Credit Sch,Any Number,0;
-
- Schedule:Compact,
- MT2 Avail Sch, !- Name
- Any Number, !- Schedule Type Limits Name
- Through: 12/31, !- Field 1
- For: AllDays, !- Field 2
- Until: 01:00,1, !- Field 3
- Until: 02:00,0, !- Field 5
- Until: 24:00,1; !- Field 7
-
- Refrigeration:System,
- LT Rack, !- Name
- LT Case List, !- Refrigerated Case or Walkin or CaseAndWalkInList Name
- , !- Refrigeration Transfer Load or TransferLoad List Name
- LT Cond, !- Refrigeration Condenser Name
- LT Comp List, !- Compressor or CompressorList Name
- -4.0, !- Minimum Condensing Temperature {C}
- R134a, !- Refrigeration System Working Fluid Type
- ConstantSuctionTemperature, !- Suction Temperature Control Type
- , !- Mechanical Subcooler Name
- , !- Liquid Suction Heat Exchanger Subcooler Name
- , !- Sum UA Suction Piping {W/K}
- , !- Suction Piping Zone Name
- LT Refrig, !- End-Use Subcategory
- 1, !- Number of Compressor Stages
- None, !- Intercooler Type
- , !- Shell-and-Coil Intercooler Effectiveness
- ; !- High-Stage Compressor or CompressorList Name
-
- Refrigeration:System,
- MT Rack, !- Name
- MT Case List, !- Refrigerated Case or Walkin or CaseAndWalkInList Name
- LT Cond, !- Refrigeration Transfer Load or TransferLoad List Name
- MT Cond, !- Refrigeration Condenser Name
- MT Comp List, !- Compressor or CompressorList Name
- 26.7, !- Minimum Condensing Temperature {C}
- R134a, !- Refrigeration System Working Fluid Type
- ConstantSuctionTemperature, !- Suction Temperature Control Type
- , !- Mechanical Subcooler Name
- , !- Liquid Suction Heat Exchanger Subcooler Name
- , !- Sum UA Suction Piping {W/K}
- , !- Suction Piping Zone Name
- MT Refrig, !- End-Use Subcategory
- 1, !- Number of Compressor Stages
- None, !- Intercooler Type
- , !- Shell-and-Coil Intercooler Effectiveness
- ; !- High-Stage Compressor or CompressorList Name
-
- Refrigeration:CompressorList,
- LT Comp List, !- Name
- LT Comp 1, !- Refrigeration Compressor 1 Name
- LT Comp 2; !- Refrigeration Compressor 2 Name
-
- Refrigeration:CompressorList,
- MT Comp List, !- Name
- MT Comp 1, !- Refrigeration Compressor 1 Name
- MT Comp 2; !- Refrigeration Compressor 2 Name
-
- Refrigeration:Compressor,
- LT Comp 1, !- Name
- LT Comp Pwr Curve, !- Refrigeration Compressor Power Curve Name
- LT Comp Cap Curve, !- Refrigeration Compressor Capacity Curve Name
- , !- Rated Superheat {deltaC}
- 22.2, !- Rated Return Gas Temperature {C}
- , !- Rated Liquid Temperature {C}
- 0, !- Rated Subcooling {deltaC}
- LT Refrig; !- End-Use Subcategory
-
- Refrigeration:Compressor,
- LT Comp 2, !- Name
- LT Comp Pwr Curve, !- Refrigeration Compressor Power Curve Name
- LT Comp Cap Curve, !- Refrigeration Compressor Capacity Curve Name
- , !- Rated Superheat {deltaC}
- 22.2, !- Rated Return Gas Temperature {C}
- , !- Rated Liquid Temperature {C}
- 0, !- Rated Subcooling {deltaC}
- LT Refrig; !- End-Use Subcategory
-
- Refrigeration:Compressor,
- MT Comp 1, !- Name
- MT Comp Pwr Curve, !- Refrigeration Compressor Power Curve Name
- MT Comp Cap Curve, !- Refrigeration Compressor Capacity Curve Name
- , !- Rated Superheat {deltaC}
- 22.2, !- Rated Return Gas Temperature {C}
- , !- Rated Liquid Temperature {C}
- 0, !- Rated Subcooling {deltaC}
- MT Refrig; !- End-Use Subcategory
-
- Refrigeration:Compressor,
- MT Comp 2, !- Name
- MT Comp Pwr Curve, !- Refrigeration Compressor Power Curve Name
- MT Comp Cap Curve, !- Refrigeration Compressor Capacity Curve Name
- , !- Rated Superheat {deltaC}
- 22.2, !- Rated Return Gas Temperature {C}
- , !- Rated Liquid Temperature {C}
- 0, !- Rated Subcooling {deltaC}
- MT Refrig; !- End-Use Subcategory
-
- Refrigeration:Condenser:Cascade,
- LT Cond, !- Name
- -4.0, !- Rated Condensing Temperature {C}
- 3.0, !- Rated Approach Temperature Difference {deltaC}
- 3000, !- Rated Effective Total Heat Rejection Rate {W}
- Fixed, !- Condensing Temperature Control Type
- , !- Condenser Refrigerant Operating Charge Inventory {kg}
- , !- Condensate Receiver Refrigerant Inventory {kg}
- ; !- Condensate Piping Refrigerant Inventory {kg}
-
- Refrigeration:Condenser:AirCooled,
- MT Cond, !- Name
- MT Cond Curve, !- Rated Effective Total Heat Rejection Rate Curve Name
- 0, !- Rated Subcooling Temperature Difference {deltaC}
- Fixed, !- Condenser Fan Speed Control Type
- 350, !- Rated Fan Power {W}
- 0.1, !- Minimum Fan Air Flow Ratio {dimensionless}
- MT Cond Node, !- Air Inlet Node Name or Zone Name
- MT Refrig; !- End-Use Subcategory
-
- Curve:Linear,
- MT Cond Curve, !- Name
- 526.58, !- Coefficient1 Constant
- 1194.4, !- Coefficient2 x
- 0, !- Minimum Value of x
- 50; !- Maximum Value of x
-
- OutdoorAir:Node,
- MT Cond Node, !- Name
- 6.1; !- Height Above Ground {m}
-
- Curve:Cubic,
- Glass Door Latent Curve, !- Name
- 0.3379, !- Coefficient1 Constant
- 0.0309, !- Coefficient2 x
- 0.0005, !- Coefficient3 x**2
- 4e-005, !- Coefficient4 x**3
- -55, !- Minimum Value of x
- 55; !- Maximum Value of x
-
- Curve:Cubic,
- Open Latent Curve, !- Name
- -0.0187, !- Coefficient1 Constant
- 0.0458, !- Coefficient2 x
- 0.0011, !- Coefficient3 x**2
- 5e-005, !- Coefficient4 x**3
- -55, !- Minimum Value of x
- 55; !- Maximum Value of x
-
- Curve:Cubic,
- Glass Door Defrost Curve,!- Name
- 0.3475, !- Coefficient1 Constant
- 0.0296, !- Coefficient2 x
- 0.0007, !- Coefficient3 x**2
- 3e-005, !- Coefficient4 x**3
- -55, !- Minimum Value of x
- 55; !- Maximum Value of x
-
- Curve:Bicubic,
- LT Comp Pwr Curve, !- Name
- 1050.49, !- Coefficient1 Constant
- 23.70604, !- Coefficient2 x
- 0.1595959, !- Coefficient3 x**2
- 5.950504, !- Coefficient4 y
- 0.1702536, !- Coefficient5 y**2
- 0.01515672, !- Coefficient6 x*y
- -0.00104976, !- Coefficient7 x**3
- 0.0002735211, !- Coefficient8 y**3
- 0.00157464, !- Coefficient9 x**2*y
- 0.002373624, !- Coefficient10 x*y**2
- -40, !- Minimum Value of x
- -17.7777777777778, !- Maximum Value of x
- -9.44444444444444, !- Minimum Value of y
- 4.44444444444444; !- Maximum Value of y
-
- Curve:Bicubic,
- LT Comp Cap Curve, !- Name
- 7088.31, !- Coefficient1 Constant
- 261.6209, !- Coefficient2 x
- 3.61851, !- Coefficient3 x**2
- 0.2533001, !- Coefficient4 y
- -0.002936041, !- Coefficient5 y**2
- 0.01744413, !- Coefficient6 x*y
- 0.01906446, !- Coefficient7 x**3
- -0.0001076781, !- Coefficient8 y**3
- 0.0002837245, !- Coefficient9 x**2*y
- -0.00005982226, !- Coefficient10 x*y**2
- -40, !- Minimum Value of x
- -17.7777777777778, !- Maximum Value of x
- -9.44444444444444, !- Minimum Value of y
- 4.44444444444444; !- Maximum Value of y
-
- Curve:Bicubic,
- MT Comp Pwr Curve, !- Name
- 655.809841082, !- Coefficient1 Constant
- -4.879606697, !- Coefficient2 x
- -0.193066286, !- Coefficient3 x**2
- 16.849115249, !- Coefficient4 y
- 0.08755704, !- Coefficient5 y**2
- 0.242796924, !- Coefficient6 x*y
- -0.003442547, !- Coefficient7 x**3
- 0.002551666, !- Coefficient8 y**3
- 0.001708538, !- Coefficient9 x**2*y
- -0.002293536, !- Coefficient10 x*y**2
- -15, !- Minimum Value of x
- 15.5555555555556, !- Maximum Value of x
- 21.1111111111111, !- Minimum Value of y
- 71.1111111111111; !- Maximum Value of y
-
- Curve:Bicubic,
- MT Comp Cap Curve, !- Name
- 9351.51075042, !- Coefficient1 Constant
- 391.95945563, !- Coefficient2 x
- 5.51335178, !- Coefficient3 x**2
- -118.44109516, !- Coefficient4 y
- 1.3150144, !- Coefficient5 y**2
- -5.42695528, !- Coefficient6 x*y
- 0.01642585, !- Coefficient7 x**3
- -0.01113671, !- Coefficient8 y**3
- -0.06089526, !- Coefficient9 x**2*y
- 0.0381063, !- Coefficient10 x*y**2
- -15, !- Minimum Value of x
- 15.5555555555556, !- Maximum Value of x
- 21.1111111111111, !- Minimum Value of y
- 71.1111111111111; !- Maximum Value of y
-
- FluidProperties:Name,
- R134a, !- Fluid Name
- Refrigerant; !- Fluid Type
-
- FluidProperties:Temperatures,
- R134aSaturatedTemperatures, !- Name
- -103.300,-102.000,-100.000,-98.000,-96.000,-94.000,-92.000,
- -90.000,-88.000,-86.000,-84.000,-82.000,-80.000,-78.000,
- -76.000,-74.000,-72.000,-70.000,-68.000,-66.000,-64.000,
- -62.000,-60.000,-58.000,-56.000,-54.000,-52.000,-50.000,
- -48.000,-46.000,-44.000,-42.000,-40.000,-38.000,-36.000,
- -34.000,-32.000,-30.000,-28.000,-26.000,-24.000,-22.000,
- -20.000,-18.000,-16.000,-14.000,-12.000,-10.000,-8.000,
- -6.000,-4.000,-2.000,0.000,2.000,4.000,6.000,
- 8.000,10.000,12.000,14.000,16.000,18.000,20.000,
- 22.000,24.000,26.000,28.000,30.000,32.000,34.000,
- 36.000,38.000,40.000,42.000,44.000,46.000,48.000,
- 50.000,52.000,54.000,56.000,58.000,60.000,62.000,
- 64.000,66.000,68.000,70.000,72.000,74.000,76.000,
- 78.000,80.000,82.000,84.000,86.000,88.000,90.000,
- 92.000,94.000,101.060;
-
- FluidProperties:Saturated,
- R134a, !- Fluid Name
- Pressure, !- Fluid Property Type
- FluidGas, !- Fluid Phase
- R134aSaturatedTemperatures, !- Temperature Values Name
- 0.3896E+03,0.4501E+03,0.5594E+03,0.6911E+03,0.8490E+03,0.1037E+04,0.1260E+04,
- 0.1524E+04,0.1834E+04,0.2196E+04,0.2618E+04,0.3107E+04,0.3672E+04,0.4322E+04,
- 0.5066E+04,0.5917E+04,0.6884E+04,0.7981E+04,0.9221E+04,0.1062E+05,0.1219E+05,
- 0.1394E+05,0.1591E+05,0.1809E+05,0.2052E+05,0.2321E+05,0.2618E+05,0.2945E+05,
- 0.3305E+05,0.3700E+05,0.4133E+05,0.4606E+05,0.5121E+05,0.5682E+05,0.6291E+05,
- 0.6951E+05,0.7666E+05,0.8438E+05,0.9270E+05,0.1017E+06,0.1113E+06,0.1216E+06,
- 0.1327E+06,0.1446E+06,0.1573E+06,0.1708E+06,0.1852E+06,0.2006E+06,0.2169E+06,
- 0.2343E+06,0.2527E+06,0.2722E+06,0.2928E+06,0.3146E+06,0.3377E+06,0.3620E+06,
- 0.3876E+06,0.4146E+06,0.4430E+06,0.4729E+06,0.5043E+06,0.5372E+06,0.5717E+06,
- 0.6079E+06,0.6458E+06,0.6854E+06,0.7269E+06,0.7702E+06,0.8154E+06,0.8626E+06,
- 0.9118E+06,0.9632E+06,0.1017E+07,0.1072E+07,0.1130E+07,0.1190E+07,0.1253E+07,
- 0.1318E+07,0.1385E+07,0.1455E+07,0.1528E+07,0.1604E+07,0.1682E+07,0.1763E+07,
- 0.1847E+07,0.1934E+07,0.2024E+07,0.2117E+07,0.2213E+07,0.2313E+07,0.2416E+07,
- 0.2523E+07,0.2633E+07,0.2747E+07,0.2865E+07,0.2987E+07,0.3114E+07,0.3244E+07,
- 0.3379E+07,0.3519E+07,0.4059E+07;
-
- FluidProperties:Saturated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- Fluid, !- Fluid Phase
- R134aSaturatedTemperatures, !- Temperature Values Name
- 0.7146E+05,0.7299E+05,0.7536E+05,0.7773E+05,0.8010E+05,0.8247E+05,0.8485E+05,
- 0.8723E+05,0.8961E+05,0.9199E+05,0.9438E+05,0.9677E+05,0.9916E+05,0.1016E+06,
- 0.1040E+06,0.1064E+06,0.1088E+06,0.1112E+06,0.1136E+06,0.1160E+06,0.1185E+06,
- 0.1209E+06,0.1234E+06,0.1258E+06,0.1283E+06,0.1307E+06,0.1332E+06,0.1357E+06,
- 0.1382E+06,0.1406E+06,0.1431E+06,0.1456E+06,0.1481E+06,0.1507E+06,0.1532E+06,
- 0.1557E+06,0.1582E+06,0.1608E+06,0.1633E+06,0.1659E+06,0.1685E+06,0.1711E+06,
- 0.1736E+06,0.1762E+06,0.1788E+06,0.1814E+06,0.1841E+06,0.1867E+06,0.1893E+06,
- 0.1920E+06,0.1946E+06,0.1973E+06,0.2000E+06,0.2027E+06,0.2054E+06,0.2081E+06,
- 0.2108E+06,0.2136E+06,0.2163E+06,0.2191E+06,0.2219E+06,0.2247E+06,0.2275E+06,
- 0.2303E+06,0.2331E+06,0.2360E+06,0.2388E+06,0.2417E+06,0.2446E+06,0.2475E+06,
- 0.2505E+06,0.2534E+06,0.2564E+06,0.2594E+06,0.2624E+06,0.2655E+06,0.2685E+06,
- 0.2716E+06,0.2747E+06,0.2779E+06,0.2811E+06,0.2843E+06,0.2875E+06,0.2908E+06,
- 0.2941E+06,0.2974E+06,0.3008E+06,0.3043E+06,0.3078E+06,0.3113E+06,0.3149E+06,
- 0.3186E+06,0.3224E+06,0.3262E+06,0.3302E+06,0.3343E+06,0.3385E+06,0.3429E+06,
- 0.3476E+06,0.3526E+06,0.3896E+06;
-
- FluidProperties:Saturated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- FluidGas, !- Fluid Phase
- R134aSaturatedTemperatures, !- Temperature Values Name
- 0.3349E+06,0.3357E+06,0.3369E+06,0.3380E+06,0.3392E+06,0.3404E+06,0.3416E+06,
- 0.3428E+06,0.3440E+06,0.3452E+06,0.3464E+06,0.3476E+06,0.3488E+06,0.3501E+06,
- 0.3513E+06,0.3525E+06,0.3538E+06,0.3550E+06,0.3563E+06,0.3575E+06,0.3588E+06,
- 0.3600E+06,0.3613E+06,0.3626E+06,0.3638E+06,0.3651E+06,0.3664E+06,0.3677E+06,
- 0.3689E+06,0.3702E+06,0.3715E+06,0.3727E+06,0.3740E+06,0.3753E+06,0.3765E+06,
- 0.3778E+06,0.3791E+06,0.3803E+06,0.3816E+06,0.3828E+06,0.3841E+06,0.3853E+06,
- 0.3866E+06,0.3878E+06,0.3890E+06,0.3902E+06,0.3915E+06,0.3927E+06,0.3939E+06,
- 0.3951E+06,0.3963E+06,0.3974E+06,0.3986E+06,0.3998E+06,0.4009E+06,0.4021E+06,
- 0.4032E+06,0.4043E+06,0.4054E+06,0.4065E+06,0.4076E+06,0.4087E+06,0.4097E+06,
- 0.4108E+06,0.4118E+06,0.4128E+06,0.4138E+06,0.4148E+06,0.4158E+06,0.4167E+06,
- 0.4176E+06,0.4185E+06,0.4194E+06,0.4203E+06,0.4211E+06,0.4219E+06,0.4227E+06,
- 0.4234E+06,0.4241E+06,0.4248E+06,0.4255E+06,0.4261E+06,0.4266E+06,0.4271E+06,
- 0.4276E+06,0.4280E+06,0.4284E+06,0.4286E+06,0.4289E+06,0.4290E+06,0.4290E+06,
- 0.4290E+06,0.4288E+06,0.4285E+06,0.4281E+06,0.4274E+06,0.4266E+06,0.4254E+06,
- 0.4239E+06,0.4219E+06,0.3896E+06;
-
- FluidProperties:Saturated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- Fluid, !- Fluid Phase
- R134aSaturatedTemperatures, !- Temperature Values Name
- 0.1591E+04,0.1588E+04,0.1582E+04,0.1577E+04,0.1572E+04,0.1566E+04,0.1561E+04,
- 0.1556E+04,0.1551E+04,0.1545E+04,0.1540E+04,0.1534E+04,0.1529E+04,0.1524E+04,
- 0.1518E+04,0.1513E+04,0.1507E+04,0.1502E+04,0.1496E+04,0.1491E+04,0.1485E+04,
- 0.1480E+04,0.1474E+04,0.1469E+04,0.1463E+04,0.1458E+04,0.1452E+04,0.1446E+04,
- 0.1441E+04,0.1435E+04,0.1429E+04,0.1423E+04,0.1418E+04,0.1412E+04,0.1406E+04,
- 0.1400E+04,0.1394E+04,0.1388E+04,0.1382E+04,0.1376E+04,0.1370E+04,0.1364E+04,
- 0.1358E+04,0.1352E+04,0.1346E+04,0.1340E+04,0.1333E+04,0.1327E+04,0.1321E+04,
- 0.1314E+04,0.1308E+04,0.1301E+04,0.1295E+04,0.1288E+04,0.1281E+04,0.1275E+04,
- 0.1268E+04,0.1261E+04,0.1254E+04,0.1247E+04,0.1240E+04,0.1233E+04,0.1225E+04,
- 0.1218E+04,0.1210E+04,0.1203E+04,0.1195E+04,0.1187E+04,0.1180E+04,0.1172E+04,
- 0.1163E+04,0.1155E+04,0.1147E+04,0.1138E+04,0.1129E+04,0.1121E+04,0.1112E+04,
- 0.1102E+04,0.1093E+04,0.1083E+04,0.1073E+04,0.1063E+04,0.1053E+04,0.1042E+04,
- 0.1031E+04,0.1020E+04,0.1008E+04,0.9962E+03,0.9838E+03,0.9708E+03,0.9573E+03,
- 0.9431E+03,0.9282E+03,0.9126E+03,0.8959E+03,0.8781E+03,0.8589E+03,0.8378E+03,
- 0.8144E+03,0.7878E+03,0.5119E+03;
-
- FluidProperties:Saturated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- FluidGas, !- Fluid Phase
- R134aSaturatedTemperatures, !- Temperature Values Name
- 0.2817E-01,0.3231E-01,0.3969E-01,0.4849E-01,0.5890E-01,0.7117E-01,0.8556E-01,
- 0.1024E+00,0.1219E+00,0.1444E+00,0.1704E+00,0.2002E+00,0.2343E+00,0.2731E+00,
- 0.3171E+00,0.3668E+00,0.4228E+00,0.4857E+00,0.5561E+00,0.6347E+00,0.7222E+00,
- 0.8193E+00,0.9268E+00,0.1045E+01,0.1176E+01,0.1320E+01,0.1477E+01,0.1650E+01,
- 0.1838E+01,0.2043E+01,0.2266E+01,0.2507E+01,0.2769E+01,0.3053E+01,0.3359E+01,
- 0.3689E+01,0.4044E+01,0.4426E+01,0.4836E+01,0.5275E+01,0.5745E+01,0.6248E+01,
- 0.6784E+01,0.7357E+01,0.7967E+01,0.8617E+01,0.9307E+01,0.1004E+02,0.1082E+02,
- 0.1165E+02,0.1252E+02,0.1345E+02,0.1443E+02,0.1546E+02,0.1656E+02,0.1772E+02,
- 0.1894E+02,0.2023E+02,0.2158E+02,0.2301E+02,0.2452E+02,0.2611E+02,0.2778E+02,
- 0.2954E+02,0.3139E+02,0.3334E+02,0.3538E+02,0.3754E+02,0.3980E+02,0.4218E+02,
- 0.4468E+02,0.4732E+02,0.5009E+02,0.5300E+02,0.5606E+02,0.5929E+02,0.6269E+02,
- 0.6627E+02,0.7005E+02,0.7403E+02,0.7824E+02,0.8268E+02,0.8738E+02,0.9236E+02,
- 0.9764E+02,0.1032E+03,0.1092E+03,0.1156E+03,0.1224E+03,0.1297E+03,0.1375E+03,
- 0.1459E+03,0.1551E+03,0.1650E+03,0.1760E+03,0.1880E+03,0.2015E+03,0.2168E+03,
- 0.2343E+03,0.2551E+03,0.5119E+03;
-
- FluidProperties:Saturated,
- R134a, !- Fluid Name
- SpecificHeat, !- Fluid Property Type
- Fluid, !- Fluid Phase
- R134aSaturatedTemperatures, !- Temperature Values Name
- 0.1184E+04,0.1184E+04,0.1184E+04,0.1185E+04,0.1186E+04,0.1187E+04,0.1188E+04,
- 0.1189E+04,0.1191E+04,0.1192E+04,0.1194E+04,0.1196E+04,0.1198E+04,0.1200E+04,
- 0.1202E+04,0.1205E+04,0.1207E+04,0.1210E+04,0.1212E+04,0.1215E+04,0.1217E+04,
- 0.1220E+04,0.1223E+04,0.1226E+04,0.1229E+04,0.1232E+04,0.1235E+04,0.1238E+04,
- 0.1241E+04,0.1245E+04,0.1248E+04,0.1251E+04,0.1255E+04,0.1258E+04,0.1262E+04,
- 0.1265E+04,0.1269E+04,0.1273E+04,0.1277E+04,0.1281E+04,0.1285E+04,0.1289E+04,
- 0.1293E+04,0.1297E+04,0.1302E+04,0.1306E+04,0.1311E+04,0.1316E+04,0.1320E+04,
- 0.1325E+04,0.1330E+04,0.1336E+04,0.1341E+04,0.1347E+04,0.1352E+04,0.1358E+04,
- 0.1364E+04,0.1370E+04,0.1377E+04,0.1383E+04,0.1390E+04,0.1397E+04,0.1405E+04,
- 0.1413E+04,0.1421E+04,0.1429E+04,0.1437E+04,0.1446E+04,0.1456E+04,0.1466E+04,
- 0.1476E+04,0.1487E+04,0.1498E+04,0.1510E+04,0.1523E+04,0.1537E+04,0.1551E+04,
- 0.1566E+04,0.1582E+04,0.1600E+04,0.1618E+04,0.1638E+04,0.1660E+04,0.1684E+04,
- 0.1710E+04,0.1738E+04,0.1769E+04,0.1804E+04,0.1843E+04,0.1887E+04,0.1938E+04,
- 0.1996E+04,0.2065E+04,0.2147E+04,0.2247E+04,0.2373E+04,0.2536E+04,0.2756E+04,
- 0.3072E+04,0.3567E+04,0.0000E+00;
-
- FluidProperties:Saturated,
- R134a, !- Fluid Name
- SpecificHeat, !- Fluid Property Type
- FluidGas, !- Fluid Phase
- R134aSaturatedTemperatures, !- Temperature Values Name
- 0.5853E+03,0.5884E+03,0.5932E+03,0.5980E+03,0.6028E+03,0.6076E+03,0.6125E+03,
- 0.6173E+03,0.6221E+03,0.6270E+03,0.6319E+03,0.6367E+03,0.6417E+03,0.6466E+03,
- 0.6515E+03,0.6565E+03,0.6615E+03,0.6665E+03,0.6716E+03,0.6767E+03,0.6819E+03,
- 0.6871E+03,0.6924E+03,0.6977E+03,0.7031E+03,0.7086E+03,0.7141E+03,0.7197E+03,
- 0.7254E+03,0.7311E+03,0.7370E+03,0.7430E+03,0.7490E+03,0.7552E+03,0.7614E+03,
- 0.7678E+03,0.7743E+03,0.7809E+03,0.7876E+03,0.7944E+03,0.8014E+03,0.8085E+03,
- 0.8158E+03,0.8232E+03,0.8307E+03,0.8385E+03,0.8463E+03,0.8544E+03,0.8626E+03,
- 0.8709E+03,0.8795E+03,0.8883E+03,0.8972E+03,0.9064E+03,0.9158E+03,0.9254E+03,
- 0.9353E+03,0.9455E+03,0.9559E+03,0.9666E+03,0.9776E+03,0.9890E+03,0.1001E+04,
- 0.1013E+04,0.1025E+04,0.1038E+04,0.1052E+04,0.1065E+04,0.1080E+04,0.1095E+04,
- 0.1111E+04,0.1127E+04,0.1145E+04,0.1163E+04,0.1182E+04,0.1202E+04,0.1223E+04,
- 0.1246E+04,0.1270E+04,0.1296E+04,0.1324E+04,0.1354E+04,0.1387E+04,0.1422E+04,
- 0.1461E+04,0.1504E+04,0.1552E+04,0.1605E+04,0.1665E+04,0.1734E+04,0.1812E+04,
- 0.1904E+04,0.2012E+04,0.2143E+04,0.2303E+04,0.2504E+04,0.2766E+04,0.3121E+04,
- 0.3630E+04,0.4426E+04,0.0000E+00;
-
- FluidProperties:Temperatures,
- R134aSuperHeatTemperatures, !- Name
- -103.150,-95.835,-88.520,-81.205,-73.890,-66.575,-59.260,
- -51.945,-44.630,-37.315,-30.000,-26.000,-22.000,-18.000,
- -14.000,-10.000,-8.000,-6.000,-4.000,-2.000,0.000,
- 2.000,4.000,6.000,8.000,10.000,12.000,14.000,
- 16.000,18.000,20.000,22.000,24.000,26.000,28.000,
- 30.000,32.000,34.000,36.000,38.000,40.000,42.000,
- 44.000,46.000,48.000,50.000,52.393,54.785,57.178,
- 59.570,61.963,64.355,66.748,69.140,71.533,73.925,
- 76.318,78.710,81.103,83.495,85.888,88.280,90.673,
- 93.065,95.458,117.850,137.850,157.850;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3962E+03, !- Pressure {Pa}
- 0.3350E+06,0.3394E+06,0.3438E+06,0.3484E+06,0.3530E+06,0.3578E+06,0.3627E+06,
- 0.3677E+06,0.3728E+06,0.3780E+06,0.3833E+06,0.3862E+06,0.3892E+06,0.3922E+06,
- 0.3952E+06,0.3983E+06,0.3998E+06,0.4014E+06,0.4029E+06,0.4045E+06,0.4061E+06,
- 0.4077E+06,0.4092E+06,0.4108E+06,0.4124E+06,0.4140E+06,0.4157E+06,0.4173E+06,
- 0.4189E+06,0.4206E+06,0.4222E+06,0.4239E+06,0.4255E+06,0.4272E+06,0.4289E+06,
- 0.4305E+06,0.4322E+06,0.4339E+06,0.4356E+06,0.4373E+06,0.4390E+06,0.4408E+06,
- 0.4425E+06,0.4442E+06,0.4460E+06,0.4477E+06,0.4498E+06,0.4520E+06,0.4541E+06,
- 0.4562E+06,0.4584E+06,0.4605E+06,0.4627E+06,0.4648E+06,0.4670E+06,0.4692E+06,
- 0.4714E+06,0.4736E+06,0.4758E+06,0.4781E+06,0.4803E+06,0.4826E+06,0.4848E+06,
- 0.4871E+06,0.4894E+06,0.5111E+06,0.5313E+06,0.5520E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3962E+03, !- Pressure {Pa}
- 0.2862E-01,0.2744E-01,0.2635E-01,0.2534E-01,0.2441E-01,0.2354E-01,0.2274E-01,
- 0.2198E-01,0.2128E-01,0.2062E-01,0.2000E-01,0.1967E-01,0.1936E-01,0.1906E-01,
- 0.1876E-01,0.1848E-01,0.1834E-01,0.1820E-01,0.1806E-01,0.1793E-01,0.1780E-01,
- 0.1767E-01,0.1754E-01,0.1742E-01,0.1729E-01,0.1717E-01,0.1705E-01,0.1693E-01,
- 0.1681E-01,0.1670E-01,0.1659E-01,0.1647E-01,0.1636E-01,0.1625E-01,0.1614E-01,
- 0.1604E-01,0.1593E-01,0.1583E-01,0.1573E-01,0.1563E-01,0.1553E-01,0.1543E-01,
- 0.1533E-01,0.1523E-01,0.1514E-01,0.1505E-01,0.1493E-01,0.1483E-01,0.1472E-01,
- 0.1461E-01,0.1451E-01,0.1441E-01,0.1430E-01,0.1420E-01,0.1411E-01,0.1401E-01,
- 0.1391E-01,0.1382E-01,0.1372E-01,0.1363E-01,0.1354E-01,0.1345E-01,0.1336E-01,
- 0.1328E-01,0.1319E-01,0.1243E-01,0.1183E-01,0.1128E-01;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.8633E+03, !- Pressure {Pa}
- 0.0000E+00,0.3393E+06,0.3438E+06,0.3483E+06,0.3530E+06,0.3578E+06,0.3627E+06,
- 0.3676E+06,0.3727E+06,0.3779E+06,0.3832E+06,0.3862E+06,0.3892E+06,0.3922E+06,
- 0.3952E+06,0.3983E+06,0.3998E+06,0.4014E+06,0.4029E+06,0.4045E+06,0.4061E+06,
- 0.4076E+06,0.4092E+06,0.4108E+06,0.4124E+06,0.4140E+06,0.4157E+06,0.4173E+06,
- 0.4189E+06,0.4205E+06,0.4222E+06,0.4238E+06,0.4255E+06,0.4272E+06,0.4288E+06,
- 0.4305E+06,0.4322E+06,0.4339E+06,0.4356E+06,0.4373E+06,0.4390E+06,0.4408E+06,
- 0.4425E+06,0.4442E+06,0.4460E+06,0.4477E+06,0.4498E+06,0.4519E+06,0.4541E+06,
- 0.4562E+06,0.4583E+06,0.4605E+06,0.4627E+06,0.4648E+06,0.4670E+06,0.4692E+06,
- 0.4714E+06,0.4736E+06,0.4758E+06,0.4781E+06,0.4803E+06,0.4826E+06,0.4848E+06,
- 0.4871E+06,0.4894E+06,0.5111E+06,0.5313E+06,0.5520E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.8633E+03, !- Pressure {Pa}
- 0.0000E+00,0.5984E-01,0.5745E-01,0.5525E-01,0.5321E-01,0.5132E-01,0.4956E-01,
- 0.4792E-01,0.4638E-01,0.4494E-01,0.4358E-01,0.4288E-01,0.4219E-01,0.4153E-01,
- 0.4089E-01,0.4027E-01,0.3996E-01,0.3966E-01,0.3937E-01,0.3908E-01,0.3879E-01,
- 0.3851E-01,0.3823E-01,0.3796E-01,0.3769E-01,0.3742E-01,0.3716E-01,0.3690E-01,
- 0.3664E-01,0.3639E-01,0.3614E-01,0.3590E-01,0.3566E-01,0.3542E-01,0.3518E-01,
- 0.3495E-01,0.3472E-01,0.3450E-01,0.3427E-01,0.3405E-01,0.3383E-01,0.3362E-01,
- 0.3341E-01,0.3320E-01,0.3299E-01,0.3279E-01,0.3255E-01,0.3231E-01,0.3207E-01,
- 0.3184E-01,0.3162E-01,0.3139E-01,0.3117E-01,0.3095E-01,0.3074E-01,0.3053E-01,
- 0.3032E-01,0.3011E-01,0.2991E-01,0.2971E-01,0.2951E-01,0.2931E-01,0.2912E-01,
- 0.2893E-01,0.2874E-01,0.2710E-01,0.2578E-01,0.2458E-01;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1748E+04, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.3436E+06,0.3482E+06,0.3529E+06,0.3577E+06,0.3626E+06,
- 0.3676E+06,0.3727E+06,0.3779E+06,0.3832E+06,0.3862E+06,0.3891E+06,0.3921E+06,
- 0.3952E+06,0.3982E+06,0.3998E+06,0.4013E+06,0.4029E+06,0.4045E+06,0.4060E+06,
- 0.4076E+06,0.4092E+06,0.4108E+06,0.4124E+06,0.4140E+06,0.4156E+06,0.4173E+06,
- 0.4189E+06,0.4205E+06,0.4222E+06,0.4238E+06,0.4255E+06,0.4272E+06,0.4288E+06,
- 0.4305E+06,0.4322E+06,0.4339E+06,0.4356E+06,0.4373E+06,0.4390E+06,0.4408E+06,
- 0.4425E+06,0.4442E+06,0.4460E+06,0.4477E+06,0.4498E+06,0.4519E+06,0.4541E+06,
- 0.4562E+06,0.4583E+06,0.4605E+06,0.4627E+06,0.4648E+06,0.4670E+06,0.4692E+06,
- 0.4714E+06,0.4736E+06,0.4758E+06,0.4781E+06,0.4803E+06,0.4826E+06,0.4848E+06,
- 0.4871E+06,0.4894E+06,0.5111E+06,0.5313E+06,0.5520E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1748E+04, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.1165E+00,0.1120E+00,0.1079E+00,0.1040E+00,0.1004E+00,
- 0.9710E-01,0.9398E-01,0.9106E-01,0.8831E-01,0.8688E-01,0.8549E-01,0.8415E-01,
- 0.8284E-01,0.8158E-01,0.8097E-01,0.8036E-01,0.7976E-01,0.7917E-01,0.7859E-01,
- 0.7802E-01,0.7745E-01,0.7690E-01,0.7635E-01,0.7581E-01,0.7528E-01,0.7475E-01,
- 0.7423E-01,0.7372E-01,0.7322E-01,0.7272E-01,0.7223E-01,0.7175E-01,0.7127E-01,
- 0.7080E-01,0.7034E-01,0.6988E-01,0.6943E-01,0.6898E-01,0.6854E-01,0.6810E-01,
- 0.6767E-01,0.6725E-01,0.6683E-01,0.6642E-01,0.6593E-01,0.6545E-01,0.6497E-01,
- 0.6450E-01,0.6404E-01,0.6359E-01,0.6314E-01,0.6270E-01,0.6226E-01,0.6183E-01,
- 0.6141E-01,0.6099E-01,0.6058E-01,0.6017E-01,0.5977E-01,0.5938E-01,0.5899E-01,
- 0.5860E-01,0.5822E-01,0.5488E-01,0.5221E-01,0.4979E-01;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3322E+04, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.3481E+06,0.3528E+06,0.3576E+06,0.3625E+06,
- 0.3675E+06,0.3726E+06,0.3779E+06,0.3832E+06,0.3861E+06,0.3891E+06,0.3921E+06,
- 0.3951E+06,0.3982E+06,0.3998E+06,0.4013E+06,0.4029E+06,0.4044E+06,0.4060E+06,
- 0.4076E+06,0.4092E+06,0.4108E+06,0.4124E+06,0.4140E+06,0.4156E+06,0.4172E+06,
- 0.4189E+06,0.4205E+06,0.4221E+06,0.4238E+06,0.4255E+06,0.4271E+06,0.4288E+06,
- 0.4305E+06,0.4322E+06,0.4339E+06,0.4356E+06,0.4373E+06,0.4390E+06,0.4407E+06,
- 0.4425E+06,0.4442E+06,0.4459E+06,0.4477E+06,0.4498E+06,0.4519E+06,0.4540E+06,
- 0.4562E+06,0.4583E+06,0.4605E+06,0.4626E+06,0.4648E+06,0.4670E+06,0.4692E+06,
- 0.4714E+06,0.4736E+06,0.4758E+06,0.4780E+06,0.4803E+06,0.4825E+06,0.4848E+06,
- 0.4871E+06,0.4893E+06,0.5111E+06,0.5312E+06,0.5520E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3322E+04, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.2132E+00,0.2053E+00,0.1979E+00,0.1911E+00,
- 0.1847E+00,0.1787E+00,0.1731E+00,0.1679E+00,0.1652E+00,0.1625E+00,0.1600E+00,
- 0.1575E+00,0.1551E+00,0.1539E+00,0.1527E+00,0.1516E+00,0.1505E+00,0.1494E+00,
- 0.1483E+00,0.1472E+00,0.1462E+00,0.1451E+00,0.1441E+00,0.1431E+00,0.1421E+00,
- 0.1411E+00,0.1401E+00,0.1392E+00,0.1382E+00,0.1373E+00,0.1364E+00,0.1355E+00,
- 0.1346E+00,0.1337E+00,0.1328E+00,0.1319E+00,0.1311E+00,0.1303E+00,0.1294E+00,
- 0.1286E+00,0.1278E+00,0.1270E+00,0.1262E+00,0.1253E+00,0.1244E+00,0.1235E+00,
- 0.1226E+00,0.1217E+00,0.1208E+00,0.1200E+00,0.1191E+00,0.1183E+00,0.1175E+00,
- 0.1167E+00,0.1159E+00,0.1151E+00,0.1143E+00,0.1136E+00,0.1128E+00,0.1121E+00,
- 0.1114E+00,0.1106E+00,0.1043E+00,0.9921E-01,0.9460E-01;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.5967E+04, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.3526E+06,0.3574E+06,0.3624E+06,
- 0.3674E+06,0.3725E+06,0.3778E+06,0.3831E+06,0.3860E+06,0.3890E+06,0.3920E+06,
- 0.3951E+06,0.3981E+06,0.3997E+06,0.4012E+06,0.4028E+06,0.4044E+06,0.4059E+06,
- 0.4075E+06,0.4091E+06,0.4107E+06,0.4123E+06,0.4139E+06,0.4156E+06,0.4172E+06,
- 0.4188E+06,0.4205E+06,0.4221E+06,0.4238E+06,0.4254E+06,0.4271E+06,0.4288E+06,
- 0.4304E+06,0.4321E+06,0.4338E+06,0.4355E+06,0.4372E+06,0.4390E+06,0.4407E+06,
- 0.4424E+06,0.4442E+06,0.4459E+06,0.4477E+06,0.4498E+06,0.4519E+06,0.4540E+06,
- 0.4561E+06,0.4583E+06,0.4604E+06,0.4626E+06,0.4648E+06,0.4670E+06,0.4691E+06,
- 0.4714E+06,0.4736E+06,0.4758E+06,0.4780E+06,0.4803E+06,0.4825E+06,0.4848E+06,
- 0.4870E+06,0.4893E+06,0.5111E+06,0.5312E+06,0.5520E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.5967E+04, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.3697E+00,0.3563E+00,0.3438E+00,
- 0.3323E+00,0.3215E+00,0.3114E+00,0.3019E+00,0.2970E+00,0.2922E+00,0.2876E+00,
- 0.2831E+00,0.2788E+00,0.2767E+00,0.2746E+00,0.2725E+00,0.2705E+00,0.2685E+00,
- 0.2665E+00,0.2646E+00,0.2627E+00,0.2608E+00,0.2590E+00,0.2571E+00,0.2553E+00,
- 0.2536E+00,0.2518E+00,0.2501E+00,0.2484E+00,0.2467E+00,0.2451E+00,0.2434E+00,
- 0.2418E+00,0.2402E+00,0.2386E+00,0.2371E+00,0.2356E+00,0.2341E+00,0.2326E+00,
- 0.2311E+00,0.2296E+00,0.2282E+00,0.2268E+00,0.2251E+00,0.2235E+00,0.2218E+00,
- 0.2202E+00,0.2187E+00,0.2171E+00,0.2156E+00,0.2141E+00,0.2126E+00,0.2111E+00,
- 0.2097E+00,0.2082E+00,0.2068E+00,0.2054E+00,0.2041E+00,0.2027E+00,0.2014E+00,
- 0.2001E+00,0.1988E+00,0.1874E+00,0.1782E+00,0.1699E+00;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1020E+05, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.3572E+06,0.3621E+06,
- 0.3672E+06,0.3724E+06,0.3776E+06,0.3829E+06,0.3859E+06,0.3889E+06,0.3919E+06,
- 0.3950E+06,0.3980E+06,0.3996E+06,0.4011E+06,0.4027E+06,0.4043E+06,0.4058E+06,
- 0.4074E+06,0.4090E+06,0.4106E+06,0.4122E+06,0.4138E+06,0.4155E+06,0.4171E+06,
- 0.4187E+06,0.4204E+06,0.4220E+06,0.4237E+06,0.4253E+06,0.4270E+06,0.4287E+06,
- 0.4304E+06,0.4321E+06,0.4338E+06,0.4355E+06,0.4372E+06,0.4389E+06,0.4406E+06,
- 0.4424E+06,0.4441E+06,0.4458E+06,0.4476E+06,0.4497E+06,0.4518E+06,0.4539E+06,
- 0.4561E+06,0.4582E+06,0.4604E+06,0.4625E+06,0.4647E+06,0.4669E+06,0.4691E+06,
- 0.4713E+06,0.4735E+06,0.4757E+06,0.4780E+06,0.4802E+06,0.4825E+06,0.4847E+06,
- 0.4870E+06,0.4893E+06,0.5111E+06,0.5312E+06,0.5520E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1020E+05, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.6112E+00,0.5896E+00,
- 0.5695E+00,0.5508E+00,0.5334E+00,0.5170E+00,0.5085E+00,0.5003E+00,0.4924E+00,
- 0.4847E+00,0.4772E+00,0.4735E+00,0.4700E+00,0.4664E+00,0.4630E+00,0.4595E+00,
- 0.4562E+00,0.4528E+00,0.4495E+00,0.4463E+00,0.4431E+00,0.4400E+00,0.4369E+00,
- 0.4339E+00,0.4309E+00,0.4279E+00,0.4250E+00,0.4221E+00,0.4192E+00,0.4164E+00,
- 0.4137E+00,0.4109E+00,0.4083E+00,0.4056E+00,0.4030E+00,0.4004E+00,0.3978E+00,
- 0.3953E+00,0.3928E+00,0.3903E+00,0.3879E+00,0.3851E+00,0.3822E+00,0.3794E+00,
- 0.3767E+00,0.3740E+00,0.3713E+00,0.3687E+00,0.3661E+00,0.3636E+00,0.3611E+00,
- 0.3586E+00,0.3561E+00,0.3537E+00,0.3513E+00,0.3490E+00,0.3467E+00,0.3444E+00,
- 0.3421E+00,0.3399E+00,0.3204E+00,0.3047E+00,0.2906E+00;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1669E+05, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.3618E+06,
- 0.3669E+06,0.3721E+06,0.3774E+06,0.3827E+06,0.3857E+06,0.3887E+06,0.3917E+06,
- 0.3948E+06,0.3979E+06,0.3994E+06,0.4010E+06,0.4025E+06,0.4041E+06,0.4057E+06,
- 0.4073E+06,0.4089E+06,0.4105E+06,0.4121E+06,0.4137E+06,0.4153E+06,0.4170E+06,
- 0.4186E+06,0.4202E+06,0.4219E+06,0.4236E+06,0.4252E+06,0.4269E+06,0.4286E+06,
- 0.4303E+06,0.4320E+06,0.4337E+06,0.4354E+06,0.4371E+06,0.4388E+06,0.4405E+06,
- 0.4423E+06,0.4440E+06,0.4457E+06,0.4475E+06,0.4496E+06,0.4517E+06,0.4539E+06,
- 0.4560E+06,0.4581E+06,0.4603E+06,0.4625E+06,0.4646E+06,0.4668E+06,0.4690E+06,
- 0.4712E+06,0.4734E+06,0.4757E+06,0.4779E+06,0.4801E+06,0.4824E+06,0.4847E+06,
- 0.4869E+06,0.4892E+06,0.5110E+06,0.5311E+06,0.5519E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1669E+05, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.9693E+00,
- 0.9357E+00,0.9045E+00,0.8755E+00,0.8483E+00,0.8342E+00,0.8206E+00,0.8074E+00,
- 0.7947E+00,0.7824E+00,0.7763E+00,0.7704E+00,0.7646E+00,0.7588E+00,0.7532E+00,
- 0.7476E+00,0.7421E+00,0.7367E+00,0.7314E+00,0.7262E+00,0.7210E+00,0.7159E+00,
- 0.7109E+00,0.7059E+00,0.7011E+00,0.6962E+00,0.6915E+00,0.6868E+00,0.6822E+00,
- 0.6777E+00,0.6732E+00,0.6687E+00,0.6644E+00,0.6600E+00,0.6558E+00,0.6516E+00,
- 0.6474E+00,0.6433E+00,0.6393E+00,0.6353E+00,0.6306E+00,0.6259E+00,0.6214E+00,
- 0.6169E+00,0.6124E+00,0.6081E+00,0.6037E+00,0.5995E+00,0.5953E+00,0.5912E+00,
- 0.5871E+00,0.5831E+00,0.5791E+00,0.5752E+00,0.5713E+00,0.5675E+00,0.5638E+00,
- 0.5601E+00,0.5564E+00,0.5244E+00,0.4988E+00,0.4756E+00;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2626E+05, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.3664E+06,0.3717E+06,0.3770E+06,0.3824E+06,0.3854E+06,0.3884E+06,0.3914E+06,
- 0.3945E+06,0.3976E+06,0.3992E+06,0.4007E+06,0.4023E+06,0.4039E+06,0.4055E+06,
- 0.4071E+06,0.4087E+06,0.4103E+06,0.4119E+06,0.4135E+06,0.4151E+06,0.4168E+06,
- 0.4184E+06,0.4201E+06,0.4217E+06,0.4234E+06,0.4251E+06,0.4267E+06,0.4284E+06,
- 0.4301E+06,0.4318E+06,0.4335E+06,0.4352E+06,0.4369E+06,0.4386E+06,0.4404E+06,
- 0.4421E+06,0.4439E+06,0.4456E+06,0.4474E+06,0.4495E+06,0.4516E+06,0.4537E+06,
- 0.4559E+06,0.4580E+06,0.4602E+06,0.4623E+06,0.4645E+06,0.4667E+06,0.4689E+06,
- 0.4711E+06,0.4733E+06,0.4756E+06,0.4778E+06,0.4800E+06,0.4823E+06,0.4846E+06,
- 0.4868E+06,0.4891E+06,0.5109E+06,0.5311E+06,0.5518E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2626E+05, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.1482E+01,0.1431E+01,0.1384E+01,0.1341E+01,0.1318E+01,0.1296E+01,0.1275E+01,
- 0.1255E+01,0.1235E+01,0.1225E+01,0.1216E+01,0.1207E+01,0.1198E+01,0.1189E+01,
- 0.1180E+01,0.1171E+01,0.1162E+01,0.1154E+01,0.1145E+01,0.1137E+01,0.1129E+01,
- 0.1121E+01,0.1113E+01,0.1106E+01,0.1098E+01,0.1090E+01,0.1083E+01,0.1076E+01,
- 0.1068E+01,0.1061E+01,0.1054E+01,0.1047E+01,0.1040E+01,0.1034E+01,0.1027E+01,
- 0.1020E+01,0.1014E+01,0.1008E+01,0.1001E+01,0.9938E+00,0.9864E+00,0.9792E+00,
- 0.9720E+00,0.9650E+00,0.9581E+00,0.9513E+00,0.9445E+00,0.9379E+00,0.9314E+00,
- 0.9249E+00,0.9186E+00,0.9123E+00,0.9061E+00,0.9000E+00,0.8940E+00,0.8881E+00,
- 0.8822E+00,0.8764E+00,0.8259E+00,0.7854E+00,0.7488E+00;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3992E+05, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.3711E+06,0.3765E+06,0.3819E+06,0.3849E+06,0.3880E+06,0.3911E+06,
- 0.3941E+06,0.3973E+06,0.3988E+06,0.4004E+06,0.4020E+06,0.4036E+06,0.4052E+06,
- 0.4068E+06,0.4084E+06,0.4100E+06,0.4116E+06,0.4132E+06,0.4149E+06,0.4165E+06,
- 0.4181E+06,0.4198E+06,0.4215E+06,0.4231E+06,0.4248E+06,0.4265E+06,0.4282E+06,
- 0.4299E+06,0.4316E+06,0.4333E+06,0.4350E+06,0.4367E+06,0.4384E+06,0.4402E+06,
- 0.4419E+06,0.4437E+06,0.4454E+06,0.4472E+06,0.4493E+06,0.4514E+06,0.4535E+06,
- 0.4557E+06,0.4578E+06,0.4600E+06,0.4622E+06,0.4644E+06,0.4665E+06,0.4687E+06,
- 0.4710E+06,0.4732E+06,0.4754E+06,0.4776E+06,0.4799E+06,0.4821E+06,0.4844E+06,
- 0.4867E+06,0.4890E+06,0.5108E+06,0.5310E+06,0.5518E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3992E+05, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.2193E+01,0.2119E+01,0.2051E+01,0.2015E+01,0.1981E+01,0.1948E+01,
- 0.1917E+01,0.1886E+01,0.1871E+01,0.1856E+01,0.1842E+01,0.1828E+01,0.1814E+01,
- 0.1800E+01,0.1787E+01,0.1773E+01,0.1760E+01,0.1747E+01,0.1735E+01,0.1722E+01,
- 0.1710E+01,0.1698E+01,0.1686E+01,0.1674E+01,0.1662E+01,0.1651E+01,0.1640E+01,
- 0.1628E+01,0.1617E+01,0.1607E+01,0.1596E+01,0.1585E+01,0.1575E+01,0.1565E+01,
- 0.1555E+01,0.1545E+01,0.1535E+01,0.1525E+01,0.1514E+01,0.1502E+01,0.1491E+01,
- 0.1480E+01,0.1470E+01,0.1459E+01,0.1449E+01,0.1438E+01,0.1428E+01,0.1418E+01,
- 0.1408E+01,0.1399E+01,0.1389E+01,0.1379E+01,0.1370E+01,0.1361E+01,0.1352E+01,
- 0.1343E+01,0.1334E+01,0.1257E+01,0.1195E+01,0.1139E+01;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.5885E+05, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.3757E+06,0.3813E+06,0.3843E+06,0.3874E+06,0.3905E+06,
- 0.3936E+06,0.3968E+06,0.3983E+06,0.3999E+06,0.4015E+06,0.4031E+06,0.4047E+06,
- 0.4063E+06,0.4079E+06,0.4096E+06,0.4112E+06,0.4128E+06,0.4145E+06,0.4161E+06,
- 0.4178E+06,0.4194E+06,0.4211E+06,0.4228E+06,0.4245E+06,0.4261E+06,0.4278E+06,
- 0.4295E+06,0.4312E+06,0.4330E+06,0.4347E+06,0.4364E+06,0.4381E+06,0.4399E+06,
- 0.4416E+06,0.4434E+06,0.4451E+06,0.4469E+06,0.4490E+06,0.4512E+06,0.4533E+06,
- 0.4554E+06,0.4576E+06,0.4598E+06,0.4619E+06,0.4641E+06,0.4663E+06,0.4685E+06,
- 0.4707E+06,0.4730E+06,0.4752E+06,0.4774E+06,0.4797E+06,0.4819E+06,0.4842E+06,
- 0.4865E+06,0.4888E+06,0.5106E+06,0.5308E+06,0.5516E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.5885E+05, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.3155E+01,0.3049E+01,0.2995E+01,0.2942E+01,0.2892E+01,
- 0.2844E+01,0.2797E+01,0.2775E+01,0.2752E+01,0.2731E+01,0.2709E+01,0.2688E+01,
- 0.2667E+01,0.2647E+01,0.2627E+01,0.2607E+01,0.2588E+01,0.2568E+01,0.2550E+01,
- 0.2531E+01,0.2513E+01,0.2495E+01,0.2477E+01,0.2460E+01,0.2443E+01,0.2426E+01,
- 0.2409E+01,0.2393E+01,0.2376E+01,0.2360E+01,0.2345E+01,0.2329E+01,0.2314E+01,
- 0.2299E+01,0.2284E+01,0.2269E+01,0.2255E+01,0.2237E+01,0.2221E+01,0.2204E+01,
- 0.2188E+01,0.2172E+01,0.2156E+01,0.2140E+01,0.2125E+01,0.2110E+01,0.2095E+01,
- 0.2080E+01,0.2066E+01,0.2051E+01,0.2037E+01,0.2023E+01,0.2010E+01,0.1996E+01,
- 0.1983E+01,0.1970E+01,0.1855E+01,0.1764E+01,0.1681E+01;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.8438E+05, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.3803E+06,0.3834E+06,0.3866E+06,0.3897E+06,
- 0.3929E+06,0.3961E+06,0.3977E+06,0.3993E+06,0.4009E+06,0.4025E+06,0.4041E+06,
- 0.4057E+06,0.4074E+06,0.4090E+06,0.4106E+06,0.4123E+06,0.4139E+06,0.4156E+06,
- 0.4173E+06,0.4189E+06,0.4206E+06,0.4223E+06,0.4240E+06,0.4257E+06,0.4274E+06,
- 0.4291E+06,0.4308E+06,0.4325E+06,0.4343E+06,0.4360E+06,0.4377E+06,0.4395E+06,
- 0.4412E+06,0.4430E+06,0.4448E+06,0.4465E+06,0.4487E+06,0.4508E+06,0.4529E+06,
- 0.4551E+06,0.4573E+06,0.4594E+06,0.4616E+06,0.4638E+06,0.4660E+06,0.4682E+06,
- 0.4704E+06,0.4727E+06,0.4749E+06,0.4772E+06,0.4794E+06,0.4817E+06,0.4839E+06,
- 0.4862E+06,0.4885E+06,0.5104E+06,0.5306E+06,0.5514E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.8438E+05, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.4426E+01,0.4343E+01,0.4264E+01,0.4188E+01,
- 0.4115E+01,0.4046E+01,0.4012E+01,0.3979E+01,0.3946E+01,0.3914E+01,0.3883E+01,
- 0.3852E+01,0.3822E+01,0.3792E+01,0.3763E+01,0.3734E+01,0.3706E+01,0.3678E+01,
- 0.3651E+01,0.3624E+01,0.3597E+01,0.3571E+01,0.3546E+01,0.3521E+01,0.3496E+01,
- 0.3471E+01,0.3447E+01,0.3423E+01,0.3400E+01,0.3377E+01,0.3354E+01,0.3332E+01,
- 0.3310E+01,0.3288E+01,0.3266E+01,0.3245E+01,0.3220E+01,0.3196E+01,0.3172E+01,
- 0.3148E+01,0.3124E+01,0.3101E+01,0.3079E+01,0.3056E+01,0.3034E+01,0.3013E+01,
- 0.2991E+01,0.2970E+01,0.2950E+01,0.2929E+01,0.2909E+01,0.2889E+01,0.2870E+01,
- 0.2850E+01,0.2831E+01,0.2665E+01,0.2533E+01,0.2413E+01;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1017E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.3828E+06,0.3860E+06,0.3892E+06,
- 0.3924E+06,0.3956E+06,0.3972E+06,0.3988E+06,0.4004E+06,0.4021E+06,0.4037E+06,
- 0.4053E+06,0.4070E+06,0.4086E+06,0.4103E+06,0.4119E+06,0.4136E+06,0.4152E+06,
- 0.4169E+06,0.4186E+06,0.4203E+06,0.4220E+06,0.4237E+06,0.4254E+06,0.4271E+06,
- 0.4288E+06,0.4305E+06,0.4322E+06,0.4340E+06,0.4357E+06,0.4375E+06,0.4392E+06,
- 0.4410E+06,0.4427E+06,0.4445E+06,0.4463E+06,0.4484E+06,0.4506E+06,0.4527E+06,
- 0.4549E+06,0.4570E+06,0.4592E+06,0.4614E+06,0.4636E+06,0.4658E+06,0.4680E+06,
- 0.4702E+06,0.4725E+06,0.4747E+06,0.4770E+06,0.4792E+06,0.4815E+06,0.4838E+06,
- 0.4861E+06,0.4883E+06,0.5103E+06,0.5305E+06,0.5513E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1017E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.5275E+01,0.5176E+01,0.5081E+01,
- 0.4991E+01,0.4904E+01,0.4862E+01,0.4821E+01,0.4781E+01,0.4741E+01,0.4703E+01,
- 0.4665E+01,0.4627E+01,0.4591E+01,0.4555E+01,0.4519E+01,0.4485E+01,0.4450E+01,
- 0.4417E+01,0.4384E+01,0.4351E+01,0.4319E+01,0.4288E+01,0.4257E+01,0.4227E+01,
- 0.4197E+01,0.4167E+01,0.4138E+01,0.4110E+01,0.4081E+01,0.4054E+01,0.4026E+01,
- 0.3999E+01,0.3973E+01,0.3947E+01,0.3921E+01,0.3890E+01,0.3860E+01,0.3831E+01,
- 0.3802E+01,0.3773E+01,0.3745E+01,0.3718E+01,0.3691E+01,0.3664E+01,0.3637E+01,
- 0.3611E+01,0.3586E+01,0.3561E+01,0.3536E+01,0.3511E+01,0.3487E+01,0.3463E+01,
- 0.3440E+01,0.3417E+01,0.3215E+01,0.3055E+01,0.2910E+01;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1216E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.3853E+06,0.3885E+06,
- 0.3918E+06,0.3950E+06,0.3967E+06,0.3983E+06,0.3999E+06,0.4016E+06,0.4032E+06,
- 0.4048E+06,0.4065E+06,0.4082E+06,0.4098E+06,0.4115E+06,0.4132E+06,0.4148E+06,
- 0.4165E+06,0.4182E+06,0.4199E+06,0.4216E+06,0.4233E+06,0.4250E+06,0.4267E+06,
- 0.4284E+06,0.4302E+06,0.4319E+06,0.4336E+06,0.4354E+06,0.4371E+06,0.4389E+06,
- 0.4407E+06,0.4424E+06,0.4442E+06,0.4460E+06,0.4481E+06,0.4503E+06,0.4524E+06,
- 0.4546E+06,0.4568E+06,0.4590E+06,0.4611E+06,0.4633E+06,0.4656E+06,0.4678E+06,
- 0.4700E+06,0.4722E+06,0.4745E+06,0.4767E+06,0.4790E+06,0.4813E+06,0.4836E+06,
- 0.4858E+06,0.4881E+06,0.5101E+06,0.5303E+06,0.5512E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1216E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.6248E+01,0.6129E+01,
- 0.6017E+01,0.5910E+01,0.5858E+01,0.5807E+01,0.5757E+01,0.5709E+01,0.5661E+01,
- 0.5614E+01,0.5568E+01,0.5523E+01,0.5479E+01,0.5436E+01,0.5393E+01,0.5351E+01,
- 0.5310E+01,0.5270E+01,0.5230E+01,0.5191E+01,0.5153E+01,0.5115E+01,0.5078E+01,
- 0.5041E+01,0.5006E+01,0.4970E+01,0.4935E+01,0.4901E+01,0.4867E+01,0.4834E+01,
- 0.4801E+01,0.4769E+01,0.4737E+01,0.4706E+01,0.4669E+01,0.4633E+01,0.4597E+01,
- 0.4562E+01,0.4527E+01,0.4493E+01,0.4460E+01,0.4427E+01,0.4394E+01,0.4363E+01,
- 0.4331E+01,0.4300E+01,0.4270E+01,0.4240E+01,0.4210E+01,0.4181E+01,0.4152E+01,
- 0.4124E+01,0.4096E+01,0.3853E+01,0.3660E+01,0.3486E+01;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1446E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.3878E+06,
- 0.3911E+06,0.3944E+06,0.3960E+06,0.3977E+06,0.3993E+06,0.4010E+06,0.4026E+06,
- 0.4043E+06,0.4060E+06,0.4076E+06,0.4093E+06,0.4110E+06,0.4127E+06,0.4143E+06,
- 0.4160E+06,0.4177E+06,0.4194E+06,0.4211E+06,0.4229E+06,0.4246E+06,0.4263E+06,
- 0.4280E+06,0.4298E+06,0.4315E+06,0.4333E+06,0.4350E+06,0.4368E+06,0.4385E+06,
- 0.4403E+06,0.4421E+06,0.4439E+06,0.4456E+06,0.4478E+06,0.4500E+06,0.4521E+06,
- 0.4543E+06,0.4565E+06,0.4587E+06,0.4609E+06,0.4631E+06,0.4653E+06,0.4675E+06,
- 0.4697E+06,0.4720E+06,0.4742E+06,0.4765E+06,0.4787E+06,0.4810E+06,0.4833E+06,
- 0.4856E+06,0.4879E+06,0.5099E+06,0.5302E+06,0.5510E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1446E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.7357E+01,
- 0.7217E+01,0.7084E+01,0.7019E+01,0.6957E+01,0.6895E+01,0.6835E+01,0.6777E+01,
- 0.6719E+01,0.6663E+01,0.6608E+01,0.6554E+01,0.6501E+01,0.6449E+01,0.6397E+01,
- 0.6347E+01,0.6298E+01,0.6250E+01,0.6202E+01,0.6156E+01,0.6110E+01,0.6065E+01,
- 0.6020E+01,0.5977E+01,0.5934E+01,0.5892E+01,0.5850E+01,0.5809E+01,0.5769E+01,
- 0.5729E+01,0.5690E+01,0.5652E+01,0.5614E+01,0.5569E+01,0.5525E+01,0.5482E+01,
- 0.5440E+01,0.5398E+01,0.5357E+01,0.5317E+01,0.5277E+01,0.5238E+01,0.5200E+01,
- 0.5162E+01,0.5125E+01,0.5088E+01,0.5052E+01,0.5017E+01,0.4982E+01,0.4947E+01,
- 0.4913E+01,0.4880E+01,0.4588E+01,0.4357E+01,0.4148E+01;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1708E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.3902E+06,0.3936E+06,0.3953E+06,0.3969E+06,0.3986E+06,0.4003E+06,0.4020E+06,
- 0.4036E+06,0.4053E+06,0.4070E+06,0.4087E+06,0.4104E+06,0.4121E+06,0.4138E+06,
- 0.4155E+06,0.4172E+06,0.4189E+06,0.4206E+06,0.4224E+06,0.4241E+06,0.4258E+06,
- 0.4276E+06,0.4293E+06,0.4311E+06,0.4328E+06,0.4346E+06,0.4363E+06,0.4381E+06,
- 0.4399E+06,0.4417E+06,0.4435E+06,0.4453E+06,0.4474E+06,0.4496E+06,0.4517E+06,
- 0.4539E+06,0.4561E+06,0.4583E+06,0.4605E+06,0.4627E+06,0.4650E+06,0.4672E+06,
- 0.4694E+06,0.4717E+06,0.4739E+06,0.4762E+06,0.4785E+06,0.4807E+06,0.4830E+06,
- 0.4853E+06,0.4876E+06,0.5096E+06,0.5300E+06,0.5509E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1708E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.8617E+01,0.8451E+01,0.8371E+01,0.8294E+01,0.8218E+01,0.8144E+01,0.8072E+01,
- 0.8001E+01,0.7932E+01,0.7865E+01,0.7798E+01,0.7734E+01,0.7670E+01,0.7608E+01,
- 0.7547E+01,0.7487E+01,0.7428E+01,0.7370E+01,0.7314E+01,0.7258E+01,0.7204E+01,
- 0.7150E+01,0.7097E+01,0.7045E+01,0.6994E+01,0.6944E+01,0.6895E+01,0.6846E+01,
- 0.6798E+01,0.6751E+01,0.6705E+01,0.6659E+01,0.6605E+01,0.6553E+01,0.6501E+01,
- 0.6450E+01,0.6400E+01,0.6351E+01,0.6302E+01,0.6255E+01,0.6208E+01,0.6162E+01,
- 0.6117E+01,0.6072E+01,0.6028E+01,0.5985E+01,0.5943E+01,0.5901E+01,0.5859E+01,
- 0.5819E+01,0.5779E+01,0.5431E+01,0.5155E+01,0.4907E+01;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2006E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.3927E+06,0.3944E+06,0.3961E+06,0.3978E+06,0.3995E+06,0.4012E+06,
- 0.4029E+06,0.4046E+06,0.4063E+06,0.4080E+06,0.4097E+06,0.4114E+06,0.4131E+06,
- 0.4149E+06,0.4166E+06,0.4183E+06,0.4200E+06,0.4218E+06,0.4235E+06,0.4253E+06,
- 0.4270E+06,0.4288E+06,0.4305E+06,0.4323E+06,0.4341E+06,0.4359E+06,0.4376E+06,
- 0.4394E+06,0.4412E+06,0.4430E+06,0.4448E+06,0.4470E+06,0.4492E+06,0.4513E+06,
- 0.4535E+06,0.4557E+06,0.4579E+06,0.4601E+06,0.4624E+06,0.4646E+06,0.4668E+06,
- 0.4691E+06,0.4713E+06,0.4736E+06,0.4759E+06,0.4781E+06,0.4804E+06,0.4827E+06,
- 0.4850E+06,0.4873E+06,0.5094E+06,0.5297E+06,0.5506E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2006E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.1004E+02,0.9942E+01,0.9846E+01,0.9752E+01,0.9661E+01,0.9572E+01,
- 0.9485E+01,0.9400E+01,0.9317E+01,0.9236E+01,0.9157E+01,0.9080E+01,0.9004E+01,
- 0.8930E+01,0.8857E+01,0.8785E+01,0.8715E+01,0.8647E+01,0.8579E+01,0.8513E+01,
- 0.8448E+01,0.8385E+01,0.8322E+01,0.8261E+01,0.8200E+01,0.8141E+01,0.8082E+01,
- 0.8025E+01,0.7968E+01,0.7912E+01,0.7858E+01,0.7793E+01,0.7730E+01,0.7668E+01,
- 0.7607E+01,0.7547E+01,0.7488E+01,0.7430E+01,0.7373E+01,0.7318E+01,0.7263E+01,
- 0.7209E+01,0.7155E+01,0.7103E+01,0.7052E+01,0.7001E+01,0.6951E+01,0.6902E+01,
- 0.6853E+01,0.6806E+01,0.6392E+01,0.6065E+01,0.5772E+01;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2169E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.3939E+06,0.3956E+06,0.3973E+06,0.3990E+06,0.4007E+06,
- 0.4025E+06,0.4042E+06,0.4059E+06,0.4076E+06,0.4093E+06,0.4111E+06,0.4128E+06,
- 0.4145E+06,0.4162E+06,0.4180E+06,0.4197E+06,0.4215E+06,0.4232E+06,0.4250E+06,
- 0.4267E+06,0.4285E+06,0.4303E+06,0.4320E+06,0.4338E+06,0.4356E+06,0.4374E+06,
- 0.4392E+06,0.4410E+06,0.4428E+06,0.4446E+06,0.4467E+06,0.4489E+06,0.4511E+06,
- 0.4533E+06,0.4555E+06,0.4577E+06,0.4599E+06,0.4621E+06,0.4644E+06,0.4666E+06,
- 0.4689E+06,0.4711E+06,0.4734E+06,0.4757E+06,0.4779E+06,0.4802E+06,0.4825E+06,
- 0.4848E+06,0.4872E+06,0.5092E+06,0.5296E+06,0.5505E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2169E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.1082E+02,0.1071E+02,0.1061E+02,0.1051E+02,0.1041E+02,
- 0.1031E+02,0.1022E+02,0.1013E+02,0.1004E+02,0.9948E+01,0.9863E+01,0.9779E+01,
- 0.9697E+01,0.9617E+01,0.9538E+01,0.9461E+01,0.9386E+01,0.9311E+01,0.9239E+01,
- 0.9167E+01,0.9097E+01,0.9029E+01,0.8961E+01,0.8895E+01,0.8830E+01,0.8766E+01,
- 0.8703E+01,0.8641E+01,0.8580E+01,0.8520E+01,0.8449E+01,0.8380E+01,0.8312E+01,
- 0.8245E+01,0.8180E+01,0.8116E+01,0.8053E+01,0.7990E+01,0.7929E+01,0.7869E+01,
- 0.7810E+01,0.7752E+01,0.7695E+01,0.7639E+01,0.7584E+01,0.7530E+01,0.7476E+01,
- 0.7423E+01,0.7371E+01,0.6921E+01,0.6566E+01,0.6247E+01;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2343E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.3951E+06,0.3968E+06,0.3985E+06,0.4003E+06,
- 0.4020E+06,0.4037E+06,0.4055E+06,0.4072E+06,0.4089E+06,0.4107E+06,0.4124E+06,
- 0.4141E+06,0.4159E+06,0.4176E+06,0.4194E+06,0.4211E+06,0.4229E+06,0.4246E+06,
- 0.4264E+06,0.4282E+06,0.4300E+06,0.4317E+06,0.4335E+06,0.4353E+06,0.4371E+06,
- 0.4389E+06,0.4407E+06,0.4425E+06,0.4443E+06,0.4465E+06,0.4487E+06,0.4509E+06,
- 0.4531E+06,0.4553E+06,0.4575E+06,0.4597E+06,0.4619E+06,0.4642E+06,0.4664E+06,
- 0.4687E+06,0.4709E+06,0.4732E+06,0.4755E+06,0.4778E+06,0.4800E+06,0.4823E+06,
- 0.4847E+06,0.4870E+06,0.5091E+06,0.5295E+06,0.5504E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2343E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.1165E+02,0.1153E+02,0.1142E+02,0.1131E+02,
- 0.1120E+02,0.1109E+02,0.1099E+02,0.1089E+02,0.1080E+02,0.1070E+02,0.1061E+02,
- 0.1052E+02,0.1043E+02,0.1034E+02,0.1026E+02,0.1018E+02,0.1009E+02,0.1002E+02,
- 0.9937E+01,0.9860E+01,0.9784E+01,0.9710E+01,0.9638E+01,0.9566E+01,0.9496E+01,
- 0.9427E+01,0.9359E+01,0.9292E+01,0.9227E+01,0.9150E+01,0.9074E+01,0.9000E+01,
- 0.8927E+01,0.8855E+01,0.8785E+01,0.8716E+01,0.8649E+01,0.8582E+01,0.8517E+01,
- 0.8452E+01,0.8389E+01,0.8327E+01,0.8266E+01,0.8206E+01,0.8146E+01,0.8088E+01,
- 0.8031E+01,0.7974E+01,0.7485E+01,0.7099E+01,0.6753E+01;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2527E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.3963E+06,0.3980E+06,0.3998E+06,
- 0.4015E+06,0.4033E+06,0.4050E+06,0.4067E+06,0.4085E+06,0.4102E+06,0.4120E+06,
- 0.4137E+06,0.4155E+06,0.4172E+06,0.4190E+06,0.4208E+06,0.4225E+06,0.4243E+06,
- 0.4261E+06,0.4278E+06,0.4296E+06,0.4314E+06,0.4332E+06,0.4350E+06,0.4368E+06,
- 0.4386E+06,0.4404E+06,0.4422E+06,0.4440E+06,0.4462E+06,0.4484E+06,0.4506E+06,
- 0.4528E+06,0.4550E+06,0.4572E+06,0.4595E+06,0.4617E+06,0.4639E+06,0.4662E+06,
- 0.4684E+06,0.4707E+06,0.4730E+06,0.4753E+06,0.4775E+06,0.4798E+06,0.4822E+06,
- 0.4845E+06,0.4868E+06,0.5089E+06,0.5293E+06,0.5503E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2527E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.1252E+02,0.1239E+02,0.1227E+02,
- 0.1215E+02,0.1204E+02,0.1192E+02,0.1181E+02,0.1171E+02,0.1160E+02,0.1150E+02,
- 0.1140E+02,0.1130E+02,0.1121E+02,0.1111E+02,0.1102E+02,0.1093E+02,0.1085E+02,
- 0.1076E+02,0.1067E+02,0.1059E+02,0.1051E+02,0.1043E+02,0.1035E+02,0.1028E+02,
- 0.1020E+02,0.1013E+02,0.1005E+02,0.9981E+01,0.9897E+01,0.9814E+01,0.9733E+01,
- 0.9654E+01,0.9576E+01,0.9499E+01,0.9424E+01,0.9350E+01,0.9278E+01,0.9206E+01,
- 0.9136E+01,0.9067E+01,0.9000E+01,0.8933E+01,0.8868E+01,0.8803E+01,0.8740E+01,
- 0.8677E+01,0.8616E+01,0.8084E+01,0.7665E+01,0.7290E+01;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2722E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.3974E+06,0.3992E+06,
- 0.4010E+06,0.4027E+06,0.4045E+06,0.4063E+06,0.4080E+06,0.4098E+06,0.4115E+06,
- 0.4133E+06,0.4151E+06,0.4168E+06,0.4186E+06,0.4204E+06,0.4221E+06,0.4239E+06,
- 0.4257E+06,0.4275E+06,0.4293E+06,0.4311E+06,0.4329E+06,0.4347E+06,0.4365E+06,
- 0.4383E+06,0.4401E+06,0.4419E+06,0.4437E+06,0.4459E+06,0.4481E+06,0.4503E+06,
- 0.4525E+06,0.4547E+06,0.4570E+06,0.4592E+06,0.4614E+06,0.4637E+06,0.4659E+06,
- 0.4682E+06,0.4705E+06,0.4727E+06,0.4750E+06,0.4773E+06,0.4796E+06,0.4819E+06,
- 0.4843E+06,0.4866E+06,0.5087E+06,0.5292E+06,0.5502E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2722E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.1345E+02,0.1331E+02,
- 0.1318E+02,0.1305E+02,0.1292E+02,0.1280E+02,0.1268E+02,0.1257E+02,0.1245E+02,
- 0.1234E+02,0.1224E+02,0.1213E+02,0.1203E+02,0.1193E+02,0.1183E+02,0.1173E+02,
- 0.1164E+02,0.1155E+02,0.1145E+02,0.1137E+02,0.1128E+02,0.1119E+02,0.1111E+02,
- 0.1103E+02,0.1094E+02,0.1086E+02,0.1079E+02,0.1069E+02,0.1060E+02,0.1052E+02,
- 0.1043E+02,0.1034E+02,0.1026E+02,0.1018E+02,0.1010E+02,0.1002E+02,0.9940E+01,
- 0.9864E+01,0.9789E+01,0.9716E+01,0.9643E+01,0.9572E+01,0.9502E+01,0.9433E+01,
- 0.9365E+01,0.9298E+01,0.8721E+01,0.8267E+01,0.7861E+01;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2928E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.3986E+06,
- 0.4004E+06,0.4022E+06,0.4040E+06,0.4057E+06,0.4075E+06,0.4093E+06,0.4111E+06,
- 0.4128E+06,0.4146E+06,0.4164E+06,0.4182E+06,0.4200E+06,0.4217E+06,0.4235E+06,
- 0.4253E+06,0.4271E+06,0.4289E+06,0.4307E+06,0.4325E+06,0.4343E+06,0.4361E+06,
- 0.4379E+06,0.4398E+06,0.4416E+06,0.4434E+06,0.4456E+06,0.4478E+06,0.4500E+06,
- 0.4522E+06,0.4545E+06,0.4567E+06,0.4589E+06,0.4612E+06,0.4634E+06,0.4657E+06,
- 0.4679E+06,0.4702E+06,0.4725E+06,0.4748E+06,0.4771E+06,0.4794E+06,0.4817E+06,
- 0.4840E+06,0.4864E+06,0.5086E+06,0.5290E+06,0.5500E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2928E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.1443E+02,
- 0.1428E+02,0.1414E+02,0.1400E+02,0.1386E+02,0.1373E+02,0.1360E+02,0.1348E+02,
- 0.1335E+02,0.1324E+02,0.1312E+02,0.1301E+02,0.1290E+02,0.1279E+02,0.1268E+02,
- 0.1258E+02,0.1248E+02,0.1238E+02,0.1228E+02,0.1218E+02,0.1209E+02,0.1200E+02,
- 0.1191E+02,0.1182E+02,0.1173E+02,0.1164E+02,0.1154E+02,0.1144E+02,0.1135E+02,
- 0.1125E+02,0.1116E+02,0.1107E+02,0.1098E+02,0.1089E+02,0.1081E+02,0.1072E+02,
- 0.1064E+02,0.1056E+02,0.1048E+02,0.1040E+02,0.1032E+02,0.1024E+02,0.1017E+02,
- 0.1010E+02,0.1002E+02,0.9397E+01,0.8905E+01,0.8466E+01;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3146E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.3998E+06,0.4016E+06,0.4034E+06,0.4052E+06,0.4070E+06,0.4088E+06,0.4106E+06,
- 0.4123E+06,0.4141E+06,0.4159E+06,0.4177E+06,0.4195E+06,0.4213E+06,0.4231E+06,
- 0.4249E+06,0.4267E+06,0.4285E+06,0.4303E+06,0.4321E+06,0.4339E+06,0.4358E+06,
- 0.4376E+06,0.4394E+06,0.4412E+06,0.4431E+06,0.4453E+06,0.4475E+06,0.4497E+06,
- 0.4519E+06,0.4542E+06,0.4564E+06,0.4586E+06,0.4609E+06,0.4631E+06,0.4654E+06,
- 0.4677E+06,0.4700E+06,0.4723E+06,0.4745E+06,0.4768E+06,0.4792E+06,0.4815E+06,
- 0.4838E+06,0.4861E+06,0.5084E+06,0.5288E+06,0.5499E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3146E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.1546E+02,0.1530E+02,0.1515E+02,0.1500E+02,0.1485E+02,0.1471E+02,0.1457E+02,
- 0.1444E+02,0.1431E+02,0.1418E+02,0.1405E+02,0.1393E+02,0.1381E+02,0.1369E+02,
- 0.1358E+02,0.1347E+02,0.1336E+02,0.1325E+02,0.1315E+02,0.1304E+02,0.1294E+02,
- 0.1284E+02,0.1275E+02,0.1265E+02,0.1256E+02,0.1245E+02,0.1234E+02,0.1223E+02,
- 0.1213E+02,0.1203E+02,0.1193E+02,0.1183E+02,0.1174E+02,0.1164E+02,0.1155E+02,
- 0.1146E+02,0.1137E+02,0.1129E+02,0.1120E+02,0.1112E+02,0.1103E+02,0.1095E+02,
- 0.1087E+02,0.1079E+02,0.1011E+02,0.9582E+01,0.9108E+01;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3377E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.4009E+06,0.4027E+06,0.4046E+06,0.4064E+06,0.4082E+06,0.4100E+06,
- 0.4118E+06,0.4136E+06,0.4154E+06,0.4172E+06,0.4190E+06,0.4208E+06,0.4226E+06,
- 0.4245E+06,0.4263E+06,0.4281E+06,0.4299E+06,0.4317E+06,0.4335E+06,0.4354E+06,
- 0.4372E+06,0.4390E+06,0.4409E+06,0.4427E+06,0.4449E+06,0.4471E+06,0.4494E+06,
- 0.4516E+06,0.4538E+06,0.4561E+06,0.4583E+06,0.4606E+06,0.4629E+06,0.4651E+06,
- 0.4674E+06,0.4697E+06,0.4720E+06,0.4743E+06,0.4766E+06,0.4789E+06,0.4812E+06,
- 0.4836E+06,0.4859E+06,0.5082E+06,0.5286E+06,0.5497E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3377E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.1656E+02,0.1639E+02,0.1622E+02,0.1606E+02,0.1590E+02,0.1574E+02,
- 0.1560E+02,0.1545E+02,0.1531E+02,0.1517E+02,0.1504E+02,0.1490E+02,0.1478E+02,
- 0.1465E+02,0.1453E+02,0.1441E+02,0.1429E+02,0.1417E+02,0.1406E+02,0.1395E+02,
- 0.1384E+02,0.1374E+02,0.1363E+02,0.1353E+02,0.1341E+02,0.1329E+02,0.1318E+02,
- 0.1306E+02,0.1295E+02,0.1285E+02,0.1274E+02,0.1264E+02,0.1253E+02,0.1243E+02,
- 0.1234E+02,0.1224E+02,0.1214E+02,0.1205E+02,0.1196E+02,0.1187E+02,0.1178E+02,
- 0.1170E+02,0.1161E+02,0.1087E+02,0.1030E+02,0.9787E+01;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3620E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.4021E+06,0.4039E+06,0.4057E+06,0.4076E+06,0.4094E+06,
- 0.4112E+06,0.4131E+06,0.4149E+06,0.4167E+06,0.4185E+06,0.4203E+06,0.4222E+06,
- 0.4240E+06,0.4258E+06,0.4276E+06,0.4295E+06,0.4313E+06,0.4331E+06,0.4350E+06,
- 0.4368E+06,0.4386E+06,0.4405E+06,0.4423E+06,0.4446E+06,0.4468E+06,0.4490E+06,
- 0.4513E+06,0.4535E+06,0.4557E+06,0.4580E+06,0.4603E+06,0.4625E+06,0.4648E+06,
- 0.4671E+06,0.4694E+06,0.4717E+06,0.4740E+06,0.4763E+06,0.4786E+06,0.4810E+06,
- 0.4833E+06,0.4856E+06,0.5079E+06,0.5285E+06,0.5495E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3620E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.1772E+02,0.1753E+02,0.1735E+02,0.1717E+02,0.1700E+02,
- 0.1684E+02,0.1667E+02,0.1652E+02,0.1637E+02,0.1622E+02,0.1607E+02,0.1593E+02,
- 0.1579E+02,0.1566E+02,0.1553E+02,0.1540E+02,0.1527E+02,0.1515E+02,0.1503E+02,
- 0.1491E+02,0.1479E+02,0.1468E+02,0.1456E+02,0.1443E+02,0.1431E+02,0.1418E+02,
- 0.1406E+02,0.1394E+02,0.1382E+02,0.1370E+02,0.1359E+02,0.1348E+02,0.1337E+02,
- 0.1326E+02,0.1316E+02,0.1306E+02,0.1296E+02,0.1286E+02,0.1276E+02,0.1266E+02,
- 0.1257E+02,0.1248E+02,0.1168E+02,0.1106E+02,0.1051E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3876E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.4032E+06,0.4051E+06,0.4069E+06,0.4088E+06,
- 0.4106E+06,0.4125E+06,0.4143E+06,0.4161E+06,0.4180E+06,0.4198E+06,0.4216E+06,
- 0.4235E+06,0.4253E+06,0.4271E+06,0.4290E+06,0.4308E+06,0.4327E+06,0.4345E+06,
- 0.4364E+06,0.4382E+06,0.4401E+06,0.4419E+06,0.4442E+06,0.4464E+06,0.4486E+06,
- 0.4509E+06,0.4531E+06,0.4554E+06,0.4577E+06,0.4599E+06,0.4622E+06,0.4645E+06,
- 0.4668E+06,0.4691E+06,0.4714E+06,0.4737E+06,0.4760E+06,0.4783E+06,0.4807E+06,
- 0.4830E+06,0.4854E+06,0.5077E+06,0.5282E+06,0.5493E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3876E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.1894E+02,0.1873E+02,0.1854E+02,0.1835E+02,
- 0.1816E+02,0.1799E+02,0.1781E+02,0.1764E+02,0.1748E+02,0.1732E+02,0.1716E+02,
- 0.1701E+02,0.1686E+02,0.1672E+02,0.1658E+02,0.1644E+02,0.1630E+02,0.1617E+02,
- 0.1604E+02,0.1591E+02,0.1579E+02,0.1567E+02,0.1552E+02,0.1538E+02,0.1525E+02,
- 0.1511E+02,0.1498E+02,0.1485E+02,0.1473E+02,0.1460E+02,0.1448E+02,0.1436E+02,
- 0.1425E+02,0.1413E+02,0.1402E+02,0.1391E+02,0.1381E+02,0.1370E+02,0.1360E+02,
- 0.1349E+02,0.1339E+02,0.1253E+02,0.1186E+02,0.1126E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.4146E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.4043E+06,0.4062E+06,0.4081E+06,
- 0.4099E+06,0.4118E+06,0.4137E+06,0.4155E+06,0.4174E+06,0.4192E+06,0.4211E+06,
- 0.4229E+06,0.4248E+06,0.4266E+06,0.4285E+06,0.4303E+06,0.4322E+06,0.4340E+06,
- 0.4359E+06,0.4378E+06,0.4396E+06,0.4415E+06,0.4437E+06,0.4460E+06,0.4482E+06,
- 0.4505E+06,0.4528E+06,0.4550E+06,0.4573E+06,0.4596E+06,0.4619E+06,0.4641E+06,
- 0.4664E+06,0.4687E+06,0.4711E+06,0.4734E+06,0.4757E+06,0.4780E+06,0.4804E+06,
- 0.4827E+06,0.4851E+06,0.5075E+06,0.5280E+06,0.5492E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.4146E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.2023E+02,0.2001E+02,0.1979E+02,
- 0.1959E+02,0.1939E+02,0.1920E+02,0.1901E+02,0.1883E+02,0.1865E+02,0.1848E+02,
- 0.1831E+02,0.1815E+02,0.1799E+02,0.1783E+02,0.1768E+02,0.1753E+02,0.1739E+02,
- 0.1725E+02,0.1711E+02,0.1697E+02,0.1684E+02,0.1668E+02,0.1653E+02,0.1638E+02,
- 0.1623E+02,0.1609E+02,0.1595E+02,0.1581E+02,0.1568E+02,0.1555E+02,0.1542E+02,
- 0.1529E+02,0.1517E+02,0.1505E+02,0.1493E+02,0.1481E+02,0.1470E+02,0.1459E+02,
- 0.1448E+02,0.1437E+02,0.1343E+02,0.1271E+02,0.1207E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.4430E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.4054E+06,0.4073E+06,
- 0.4092E+06,0.4111E+06,0.4130E+06,0.4149E+06,0.4167E+06,0.4186E+06,0.4205E+06,
- 0.4223E+06,0.4242E+06,0.4261E+06,0.4279E+06,0.4298E+06,0.4317E+06,0.4335E+06,
- 0.4354E+06,0.4373E+06,0.4392E+06,0.4410E+06,0.4433E+06,0.4456E+06,0.4478E+06,
- 0.4501E+06,0.4523E+06,0.4546E+06,0.4569E+06,0.4592E+06,0.4615E+06,0.4638E+06,
- 0.4661E+06,0.4684E+06,0.4707E+06,0.4730E+06,0.4754E+06,0.4777E+06,0.4801E+06,
- 0.4824E+06,0.4848E+06,0.5072E+06,0.5278E+06,0.5490E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.4430E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.2158E+02,0.2135E+02,
- 0.2112E+02,0.2090E+02,0.2068E+02,0.2047E+02,0.2027E+02,0.2008E+02,0.1989E+02,
- 0.1970E+02,0.1952E+02,0.1935E+02,0.1917E+02,0.1901E+02,0.1884E+02,0.1868E+02,
- 0.1853E+02,0.1838E+02,0.1823E+02,0.1808E+02,0.1791E+02,0.1774E+02,0.1758E+02,
- 0.1742E+02,0.1727E+02,0.1711E+02,0.1696E+02,0.1682E+02,0.1668E+02,0.1654E+02,
- 0.1640E+02,0.1627E+02,0.1613E+02,0.1600E+02,0.1588E+02,0.1575E+02,0.1563E+02,
- 0.1551E+02,0.1540E+02,0.1439E+02,0.1361E+02,0.1291E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.4729E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.4065E+06,
- 0.4085E+06,0.4104E+06,0.4123E+06,0.4142E+06,0.4161E+06,0.4180E+06,0.4198E+06,
- 0.4217E+06,0.4236E+06,0.4255E+06,0.4274E+06,0.4293E+06,0.4311E+06,0.4330E+06,
- 0.4349E+06,0.4368E+06,0.4387E+06,0.4406E+06,0.4428E+06,0.4451E+06,0.4474E+06,
- 0.4496E+06,0.4519E+06,0.4542E+06,0.4565E+06,0.4588E+06,0.4611E+06,0.4634E+06,
- 0.4657E+06,0.4680E+06,0.4704E+06,0.4727E+06,0.4750E+06,0.4774E+06,0.4797E+06,
- 0.4821E+06,0.4844E+06,0.5069E+06,0.5276E+06,0.5487E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.4729E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.2301E+02,
- 0.2276E+02,0.2251E+02,0.2227E+02,0.2204E+02,0.2182E+02,0.2160E+02,0.2139E+02,
- 0.2119E+02,0.2099E+02,0.2079E+02,0.2060E+02,0.2042E+02,0.2024E+02,0.2007E+02,
- 0.1989E+02,0.1973E+02,0.1956E+02,0.1940E+02,0.1922E+02,0.1903E+02,0.1886E+02,
- 0.1868E+02,0.1851E+02,0.1835E+02,0.1819E+02,0.1803E+02,0.1787E+02,0.1772E+02,
- 0.1757E+02,0.1743E+02,0.1728E+02,0.1714E+02,0.1701E+02,0.1687E+02,0.1674E+02,
- 0.1661E+02,0.1648E+02,0.1539E+02,0.1455E+02,0.1381E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.5043E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.4076E+06,0.4096E+06,0.4115E+06,0.4134E+06,0.4153E+06,0.4173E+06,0.4192E+06,
- 0.4211E+06,0.4230E+06,0.4249E+06,0.4268E+06,0.4287E+06,0.4306E+06,0.4324E+06,
- 0.4343E+06,0.4362E+06,0.4381E+06,0.4400E+06,0.4423E+06,0.4446E+06,0.4469E+06,
- 0.4492E+06,0.4515E+06,0.4538E+06,0.4561E+06,0.4584E+06,0.4607E+06,0.4630E+06,
- 0.4653E+06,0.4676E+06,0.4700E+06,0.4723E+06,0.4747E+06,0.4770E+06,0.4794E+06,
- 0.4817E+06,0.4841E+06,0.5066E+06,0.5273E+06,0.5485E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.5043E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.2452E+02,0.2424E+02,0.2398E+02,0.2372E+02,0.2347E+02,0.2323E+02,0.2300E+02,
- 0.2277E+02,0.2255E+02,0.2234E+02,0.2213E+02,0.2193E+02,0.2173E+02,0.2154E+02,
- 0.2135E+02,0.2116E+02,0.2099E+02,0.2081E+02,0.2061E+02,0.2041E+02,0.2021E+02,
- 0.2002E+02,0.1984E+02,0.1966E+02,0.1948E+02,0.1931E+02,0.1914E+02,0.1898E+02,
- 0.1881E+02,0.1866E+02,0.1850E+02,0.1835E+02,0.1820E+02,0.1805E+02,0.1791E+02,
- 0.1777E+02,0.1763E+02,0.1646E+02,0.1555E+02,0.1475E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.5372E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.4087E+06,0.4107E+06,0.4126E+06,0.4146E+06,0.4165E+06,0.4184E+06,
- 0.4204E+06,0.4223E+06,0.4242E+06,0.4261E+06,0.4280E+06,0.4299E+06,0.4318E+06,
- 0.4338E+06,0.4357E+06,0.4376E+06,0.4395E+06,0.4418E+06,0.4441E+06,0.4464E+06,
- 0.4487E+06,0.4510E+06,0.4533E+06,0.4556E+06,0.4579E+06,0.4602E+06,0.4626E+06,
- 0.4649E+06,0.4672E+06,0.4696E+06,0.4719E+06,0.4743E+06,0.4766E+06,0.4790E+06,
- 0.4814E+06,0.4837E+06,0.5063E+06,0.5271E+06,0.5483E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.5372E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.2611E+02,0.2581E+02,0.2552E+02,0.2524E+02,0.2497E+02,0.2472E+02,
- 0.2446E+02,0.2422E+02,0.2398E+02,0.2375E+02,0.2353E+02,0.2331E+02,0.2310E+02,
- 0.2290E+02,0.2269E+02,0.2250E+02,0.2231E+02,0.2208E+02,0.2186E+02,0.2165E+02,
- 0.2144E+02,0.2124E+02,0.2105E+02,0.2085E+02,0.2067E+02,0.2048E+02,0.2030E+02,
- 0.2013E+02,0.1996E+02,0.1979E+02,0.1962E+02,0.1946E+02,0.1931E+02,0.1915E+02,
- 0.1900E+02,0.1885E+02,0.1758E+02,0.1660E+02,0.1574E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.5717E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.4097E+06,0.4117E+06,0.4137E+06,0.4157E+06,0.4176E+06,
- 0.4196E+06,0.4215E+06,0.4235E+06,0.4254E+06,0.4273E+06,0.4293E+06,0.4312E+06,
- 0.4331E+06,0.4351E+06,0.4370E+06,0.4389E+06,0.4412E+06,0.4435E+06,0.4458E+06,
- 0.4481E+06,0.4505E+06,0.4528E+06,0.4551E+06,0.4574E+06,0.4598E+06,0.4621E+06,
- 0.4644E+06,0.4668E+06,0.4691E+06,0.4715E+06,0.4739E+06,0.4762E+06,0.4786E+06,
- 0.4810E+06,0.4834E+06,0.5060E+06,0.5268E+06,0.5480E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.5717E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.2778E+02,0.2746E+02,0.2714E+02,0.2684E+02,0.2656E+02,
- 0.2628E+02,0.2601E+02,0.2574E+02,0.2549E+02,0.2524E+02,0.2500E+02,0.2477E+02,
- 0.2454E+02,0.2432E+02,0.2411E+02,0.2390E+02,0.2365E+02,0.2341E+02,0.2318E+02,
- 0.2295E+02,0.2273E+02,0.2252E+02,0.2231E+02,0.2211E+02,0.2191E+02,0.2171E+02,
- 0.2152E+02,0.2133E+02,0.2115E+02,0.2097E+02,0.2080E+02,0.2063E+02,0.2046E+02,
- 0.2029E+02,0.2013E+02,0.1876E+02,0.1771E+02,0.1678E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.6079E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.4108E+06,0.4128E+06,0.4148E+06,0.4168E+06,
- 0.4188E+06,0.4208E+06,0.4227E+06,0.4247E+06,0.4266E+06,0.4286E+06,0.4305E+06,
- 0.4325E+06,0.4344E+06,0.4363E+06,0.4383E+06,0.4406E+06,0.4429E+06,0.4453E+06,
- 0.4476E+06,0.4499E+06,0.4523E+06,0.4546E+06,0.4569E+06,0.4593E+06,0.4616E+06,
- 0.4640E+06,0.4663E+06,0.4687E+06,0.4711E+06,0.4734E+06,0.4758E+06,0.4782E+06,
- 0.4806E+06,0.4830E+06,0.5057E+06,0.5265E+06,0.5478E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.6079E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.2954E+02,0.2919E+02,0.2885E+02,0.2853E+02,
- 0.2822E+02,0.2792E+02,0.2762E+02,0.2734E+02,0.2707E+02,0.2681E+02,0.2655E+02,
- 0.2630E+02,0.2605E+02,0.2582E+02,0.2559E+02,0.2532E+02,0.2506E+02,0.2480E+02,
- 0.2455E+02,0.2431E+02,0.2408E+02,0.2385E+02,0.2363E+02,0.2341E+02,0.2320E+02,
- 0.2299E+02,0.2279E+02,0.2259E+02,0.2240E+02,0.2221E+02,0.2202E+02,0.2184E+02,
- 0.2166E+02,0.2149E+02,0.2001E+02,0.1888E+02,0.1788E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.6458E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.4118E+06,0.4139E+06,0.4159E+06,
- 0.4179E+06,0.4199E+06,0.4219E+06,0.4239E+06,0.4259E+06,0.4278E+06,0.4298E+06,
- 0.4318E+06,0.4337E+06,0.4357E+06,0.4376E+06,0.4400E+06,0.4423E+06,0.4447E+06,
- 0.4470E+06,0.4493E+06,0.4517E+06,0.4540E+06,0.4564E+06,0.4588E+06,0.4611E+06,
- 0.4635E+06,0.4658E+06,0.4682E+06,0.4706E+06,0.4730E+06,0.4754E+06,0.4777E+06,
- 0.4801E+06,0.4826E+06,0.5053E+06,0.5262E+06,0.5475E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.6458E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.3139E+02,0.3101E+02,0.3065E+02,
- 0.3030E+02,0.2996E+02,0.2964E+02,0.2932E+02,0.2902E+02,0.2873E+02,0.2844E+02,
- 0.2817E+02,0.2790E+02,0.2764E+02,0.2738E+02,0.2709E+02,0.2680E+02,0.2652E+02,
- 0.2625E+02,0.2599E+02,0.2574E+02,0.2549E+02,0.2524E+02,0.2501E+02,0.2478E+02,
- 0.2455E+02,0.2433E+02,0.2412E+02,0.2391E+02,0.2370E+02,0.2350E+02,0.2330E+02,
- 0.2311E+02,0.2292E+02,0.2132E+02,0.2010E+02,0.1903E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.6854E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.4128E+06,0.4149E+06,
- 0.4170E+06,0.4190E+06,0.4210E+06,0.4230E+06,0.4250E+06,0.4270E+06,0.4290E+06,
- 0.4310E+06,0.4330E+06,0.4350E+06,0.4369E+06,0.4393E+06,0.4417E+06,0.4440E+06,
- 0.4464E+06,0.4487E+06,0.4511E+06,0.4535E+06,0.4558E+06,0.4582E+06,0.4606E+06,
- 0.4629E+06,0.4653E+06,0.4677E+06,0.4701E+06,0.4725E+06,0.4749E+06,0.4773E+06,
- 0.4797E+06,0.4821E+06,0.5050E+06,0.5259E+06,0.5472E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.6854E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.3334E+02,0.3293E+02,
- 0.3253E+02,0.3216E+02,0.3179E+02,0.3145E+02,0.3111E+02,0.3078E+02,0.3047E+02,
- 0.3016E+02,0.2987E+02,0.2958E+02,0.2930E+02,0.2897E+02,0.2866E+02,0.2835E+02,
- 0.2806E+02,0.2777E+02,0.2749E+02,0.2722E+02,0.2695E+02,0.2670E+02,0.2645E+02,
- 0.2620E+02,0.2596E+02,0.2573E+02,0.2550E+02,0.2528E+02,0.2506E+02,0.2485E+02,
- 0.2464E+02,0.2443E+02,0.2271E+02,0.2139E+02,0.2025E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.7269E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.4138E+06,
- 0.4159E+06,0.4180E+06,0.4201E+06,0.4221E+06,0.4241E+06,0.4262E+06,0.4282E+06,
- 0.4302E+06,0.4322E+06,0.4342E+06,0.4362E+06,0.4386E+06,0.4410E+06,0.4433E+06,
- 0.4457E+06,0.4481E+06,0.4505E+06,0.4529E+06,0.4552E+06,0.4576E+06,0.4600E+06,
- 0.4624E+06,0.4648E+06,0.4672E+06,0.4696E+06,0.4720E+06,0.4744E+06,0.4768E+06,
- 0.4792E+06,0.4816E+06,0.5046E+06,0.5255E+06,0.5469E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.7269E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.3538E+02,
- 0.3494E+02,0.3452E+02,0.3411E+02,0.3372E+02,0.3334E+02,0.3298E+02,0.3263E+02,
- 0.3229E+02,0.3196E+02,0.3164E+02,0.3134E+02,0.3098E+02,0.3063E+02,0.3030E+02,
- 0.2997E+02,0.2966E+02,0.2935E+02,0.2906E+02,0.2877E+02,0.2849E+02,0.2821E+02,
- 0.2795E+02,0.2769E+02,0.2743E+02,0.2718E+02,0.2694E+02,0.2671E+02,0.2647E+02,
- 0.2625E+02,0.2603E+02,0.2416E+02,0.2275E+02,0.2152E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.7702E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.4148E+06,0.4169E+06,0.4190E+06,0.4211E+06,0.4232E+06,0.4252E+06,0.4273E+06,
- 0.4293E+06,0.4314E+06,0.4334E+06,0.4354E+06,0.4378E+06,0.4402E+06,0.4426E+06,
- 0.4450E+06,0.4474E+06,0.4498E+06,0.4522E+06,0.4546E+06,0.4570E+06,0.4594E+06,
- 0.4618E+06,0.4642E+06,0.4666E+06,0.4690E+06,0.4714E+06,0.4739E+06,0.4763E+06,
- 0.4787E+06,0.4811E+06,0.5042E+06,0.5252E+06,0.5466E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.7702E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.3754E+02,0.3706E+02,0.3660E+02,0.3616E+02,0.3574E+02,0.3533E+02,0.3494E+02,
- 0.3457E+02,0.3420E+02,0.3385E+02,0.3351E+02,0.3311E+02,0.3273E+02,0.3236E+02,
- 0.3201E+02,0.3166E+02,0.3133E+02,0.3100E+02,0.3069E+02,0.3038E+02,0.3008E+02,
- 0.2979E+02,0.2951E+02,0.2923E+02,0.2896E+02,0.2870E+02,0.2845E+02,0.2819E+02,
- 0.2795E+02,0.2771E+02,0.2570E+02,0.2418E+02,0.2286E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.8154E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.4158E+06,0.4179E+06,0.4201E+06,0.4222E+06,0.4243E+06,0.4263E+06,
- 0.4284E+06,0.4305E+06,0.4325E+06,0.4345E+06,0.4370E+06,0.4394E+06,0.4418E+06,
- 0.4443E+06,0.4467E+06,0.4491E+06,0.4515E+06,0.4539E+06,0.4563E+06,0.4588E+06,
- 0.4612E+06,0.4636E+06,0.4660E+06,0.4685E+06,0.4709E+06,0.4733E+06,0.4757E+06,
- 0.4782E+06,0.4806E+06,0.5037E+06,0.5248E+06,0.5463E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.8154E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.3980E+02,0.3928E+02,0.3878E+02,0.3831E+02,0.3786E+02,0.3742E+02,
- 0.3700E+02,0.3660E+02,0.3620E+02,0.3583E+02,0.3539E+02,0.3497E+02,0.3456E+02,
- 0.3417E+02,0.3379E+02,0.3343E+02,0.3307E+02,0.3272E+02,0.3239E+02,0.3206E+02,
- 0.3175E+02,0.3144E+02,0.3114E+02,0.3085E+02,0.3056E+02,0.3028E+02,0.3001E+02,
- 0.2975E+02,0.2949E+02,0.2731E+02,0.2568E+02,0.2426E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.8626E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.4167E+06,0.4189E+06,0.4211E+06,0.4232E+06,0.4253E+06,
- 0.4274E+06,0.4295E+06,0.4316E+06,0.4336E+06,0.4361E+06,0.4386E+06,0.4410E+06,
- 0.4435E+06,0.4459E+06,0.4484E+06,0.4508E+06,0.4532E+06,0.4557E+06,0.4581E+06,
- 0.4605E+06,0.4630E+06,0.4654E+06,0.4678E+06,0.4703E+06,0.4727E+06,0.4752E+06,
- 0.4776E+06,0.4801E+06,0.5033E+06,0.5244E+06,0.5459E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.8626E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.4218E+02,0.4162E+02,0.4108E+02,0.4057E+02,0.4008E+02,
- 0.3961E+02,0.3916E+02,0.3872E+02,0.3830E+02,0.3782E+02,0.3735E+02,0.3691E+02,
- 0.3647E+02,0.3606E+02,0.3565E+02,0.3526E+02,0.3488E+02,0.3452E+02,0.3416E+02,
- 0.3382E+02,0.3348E+02,0.3315E+02,0.3283E+02,0.3252E+02,0.3222E+02,0.3193E+02,
- 0.3164E+02,0.3136E+02,0.2901E+02,0.2726E+02,0.2574E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.9118E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.4176E+06,0.4199E+06,0.4220E+06,0.4242E+06,
- 0.4263E+06,0.4285E+06,0.4306E+06,0.4327E+06,0.4352E+06,0.4377E+06,0.4402E+06,
- 0.4426E+06,0.4451E+06,0.4476E+06,0.4500E+06,0.4525E+06,0.4549E+06,0.4574E+06,
- 0.4598E+06,0.4623E+06,0.4647E+06,0.4672E+06,0.4697E+06,0.4721E+06,0.4746E+06,
- 0.4770E+06,0.4795E+06,0.5028E+06,0.5240E+06,0.5456E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.9118E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.4468E+02,0.4407E+02,0.4349E+02,0.4294E+02,
- 0.4241E+02,0.4191E+02,0.4142E+02,0.4095E+02,0.4041E+02,0.3990E+02,0.3940E+02,
- 0.3892E+02,0.3846E+02,0.3802E+02,0.3759E+02,0.3718E+02,0.3677E+02,0.3639E+02,
- 0.3601E+02,0.3564E+02,0.3528E+02,0.3494E+02,0.3460E+02,0.3427E+02,0.3395E+02,
- 0.3364E+02,0.3334E+02,0.3080E+02,0.2891E+02,0.2728E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.9632E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.4185E+06,0.4208E+06,0.4230E+06,
- 0.4252E+06,0.4274E+06,0.4295E+06,0.4316E+06,0.4342E+06,0.4367E+06,0.4392E+06,
- 0.4417E+06,0.4442E+06,0.4467E+06,0.4492E+06,0.4517E+06,0.4542E+06,0.4566E+06,
- 0.4591E+06,0.4616E+06,0.4641E+06,0.4665E+06,0.4690E+06,0.4715E+06,0.4739E+06,
- 0.4764E+06,0.4789E+06,0.5023E+06,0.5235E+06,0.5452E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.9632E+06, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.4732E+02,0.4665E+02,0.4603E+02,
- 0.4543E+02,0.4486E+02,0.4431E+02,0.4379E+02,0.4319E+02,0.4261E+02,0.4206E+02,
- 0.4154E+02,0.4103E+02,0.4054E+02,0.4007E+02,0.3961E+02,0.3917E+02,0.3874E+02,
- 0.3833E+02,0.3793E+02,0.3754E+02,0.3716E+02,0.3680E+02,0.3644E+02,0.3609E+02,
- 0.3575E+02,0.3542E+02,0.3268E+02,0.3065E+02,0.2890E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1017E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.4194E+06,0.4217E+06,
- 0.4239E+06,0.4262E+06,0.4284E+06,0.4305E+06,0.4331E+06,0.4357E+06,0.4382E+06,
- 0.4408E+06,0.4433E+06,0.4458E+06,0.4483E+06,0.4508E+06,0.4533E+06,0.4558E+06,
- 0.4583E+06,0.4608E+06,0.4633E+06,0.4658E+06,0.4683E+06,0.4708E+06,0.4733E+06,
- 0.4758E+06,0.4783E+06,0.5018E+06,0.5231E+06,0.5448E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1017E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.5009E+02,0.4937E+02,
- 0.4869E+02,0.4804E+02,0.4743E+02,0.4684E+02,0.4616E+02,0.4552E+02,0.4491E+02,
- 0.4432E+02,0.4376E+02,0.4322E+02,0.4270E+02,0.4220E+02,0.4171E+02,0.4125E+02,
- 0.4079E+02,0.4035E+02,0.3993E+02,0.3952E+02,0.3912E+02,0.3873E+02,0.3835E+02,
- 0.3798E+02,0.3762E+02,0.3466E+02,0.3247E+02,0.3060E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1072E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.4203E+06,
- 0.4226E+06,0.4249E+06,0.4271E+06,0.4293E+06,0.4320E+06,0.4346E+06,0.4372E+06,
- 0.4398E+06,0.4423E+06,0.4449E+06,0.4474E+06,0.4499E+06,0.4525E+06,0.4550E+06,
- 0.4575E+06,0.4600E+06,0.4625E+06,0.4651E+06,0.4676E+06,0.4701E+06,0.4726E+06,
- 0.4751E+06,0.4776E+06,0.5012E+06,0.5226E+06,0.5444E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1072E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.5300E+02,
- 0.5222E+02,0.5148E+02,0.5078E+02,0.5012E+02,0.4936E+02,0.4864E+02,0.4796E+02,
- 0.4730E+02,0.4668E+02,0.4608E+02,0.4550E+02,0.4495E+02,0.4442E+02,0.4390E+02,
- 0.4340E+02,0.4292E+02,0.4246E+02,0.4201E+02,0.4157E+02,0.4115E+02,0.4074E+02,
- 0.4033E+02,0.3994E+02,0.3674E+02,0.3438E+02,0.3238E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1130E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.4211E+06,0.4235E+06,0.4258E+06,0.4280E+06,0.4307E+06,0.4334E+06,0.4360E+06,
- 0.4387E+06,0.4413E+06,0.4439E+06,0.4464E+06,0.4490E+06,0.4516E+06,0.4541E+06,
- 0.4566E+06,0.4592E+06,0.4617E+06,0.4643E+06,0.4668E+06,0.4693E+06,0.4718E+06,
- 0.4744E+06,0.4769E+06,0.5006E+06,0.5221E+06,0.5440E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1130E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.5606E+02,0.5522E+02,0.5442E+02,0.5366E+02,0.5280E+02,0.5199E+02,0.5122E+02,
- 0.5049E+02,0.4980E+02,0.4913E+02,0.4849E+02,0.4788E+02,0.4729E+02,0.4673E+02,
- 0.4618E+02,0.4565E+02,0.4514E+02,0.4465E+02,0.4417E+02,0.4371E+02,0.4326E+02,
- 0.4282E+02,0.4240E+02,0.3892E+02,0.3639E+02,0.3424E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1190E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.4219E+06,0.4243E+06,0.4266E+06,0.4294E+06,0.4321E+06,0.4348E+06,
- 0.4375E+06,0.4401E+06,0.4428E+06,0.4454E+06,0.4480E+06,0.4506E+06,0.4532E+06,
- 0.4557E+06,0.4583E+06,0.4609E+06,0.4634E+06,0.4660E+06,0.4685E+06,0.4711E+06,
- 0.4736E+06,0.4762E+06,0.5000E+06,0.5216E+06,0.5435E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1190E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.5929E+02,0.5837E+02,0.5750E+02,0.5653E+02,0.5561E+02,0.5474E+02,
- 0.5392E+02,0.5314E+02,0.5240E+02,0.5169E+02,0.5101E+02,0.5036E+02,0.4973E+02,
- 0.4913E+02,0.4855E+02,0.4799E+02,0.4745E+02,0.4692E+02,0.4642E+02,0.4593E+02,
- 0.4545E+02,0.4499E+02,0.4122E+02,0.3850E+02,0.3619E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1253E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.4227E+06,0.4251E+06,0.4280E+06,0.4308E+06,0.4335E+06,
- 0.4362E+06,0.4389E+06,0.4416E+06,0.4443E+06,0.4469E+06,0.4495E+06,0.4522E+06,
- 0.4548E+06,0.4573E+06,0.4599E+06,0.4625E+06,0.4651E+06,0.4677E+06,0.4702E+06,
- 0.4728E+06,0.4754E+06,0.4994E+06,0.5211E+06,0.5431E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1253E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.6269E+02,0.6169E+02,0.6056E+02,0.5952E+02,0.5853E+02,
- 0.5761E+02,0.5673E+02,0.5590E+02,0.5510E+02,0.5435E+02,0.5362E+02,0.5293E+02,
- 0.5227E+02,0.5163E+02,0.5101E+02,0.5042E+02,0.4984E+02,0.4929E+02,0.4875E+02,
- 0.4823E+02,0.4773E+02,0.4364E+02,0.4071E+02,0.3823E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1318E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.4234E+06,0.4264E+06,0.4293E+06,0.4321E+06,
- 0.4349E+06,0.4377E+06,0.4404E+06,0.4431E+06,0.4458E+06,0.4484E+06,0.4511E+06,
- 0.4537E+06,0.4563E+06,0.4590E+06,0.4616E+06,0.4642E+06,0.4668E+06,0.4694E+06,
- 0.4720E+06,0.4745E+06,0.4987E+06,0.5205E+06,0.5426E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1318E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.6627E+02,0.6497E+02,0.6376E+02,0.6264E+02,
- 0.6159E+02,0.6059E+02,0.5966E+02,0.5877E+02,0.5792E+02,0.5712E+02,0.5635E+02,
- 0.5561E+02,0.5490E+02,0.5422E+02,0.5357E+02,0.5294E+02,0.5233E+02,0.5174E+02,
- 0.5118E+02,0.5063E+02,0.4619E+02,0.4303E+02,0.4037E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1399E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.4243E+06,0.4273E+06,0.4302E+06,
- 0.4331E+06,0.4360E+06,0.4388E+06,0.4415E+06,0.4443E+06,0.4470E+06,0.4497E+06,
- 0.4524E+06,0.4551E+06,0.4577E+06,0.4604E+06,0.4630E+06,0.4656E+06,0.4683E+06,
- 0.4709E+06,0.4735E+06,0.4979E+06,0.5198E+06,0.5420E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1399E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.7081E+02,0.6936E+02,0.6803E+02,
- 0.6679E+02,0.6563E+02,0.6454E+02,0.6352E+02,0.6254E+02,0.6162E+02,0.6075E+02,
- 0.5991E+02,0.5911E+02,0.5834E+02,0.5761E+02,0.5690E+02,0.5622E+02,0.5556E+02,
- 0.5493E+02,0.5432E+02,0.4941E+02,0.4595E+02,0.4307E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1484E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.4251E+06,0.4282E+06,
- 0.4312E+06,0.4341E+06,0.4370E+06,0.4399E+06,0.4427E+06,0.4455E+06,0.4482E+06,
- 0.4510E+06,0.4537E+06,0.4564E+06,0.4591E+06,0.4618E+06,0.4644E+06,0.4671E+06,
- 0.4697E+06,0.4724E+06,0.4970E+06,0.5190E+06,0.5413E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1484E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.7565E+02,0.7404E+02,
- 0.7256E+02,0.7119E+02,0.6991E+02,0.6872E+02,0.6759E+02,0.6653E+02,0.6553E+02,
- 0.6457E+02,0.6366E+02,0.6279E+02,0.6196E+02,0.6116E+02,0.6040E+02,0.5966E+02,
- 0.5895E+02,0.5827E+02,0.5284E+02,0.4905E+02,0.4591E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1572E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.4258E+06,
- 0.4290E+06,0.4321E+06,0.4351E+06,0.4380E+06,0.4409E+06,0.4438E+06,0.4466E+06,
- 0.4494E+06,0.4522E+06,0.4550E+06,0.4577E+06,0.4604E+06,0.4631E+06,0.4658E+06,
- 0.4685E+06,0.4712E+06,0.4961E+06,0.5183E+06,0.5406E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1572E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.8082E+02,
- 0.7902E+02,0.7737E+02,0.7586E+02,0.7445E+02,0.7313E+02,0.7190E+02,0.7074E+02,
- 0.6964E+02,0.6860E+02,0.6761E+02,0.6667E+02,0.6577E+02,0.6490E+02,0.6407E+02,
- 0.6328E+02,0.6251E+02,0.5649E+02,0.5233E+02,0.4891E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1665E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.4265E+06,0.4298E+06,0.4329E+06,0.4360E+06,0.4390E+06,0.4419E+06,0.4449E+06,
- 0.4477E+06,0.4506E+06,0.4534E+06,0.4562E+06,0.4590E+06,0.4617E+06,0.4645E+06,
- 0.4672E+06,0.4699E+06,0.4951E+06,0.5174E+06,0.5399E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1665E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.8635E+02,0.8433E+02,0.8250E+02,0.8081E+02,0.7926E+02,0.7781E+02,0.7646E+02,
- 0.7518E+02,0.7398E+02,0.7285E+02,0.7177E+02,0.7075E+02,0.6977E+02,0.6883E+02,
- 0.6794E+02,0.6708E+02,0.6038E+02,0.5581E+02,0.5209E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1761E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.4271E+06,0.4305E+06,0.4337E+06,0.4368E+06,0.4399E+06,0.4429E+06,
- 0.4459E+06,0.4488E+06,0.4517E+06,0.4546E+06,0.4574E+06,0.4602E+06,0.4630E+06,
- 0.4658E+06,0.4686E+06,0.4940E+06,0.5165E+06,0.5392E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1761E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.9226E+02,0.8999E+02,0.8795E+02,0.8608E+02,0.8436E+02,0.8276E+02,
- 0.8127E+02,0.7988E+02,0.7857E+02,0.7733E+02,0.7615E+02,0.7504E+02,0.7398E+02,
- 0.7296E+02,0.7199E+02,0.6452E+02,0.5950E+02,0.5544E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1862E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.4277E+06,0.4311E+06,0.4344E+06,0.4377E+06,0.4408E+06,
- 0.4439E+06,0.4469E+06,0.4499E+06,0.4528E+06,0.4557E+06,0.4586E+06,0.4615E+06,
- 0.4643E+06,0.4671E+06,0.4929E+06,0.5156E+06,0.5384E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1862E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.9861E+02,0.9605E+02,0.9376E+02,0.9167E+02,0.8977E+02,
- 0.8800E+02,0.8637E+02,0.8484E+02,0.8340E+02,0.8205E+02,0.8077E+02,0.7956E+02,
- 0.7840E+02,0.7730E+02,0.6895E+02,0.6341E+02,0.5898E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1967E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.4282E+06,0.4317E+06,0.4351E+06,0.4384E+06,
- 0.4416E+06,0.4448E+06,0.4479E+06,0.4509E+06,0.4539E+06,0.4568E+06,0.4598E+06,
- 0.4627E+06,0.4655E+06,0.4917E+06,0.5146E+06,0.5375E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1967E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.1054E+03,0.1025E+03,0.9996E+02,0.9763E+02,
- 0.9551E+02,0.9356E+02,0.9176E+02,0.9008E+02,0.8850E+02,0.8702E+02,0.8563E+02,
- 0.8431E+02,0.8306E+02,0.7367E+02,0.6757E+02,0.6272E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2076E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.4285E+06,0.4322E+06,0.4357E+06,
- 0.4391E+06,0.4424E+06,0.4456E+06,0.4488E+06,0.4519E+06,0.4549E+06,0.4579E+06,
- 0.4609E+06,0.4638E+06,0.4904E+06,0.5136E+06,0.5367E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2076E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.1128E+03,0.1095E+03,0.1066E+03,
- 0.1040E+03,0.1016E+03,0.9946E+02,0.9746E+02,0.9562E+02,0.9389E+02,0.9227E+02,
- 0.9075E+02,0.8931E+02,0.7873E+02,0.7198E+02,0.6668E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2190E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.4288E+06,0.4327E+06,
- 0.4363E+06,0.4398E+06,0.4432E+06,0.4465E+06,0.4497E+06,0.4528E+06,0.4559E+06,
- 0.4590E+06,0.4620E+06,0.4891E+06,0.5125E+06,0.5357E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2190E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.1207E+03,0.1170E+03,
- 0.1137E+03,0.1107E+03,0.1081E+03,0.1057E+03,0.1035E+03,0.1015E+03,0.9958E+02,
- 0.9781E+02,0.9615E+02,0.8415E+02,0.7667E+02,0.7087E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2309E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.4290E+06,
- 0.4330E+06,0.4368E+06,0.4404E+06,0.4438E+06,0.4472E+06,0.4505E+06,0.4537E+06,
- 0.4569E+06,0.4600E+06,0.4876E+06,0.5113E+06,0.5348E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2309E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.1294E+03,
- 0.1250E+03,0.1213E+03,0.1180E+03,0.1150E+03,0.1124E+03,0.1099E+03,0.1077E+03,
- 0.1056E+03,0.1037E+03,0.8998E+02,0.8167E+02,0.7531E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2433E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.4290E+06,0.4332E+06,0.4372E+06,0.4409E+06,0.4445E+06,0.4479E+06,0.4513E+06,
- 0.4546E+06,0.4578E+06,0.4861E+06,0.5101E+06,0.5337E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2433E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.1388E+03,0.1337E+03,0.1294E+03,0.1257E+03,0.1224E+03,0.1194E+03,0.1167E+03,
- 0.1142E+03,0.1119E+03,0.9625E+02,0.8699E+02,0.8000E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2562E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.4289E+06,0.4334E+06,0.4375E+06,0.4413E+06,0.4450E+06,0.4486E+06,
- 0.4520E+06,0.4554E+06,0.4845E+06,0.5088E+06,0.5326E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2562E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.1491E+03,0.1432E+03,0.1382E+03,0.1340E+03,0.1303E+03,0.1269E+03,
- 0.1239E+03,0.1212E+03,0.1030E+03,0.9268E+02,0.8498E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2696E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.4287E+06,0.4334E+06,0.4377E+06,0.4417E+06,0.4455E+06,
- 0.4492E+06,0.4527E+06,0.4827E+06,0.5074E+06,0.5315E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2696E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.1605E+03,0.1535E+03,0.1477E+03,0.1429E+03,0.1387E+03,
- 0.1350E+03,0.1316E+03,0.1104E+03,0.9875E+02,0.9027E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2835E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.4282E+06,0.4332E+06,0.4378E+06,0.4420E+06,
- 0.4459E+06,0.4497E+06,0.4808E+06,0.5059E+06,0.5303E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2835E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.1731E+03,0.1647E+03,0.1580E+03,0.1525E+03,
- 0.1477E+03,0.1435E+03,0.1183E+03,0.1053E+03,0.9588E+02;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2980E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.4275E+06,0.4329E+06,0.4377E+06,
- 0.4421E+06,0.4462E+06,0.4787E+06,0.5044E+06,0.5290E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.2980E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.1873E+03,0.1771E+03,0.1692E+03,
- 0.1628E+03,0.1574E+03,0.1271E+03,0.1122E+03,0.1018E+03;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3132E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.4264E+06,0.4324E+06,
- 0.4376E+06,0.4422E+06,0.4765E+06,0.5027E+06,0.5277E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3132E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.2035E+03,0.1908E+03,
- 0.1814E+03,0.1740E+03,0.1366E+03,0.1197E+03,0.1082E+03;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3289E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.4250E+06,
- 0.4317E+06,0.4373E+06,0.4741E+06,0.5010E+06,0.5263E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3289E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.2224E+03,
- 0.2061E+03,0.1948E+03,0.1472E+03,0.1279E+03,0.1150E+03;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3453E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.4229E+06,0.4307E+06,0.4715E+06,0.4991E+06,0.5248E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3453E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.2449E+03,0.2233E+03,0.1590E+03,0.1366E+03,0.1223E+03;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3625E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.4200E+06,0.4685E+06,0.4970E+06,0.5232E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.3625E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.2731E+03,0.1723E+03,0.1462E+03,0.1300E+03;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.7625E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.3841E+06,0.4322E+06,0.4780E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.7625E+07, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.7798E+03,0.5606E+03,0.3981E+03;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1162E+08, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.3741E+06,0.4091E+06,0.4463E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1162E+08, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.9008E+03,0.7894E+03,0.6687E+03;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Enthalpy, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1562E+08, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.3702E+06,0.4022E+06,0.4353E+06;
-
- FluidProperties:Superheated,
- R134a, !- Fluid Name
- Density, !- Fluid Property Type
- R134aSuperHeatTemperatures, !- Temperature Values Name
- 0.1562E+08, !- Pressure {Pa}
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,0.0000E+00,
- 0.0000E+00,0.0000E+00,0.9632E+03,0.8797E+03,0.7919E+03;
-
diff --git a/tests/integration/models/refrig_case_osw/measures/alfalfa_vars/measure.rb b/tests/integration/models/refrig_case_osw/measures/alfalfa_vars/measure.rb
deleted file mode 100644
index c55de88a..00000000
--- a/tests/integration/models/refrig_case_osw/measures/alfalfa_vars/measure.rb
+++ /dev/null
@@ -1,131 +0,0 @@
-# insert your copyright here
-
-# see the URL below for information on how to write OpenStudio measures
-# http://nrel.github.io/OpenStudio-user-documentation/reference/measure_writing_guide/
-
-# start the measure
-class AlfalfaVariables < OpenStudio::Measure::ModelMeasure
- # human readable name
- def name
- return 'AlfalfaVariables'
- end
-
- # human readable description
- def description
- return 'Add custom variables for Alfalfa'
- end
-
- # human readable description of modeling approach
- def modeler_description
- return 'Add EMS global variables required by Alfalfa'
- end
-
- # define the arguments that the user will input
- def arguments(model)
- args = OpenStudio::Measure::OSArgumentVector.new
- return args
- end
-
- def create_input(model, name, freq)
- # The purpose of this function is to create an Alfalfa input that is accessible via python plugins
-
- global = OpenStudio::Model::EnergyManagementSystemGlobalVariable.new(model, name)
- global.setExportToBCVTB(true)
-
- # The global variable's value must be sent to output an variable so that python programs can read it
- # don't be mistaken, An OuputVariable object is created, but this is "input" to the simulation, from Alfalfa clients
- global_ems_output = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, global)
- global_ems_output.setName(name + "_EMS_Value")
- global_ems_output.setUpdateFrequency("SystemTimestep")
-
- # Request the custom ems output var creaed in the previous step
- global_output = OpenStudio::Model::OutputVariable.new(global_ems_output.nameString(), model)
- global_output.setName(name + "_Value")
- global_output.setReportingFrequency(freq)
- global_output.setKeyValue("EMS")
- # Setting exportToBCVTB to true is optional, and will result in the output variable showing up in the Alfalfa api,
- # this might be useful for confirmation of the input
- global_output.setExportToBCVTB(true)
-
- # repeat the previous steps for an "Enable" input
- # This value will be 1 (instead of 0) anytime a client writes to the input via the Alfalfa api
- global_enable = OpenStudio::Model::EnergyManagementSystemGlobalVariable.new(model, name + "_Enable")
- global_enable.setExportToBCVTB(true)
-
- global_enable_ems_output = OpenStudio::Model::EnergyManagementSystemOutputVariable.new(model, global_enable)
- global_enable_ems_output.setName(name + "_Enable_EMS_Value")
- global_enable_ems_output.setUpdateFrequency("SystemTimestep")
-
- global_enable_output = OpenStudio::Model::OutputVariable.new(global_enable_ems_output.nameString(), model)
- global_enable_output.setName(name + "_Enable_Value")
- global_enable_output.setReportingFrequency(freq)
- global_enable_output.setKeyValue("EMS")
- global_enable_output.setExportToBCVTB(true)
- end
-
- def create_output(model, var, key, name, freq)
- new_var = OpenStudio::Model::OutputVariable.new(var, model)
- new_var.setName(name)
- new_var.setReportingFrequency(freq)
- new_var.setKeyValue(key)
- new_var.setExportToBCVTB(true)
- end
-
- # define what happens when the measure is run
- def run(model, runner, user_arguments)
- super(model, runner, user_arguments)
-
- # Alfalfa inputs
- # These can be set through the Alfalfa API, they will be available as OutputVariables
- # in the simulation. Use them as you will
- # Also see comments on the create_input method
- create_input(model, "HVACFanOnOff", "Timestep")
- create_input(model, "HVACCompressorOnOff", "Timestep")
- create_input(model, "CaseOnOff", "Timestep")
- create_input(model, "CaseDoorStatus", "Timestep")
- create_input(model, "CaseDefrostStatus", "Timestep")
- create_input(model, "CaseAntiSweatStatus", "Timestep")
- create_input(model, "CaseLightStatus", "Timestep")
- create_input(model, "ZoneLightStatus", "Timestep")
- create_input(model, "ZoneOccStatus", "Timestep")
- create_input(model, "Test_Point_1", "Timestep")
-
- # Alfalfa outputs
- create_output(model, "PythonPlugin:OutputVariable", "mt1_t_case", "MT1 Case Temp", "Timestep")
- create_output(model, "PythonPlugin:OutputVariable", "mt2_t_case", "MT2 Case Temp", "Timestep")
- create_output(model, "PythonPlugin:OutputVariable", "lt1_t_case", "LT1 Case Temp", "Timestep")
- create_output(model, "PythonPlugin:OutputVariable", "lt2_t_case", "LT2 Case Temp", "Timestep")
- create_output(model, "PythonPlugin:OutputVariable", "mt1_t_food", "MT1 Prod Temp", "Timestep")
- create_output(model, "PythonPlugin:OutputVariable", "mt2_t_food", "MT2 Prod Temp", "Timestep")
- create_output(model, "PythonPlugin:OutputVariable", "lt1_t_food", "LT1 Prod Temp", "Timestep")
- create_output(model, "PythonPlugin:OutputVariable", "lt2_t_food", "LT2 Prod Temp", "Timestep")
- create_output(model, "Zone Air Temperature", "Zn1", "Zone Temp", "Timestep")
- create_output(model, "Zone Air Relative Humidity", "Zn1", "Zone RH", "Timestep")
- create_output(model, "Refrigeration Case Evaporator Fan Electricity Rate", "MT1", "Case Fan Power", "Timestep")
- create_output(model, "Refrigeration Case Evaporator Fan Electricity Rate", "MT2", "Case Fan Power", "Timestep")
- create_output(model, "Refrigeration Case Evaporator Fan Electricity Rate", "LT1", "Case Fan Power", "Timestep")
- create_output(model, "Refrigeration Case Evaporator Fan Electricity Rate", "LT2", "Case Fan Power", "Timestep")
- create_output(model, "Refrigeration Case Lighting Electricity Rate", "MT1", "Case Light Power", "Timestep")
- create_output(model, "Refrigeration Case Lighting Electricity Rate", "MT2", "Case Light Power", "Timestep")
- create_output(model, "Refrigeration Case Lighting Electricity Rate", "LT1", "Case Light Power", "Timestep")
- create_output(model, "Refrigeration Case Lighting Electricity Rate", "LT2", "Case Light Power", "Timestep")
- create_output(model, "Refrigeration Case Anti Sweat Electricity Rate", "LT2", "Case Anti Sweat Power", "Timestep")
- create_output(model, "Refrigeration Case Defrost Electricity Rate", "LT1", "Case Defrost Power", "Timestep")
- create_output(model, "Refrigeration Case Defrost Electricity Rate", "LT2", "Case Defrost Power", "Timestep")
- create_output(model, "Refrigeration Compressor Electricity Rate", "MT Comp 1", "Case Compressor Power", "Timestep")
- create_output(model, "Refrigeration Compressor Electricity Rate", "MT Comp 2", "Case Compressor Power", "Timestep")
- create_output(model, "Refrigeration Compressor Electricity Rate", "LT Comp 1", "Case Compressor Power", "Timestep")
- create_output(model, "Refrigeration Compressor Electricity Rate", "LT Comp 2", "Case Compressor Power", "Timestep")
- create_output(model, "Fan Electricity Rate", "RTU Fan", "HVAC Fan Power", "Timestep")
- create_output(model, "Heating Coil Electricity Rate", "RTU Reheat Coil", "HVAC Heating Power", "Timestep")
- create_output(model, "Cooling Coil Electricity Rate", "RTU Cool Coil", "HVAC Cooling Power", "Timestep")
-
- # other OutputVariables might be custom python defined output variables,
- # you should still be able to request them here, and as long as exportToBCVTB is true they will be available via Alfalfa
-
- return true
- end
-end
-
-# register the measure to be used by the application
-AlfalfaVariables.new.registerWithApplication
diff --git a/tests/integration/models/refrig_case_osw/measures/alfalfa_vars/measure.xml b/tests/integration/models/refrig_case_osw/measures/alfalfa_vars/measure.xml
deleted file mode 100644
index b46bd3a2..00000000
--- a/tests/integration/models/refrig_case_osw/measures/alfalfa_vars/measure.xml
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
- 3.1
- alfalfa_variables
- 86d51823-68a5-478a-b60b-60891c3c9b5f
- 8752f0cc-7f4d-4d58-af81-511e93aef0cd
- 2024-05-03T20:14:25Z
- 356BE47F
- AlfalfaVariables
- AlfalfaVariables
- Add custom variables for Alfalfa
- Add EMS global variables required by Alfalfa
-
-
-
-
- HVAC.HVAC Controls
-
-
-
- Measure Type
- ModelMeasure
- string
-
-
- Intended Software Tool
- Apply Measure Now
- string
-
-
- Intended Software Tool
- OpenStudio Application
- string
-
-
- Intended Software Tool
- Parametric Analysis Tool
- string
-
-
-
-
-
- OpenStudio
- 3.1.0
- 3.1.0
-
- measure.rb
- rb
- script
- 2A97F3D3
-
-
-
diff --git a/tests/integration/models/refrig_case_osw/measures/prep_idf/measure.rb b/tests/integration/models/refrig_case_osw/measures/prep_idf/measure.rb
deleted file mode 100644
index e534638d..00000000
--- a/tests/integration/models/refrig_case_osw/measures/prep_idf/measure.rb
+++ /dev/null
@@ -1,102 +0,0 @@
-# *******************************************************************************
-# OpenStudio(R), Copyright (c) 2008-2022, Alliance for Sustainable Energy, LLC.
-# All rights reserved.
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are met:
-#
-# (1) Redistributions of source code must retain the above copyright notice,
-# this list of conditions and the following disclaimer.
-#
-# (2) Redistributions in binary form must reproduce the above copyright notice,
-# this list of conditions and the following disclaimer in the documentation
-# and/or other materials provided with the distribution.
-#
-# (3) Neither the name of the copyright holder nor the names of any contributors
-# may be used to endorse or promote products derived from this software without
-# specific prior written permission from the respective party.
-#
-# (4) Other than as required in clauses (1) and (2), distributions in any form
-# of modifications or other derivative works may not use the "OpenStudio"
-# trademark, "OS", "os", or any other confusingly similar designation without
-# specific prior written permission from Alliance for Sustainable Energy, LLC.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE
-# UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF
-# THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
-# OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
-# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-# *******************************************************************************
-
-# start the measure
-class PrepareIDF < OpenStudio::Ruleset::WorkspaceUserScript
-
- # human readable name
- def name
- return 'Prepare IDF'
- end
-
- # human readable description
- def description
- return 'Add python script path to IDF'
- end
-
- # human readable description of modeling approach
- def modeler_description
- return 'Add python script path to IDF'
- end
-
- # define the arguments that the user will input
- def arguments(workspace)
- args = OpenStudio::Ruleset::OSArgumentVector.new
- # python script name
- py_name = OpenStudio::Ruleset::OSArgument.makeStringArgument('py_name',true)
- py_name.setDisplayName('Python File Name')
- py_name.setDescription('Name of the python script without the extension')
- py_name.setDefaultValue('main')
- args << py_name
- return args
- end
-
- # define what happens when the measure is run
- def run(workspace,runner,usr_args)
- super(workspace,runner,usr_args)
- # use the built-in error checking
- return false unless runner.validateUserArguments(arguments(workspace),usr_args)
- # assign the user inputs to variables
- py_name = runner.getStringArgumentValue('py_name',usr_args)
- # find python script
- py_file = runner.workflow.findFile(py_name + '.py')
- unless py_file.is_initialized
- runner.registerError("Did not find #{py_file} in paths described in OSW file.")
- runner.registerError("File is #{py_name + '.py'}.")
- runner.registerError("Looked for #{py_file} in the following locations")
- runner.workflow.absoluteFilePaths.each {|p| runner.registerError("#{p}")}
- return false
- end
- # modify python plugin search paths
- workspace.getObjectsByType('PythonPlugin_SearchPaths'.to_IddObjectType).each do |o|
- if (RUBY_PLATFORM =~ /linux/) != nil
- o.setString(4,'/usr/local/lib/python3.7/dist-packages')
- o.setString(5,'/usr/local/EnergyPlus-9-6-0')
- elsif (RUBY_PLATFORM =~ /darwin/) != nil
- o.setString(4,'/usr/local/lib/python3.8/site-packages')
- o.setString(5,'/Applications/EnergyPlus-9-6-0')
- elsif (RUBY_PLATFORM =~ /cygwin|mswin|mingw|bccwin|wince|emx/) != nil
- o.setString(4,"#{ENV['USERPROFILE']}/AppData/Local/Programs/Python/Python37/Lib/site-packages")
- o.setString(5,'C:/EnergyPlusV9-6-0')
- end
- runner.workflow.absoluteFilePaths.each {|p| o.setString(6,p.to_s) if p.to_s.include?('python')}
- end
- return true
- end
-
-end
-
-# register the measure to be used by the application
-PrepareIDF.new.registerWithApplication
diff --git a/tests/integration/models/refrig_case_osw/measures/replace_idf/measure.rb b/tests/integration/models/refrig_case_osw/measures/replace_idf/measure.rb
deleted file mode 100644
index 68760bac..00000000
--- a/tests/integration/models/refrig_case_osw/measures/replace_idf/measure.rb
+++ /dev/null
@@ -1,121 +0,0 @@
-# *******************************************************************************
-# OpenStudio(R), Copyright (c) 2008-2022, Alliance for Sustainable Energy, LLC.
-# All rights reserved.
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions are met:
-#
-# (1) Redistributions of source code must retain the above copyright notice,
-# this list of conditions and the following disclaimer.
-#
-# (2) Redistributions in binary form must reproduce the above copyright notice,
-# this list of conditions and the following disclaimer in the documentation
-# and/or other materials provided with the distribution.
-#
-# (3) Neither the name of the copyright holder nor the names of any contributors
-# may be used to endorse or promote products derived from this software without
-# specific prior written permission from the respective party.
-#
-# (4) Other than as required in clauses (1) and (2), distributions in any form
-# of modifications or other derivative works may not use the "OpenStudio"
-# trademark, "OS", "os", or any other confusingly similar designation without
-# specific prior written permission from Alliance for Sustainable Energy, LLC.
-#
-# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS
-# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
-# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE
-# UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF
-# THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
-# OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
-# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-# *******************************************************************************
-
-# start the measure
-class ReplaceIDF < OpenStudio::Ruleset::WorkspaceUserScript
-
- # human readable name
- def name
- return 'Replace IDF'
- end
-
- # human readable description
- def description
- return 'Replace OpenStudio generated IDF file with user specified IDF.'
- end
-
- # human readable description of modeling approach
- def modeler_description
- return 'Additional EnergyPlus measures can be placed after this measure in the workflow. Weather file should be described in the seed OSM file or in the OSW file used to run the simulation.'
- end
-
- # define the arguments that the user will input
- def arguments(workspace)
- args = OpenStudio::Ruleset::OSArgumentVector.new
- # argument for IDF name
- idf_name = OpenStudio::Ruleset::OSArgument.makeStringArgument('idf_name',true)
- idf_name.setDisplayName('External IDF File Name')
- idf_name.setDescription('Name of the model to replace current model. This is the filename with the extension (e.g. MyModel.idf). Optionally this can include the full file path, but for most use cases should just be file name.')
- args << idf_name
- return args
- end
-
- # define what happens when the measure is run
- def run(workspace,runner,usr_args)
- super(workspace,runner,usr_args)
- # use the built-in error checking
- return false unless runner.validateUserArguments(arguments(workspace),usr_args)
- # assign the user inputs to variables
- idf_name = runner.getStringArgumentValue('idf_name',usr_args)
- # find external model
- idf_file = runner.workflow.findFile(idf_name)
- if idf_file.is_initialized
- idf_name = idf_file.get.to_s
- else
- runner.registerError("Did not find #{idf_name} in paths described in OSW file.")
- runner.registerInfo("Looked for #{idf_name} in the following locations")
- runner.workflow.absoluteFilePaths.each {|path| runner.registerInfo("#{path}")}
- return false
- end
- # get model from path and error if empty
- ext_workspace = OpenStudio::Workspace::load(OpenStudio::Path.new(idf_name))
- if ext_workspace.empty?
- runner.registerError("Cannot load #{idf_name}")
- return false
- end
- ext_workspace = ext_workspace.get
- # report initial condition of model
- runner.registerInitialCondition("The initial IDF file had #{workspace.objects.size} objects.")
- runner.registerInfo("Loading #{idf_name}")
- # array of objects to remove
- objs_to_rm = ['Timestep',
- 'LifeCycleCost:Parameters',
- 'LifeCycleCost:UsePriceEscalation',
- 'Building',
- 'SimulationControl',
- 'Sizing:Parameters',
- 'RunPeriod',
- 'Output:Table:SummaryReports',
- 'GlobalGeometryRules',
- 'Schedule:Constant',
- 'OutdoorAir:Node',
- 'OutputControl:Table:Style',
- 'Output:VariableDictionary',
- 'Output:SQLite',
- 'LifeCycleCost:NonrecurringCost']
- # remove existing objects from model
- handles = OpenStudio::UUIDVector.new
- workspace.objects.each {|obj| handles << obj.handle if objs_to_rm.include?(obj.idfObject.iddObject.name)}
- workspace.removeObjects(handles)
- # add new file to empty model
- workspace.addObjects(ext_workspace.toIdfFile.objects)
- # report final condition of model
- runner.registerFinalCondition("The final IDF file had #{workspace.objects.size} objects.")
- return true
- end
-end
-
-# register the measure to be used by the application
-ReplaceIDF.new.registerWithApplication
diff --git a/tests/integration/models/refrig_case_osw/measures/replace_idf/measure.xml b/tests/integration/models/refrig_case_osw/measures/replace_idf/measure.xml
deleted file mode 100644
index 7c757931..00000000
--- a/tests/integration/models/refrig_case_osw/measures/replace_idf/measure.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
- 3.1
- replace_idf
- 256ee271-1946-4ee6-9ec2-26cd94fe5dfc
- cb60e4b5-42ac-4d98-b9ff-e87f3b36a170
- 2024-05-03T20:41:47Z
- 7A4781A5
- ReplaceIDF
- Replace IDF
- Replace OpenStudio generated IDF file with user specified IDF.
- Additional EnergyPlus measures can be placed after this measure in the workflow. Weather file should be described in the seed OSM file or in the OSW file used to run the simulation.
-
-
- idf_name
- External IDF File Name
- Name of the model to replace current model. This is the filename with the extension (e.g. MyModel.idf). Optionally this can include the full file path, but for most use cases should just be file name.
- String
- true
- false
-
-
-
-
-
- Tool.Alfalfa
-
-
-
- Measure Type
- EnergyPlusMeasure
- string
-
-
- Intended Software Tool
- OpenStudio Application
- string
-
-
-
-
-
- OpenStudio
- 2.3.0
- 2.3.0
-
- measure.rb
- rb
- script
- DCCC3510
-
-
-
diff --git a/tests/integration/models/refrig_case_osw/python/case_cooling_to_zone.py b/tests/integration/models/refrig_case_osw/python/case_cooling_to_zone.py
deleted file mode 100644
index 057aa2e7..00000000
--- a/tests/integration/models/refrig_case_osw/python/case_cooling_to_zone.py
+++ /dev/null
@@ -1,67 +0,0 @@
-
-def case_cooling_to_zone(T_case_air, T_zone):
- """
- This function is to calculate the case thermal load release to zones.
- input: T_case_air, case internal air temperature
- input: T_zone, zone/ambient air temperature
- output: Q,
- """
- """
- notes:
- (1) case air temperature is the average temperature
- (2) if Q<0, it means cooling goes to zone; if Q>0, it means heating goes to zone.
- (3) in the future, we will add heat release from infiltration, open/shut items...
- """
- # areas of all 6 surfaces of case (experiment):
- a1 = 2
- a2 = 8
- a3 = 5
- a4 = a1
- a5 = a2
- a6 = a3
- # heat convection coefficient for 6 external surfaces (from experiment):
- h1 = 10
- h2 = 12
- h3 = 20
- h4 = 10
- h5 = 12
- h6 = 20
-
- U_external = 1/(h1*a1) + 1/(h2*a2) + 1/(h3*a3) + 1/(h4*a4) + 1/(h5*a5) + 1/(h6*a6)
-
- # case thickness of 6 surfaces
- d1 = 0.01
- d2 = 0.02
- d3 = 0.005
- d4 = d1
- d5 = d2
- d6 = d3
-
- # case conduction coeffiient of 6 surfaces
- k1 = 12.5
- k2 = 15.2
- k3 = 17.3
- k4 = k1
- k5 = k2
- k6 = k3
-
- U_conduction = d1/(k1*a1) + d2/(k2*a2) + d3/(k3*a3) + d4/(k4*a4) + d5/(k5*a5) + d6/(k6*a6)
-
- # convection coefficient for internal surface (from experiment)
- h_in = 30
- U_internal = 1/(h_in * (a1+a2+a3+a4+a5+a6))
-
- # overall transfer coefficient
- U = 1 / (U_external + U_conduction + U_internal)
- print ('overall hat transfer coeff: ', U)
- # heating/cooling release to zone
- Q = U * (T_case_air-T_zone)
-
- return Q
-
-
-##############################################
-# exmaple to run the function #
-Q = case_cooling_to_zone(2, 29)
-print(Q)
-##############################################
diff --git a/tests/integration/models/refrig_case_osw/python/case_models.py b/tests/integration/models/refrig_case_osw/python/case_models.py
deleted file mode 100644
index 280662eb..00000000
--- a/tests/integration/models/refrig_case_osw/python/case_models.py
+++ /dev/null
@@ -1,207 +0,0 @@
-import numpy as np
-from symfit import parameters, variables, log, Fit, Model
-from sympy import *
-import os
-
-class CaseModels():
- def __init__(self, csv_medium_door, csv_medium_open, csv_low_01, csv_low_02):
- self.csv_medium_door = csv_medium_door
- self.csv_medium_open = csv_medium_open
- self.csv_low_01 = csv_low_01
- self.csv_low_02 = csv_low_02
- self.csv_path_base = os.path.dirname(os.path.abspath(__file__))
-
-
- def read_case_data(self, csv_file):
- """csv_file needs to follow the format for columns: foodT, caseT, saT, raT, zoneT, zoneHumid"""
- """this function will be used a lot to read data for different cases"""
- csv_file_full_path = os.path.join(self.csv_path_base, csv_file)
- with open(csv_file_full_path, encoding='utf-8', mode='r') as f:
- mydata = f.readlines()
-
- mydata = np.asarray(mydata)
- foodT = []
- caseT = []
- saT = []
- raT = []
- zoneT = []
- zoneW=[]
- for i in range(len(mydata)):
- x = mydata[i]
- tmp = x.split(',')
- if i > 2:
- foodT.append(float(tmp[0]))
- caseT.append(float(tmp[1]))
- saT.append(float(tmp[2]))
- raT.append(float(tmp[3]))
- zoneT.append(float(tmp[4]))
- zoneW.append( float(tmp[5]) )
-
- foodT = np.asarray(foodT)
- caseT = np.asarray(caseT)
- saT = np.asarray(saT)
- raT = np.asarray(raT)
- zoneT = np.asarray(zoneT)
- zoneW = np.asarray(zoneW)
-
- if 'mt-door' in csv_file:
- from scipy.signal import savgol_filter
- foodT = savgol_filter(foodT, 51, 3)
-
- return (foodT, caseT, saT, raT, zoneT, zoneW)
-
-
- def read_case_medium_door(self):
- if self.csv_medium_door ==None:
- self.csv_medium_door= "mt-door_data.csv"
-
- (self.medium_door_foodT, self.medium_door_caseT, self.medium_door_saT,
- self.medium_door_raT, self.medium_door_zoneT, self.medium_door_zoneW ) = \
- self.read_case_data(self.csv_medium_door)
-
- from scipy.signal import savgol_filter
- self.medium_door_foodT = savgol_filter(self.medium_door_foodT, 51, 3)
-
- return (self.medium_door_foodT, self.medium_door_caseT, self.medium_door_saT,
- self.medium_door_raT, self.medium_door_zoneT, self.medium_door_zoneW)
-
-
- def read_case_medium_open(self):
- if self.csv_medium_open==None:
- self.csv_medium_open = "mt-open_data.csv"
-
- (self.medium_open_foodT, self.medium_open_caseT, self.medium_open_saT,
- self.medium_open_raT, self.medium_open_zoneT, self.medium_open_zoneW ) = \
- self.read_case_data(self.csv_medium_open)
-
- return(self.medium_open_foodT, self.medium_open_caseT, self.medium_open_saT,
- self.medium_open_raT, self.medium_open_zoneT, self.medium_open_zoneW)
-
-
- def read_case_low_01(self):
- if self.csv_low_01==None:
- self.csv_low_01 = "lt1_data.csv"
-
- (self.low_01_foodT, self.low_01_caseT, self.low_01_saT,
- self.low_01_raT, self.low_01_zoneT, self.low_01_zoneW ) = \
- self.read_case_data(self.csv_low_01)
-
- return (self.low_01_foodT, self.low_01_caseT, self.low_01_saT,
- self.low_01_raT, self.low_01_zoneT, self.low_01_zoneW)
-
-
- def read_case_low_02(self):
- if self.csv_low_02==None:
- self.csv_low_02 = "lt2_data.csv"
-
- (self.low_02_foodT, self.low_02_caseT, self.low_02_saT,
- self.low_02_raT, self.low_02_zoneT, self.low_02_zoneW ) = \
- self.read_case_data(self.csv_low_02)
-
- return (self.low_02_foodT, self.low_02_caseT, self.low_02_saT,
- self.low_02_raT, self.low_02_zoneT, self.low_02_zoneW )
-
-
- def case_medium_door(self):
- """learn the foodT, based on sat/rat/zoneT/zoneW"""
-
- x_sat, x_rat, x_case_t, x_zone_t, food_t = variables('x_sat, x_rat, x_case_t, x_zone_t, food_t')
- a, b, c, d = parameters('a, b, c, d')
-
- z_component = a * x_sat + b * x_rat + c * x_case_t + d * exp(-x_zone_t*0.1)
- model_dict = {
- food_t: z_component,
- }
-
- self.fit_medium_door = Fit(model_dict, x_sat=self.medium_door_saT, x_rat = self.medium_door_raT, \
- x_case_t= self.medium_door_caseT, x_zone_t = self.medium_door_zoneT, \
- food_t = self.medium_door_foodT)
- self.fit_result_medium_door = self.fit_medium_door.execute()
-
- return (self.fit_medium_door, self.fit_result_medium_door)
-
-
- def predict_case_medium_door(self, sat, rat, case_t, zone_t):
- model = self.fit_medium_door.model(x_sat=sat, x_rat= rat, x_case_t=case_t,
- x_zone_t = zone_t, **self.fit_result_medium_door.params)
- print('hey foodT: ', model.food_t)
- return model.food_t
-
-
- def case_medium_open(self):
- """learn the foodT, based on sat/rat/zoneT/zoneW"""
- x_sat, x_rat, x_case_t, x_zone_t, x_zone_w, food_t = \
- variables('x_sat, x_rat, x_case_t, x_zone_t, x_zone_w, food_t')
- a, b, c, d, e = parameters('a, b, c, d, e')
-
- z_component = a * x_sat + b * x_rat + c * x_case_t + d * exp(-x_zone_t*0.001) + e * cos(-x_zone_w*0.01)
- model_dict = {
- food_t: z_component,
- }
-
- self.fit_medium_open = Fit(model_dict, x_sat=self.medium_open_saT, x_rat=self.medium_open_raT,
- x_case_t=self.medium_open_caseT, x_zone_t=self.medium_open_zoneT,
- x_zone_w=self.medium_open_zoneW, food_t=self.medium_open_foodT)
- self.fit_result_medium_open = self.fit_medium_open.execute()
-
- return ( self.fit_medium_open, self.fit_result_medium_open)
-
-
- def predict_case_medium_open(self, sat, rat, case_t, zone_t, zone_w):
- model = self.fit_medium_open.model(x_sat=sat, x_rat=rat, x_case_t=case_t, x_zone_t=zone_t,
- x_zone_w= zone_w, **self.fit_result_medium_open.params)
-
- return model.food_t
-
-
- def case_low_01(self):
- """learn the foodT, based on sat/rat/zoneT/zoneW"""
-
- x_sat, x_rat, x_case_t, x_zone_t, food_t = \
- variables('x_sat, x_rat, x_case_t, x_zone_t, food_t')
- a, b, c, d = parameters('a, b, c, d')
-
- z_component = a * x_sat + b * x_rat + c * x_case_t + d * sin(-x_zone_t*0.01)
- model_dict = {
- food_t: z_component,
- }
-
- self.fit_low_01 = Fit(model_dict, x_sat=self.low_01_saT, x_rat=self.low_01_raT,
- x_case_t=self.low_01_caseT, x_zone_t=self.low_01_zoneT,
- food_t=self.low_01_foodT)
- self.fit_result_low_01 = self.fit_low_01.execute()
-
- return (self.fit_low_01, self.fit_result_low_01)
-
-
- def predict_case_low_01(self,sat, rat, case_t, zone_t, zone_w):
- model = self.fit_low_01.model(x_sat=sat, x_rat=rat, x_case_t=case_t, x_zone_t=zone_t,
- **self.fit_result_low_01.params)
-
- return model.food_t
-
-
- def case_low_02(self):
- """learn the foodT, based on sat/rat/zoneT/zoneW"""
-
- x_sat, x_rat, x_case_t, x_zone_t, food_t = \
- variables('x_sat, x_rat, x_case_t, x_zone_t, food_t')
- a, b, c, d = parameters('a, b, c, d')
-
- z_component = a * x_sat + b * x_rat + c * x_case_t + d * sin(-x_zone_t*0.01)
- model_dict = {
- food_t: z_component,
- }
-
- self.fit_low_02 = Fit(model_dict, x_sat=self.low_02_saT, x_rat=self.low_02_raT,
- x_case_t=self.low_02_caseT, x_zone_t=self.low_02_zoneT,
- food_t=self.low_02_foodT)
- self.fit_result_low_02 = self.fit_low_02.execute()
-
- return (self.fit_low_02, self.fit_result_low_02)
-
- def predict_case_low_02(self, sat, rat, case_t, zone_t, zone_w):
- model = self.fit_low_02.model(x_sat=sat, x_rat=rat, x_case_t=case_t, x_zone_t=zone_t, \
- **self.fit_result_low_02.params)
-
- return model.food_t
diff --git a/tests/integration/models/refrig_case_osw/python/in.py b/tests/integration/models/refrig_case_osw/python/in.py
deleted file mode 100644
index a71e269e..00000000
--- a/tests/integration/models/refrig_case_osw/python/in.py
+++ /dev/null
@@ -1,196 +0,0 @@
-from pyenergyplus.plugin import EnergyPlusPlugin
-import case_models as cm
-import case_cooling_to_zone as c2z
-
-class CaseModel(EnergyPlusPlugin):
-
- def __init__(self):
-
- super().__init__()
- self.psych = None
- self.need_to_get_handles = True
-
- self.t_zone_hndl = None
- self.rh_zone_hndl = None
- self.mt1_case_avail_sch_hndl = None
- self.mt1_case_credit_sch_hndl = None
- self.mt1_t_supply_hndl = None
- self.mt1_t_return_hndl = None
- self.mt1_t_case_hndl = None
- self.mt1_t_food_hndl = None
- self.mt2_case_avail_sch_hndl = None
- self.mt2_case_credit_sch_hndl = None
- self.mt2_t_supply_hndl = None
- self.mt2_t_return_hndl = None
- self.mt2_t_case_hndl = None
- self.mt2_t_food_hndl = None
- self.lt1_case_avail_sch_hndl = None
- self.lt1_case_credit_sch_hndl = None
- self.lt1_t_supply_hndl = None
- self.lt1_t_return_hndl = None
- self.lt1_t_case_hndl = None
- self.lt1_t_food_hndl = None
- self.lt2_case_avail_sch_hndl = None
- self.lt2_case_credit_sch_hndl = None
- self.lt2_t_supply_hndl = None
- self.lt2_t_return_hndl = None
- self.lt2_t_case_hndl = None
- self.lt2_t_food_hndl = None
-
- self.t_zone = float()
- self.rh_zone = float()
- self.mt1_case_on = bool()
- self.mt1_t_supply = float()
- self.mt1_t_return = float()
- self.mt1_t_case = float()
- self.mt1_t_food = float()
- self.mt1_q_case = float()
- self.mt2_case_on = bool()
- self.mt2_t_supply = float()
- self.mt2_t_return = float()
- self.mt2_t_case = float()
- self.mt2_t_food = float()
- self.mt2_q_case = float()
- self.lt1_case_on = bool()
- self.lt1_t_supply = float()
- self.lt1_t_return = float()
- self.lt1_t_case = float()
- self.lt1_t_food = float()
- self.lt1_q_case = float()
- self.lt2_case_on = bool()
- self.lt2_t_supply = float()
- self.lt2_t_return = float()
- self.lt2_t_case = float()
- self.lt2_t_food = float()
- self.lt2_q_case = float()
-
- self.mt1_q_case_nom = -1 * 1456.754 * 2.445
- self.mt2_q_case_nom = -1 * 168.889 * 3.896
- self.lt1_q_case_nom = -1 * 382.321 * 2.349
- self.lt2_q_case_nom = -1 * 382.321 * 2.349
-
- self.case_model = cm.CaseModels("mt-door_data.csv","mt-open_data.csv","lt1_data.csv","lt2_data.csv")
- self.case_model.read_case_medium_door()
- self.case_model.read_case_medium_open()
- self.case_model.read_case_low_01()
- self.case_model.read_case_low_02()
- self.case_model.case_medium_door()
- self.case_model.case_medium_open()
- self.case_model.case_low_01()
- self.case_model.case_low_02()
-
- def on_begin_timestep_before_predictor(self,state) -> int:
-
- if not self.psych:
- self.psych = self.api.functional.psychrometrics(state)
-
- if not self.api.exchange.api_data_fully_ready(state):
- return 0
-
- if self.need_to_get_handles:
- self.t_zone_hndl = self.api.exchange.get_variable_handle(state,"Zone Air Temperature","Zn1")
- self.rh_zone_hndl = self.api.exchange.get_variable_handle(state,"Zone Air Relative Humidity","Zn1")
- self.mt1_case_avail_sch_hndl = self.api.exchange.get_variable_handle(state,"Schedule Value","MT1 Avail Sch")
- self.mt1_case_credit_sch_hndl = self.api.exchange.get_actuator_handle(state,"Schedule:Constant","Schedule Value","MT1 Credit Sch")
- self.mt1_t_supply_hndl = self.api.exchange.get_global_handle(state,"mt1_t_supply")
- self.mt1_t_return_hndl = self.api.exchange.get_global_handle(state,"mt1_t_return")
- self.mt1_t_case_hndl = self.api.exchange.get_global_handle(state,"mt1_t_case")
- self.mt1_t_food_hndl = self.api.exchange.get_global_handle(state,"mt1_t_food")
- self.mt2_case_avail_sch_hndl = self.api.exchange.get_variable_handle(state,"Schedule Value","MT2 Avail Sch")
- self.mt2_case_credit_sch_hndl = self.api.exchange.get_actuator_handle(state,"Schedule:Constant","Schedule Value","MT2 Credit Sch")
- self.mt2_t_supply_hndl = self.api.exchange.get_global_handle(state,"mt2_t_supply")
- self.mt2_t_return_hndl = self.api.exchange.get_global_handle(state,"mt2_t_return")
- self.mt2_t_case_hndl = self.api.exchange.get_global_handle(state,"mt2_t_case")
- self.mt2_t_food_hndl = self.api.exchange.get_global_handle(state,"mt2_t_food")
- self.lt1_case_avail_sch_hndl = self.api.exchange.get_variable_handle(state,"Schedule Value","LT1 Avail Sch")
- self.lt1_case_credit_sch_hndl = self.api.exchange.get_actuator_handle(state,"Schedule:Constant","Schedule Value","LT1 Credit Sch")
- self.lt1_t_supply_hndl = self.api.exchange.get_global_handle(state,"lt1_t_supply")
- self.lt1_t_return_hndl = self.api.exchange.get_global_handle(state,"lt1_t_return")
- self.lt1_t_case_hndl = self.api.exchange.get_global_handle(state,"lt1_t_case")
- self.lt1_t_food_hndl = self.api.exchange.get_global_handle(state,"lt1_t_food")
- self.lt2_case_avail_sch_hndl = self.api.exchange.get_variable_handle(state,"Schedule Value","LT2 Avail Sch")
- self.lt2_case_credit_sch_hndl = self.api.exchange.get_actuator_handle(state,"Schedule:Constant","Schedule Value","LT2 Credit Sch")
- self.lt2_t_supply_hndl = self.api.exchange.get_global_handle(state,"lt2_t_supply")
- self.lt2_t_return_hndl = self.api.exchange.get_global_handle(state,"lt2_t_return")
- self.lt2_t_case_hndl = self.api.exchange.get_global_handle(state,"lt2_t_case")
- self.lt2_t_food_hndl = self.api.exchange.get_global_handle(state,"lt2_t_food")
-
- self.need_to_get_handles = False
-
- self.t_zone = self.api.exchange.get_variable_value(state,self.t_zone_hndl)
- self.rh_zone = self.api.exchange.get_variable_value(state,self.rh_zone_hndl)
- self.mt1_case_on = self.api.exchange.get_variable_value(state,self.mt1_case_avail_sch_hndl)
- self.mt2_case_on = self.api.exchange.get_variable_value(state,self.mt2_case_avail_sch_hndl)
- self.lt1_case_on = self.api.exchange.get_variable_value(state,self.lt1_case_avail_sch_hndl)
- self.lt2_case_on = self.api.exchange.get_variable_value(state,self.lt2_case_avail_sch_hndl)
-
- self.t_zone = (self.t_zone * (9/5)) + 32
-
- if self.mt1_case_on == 0:
- self.mt1_t_supply = 68
- self.mt1_t_return = 54
- self.mt1_t_case = self.mt1_t_return
- elif self.mt1_case_on == 1:
- self.mt1_t_supply = 36
- self.mt1_t_return = 44
- self.mt1_t_case = self.mt1_t_supply + ((self.mt1_t_return - self.mt1_t_supply) / 2)
-
- if self.mt2_case_on == 0:
- self.mt2_t_supply = 39.5
- self.mt2_t_return = self.mt2_t_supply - 0.5
- self.mt2_t_case = self.mt2_t_return - 2
- elif self.mt2_case_on == 1:
- self.mt2_t_supply = 36
- self.mt2_t_return = 37
- self.mt2_t_case = self.mt2_t_supply + ((self.mt2_t_return - self.mt2_t_supply) / 2)
-
- if self.lt1_case_on == 0:
- self.lt1_t_supply = 55
- self.lt1_t_return = 35
- self.lt1_t_case = 40
- elif self.lt1_case_on == 1:
- self.lt1_t_supply = -20
- self.lt1_t_return = -16
- self.lt1_t_case = -21
-
- if self.lt2_case_on == 0:
- self.lt2_t_supply = 12
- self.lt2_t_return = 20
- self.lt2_t_case = -2
- elif self.lt2_case_on == 1:
- self.lt2_t_supply = -12
- self.lt2_t_return = -14
- self.lt2_t_case = -15
-
- self.mt1_t_food = self.case_model.predict_case_medium_open(self.mt1_t_supply,self.mt1_t_return,self.mt1_t_case,self.t_zone,self.rh_zone)[0]
- self.mt2_t_food = self.case_model.predict_case_medium_door(self.mt2_t_supply,self.mt2_t_return,self.mt2_t_case,self.t_zone)[0]
- self.lt1_t_food = self.case_model.predict_case_low_01(self.lt1_t_supply,self.lt1_t_return,self.lt1_t_case,self.t_zone,self.rh_zone)[0]
- self.lt2_t_food = self.case_model.predict_case_low_02(self.lt2_t_supply,self.lt2_t_return,self.lt2_t_case,self.t_zone,self.rh_zone)[0]
-
- self.mt1_q_case = c2z.case_cooling_to_zone(((self.mt1_t_case - 32) * (5/9)),((self.t_zone - 32) * (5/9)))
- self.mt2_q_case = c2z.case_cooling_to_zone(((self.mt2_t_case - 32) * (5/9)),((self.t_zone - 32) * (5/9)))
- self.lt1_q_case = c2z.case_cooling_to_zone(((self.lt1_t_case - 32) * (5/9)),((self.t_zone - 32) * (5/9)))
- self.lt2_q_case = c2z.case_cooling_to_zone(((self.lt2_t_case - 32) * (5/9)),((self.t_zone - 32) * (5/9)))
-
- self.api.exchange.set_actuator_value(state,self.mt1_case_credit_sch_hndl,(self.mt1_q_case / self.mt1_q_case_nom))
- self.api.exchange.set_global_value(state,self.mt1_t_supply_hndl,self.mt1_t_supply)
- self.api.exchange.set_global_value(state,self.mt1_t_return_hndl,self.mt1_t_return)
- self.api.exchange.set_global_value(state,self.mt1_t_case_hndl,self.mt1_t_case)
- self.api.exchange.set_global_value(state,self.mt1_t_food_hndl,self.mt1_t_food)
- self.api.exchange.set_actuator_value(state,self.mt2_case_credit_sch_hndl,(self.mt2_q_case / self.mt2_q_case_nom))
- self.api.exchange.set_global_value(state,self.mt2_t_supply_hndl,self.mt2_t_supply)
- self.api.exchange.set_global_value(state,self.mt2_t_return_hndl,self.mt2_t_return)
- self.api.exchange.set_global_value(state,self.mt2_t_case_hndl,self.mt2_t_case)
- self.api.exchange.set_global_value(state,self.mt2_t_food_hndl,self.mt2_t_food)
- self.api.exchange.set_actuator_value(state,self.lt1_case_credit_sch_hndl,(self.lt1_q_case / self.lt1_q_case_nom))
- self.api.exchange.set_global_value(state,self.lt1_t_supply_hndl,self.lt1_t_supply)
- self.api.exchange.set_global_value(state,self.lt1_t_return_hndl,self.lt1_t_return)
- self.api.exchange.set_global_value(state,self.lt1_t_case_hndl,self.lt1_t_case)
- self.api.exchange.set_global_value(state,self.lt1_t_food_hndl,self.lt1_t_food)
- self.api.exchange.set_actuator_value(state,self.lt2_case_credit_sch_hndl,(self.lt2_q_case / self.lt2_q_case_nom))
- self.api.exchange.set_global_value(state,self.lt2_t_supply_hndl,self.lt2_t_supply)
- self.api.exchange.set_global_value(state,self.lt2_t_return_hndl,self.lt2_t_return)
- self.api.exchange.set_global_value(state,self.lt2_t_case_hndl,self.lt2_t_case)
- self.api.exchange.set_global_value(state,self.lt2_t_food_hndl,self.lt2_t_food)
-
- return 0
diff --git a/tests/integration/models/refrig_case_osw/python/lt1_data.csv b/tests/integration/models/refrig_case_osw/python/lt1_data.csv
deleted file mode 100644
index 97a59096..00000000
--- a/tests/integration/models/refrig_case_osw/python/lt1_data.csv
+++ /dev/null
@@ -1,8187 +0,0 @@
-1,2,3,4,5,6
-prod,case,supply,return,zone,rh
-degF,degF,degF,degF,degF,pct
--5.79744,-14.7312,-13.97088,-10.64448,68.85648,52.6272
--5.77344,-14.4336,-13.59552,-10.61568,67.474752,52.9911
--5.92515,-14.57775,-13.7313,-10.7217,68.14863,54.0837
--6.272,-15.288,-14.406,-11.466,71.0108,53.6256
--6.08,-15.105,-13.965,-11.21,68.837,54.72
--6.2426,-15.3664,-14.21392,-11.42876,69.686624,53.6256
--5.98975,-14.744,-13.73035,-10.8737,66.781105,53.2821
--6.20994,-15.0544,-14.01941,-11.10262,68.177614,53.2821
--6.30135,-14.95395,-14.01345,-10.9098,68.14863,54.3807
--6.365,-15.01,-14.06,-11.02,68.837,51.908
--6.53072,-15.17432,-14.21392,-10.85252,69.686624,53.6158
--6.46408,-15.01948,-14.06888,-11.02696,68.975536,53.6158
--6.69438,-15.32916,-14.35896,-11.1573,70.397712,54.2718
--6.2928,-14.5008,-13.5888,-10.7616,66.1656,51.9745
--6.384,-14.5008,-13.5888,-10.6704,66.17472,52.4544
--6.74784,-15.2064,-14.16096,-11.21472,68.961024,52.7328
--6.816,-15.456,-14.4,-11.328,69.648,52.5312
--6.77376,-15.14688,-14.112,-11.00736,68.264448,52.4448
--6.91416,-15.46083,-14.4045,-11.42757,69.756192,53.7966
--6.93938,-15.30466,-14.35406,-11.21708,69.051584,53.2434
--6.72695,-14.83615,-13.91465,-10.96585,66.928545,52.6031
--7.03444,-15.30466,-14.35406,-11.31214,69.051584,52.8941
--7.35,-15.778,-14.798,-11.76,71.2754,53.2434
--7.128,-15.39648,-14.35104,-11.49984,69.132096,51.7728
--7.22456,-15.49478,-14.44912,-11.50226,69.146644,52.3218
--7.00416,-15.02208,-14.00832,-11.15136,67.027968,51.6768
--6.94925,-14.71075,-13.718,-10.83,65.729075,50.7585
--7.623,-16.137,-15.048,-11.979,72.1017,53.54
--7.644,-15.974,-14.896,-11.858,71.4714,52.3614
--7.505,-15.485,-14.535,-11.59,69.2835,50.4735
--7.58716,-15.75056,-14.69412,-11.81292,70.041972,51.7734
--7.43232,-15.42912,-14.39424,-11.47776,68.612544,51.2928
--7.5264,-15.5232,-14.48832,-11.47776,68.753664,50.8992
--7.62048,-15.42912,-14.48832,-11.57184,68.744256,51.3814
--8.1,-16.4,-15.4,-12.5,73.07,53.13
--7.5563,-15.20475,-14.1911,-11.33445,67.426155,49.704
--7.5563,-15.20475,-14.1911,-11.4266,67.426155,49.989
--7.80615,-15.6123,-14.57775,-11.6622,68.816385,50.654
--8.06652,-15.94098,-14.88465,-12.00375,70.265151,52.0938
--8.23284,-16.26966,-15.19155,-12.25125,71.713917,52.7868
--7.6608,-15.1392,-14.136,-11.4912,66.82224,50.5152
--7.9135,-15.4546,-14.4305,-11.5444,68.22368,49.8085
--7.9135,-15.3615,-14.4305,-11.5444,68.21437,49.419
--8.17344,-15.77664,-14.7312,-11.78496,69.721344,49.5648
--8.428,-16.366,-15.288,-12.348,71.9026,50.8914
--8.613,-16.632,-15.444,-12.573,72.6363,52.22
--8.265,-15.865,-14.82,-11.78,69.7015,49.989
--7.942,-15.162,-14.16925,-11.28125,66.29765,50.198
--8.544,-16.128,-15.072,-12.096,70.5216,50.0448
--8.1168,-15.3216,-14.3184,-11.4,66.99552,53.6832
--8.379,-15.6408,-14.6167,-11.6375,68.40057,54.5174
--8.55,-15.96,-14.915,-11.875,69.787,54.93
--8.918,-16.464,-15.386,-12.25,71.9908,52.4692
--8.918,-16.464,-15.386,-12.446,72.0888,53.93
--9.108,-16.632,-15.543,-12.375,72.8244,53.1927
--8.47872,-15.48288,-14.46912,-11.70432,67.792896,51.5808
--8.835,-16.055,-15.01,-12.16,69.882,51.5185
--8.4816,-15.4128,-14.4096,-11.4912,67.17792,52.6272
--8.84352,-15.89952,-14.86464,-12.04224,69.299328,52.7328
--8.84352,-15.89952,-14.86464,-12.04224,69.299328,53.8412
--9.215,-16.393,-15.326,-12.222,71.5472,53.1754
--8.8445,-15.7339,-14.7098,-11.7306,68.67056,52.4685
--8.664,-15.4128,-14.5008,-11.856,67.26,52.288
--9.312,-16.49,-15.423,-12.513,71.5375,54.72
--9.12,-16.15,-15.105,-12.16,70.072,54.93
--9.0307,-15.827,-14.8029,-11.9168,68.67056,54.1254
--9.50796,-16.4934,-15.42618,-12.41856,71.561952,53.8758
--9.702,-16.83,-15.741,-12.87,73.0224,53.94
--9.604,-16.66,-15.68,-12.74,72.373,54.24
--9.31095,-16.08255,-15.048,-12.2265,69.455925,53.6877
--9.40896,-16.25184,-15.2064,-12.26016,70.18704,52.1664
--9.215,-15.75765,-14.744,-11.7952,68.052775,52.573
--9.7,-16.587,-15.52,-12.707,71.7315,54.72
--9.696,-16.416,-15.456,-12.384,70.992,54.64
--9.30715,-15.75765,-14.83615,-11.88735,68.13571,52.0885
--9.69408,-16.25184,-15.2064,-12.26016,70.28208,54.1728
--9.89604,-16.68744,-15.62022,-12.41856,71.736588,53.7966
--9.99306,-16.68744,-15.62022,-12.41856,71.74629,53.0474
--9.59136,-16.01664,-14.99232,-12.01248,68.86224,52.8941
--9.68715,-16.1766,-15.14205,-12.13245,69.54057,52.573
--9.98712,-16.51716,-15.46083,-12.4839,71.014185,52.7874
--10.09008,-16.68744,-15.62022,-12.80664,71.833608,53.7236
--9.7776,-16.01664,-14.99232,-12.19872,68.946048,52.7424
--9.6768,-15.94368,-14.83776,-11.9808,68.24448,51.7824
--10.07636,-16.44538,-15.39972,-12.45286,70.382424,52.6031
--10.176,-16.512,-15.552,-12.576,71.088,52.3488
--10.176,-16.608,-15.552,-12.672,71.088,54.02
--10.593,-17.127,-16.038,-13.068,73.3095,53.4798
--10.272,-16.608,-15.552,-12.576,71.0784,51.3984
--10.0548,-16.1063,-15.0822,-12.2892,68.94055,51.1385
--10.58508,-16.95573,-15.87762,-13.13334,72.576405,52.8957
--10.25581,-16.27757,-15.24258,-12.2317,69.664236,52.0405
--9.9408,-15.8688,-14.7744,-12.0384,67.52448,51.5808
--10.464,-16.704,-15.648,-12.672,71.088,52.0608
--10.4544,-16.53696,-15.49152,-12.64032,70.47216,52.7967
--10.3499,-16.46575,-15.33667,-12.51397,69.758326,52.3218
--10.33632,-16.20288,-15.17856,-12.38496,69.039168,51.8271
--10.545,-16.53,-15.485,-12.825,70.433,50.5875
--11.1,-17.4,-16.4,-13.3,74.14,53.54
--10.64672,-16.54044,-15.58984,-12.73804,70.477484,52.6554
--10.976,-17.15,-16.072,-13.034,72.6572,51.5676
--10.961,-16.975,-15.908,-12.998,71.9158,52.73
--10.961,-16.975,-15.908,-12.901,72.0031,50.8571
--11.074,-17.15,-16.072,-13.23,72.765,51.3912
--10.50624,-16.128,-15.11424,-12.4416,68.419584,50.7264
--10.6134,-16.2925,-15.2684,-12.3823,69.10813,51.6754
--10.37875,-15.884,-14.801,-12.0935,67.0016,49.609
--11.0446,-16.90304,-15.75056,-12.86936,71.300096,51.1756
--11.27115,-17.24976,-16.17165,-13.13334,72.762624,51.3018
--10.91328,-16.55808,-15.5232,-12.51264,69.844992,50.7052
--11.368,-17.248,-16.17,-13.23,72.7552,50.8914
--11.12202,-16.73056,-15.6849,-12.73804,70.572544,51.2834
--11.466,-17.248,-16.17,-13.23,72.7552,50.4994
--11.583,-17.424,-16.335,-13.464,73.5966,51.2226
--11.446,-17.072,-16.005,-12.998,72.0128,52.14
--10.7616,-16.0512,-15.048,-12.1296,67.70688,50.2368
--11.21708,-16.73056,-15.6849,-12.73804,70.667604,50.029
--11.19552,-16.55808,-15.5232,-12.88896,69.939072,49.1808
--11.31214,-16.73056,-15.6849,-13.02322,70.667604,50.1975
--11.172,-16.3856,-15.4546,-12.7547,69.21054,50.3132
--11.52,-16.896,-15.936,-13.152,71.3664,49.9488
--11.76,-17.346,-16.268,-13.328,72.8434,50.7836
--11.737,-17.169,-16.102,-13.192,72.1098,52.03
--11.61963,-17.09334,-15.94098,-13.15611,71.388702,50.1878
--11.2651,-16.5718,-15.4546,-12.6616,69.21054,48.8775
--11.95722,-17.34777,-16.26966,-13.42737,72.860634,51.4107
--11.956,-17.444,-16.366,-13.23,72.8532,51.05
--11.24352,-16.31232,-15.29856,-12.71808,68.640768,49.5648
--11.808,-17.088,-16.032,-13.056,71.5008,50.64
--11.93346,-17.26956,-16.20234,-13.0977,72.270198,50.7052
--11.78,-16.91,-15.865,-13.015,70.7655,51.93
--11.90772,-17.09334,-16.03701,-13.15611,71.628777,51.5196
--12.028,-17.363,-16.199,-13.289,72.3426,52.54
--11.28125,-16.15475,-15.07175,-12.36425,67.30845,49.4285
--12.25,-17.542,-16.366,-13.426,73.0786,51.23
--11.64,-16.57536,-15.55104,-12.75744,69.448896,49.1208
--11.85408,-16.74624,-15.71136,-12.88896,70.155456,48.7968
--11.97756,-17.01574,-15.87502,-13.11828,70.905254,50.3132
--12.222,-17.363,-16.296,-13.289,72.3426,50.94
--11.8237,-16.6649,-15.6408,-12.7547,69.43398,49.3335
--11.70305,-16.49485,-15.4812,-12.62455,68.72547,48.5735
--12.07008,-17.01216,-15.96672,-13.11552,70.880832,51.0147
--12.29312,-17.19116,-16.13472,-13.34956,71.722672,50.421
--11.91936,-16.66848,-15.64416,-12.85056,69.448896,49.5185
--11.9168,-16.6649,-15.6408,-12.7547,69.52708,50.2054
--12.771,-17.721,-16.632,-13.563,73.9332,50.43
--12.513,-17.363,-16.296,-13.289,72.4396,49.73
--11.64225,-16.15475,-15.162,-12.36425,67.3987,47.5285
--12.103,-16.6649,-15.6408,-13.034,69.52708,49.4214
--12.3578,-17.01574,-15.97008,-13.11828,70.990808,49.8134
--12.61,-17.46,-16.296,-13.386,72.4299,48.7328
--12.45024,-17.1072,-15.96672,-12.92544,70.975872,49.6704
--12.45286,-17.01574,-15.97008,-13.11828,70.981302,49.5194
--12.1961,-16.758,-15.7339,-12.9409,69.51777,49.1274
--12.936,-17.64,-16.464,-13.622,73.2746,48.951
--12.1638,-16.587,-15.57335,-12.62455,68.81762,47.348
--12.41856,-16.9344,-15.89952,-12.88896,70.258944,47.6736
--12.41988,-17.03029,-15.90121,-13.07851,70.266412,48.2381
--12.77199,-17.2854,-16.22907,-13.34817,71.811234,49.4505
--12.38496,-16.7616,-15.73728,-12.75744,69.635136,48.3448
--12.1296,-16.416,-15.4128,-12.5856,68.19024,48.9024
--12.73536,-17.1072,-16.06176,-13.11552,71.061408,47.4624
--13.00068,-17.4636,-16.39638,-13.38876,72.551556,50.1074
--13.132,-17.64,-16.562,-13.72,73.2746,50.7052
--12.44025,-16.67915,-15.57335,-12.80885,68.992705,47.633
--13.0977,-17.4636,-16.39638,-13.38876,72.638874,48.7575
--12.18375,-16.33525,-15.25225,-12.635,67.570175,48.564
--12.92816,-17.1108,-16.06514,-13.02322,71.171422,48.8432
--13.06144,-17.38324,-16.3268,-13.4456,71.914752,49.5292
--12.6616,-16.8511,-15.827,-12.9409,69.70397,48.265
--13.06144,-17.38324,-16.3268,-13.4456,71.905148,48.5492
--13.42737,-17.73981,-16.6617,-13.7214,73.380087,49.1535
--13.15611,-17.38143,-16.3251,-13.63626,71.897661,48.0538
--13.152,-17.472,-16.32,-13.44,71.8752,49.33
--13.7,-18.1,-17,-13.9,74.88,50.14
--13.524,-17.738,-16.66,-13.72,73.3726,49.3332
--12.5856,-16.5984,-15.504,-12.768,68.28144,48.1248
--12.9789,-17.1171,-15.9885,-13.26105,70.415235,46.968
--12.71808,-16.68096,-15.6672,-12.9024,69.000192,47.0688
--13.344,-17.376,-16.32,-13.632,71.8752,46.7904
--12.6768,-16.5984,-15.5952,-12.8592,68.28144,46.7904
--13.21056,-17.29728,-16.25184,-13.3056,71.156448,48.4407
--12.9024,-16.77312,-15.75936,-12.9024,69.000192,47.5584
--13.3,-17.29,-16.245,-13.395,71.2215,45.923
--13.5828,-17.65764,-16.4934,-13.48578,72.735894,52.2027
--13.3084,-17.20586,-16.25526,-13.40346,71.256976,50.1878
--13.959,-18.018,-16.929,-13.959,74.2203,51.83
--13.12992,-16.94784,-15.92352,-13.0368,69.821376,48.1605
--13.395,-17.29,-16.245,-13.3,71.2215,49.33
--12.8155,-16.4255,-15.43275,-12.635,67.660425,47.348
--13.91742,-17.83782,-16.75971,-13.7214,73.478097,48.0744
--12.9504,-16.6896,-15.5952,-12.9504,68.36352,46.6848
--13.0853,-16.86345,-15.75765,-12.99315,69.07564,48.2381
--13.73229,-17.57349,-16.51716,-13.54023,72.003294,48.5397
--13.0416,-16.5984,-15.6864,-12.8592,68.37264,47.063
--13.3133,-16.9442,-15.9201,-13.1271,69.79707,48.5492
--12.90575,-16.51575,-15.523,-12.8155,67.660425,47.5285
--13.45487,-17.21847,-16.18348,-13.36078,70.539273,48.5291
--13.68864,-17.39598,-16.35032,-13.49852,71.266482,48.0538
--13.68576,-17.39232,-16.34688,-13.40064,71.346528,47.7504
--13.824,-17.568,-16.512,-13.536,71.9712,49.95
--13.54896,-17.31256,-16.18348,-13.1726,70.633363,52.2151
--13.92,-17.664,-16.512,-13.632,72.0672,48.93
--13.775,-17.48,-16.34,-13.49,71.3165,50.03
--14.355,-18.216,-17.028,-14.157,74.3193,50.34
--13.87876,-17.49104,-16.35032,-13.49852,71.361542,47.6574
--14.308,-18.032,-16.954,-14.21,73.5588,48.1572
--14.02038,-17.66952,-16.61319,-13.82832,72.080118,48.7328
--13.4539,-16.9556,-15.94195,-12.99315,69.177005,47.1711
--13.5926,-17.0373,-16.1063,-13.1271,69.88086,47.6574
--13.87876,-17.49104,-16.35032,-13.59358,71.352036,47.1711
--14.11641,-17.66952,-16.61319,-13.82832,72.080118,48.4407
--13.97382,-17.49104,-16.44538,-13.59358,71.352036,48.0635
--13.68864,-17.2272,-16.10976,-13.22304,69.905184,46.608
--13.26675,-16.606,-15.61325,-12.72525,67.750675,47.1675
--14.35896,-17.85168,-16.78446,-13.67982,72.920232,49.3416
--13.6382,-16.86345,-15.94195,-13.17745,69.177005,47.6658
--13.9194,-17.39925,-16.27065,-13.44915,70.68798,48.7575
--14.602,-18.228,-17.052,-14.112,73.6666,48.265
--14.01941,-17.50074,-16.37166,-13.64305,70.718044,48.8298
--14.30847,-17.76555,-16.70922,-13.73229,72.176148,48.3448
--14.602,-18.032,-17.052,-14.014,73.6568,49.0294
--14.304,-17.664,-16.608,-13.728,72.1536,49.84
--13.5375,-16.69625,-15.7035,-12.996,67.8319,46.398
--14.256,-17.5824,-16.53696,-13.68576,71.441568,48.5184
--14.1075,-17.39925,-16.3647,-13.44915,70.68798,46.398
--14.259,-17.5861,-16.54044,-13.59358,71.447096,49.9212
--14.553,-17.9487,-16.88148,-13.97088,72.929934,48.9357
--14.0581,-17.2235,-16.1994,-13.4064,69.97396,45.7425
--14.20608,-17.49888,-16.36992,-13.54752,70.710528,47.7652
--14.65002,-18.04572,-16.88148,-13.87386,72.929934,47.6574
--13.91465,-17.1399,-16.0341,-13.2696,69.25994,48.2381
--13.62775,-16.69625,-15.7035,-12.996,67.8319,48.488
--14.1512,-17.2235,-16.1994,-13.4995,69.97396,46.474
--14.59656,-17.76555,-16.70922,-13.82832,72.176148,48.6486
--14.744,-18.139,-16.975,-14.259,72.9052,46.5988
--15.2,-18.7,-17.5,-14.5,75.16,48.23
--14.44,-17.765,-16.625,-13.775,71.402,48.55
--14.44912,-17.68116,-16.6355,-13.7837,71.447096,46.8898
--14.2443,-17.3166,-16.2925,-13.4064,70.06706,47.6574
--13.80825,-16.7865,-15.7035,-13.08625,67.92215,46.398
--14.69259,-17.76555,-16.70922,-13.82832,72.176148,46.7055
--14.535,-17.67,-16.625,-13.87,71.402,48.23
--14.784,-17.952,-16.8,-13.92,72.2496,49.44
--14.94108,-18.14274,-16.9785,-13.97088,73.017252,48.3516
--14.78862,-17.86158,-16.80525,-13.92435,72.272178,48.3448
--14.4837,-17.4933,-16.45875,-13.5432,70.772625,48.1437
--15.092,-18.228,-17.15,-14.014,73.7548,48.23
--15.5,-18.6,-17.5,-14.5,75.26,48.04
--14.28325,-17.23205,-16.12625,-13.36175,69.35209,46.9965
--14.4305,-17.4097,-16.2925,-13.4064,70.06706,46.398
--14.4305,-17.4097,-16.2925,-13.4064,70.06706,47.7554
--14.7312,-17.67744,-16.632,-13.68576,71.527104,47.1744
--14.725,-17.67,-16.625,-13.775,71.497,45.3625
--15.132,-18.139,-17.072,-14.162,73.0022,48.63
--14.67804,-17.59483,-16.55984,-13.92532,70.821543,46.6085
--14.6718,-17.6814,-16.5528,-13.82535,70.78203,48.4308
--14.976,-17.952,-16.896,-13.824,72.2496,47.94
--15.132,-18.139,-17.072,-13.774,73.0992,48.1605
--15.288,-18.228,-17.248,-14.21,73.8528,48.73
--15.386,-18.228,-17.248,-14.014,73.7548,48.63
--15.386,-18.326,-17.248,-14.21,73.8528,48.34
--14.16925,-16.87675,-15.884,-13.08625,68.003375,47.2435
--15.07828,-18.05552,-16.90304,-14.02184,72.36614,46.9812
--15.7,-18.7,-17.6,-14.4,75.35,49.95
--14.5597,-17.1399,-16.2184,-13.0853,69.44424,47.5591
--15.17432,-17.86344,-16.90304,-13.9258,72.375744,48.8432
--14.56128,-17.14176,-16.22016,-13.27104,69.451776,48.1344
--15.01632,-17.77248,-16.72704,-13.87584,71.61264,49.0446
--14.71296,-17.50656,-16.38912,-13.68864,70.175232,48.6358
--14.65185,-17.3242,-16.2184,-13.36175,69.435025,45.8185
--14.95872,-17.59296,-16.55808,-13.54752,70.88928,48.265
--14.95395,-17.4933,-16.5528,-13.5432,70.87608,46.968
--15.741,-18.414,-17.424,-14.256,74.5965,48.84
--15.11454,-17.77622,-16.73056,-13.7837,71.637216,47.5688
--15.27036,-18.05552,-16.90304,-14.21392,72.36614,49.6272
--15.0528,-17.68704,-16.55808,-13.73568,70.88928,48.5492
--15.0528,-17.59296,-16.55808,-13.6416,70.88928,46.4064
--15.0528,-17.49888,-16.55808,-13.54752,70.88928,48.4512
--15.5232,-18.04572,-17.07552,-13.97088,73.10457,48.4414
--14.744,-17.1399,-16.2184,-13.2696,69.44424,48.2478
--15.0528,-17.59296,-16.55808,-13.73568,70.88928,46.9632
--14.44,-16.967,-15.884,-13.08625,68.003375,46.2935
--15.456,-18.048,-16.896,-13.824,72.432,47.1744
--15.14205,-17.58735,-16.5528,-13.7313,70.960725,49.3416
--15.295,-17.67,-16.72,-13.68,71.5825,48.45
--15.14688,-17.59296,-16.55808,-13.6416,70.992768,46.795
--15.77961,-18.42588,-17.24976,-14.40747,73.958346,48.4407
--15.14849,-17.78301,-16.65393,-13.73714,70.906224,47.3748
--15.24258,-17.68892,-16.55984,-13.64305,70.896815,46.9965
--15.55848,-17.95948,-16.90304,-13.82976,72.375744,47.5888
--15.24096,-17.59296,-16.55808,-13.54752,70.88928,47.9416
--15.55848,-17.95948,-16.90304,-13.82976,72.46218,46.8734
--15.24096,-17.68704,-16.55808,-13.73568,70.98336,46.6848
--14.6205,-16.967,-15.884,-13.26675,68.093625,45.638
--15.24096,-17.68704,-16.55808,-13.82976,70.98336,46.3008
--15.65289,-17.95761,-16.90128,-14.02038,72.454635,46.8898
--15.974,-18.326,-17.248,-14.21,73.941,47.8632
--15.17856,-17.50656,-16.48224,-13.68864,70.25904,45.9198
--15.485,-17.955,-16.815,-13.87,71.6775,48.45
--15.97563,-18.52389,-17.34777,-14.40747,73.948545,47.2725
--15.33015,-17.6814,-16.64685,-13.5432,70.97013,45.258
--15.65289,-18.05364,-16.99731,-13.92435,72.454635,46.7055
--16.072,-18.424,-17.346,-14.21,73.941,47.9416
--15.744,-18.048,-16.992,-14.304,72.4416,47.64
--15.74892,-18.14967,-16.99731,-14.21244,72.464238,48.5397
--16.236,-18.711,-17.523,-14.553,74.6955,48.1437
--14.9568,-17.2368,-16.1424,-13.3152,68.8104,46.4064
--15.58656,-17.86752,-16.82208,-13.87584,71.70768,44.9664
--15.744,-18.048,-16.992,-13.92,72.432,47.82
--15.5232,-17.68704,-16.65216,-13.73568,71.086848,48.0494
--16.335,-18.711,-17.523,-14.553,74.6955,47.2725
--15.8466,-18.15156,-17.09512,-14.11788,72.46218,46.6872
--16.17,-18.522,-17.444,-14.406,73.941,48.34
--15.6816,-17.86752,-16.82208,-13.7808,71.717184,47.8566
--15.6816,-17.86752,-16.82208,-13.97088,71.70768,47.6685
--16.335,-18.711,-17.622,-14.751,74.6955,47.75
--16.434,-18.81,-17.622,-14.751,74.6955,46.8666
--16.434,-18.81,-17.622,-14.751,74.6955,47.05
--15.45792,-17.6928,-16.57536,-13.59552,70.361472,45.84
--16.102,-18.333,-17.169,-14.162,73.1865,46.1041
--15.2969,-17.3242,-16.4027,-13.36175,69.527175,45.6385
--15.29856,-17.32608,-16.31232,-13.45536,69.62688,45.2448
--16.10532,-18.23976,-17.17254,-14.26194,73.308312,47.2725
--16.102,-18.333,-17.266,-14.259,73.2835,45.6288
--15.1392,-17.328,-16.2336,-13.5888,68.8104,46.5785
--16.533,-18.711,-17.622,-14.553,74.7945,46.8666
--16.199,-18.333,-17.266,-14.162,73.1865,47.13
--15.38905,-17.3242,-16.4027,-13.4539,69.62854,46.5018
--16.032,-18.048,-17.088,-14.112,72.528,48.23
--15.87502,-17.96634,-16.92068,-13.97382,71.81783,45.717
--15.2304,-17.328,-16.2336,-13.68,68.9016,45.0775
--15.5477,-17.689,-16.5718,-13.8719,70.33705,44.973
--15.97008,-18.0614,-16.92068,-13.87876,71.81783,46.1874
--16.632,-18.711,-17.622,-14.553,74.7945,46.84
--15.162,-16.967,-16.0645,-13.357,68.183875,44.7735
--15.3216,-17.1456,-16.2336,-13.4976,68.9016,45.8304
--16.128,-18.144,-17.088,-14.112,72.5376,47.94
--16.296,-18.43,-17.266,-14.259,73.2835,46.84
--15.80712,-17.8771,-16.74802,-14.01941,71.084995,45.4348
--15.57335,-17.5085,-16.4027,-13.2696,69.619325,46.018
--15.89445,-17.77545,-16.7409,-13.63725,71.054775,47.4507
--16.39638,-18.23976,-17.26956,-14.26194,73.29861,48.8432
--16.22907,-18.2457,-17.09334,-14.50053,72.550665,47.0547
--16.56369,-18.81792,-17.54379,-14.79951,74.046555,47.1636
--15.7339,-17.7821,-16.6649,-13.8719,70.33705,45.8185
--16.06176,-18.0576,-17.01216,-13.97088,71.80272,46.5795
--15.89952,-17.78112,-16.84032,-13.82976,71.07744,47.4712
--16.562,-18.424,-17.444,-14.21,74.039,47.187
--16.224,-18.048,-17.088,-14.112,72.528,47.94
--16.32,-18.048,-17.088,-13.92,72.528,47.24
--15.9953,-17.78301,-16.74802,-13.92532,71.084995,46.5988
--16.32,-18.144,-17.088,-14.208,72.528,45.0624
--15.827,-17.5959,-16.5718,-13.965,70.33705,45.3625
--15.9885,-17.8695,-16.7409,-13.9194,71.06418,46.6587
--15.9936,-17.8752,-16.74624,-13.82976,71.068032,46.0012
--16.1568,-18.0576,-16.91712,-14.06592,71.80272,46.0746
--15.9885,-17.77545,-16.7409,-13.82535,71.054775,44.3175
--15.827,-17.5959,-16.5718,-13.5926,70.33705,46.501
--16.4934,-18.4338,-17.26956,-14.45598,73.29861,46.4706
--16.08255,-17.96355,-16.7409,-13.7313,71.054775,47.3517
--17.1,-19,-17.8,-14.4,75.55,45.65
--16.25526,-18.0614,-16.92068,-13.7837,71.81783,45.9032
--16.758,-18.522,-17.444,-14.406,74.0488,46.84
--16.758,-18.522,-17.444,-14.504,74.039,46.795
--16.25526,-17.96634,-16.92068,-14.06888,71.81783,46.109
--16.59042,-18.4338,-17.26956,-14.45598,73.29861,45.0945
--16.587,-18.527,-17.266,-14.453,73.3805,47.13
--16.512,-18.336,-17.184,-14.304,72.528,46.14
--16.25184,-18.15264,-17.01216,-14.16096,71.89776,46.2924
--15.9201,-17.7821,-16.6649,-13.7788,70.43015,47.0792
--16.18176,-17.8752,-16.84032,-14.112,71.17152,45.552
--17.028,-18.81,-17.721,-14.652,74.8044,47.34
--16.35032,-18.0614,-17.01574,-14.16394,71.81783,45.423
--16.0132,-17.7821,-16.6649,-14.0581,70.33705,43.928
--16.18348,-18.06528,-16.84211,-14.1135,71.169676,45.5318
--16.18176,-18.06336,-16.9344,-14.112,71.17152,45.8304
--16.34,-18.24,-17.1,-14.25,71.858,47.45
--16.01664,-17.78592,-16.7616,-13.968,70.44528,44.7558
--16.856,-18.718,-17.64,-14.504,74.1272,45.65
--16.34688,-18.15264,-17.1072,-14.256,71.89776,44.9664
--15.94195,-17.6928,-16.587,-14.0068,69.711475,44.4648
--17.127,-19.107,-17.919,-15.246,74.8836,45.8865
--16.44538,-18.34658,-17.20586,-14.35406,71.91289,46.0012
--16.954,-18.914,-17.738,-14.896,74.137,46.3932
--16.27065,-18.15165,-17.02305,-14.1075,71.13942,45.543
--16.44538,-18.15646,-17.20586,-14.35406,71.91289,45.8248
--15.94368,-17.60256,-16.5888,-14.00832,69.71904,44.88
--16.27757,-17.97119,-16.9362,-14.01941,71.179085,45.3572
--16.27584,-18.06336,-17.02848,-14.20608,71.162112,45.6288
--17.127,-19.107,-17.919,-15.147,74.9034,47.05
--16.71096,-18.53572,-17.38324,-14.69412,72.644656,45.5014
--16.3647,-18.2457,-17.02305,-14.2956,71.13942,44.7735
--17.226,-19.107,-17.919,-14.949,74.8935,46.4706
--16.0341,-17.78495,-16.67915,-13.91465,69.70226,45.0468
--16.878,-18.624,-17.557,-14.55,73.3805,47.05
--15.8688,-17.5104,-16.5072,-13.7712,68.9928,44.496
--16.20288,-17.87904,-16.85472,-14.15424,70.44528,44.1888
--17.226,-19.107,-17.919,-15.246,74.8935,46.35
--16.0341,-17.8771,-16.7713,-14.0068,69.711475,44.7558
--17.226,-19.206,-18.018,-15.048,74.8935,44.9856
--17.052,-19.012,-17.836,-14.896,74.039,45.423
--17.226,-19.107,-18.018,-14.949,74.7945,46.0746
--16.9785,-18.62784,-17.56062,-14.65002,73.39563,45.9657
--16.296,-17.97216,-16.94784,-14.15424,70.44528,44.4648
--16.46575,-18.25346,-17.12438,-14.39577,71.084995,44.9595
--16.45875,-18.33975,-17.1171,-14.38965,71.054775,46.3716
--16.464,-18.3456,-17.12256,-14.30016,71.086848,45.5112
--16.128,-17.87904,-16.77312,-14.19264,69.71904,45.4464
--16.625,-18.43,-17.29,-14.345,71.8675,44.422
--16.8,-18.528,-17.472,-14.4,72.624,46.94
--16.45875,-18.2457,-17.1171,-14.2956,71.054775,45.0775
--16.296,-18.06528,-17.04096,-14.34048,70.361472,45.7161
--17.424,-19.305,-18.117,-15.246,74.8935,47.75
--16.5528,-18.33975,-17.21115,-14.38965,71.148825,46.6587
--16.90128,-18.72585,-17.57349,-14.59656,72.646695,45.8228
--16.73056,-18.44164,-17.39598,-14.44912,71.827336,46.697
--17.072,-18.818,-17.751,-14.841,73.3805,47.75
--16.3856,-18.0614,-16.9442,-14.3374,70.43015,44.8685
--16.896,-18.72,-17.568,-14.88,72.624,47.13
--16.72,-18.62,-17.48,-14.63,71.8675,48.34
--15.884,-17.689,-16.606,-13.80825,68.274125,46.0275
--16.55984,-18.44164,-17.31256,-14.39577,71.179085,46.5018
--16.48224,-18.1584,-17.13408,-14.24736,70.44528,46.9965
--16.31055,-17.96925,-16.9556,-14.09895,69.711475,46.9965
--16.992,-18.72,-17.568,-14.688,72.6336,46.512
--17.346,-19.11,-17.934,-14.994,74.137,48.85
--16.31055,-17.96925,-16.86345,-14.0068,69.711475,46.0275
--16.82208,-18.5328,-17.48736,-14.63616,71.89776,47.2725
--16.64685,-18.33975,-17.3052,-14.4837,71.148825,47.9655
--16.82208,-18.62784,-17.48736,-14.54112,71.89776,46.224
--16.4787,-18.1545,-17.1304,-14.2443,70.43015,46.5794
--17.17254,-18.9189,-17.85168,-14.84406,73.39563,47.1636
--16.31232,-17.87904,-16.86528,-13.91616,69.71904,45.7344
--16.99731,-18.62982,-17.57349,-14.30847,72.646695,46.7676
--16.64685,-18.33975,-17.21115,-14.38965,71.148825,47.0547
--16.7409,-18.4338,-17.21115,-14.6718,71.148825,47.1636
--16.57536,-18.25152,-17.13408,-14.15424,70.44528,47.1711
--16.5718,-18.1545,-17.0373,-14.0581,70.43015,45.7425
--17.09334,-18.72585,-17.57349,-14.69259,72.646695,47.3517
--16.4027,-17.8771,-16.86345,-14.0068,69.619325,45.7425
--16.74802,-18.25346,-17.21847,-14.20759,71.169676,46.7928
--16.91712,-18.43776,-17.39232,-14.35104,71.89776,48.6486
--16.4027,-17.8771,-16.86345,-14.1911,69.711475,47.8598
--17.444,-19.11,-17.934,-15.19,74.137,48.3434
--17.8,-19.5,-18.3,-15.4,75.65,49.14
--16.2336,-17.784,-16.6896,-14.0448,68.9928,46.1184
--17.622,-19.305,-18.117,-15.048,74.8836,48.15
--16.3248,-17.784,-16.7808,-13.9536,68.9928,45.3625
--16.3248,-17.6928,-16.6896,-13.9536,68.98368,45.0775
--17.19116,-18.63176,-17.57532,-14.79016,72.65426,48.1572
--17.36658,-18.82188,-17.75466,-14.65002,73.39563,47.7652
--16.84032,-18.3456,-17.21664,-14.39424,71.17152,46.6872
--16.3248,-17.8752,-16.6896,-13.9536,68.9928,45.6475
--16.83495,-18.33975,-17.21115,-14.38965,71.148825,44.878
--17.363,-18.915,-17.848,-14.841,73.3805,46.3175
--17.363,-18.818,-17.751,-14.647,73.3708,47.64
--17.01574,-18.44164,-17.39598,-14.44912,71.91289,46.3951
--17.005,-18.335,-17.385,-14.345,71.8675,45.8185
--17.01574,-18.44164,-17.39598,-14.54418,71.91289,46.1041
--16.49485,-17.96925,-16.86345,-14.09895,69.785195,46.3175
--17.542,-19.208,-17.934,-14.896,74.137,46.9812
--17.9,-19.4,-18.3,-15.3,75.65,48.23
--16.758,-18.1545,-17.0373,-14.0581,70.50463,46.9812
--17.64,-19.012,-17.934,-14.798,74.2154,46.8734
--16.7616,-18.06528,-17.04096,-14.15424,70.519776,46.2108
--17.82,-19.206,-18.117,-15.246,74.9727,47.93
--17.1108,-18.5367,-17.39598,-14.7343,71.988938,46.795
--17.28,-18.816,-17.568,-14.688,72.7008,48.23
--16.9344,-18.43968,-17.21664,-14.39424,71.256192,45.456
--17.4636,-18.9189,-17.75466,-14.94108,73.473246,47.6685
--16.416,-17.784,-16.6896,-13.7712,69.06576,45.543
--17.1,-18.43,-17.385,-14.345,71.9435,47.53
--16.9344,-18.15744,-17.21664,-14.39424,71.246784,45.168
--17.82,-19.206,-18.117,-15.444,74.9727,47.53
--17.02305,-18.4338,-17.3052,-14.4837,71.224065,46.7676
--17.46,-19.012,-17.848,-14.744,73.4581,46.1041
--17.195,-18.525,-17.48,-14.535,71.9435,45.0775
--17.557,-18.915,-17.751,-14.841,73.4678,45.5415
--16.5072,-17.6928,-16.6896,-13.8624,69.06576,45.9168
--17.38324,-18.53572,-17.57532,-14.50204,72.731092,47.2654
--17.56062,-18.82188,-17.75466,-14.74704,73.473246,46.0012
--17.38143,-18.72585,-17.57349,-14.98068,72.723519,45.5318
--17.919,-19.404,-18.216,-15.246,74.9727,47.53
--17.02305,-18.4338,-17.21115,-14.4837,71.224065,47.7576
--16.85472,-18.1584,-17.04096,-14.34048,70.612896,46.7055
--17.376,-18.624,-17.568,-14.688,72.7008,47.24
--17.02305,-18.2457,-17.21115,-14.2956,71.318115,44.9825
--17.56062,-18.82188,-17.75466,-14.74704,73.570266,47.5695
--17.03029,-18.25346,-17.21847,-14.1135,71.339038,46.2108
--17.557,-18.915,-17.751,-15.035,73.5551,47.83
--17.38143,-18.82188,-17.57349,-14.78862,72.819549,46.8666
--17.654,-18.915,-17.751,-15.035,73.5551,48.04
--17.12438,-18.34755,-17.31256,-14.48986,71.254357,46.0265
--16.94784,-18.1584,-17.04096,-14.24736,70.612896,45.6288
--17.472,-18.624,-17.568,-14.592,72.7968,46.4064
--16.5984,-17.6928,-16.6896,-13.7712,69.15696,44.9664
--17.1171,-18.2457,-17.21115,-14.2956,71.318115,46.9755
--17.30092,-18.44164,-17.39598,-14.7343,72.083998,45.5318
--17.1171,-18.33975,-17.21115,-14.57775,71.318115,44.498
--17.47928,-18.82384,-17.57532,-14.69412,72.827132,46.1874
--17.654,-19.012,-17.848,-14.744,73.5454,45.3572
--17.472,-18.72,-17.568,-14.688,72.7872,45.7344
--17.83782,-19.11195,-17.93583,-14.79951,74.320983,47.3517
--17.47746,-18.62982,-17.57349,-14.78862,72.819549,46.8025
--16.9442,-18.1545,-17.0373,-14.3374,70.59773,46.697
--17.65764,-18.9189,-17.85168,-15.0381,73.570266,47.3517
--17.472,-18.72,-17.664,-14.784,72.7872,46.1184
--16.9442,-18.1545,-17.0373,-14.1512,70.59773,45.543
--17.12256,-18.43968,-17.31072,-14.5824,71.340864,46.795
--17.04096,-18.1584,-17.13408,-14.15424,70.612896,46.6848
--17.75466,-18.9189,-17.75466,-14.65002,73.560564,47.9514
--17.57349,-18.72585,-17.66952,-14.69259,72.819549,47.1711
--17.39232,-18.5328,-17.48736,-14.63616,72.068832,45.9168
--17.21847,-18.44164,-17.31256,-14.30168,71.339038,46.9965
--17.39232,-18.72288,-17.48736,-14.82624,72.068832,47.4606
--17.751,-19.012,-17.848,-14.841,73.5551,46.1041
--18.117,-19.404,-18.216,-15.147,75.0717,47.53
--16.86345,-18.0614,-16.9556,-14.1911,70.006355,44.878
--16.6896,-17.784,-16.7808,-13.68,69.15696,46.512
--17.385,-18.525,-17.48,-14.63,72.029,45.087
--17.21115,-18.33975,-17.3052,-14.2956,71.318115,45.258
--17.93583,-19.11195,-18.03384,-14.99553,74.330784,47.1636
--17.568,-18.912,-17.664,-14.88,72.7968,45.2448
--17.93583,-19.30797,-18.03384,-14.99553,74.311182,47.0646
--17.39598,-18.63176,-17.49104,-14.63924,72.083998,45.2172
--16.86528,-18.06336,-16.95744,-14.10048,70.013952,45.7344
--17.57349,-18.82188,-17.66952,-14.88465,72.963594,46.7831
--17.1304,-18.2476,-17.1304,-14.3374,70.73738,46.1985
--18.216,-19.305,-18.216,-15.345,75.2103,47.3517
--16.86345,-17.96925,-16.9556,-14.28325,69.877345,44.593
--17.3052,-18.33975,-17.3052,-14.4837,71.318115,44.6975
--18.032,-19.208,-18.032,-14.994,74.4506,47.64
--17.664,-18.816,-17.664,-14.88,72.7968,47.54
--16.9556,-18.0614,-16.9556,-14.3754,70.006355,46.3951
--17.49104,-18.63176,-17.49104,-14.63924,72.083998,46.0362
--17.49104,-18.72682,-17.5861,-14.82936,72.083998,45.6385
--17.48736,-18.72288,-17.5824,-14.63616,72.201888,46.8666
--18.03384,-19.20996,-18.13185,-15.09354,74.458197,46.7676
--17.31072,-18.43968,-17.4048,-14.39424,71.472576,45.168
--18.032,-19.208,-18.13,-15.092,74.3232,46.36
--17.48736,-18.62784,-17.5824,-14.7312,72.211392,46.9755
--17.13408,-18.25152,-17.2272,-14.4336,70.743264,47.1711
--16.7808,-17.9664,-16.872,-14.136,69.28464,45.7344
--18.032,-19.306,-18.13,-14.994,74.4506,47.24
--17.848,-19.109,-17.945,-15.035,73.6909,47.05
--16.9556,-18.0614,-17.04775,-14.09895,70.006355,46.683
--17.66952,-18.82188,-17.76555,-14.88465,72.953991,49.6386
--17.3052,-18.4338,-17.39925,-14.2956,71.449785,45.923
--16.606,-17.77925,-16.69625,-13.8985,68.57195,45.4385
--17.40665,-18.53573,-17.40665,-14.48986,71.480173,48.2381
--17.76,-18.912,-17.76,-14.88,72.9312,46.7904
--16.872,-17.8752,-16.872,-14.136,69.15696,45.84
--17.5824,-18.62784,-17.5824,-14.54112,72.201888,47.5596
--17.2235,-18.2476,-17.2235,-14.2443,70.72807,45.7425
--17.04775,-18.0614,-17.04775,-14.28325,69.877345,46.7055
--16.69625,-17.689,-16.69625,-14.079,68.562925,45.543
--17.04775,-18.15355,-17.04775,-14.3754,69.877345,45.144
--17.2235,-18.3407,-17.2235,-14.2443,70.73738,46.5892
--17.5824,-18.81792,-17.5824,-14.7312,72.059328,47.0547
--16.872,-17.9664,-16.872,-14.2272,69.28464,44.8896
--18.13,-19.306,-18.13,-15.288,74.4506,47.53
--18.5,-19.7,-18.5,-15.4,75.98,47.45
--17.5861,-18.63176,-17.5861,-14.7343,72.226588,46.6872
--17.5824,-18.72288,-17.5824,-14.54112,72.201888,46.1184
--17.0496,-18.15552,-17.0496,-14.37696,70.013952,45.456
--17.945,-19.109,-17.945,-15.229,73.7006,47.64
--16.872,-17.9664,-16.872,-14.136,69.28464,46.1184
--17.4048,-18.62784,-17.49888,-14.77056,71.472576,47.873
--17.575,-18.715,-17.67,-14.915,72.1715,48.45
--17.575,-18.715,-17.575,-14.535,72.1715,45.8185
--17.2235,-18.3407,-17.2235,-14.4305,70.72807,46.403
--17.5861,-18.63176,-17.5861,-14.7343,72.217082,46.8898
--17.50074,-18.44164,-17.40665,-14.67804,71.480173,48.3448
--17.32032,-18.34464,-17.2272,-14.4336,70.743264,46.7055
--17.14176,-18.15552,-17.0496,-14.46912,70.023168,46.416
--17.3166,-18.4338,-17.3166,-14.6167,70.72807,44.422
--18.414,-19.503,-18.414,-15.444,75.2103,47.8566
--18.042,-19.109,-17.945,-15.035,73.6909,49.14
--17.86344,-18.91988,-17.86344,-14.8862,72.961588,47.3732
--17.67744,-18.72288,-17.67744,-14.63616,72.201888,45.84
--18.22986,-19.40598,-18.22986,-15.19155,74.458197,48.4407
--18.04572,-19.11294,-18.04572,-15.0381,73.570266,47.3732
--18.22986,-19.30797,-18.13185,-15.28956,74.311182,48.0744
--17.4933,-18.52785,-17.4933,-14.6718,71.318115,47.6784
--18.228,-19.404,-18.228,-15.386,74.3134,47.64
--18.04572,-19.20996,-18.04572,-15.13512,73.570266,47.2725
--18.04572,-19.20996,-18.04572,-15.13512,73.560564,47.8632
--18.414,-19.602,-18.414,-15.543,75.2202,48.05
--17.68116,-18.82188,-17.68116,-14.7343,72.217082,47.3845
--17.86158,-19.01394,-17.86158,-15.07671,72.809946,46.7676
--16.9632,-18.0576,-16.9632,-14.0448,69.28464,45.8185
--17.67744,-18.81792,-17.77248,-14.82624,72.201888,48.3615
--17.4933,-18.6219,-17.58735,-14.76585,71.318115,46.4835
--17.77248,-18.81792,-17.77248,-14.92128,72.211392,47.9655
--17.67744,-18.81792,-17.77248,-14.7312,72.201888,46.6176
--17.86158,-18.91791,-17.86158,-14.88465,72.953991,48.4407
--16.87675,-17.77925,-16.7865,-14.079,68.42755,44.6975
--17.765,-18.715,-17.67,-14.63,72.0385,46.4075
--17.59483,-18.62982,-17.50074,-14.58395,71.348447,47.1711
--17.95761,-19.01394,-17.95761,-14.98068,72.819549,47.4606
--17.4097,-18.5269,-17.4097,-14.4305,70.59773,46.9812
--16.87675,-17.8695,-16.7865,-14.2595,68.436575,46.132
--17.59296,-18.62784,-17.59296,-14.77056,71.340864,47.0688
--17.23205,-18.2457,-17.23205,-14.28325,69.877345,46.4921
--17.765,-18.81,-17.67,-14.82,72.0385,45.258
--17.95761,-19.01394,-17.86158,-15.07671,72.819549,47.5591
--17.765,-18.81,-17.67,-14.63,72.0385,48.15
--17.77622,-18.82188,-17.68116,-14.7343,72.083998,48.0494
--17.95761,-19.01394,-17.95761,-15.07671,72.809946,45.9198
--17.59296,-18.72192,-17.59296,-14.5824,71.340864,47.9318
--17.77248,-18.91296,-17.77248,-14.7312,72.068832,47.2725
--16.87675,-17.95975,-16.87675,-14.16925,68.42755,45.0775
--17.58735,-18.71595,-17.58735,-14.57775,71.318115,44.6975
--17.23205,-18.2457,-17.23205,-14.3754,69.877345,47.7725
--17.23205,-18.2457,-17.1399,-14.3754,69.877345,46.8898
--17.952,-19.008,-17.952,-14.976,72.7968,46.512
--17.95761,-19.01394,-17.95761,-14.98068,72.809946,47.6685
--17.41344,-18.43776,-17.41344,-14.61984,70.612896,46.6176
--17.50656,-18.53088,-17.41344,-14.61984,70.612896,46.8898
--18.326,-19.502,-18.326,-15.386,74.3134,47.83
--17.58735,-18.71595,-17.58735,-14.76585,71.30871,48.9456
--17.765,-18.905,-17.765,-14.915,72.029,48.56
--18.236,-19.206,-18.139,-15.229,73.5551,46.94
--18.14274,-19.20996,-18.14274,-15.23214,73.560564,47.6685
--18.23976,-19.20996,-18.14274,-15.32916,73.706094,46.795
--17.86,-18.81,-17.765,-15.01,72.0385,46.1985
--18.42588,-19.50399,-18.32787,-15.38757,74.320983,47.3517
--17.68704,-18.72192,-17.59296,-14.86464,71.350272,45.744
--18.05552,-19.11196,-17.95948,-14.8862,72.827132,46.9812
--17.50656,-18.53088,-17.41344,-14.61984,70.612896,47.6658
--18.23976,-19.20996,-18.14274,-15.32916,73.706094,47.4606
--18.236,-19.206,-18.139,-15.229,73.6909,46.0265
--18.8,-19.8,-18.7,-15.9,75.98,48.15
--17.68704,-18.72192,-17.59296,-14.77056,71.472576,46.4064
--18.05364,-19.10997,-17.95761,-15.17274,72.953991,47.7576
--17.68704,-18.72192,-17.59296,-14.77056,71.472576,45.6288
--18.23976,-19.30698,-18.14274,-15.23214,73.570266,46.501
--17.3242,-18.2457,-17.23205,-14.3754,70.006355,44.878
--18.05552,-19.11196,-17.95948,-15.07828,72.961588,47.2654
--17.6814,-18.71595,-17.58735,-14.76585,71.449785,48.0744
--17.86752,-18.91296,-17.77248,-14.92128,72.201888,46.4064
--18.05364,-19.10997,-17.95761,-15.17274,72.963594,47.0547
--17.87128,-18.91694,-17.77622,-14.92442,72.217082,46.5988
--18.048,-19.104,-17.952,-14.976,72.9312,46.84
--17.1456,-18.1488,-17.0544,-14.4096,69.29376,44.8896
--17.41635,-18.33785,-17.3242,-14.3754,70.01557,45.3572
--17.5959,-18.5269,-17.4097,-14.5236,70.72807,46.5892
--17.41635,-18.33785,-17.23205,-14.46755,70.006355,46.2108
--18.15156,-19.11196,-17.95948,-15.07828,72.971192,46.9812
--17.41635,-18.33785,-17.23205,-14.28325,70.006355,46.5785
--17.77545,-18.71595,-17.6814,-14.6718,71.449785,45.8185
--18.144,-19.104,-18.048,-15.072,72.9312,48.05
--17.96634,-18.91694,-17.77622,-15.01948,72.217082,46.9812
--18.333,-19.303,-18.236,-15.326,73.7006,46.9965
--17.2368,-18.1488,-17.1456,-14.5008,69.29376,45.5616
--18.33678,-19.30698,-18.23976,-15.23214,73.706094,46.501
--18.52389,-19.602,-18.42588,-15.38757,74.458197,47.3517
--17.78112,-18.72192,-17.68704,-14.77056,71.481984,46.109
--17.955,-19,-17.86,-14.82,72.1715,45.543
--18.144,-19.2,-18.048,-14.976,72.9312,45.0624
--17.59968,-18.624,-17.50656,-14.71296,70.743264,47.1711
--17.96256,-18.91296,-17.77248,-14.82624,72.201888,48.7575
--17.96634,-18.91694,-17.87128,-14.82936,72.226588,46.3757
--17.5959,-18.62,-17.5028,-14.5236,70.72807,45.258
--17.96256,-19.008,-17.86752,-15.01632,72.201888,46.3008
--18.15156,-19.208,-18.05552,-15.17432,72.971192,46.3932
--18.711,-19.8,-18.612,-15.642,75.2103,46.7577
--18.333,-19.303,-18.236,-15.423,73.7006,46.94
--18.333,-19.303,-18.236,-15.229,73.6909,46.76
--17.5959,-18.5269,-17.5028,-14.8029,70.72807,44.878
--17.78301,-18.72391,-17.68892,-14.77213,71.480173,47.1032
--18.144,-19.104,-18.048,-15.168,72.9408,46.3008
--17.41635,-18.43,-17.3242,-14.83615,70.006355,46.7875
--18.711,-19.8,-18.612,-15.543,75.2103,48.04
--18.144,-19.2,-18.048,-15.264,72.9312,46.7904
--17.6928,-18.624,-17.50656,-14.71296,70.743264,46.3008
--17.328,-18.24,-17.1456,-14.5008,69.28464,45.923
--17.96256,-19.008,-17.86752,-14.82624,72.211392,45.7344
--18.05,-19,-17.86,-15.01,72.181,45.163
--18.0614,-19.012,-17.87128,-15.01948,72.217082,45.8248
--17.6928,-18.624,-17.50656,-14.71296,70.752576,46.3951
--17.8695,-18.81,-17.6814,-14.76585,71.449785,47.3517
--18.43,-19.303,-18.236,-15.423,73.6909,47.1032
--18.0576,-19.008,-17.86752,-15.2064,72.201888,46.128
--18.0576,-19.008,-17.86752,-14.92128,72.201888,46.6587
--17.1475,-18.05,-16.967,-14.16925,68.562925,43.9375
--18.4338,-19.404,-18.23976,-15.62022,73.706094,47.9514
--18.43,-19.4,-18.236,-15.326,73.6909,48.23
--18.05,-19,-17.86,-15.01,72.1715,45.4385
--17.8752,-18.816,-17.68704,-14.95872,71.481984,48.3434
--17.8695,-18.81,-17.6814,-14.95395,71.45919,50.5395
--17.5085,-18.43,-17.3242,-14.65185,69.877345,47.633
--18.0614,-19.012,-17.87128,-15.01948,72.083998,46.8734
--17.6928,-18.624,-17.50656,-14.61984,70.743264,46.9965
--17.328,-18.24,-17.1456,-14.4096,69.28464,46.303
--17.328,-18.3312,-17.1456,-14.592,69.29376,44.6784
--18.05,-19,-17.86,-15.2,72.0385,44.878
--17.689,-18.7131,-17.5959,-14.896,70.6629,46.4835
--17.5085,-18.52215,-17.41635,-14.744,69.88656,45.4348
--17.328,-18.3312,-17.2368,-14.4096,69.28464,45.3625
--18.2457,-19.30203,-18.14967,-15.26877,72.819549,45.0468
--18.0576,-19.10304,-17.96256,-15.11136,72.068832,44.6784
--17.8752,-18.816,-17.78112,-14.95872,71.340864,47.187
--18.6219,-19.602,-18.52389,-15.6816,74.320983,47.6685
--18.909,-19.8,-18.612,-15.741,75.0717,46.14
--17.5104,-18.52416,-17.41824,-14.7456,69.884928,45.168
--17.96928,-18.91008,-17.78112,-14.95872,71.340864,47.0688
--18.909,-19.8,-18.711,-15.642,75.0717,47.4606
--18.527,-19.497,-18.333,-15.52,73.6909,44.4648
--17.4192,-18.3312,-17.2368,-14.5008,69.15696,45.9168
--18.527,-19.497,-18.333,-15.326,73.5551,46.5018
--18.336,-19.296,-18.144,-15.264,72.7968,47.45
--18.15264,-19.10304,-17.96256,-15.01632,72.068832,47.0688
--18.53082,-19.50102,-18.33678,-15.42618,73.570266,46.1874
--17.60256,-18.52416,-17.41824,-14.7456,69.884928,46.0224
--17.60065,-18.52215,-17.41635,-14.83615,69.877345,46.2108
--18.53082,-19.50102,-18.33678,-15.5232,73.570266,46.7676
--18.15646,-19.10706,-17.96634,-15.2096,72.083998,45.1094
--18.15646,-19.10706,-17.96634,-15.11454,72.074492,47.187
--18.145,-19.095,-17.955,-15.2,72.0385,44.422
--17.4192,-18.3312,-17.2368,-14.5008,69.15696,45.4464
--18.15264,-19.10304,-17.96256,-15.2064,72.068832,46.0746
--18.527,-19.497,-18.333,-15.617,73.5551,46.36
--18.53082,-19.50102,-18.33678,-15.71724,73.570266,46.5795
--17.96928,-18.91008,-17.78112,-15.0528,71.331456,46.6872
--17.96355,-18.90405,-17.8695,-14.95395,71.318115,47.2725
--18.527,-19.497,-18.333,-15.326,73.5551,44.6588
--17.78592,-18.71712,-17.59968,-14.8992,70.612896,45.4445
--18.718,-19.698,-18.522,-15.68,74.3134,45.85
--18.718,-19.698,-18.522,-15.582,74.3036,46.109
--18.527,-19.497,-18.333,-15.423,73.5551,45.9295
--17.96355,-18.90405,-17.77545,-15.14205,71.318115,46.6587
--17.97119,-18.91209,-17.78301,-15.14849,71.348447,46.3175
--18.15646,-19.10706,-17.96634,-15.30466,72.074492,45.2505
--18.53082,-19.59804,-18.33678,-15.42618,73.570266,45.1094
--17.78592,-18.71712,-17.6928,-14.80608,70.612896,44.4
--17.78592,-18.71712,-17.59968,-14.71296,70.612896,45.5318
--18.0576,-18.90405,-17.77545,-15.14205,71.30871,44.6975
--18.34173,-19.30203,-18.14967,-15.26877,72.809946,44.7558
--17.60065,-18.52215,-17.41635,-14.83615,69.877345,43.833
--17.97119,-18.91209,-17.78301,-14.96031,71.348447,44.4648
--18.81792,-19.70001,-18.52389,-15.6816,74.320983,45.7875
--18.336,-19.392,-18.24,-15.456,72.7968,45.6288
--18.06336,-19.00416,-17.78112,-15.0528,71.340864,44.7468
--17.6928,-18.6143,-17.41635,-14.65185,69.877345,43.833
--18.15264,-19.19808,-18.0576,-15.11136,72.068832,45.9657
--18.24,-19.095,-18.05,-15.2,72.0385,46.04
--18.624,-19.497,-18.333,-15.423,73.5551,44.0768
--18.432,-19.296,-18.144,-15.264,72.7968,45.55
--18.24768,-19.10304,-18.0576,-15.2064,72.059328,45.6786
--18.62784,-19.50102,-18.33678,-15.62022,73.560564,45.6786
--17.8752,-18.8062,-17.689,-14.9891,70.59773,45.6092
--18.62784,-19.59804,-18.4338,-15.62022,73.570266,46.5795
--18.24,-19.19,-18.05,-15.295,72.0385,46.14
--18.43776,-19.30203,-18.2457,-15.26877,72.819549,44.5715
--19.2,-20.1,-19,-16,75.83,47.13
--18.06336,-18.91008,-17.8752,-14.95872,71.246784,44.2944
--17.8752,-18.7131,-17.689,-14.9891,70.51394,44.933
--18.24,-19.095,-18.05,-15.105,72.0385,43.9375
--18.06528,-18.91209,-17.8771,-14.96031,71.339038,44.8625
--18.432,-19.296,-18.24,-15.456,72.7008,44.1888
--18.24768,-19.19808,-18.0576,-15.30144,72.068832,43.9008
--17.8752,-18.7131,-17.689,-14.9891,70.50463,43.7285
--18.43776,-19.39806,-18.2457,-15.55686,72.723519,46.0746
--17.6928,-18.6143,-17.5085,-14.83615,69.877345,45.6385
--18.432,-19.392,-18.24,-15.552,72.7008,46.65
--18.24768,-19.19808,-18.0576,-15.39648,71.983296,45.6384
--18.624,-19.594,-18.43,-15.617,73.5551,44.3581
--17.87904,-18.81024,-17.6928,-14.99232,70.519776,44.1888
--18.25152,-19.20212,-18.0614,-15.11454,71.988938,44.5715
--18.624,-19.594,-18.43,-15.811,73.4581,45.65
--17.6016,-18.4224,-17.328,-14.7744,69.06576,43.7285
--17.6928,-18.52215,-17.5085,-14.83615,69.785195,45.1438
--17.87904,-18.71712,-17.6928,-14.8992,70.519776,47.3845
--19.008,-19.899,-18.81,-15.84,74.9727,47.75
--17.41825,-18.2305,-17.1475,-14.53025,68.346325,44.6975
--18.15165,-18.9981,-17.8695,-15.048,71.224065,47.0547
--18.816,-19.698,-18.62,-15.582,74.2154,45.031
--18.53379,-19.30203,-18.2457,-15.3648,72.723519,44.3678
--18.53572,-19.30404,-18.2476,-15.3664,72.731092,45.325
--18.91593,-19.70001,-18.6219,-15.6816,74.222973,45.3915
--18.15744,-19.00416,-17.8752,-15.14688,71.246784,45.5112
--18.72486,-19.69506,-18.4338,-15.71724,73.473246,45.8248
--18.53379,-19.49409,-18.2457,-15.46083,72.723519,45.3572
--18.721,-19.594,-18.527,-15.617,73.4581,45.74
--17.97216,-18.81024,-17.6928,-14.8992,70.519776,44.4648
--17.9683,-18.8062,-17.689,-14.8029,70.50463,44.6975
--18.721,-19.594,-18.43,-15.52,73.4581,45.1535
--17.6016,-18.4224,-17.4192,-14.6832,69.06576,43.9375
--17.97216,-18.81024,-17.6928,-14.80608,70.519776,46.2108
--17.78495,-18.6143,-17.5085,-14.65185,69.785195,45.1535
--18.15744,-19.00416,-17.8752,-15.0528,71.246784,44.639
--18.15165,-18.9981,-17.8695,-15.33015,71.224065,45.2826
--19.3,-20.2,-19.1,-16,75.73,46.76
--19.107,-19.998,-18.81,-15.939,74.9727,46.54
--18.34658,-19.20212,-18.15646,-15.39972,71.988938,45.8248
--17.9683,-18.8062,-17.689,-14.9891,70.50463,44.639
--18.721,-19.594,-18.43,-15.52,73.4581,46.03
--18.15744,-19.09824,-17.8752,-15.0528,71.246784,45.8248
--18.15744,-19.09824,-17.96928,-15.24096,71.246784,46.2952
--18.721,-19.691,-18.527,-15.52,73.4581,44.9692
--18.15937,-19.10027,-17.97119,-15.14849,71.263766,43.7955
--19.107,-20.097,-18.909,-15.939,74.9628,44.9856
--18.72486,-19.59804,-18.53082,-15.71724,73.463544,45.3915
--18.335,-19.19,-18.145,-15.295,71.9435,46.03
--19.107,-20.097,-18.909,-15.84,74.9727,46.0746
--18.15744,-19.00416,-17.96928,-15.14688,71.246784,45.6092
--19.3,-20.2,-19.1,-16.2,75.73,47.24
--18.15165,-18.9981,-17.96355,-14.95395,71.224065,46.3716
--18.34658,-19.20212,-18.15646,-15.30466,71.988938,45.2172
--19.107,-19.998,-18.909,-15.84,74.9727,45.85
--17.9683,-18.8993,-17.7821,-14.896,70.49532,44.213
--17.87904,-18.70848,-17.60256,-14.92992,69.792768,44.112
--18.25152,-19.09824,-17.96928,-15.24096,71.246784,45.423
--18.06528,-18.90336,-17.78592,-15.08544,70.519776,45.84
--18.818,-19.691,-18.527,-15.714,73.4581,45.2505
--19.012,-19.894,-18.718,-15.876,74.2154,46.65
--18.25152,-19.09824,-17.96928,-15.14688,71.246784,44.2944
--18.44164,-19.29718,-18.15646,-15.30466,71.988938,45.1438
--19.012,-19.894,-18.718,-15.778,74.2252,46.0012
--19.206,-20.097,-18.909,-15.939,74.9727,46.4706
--18.43776,-19.19808,-18.15264,-15.30144,71.973792,45.168
--18.43776,-19.29312,-18.15264,-15.30144,71.973792,45.0624
--18.0614,-18.8993,-17.7821,-15.1753,70.50463,44.973
--18.62982,-19.49409,-18.34173,-15.55686,72.723519,44.8625
--18.44164,-19.29718,-18.15646,-15.30466,71.988938,46.6872
--18.2457,-19.09215,-17.96355,-15.2361,71.224065,45.2034
--19.012,-19.894,-18.718,-15.876,74.2154,47.383
--19.4,-20.4,-19.2,-16.1,75.74,46.25
--18.06528,-18.99648,-17.78592,-15.08544,70.519776,45.4348
--18.82188,-19.79208,-18.62784,-15.62022,73.473246,47.3517
--18.25346,-19.10027,-17.97119,-15.0544,71.254357,46.1041
--18.82188,-19.69506,-18.53082,-15.62022,73.463544,45.5112
--18.82188,-19.79208,-18.62784,-15.71724,73.473246,45.5697
--17.6928,-18.6048,-17.5104,-14.6832,69.06576,44.213
--18.44164,-19.29718,-18.25152,-15.39972,71.988938,45.9198
--17.5085,-18.32075,-17.328,-14.71075,68.346325,45.258
--19.206,-20.097,-19.008,-15.939,74.9727,46.14
--18.818,-19.691,-18.624,-15.811,73.4581,45.7161
--18.818,-19.691,-18.624,-15.617,73.4678,45.9198
--18.63176,-19.49612,-18.43968,-15.27036,72.731092,46.1874
--19.206,-20.097,-19.008,-15.642,74.9727,46.76
--17.5085,-18.411,-17.328,-14.53025,68.346325,44.422
--17.8771,-18.7986,-17.6928,-14.83615,69.785195,45.1438
--17.8771,-18.70645,-17.6928,-14.83615,69.785195,44.213
--18.43,-19.285,-18.24,-15.39,71.9435,47.05
--18.62982,-19.49409,-18.43776,-15.55686,72.723519,44.6491
--19.4,-20.3,-19.2,-16.1,75.73,47.23
--18.44164,-19.29718,-18.25152,-15.39972,71.988938,45.9198
--18.63176,-19.49612,-18.43968,-15.46244,72.731092,48.0592
--19.012,-19.992,-18.816,-15.974,74.2154,45.325
--17.5085,-18.411,-17.328,-14.801,68.35535,45.3625
--18.915,-19.885,-18.624,-15.811,73.4581,46.03
--19.305,-20.295,-19.008,-16.335,74.9727,47.5695
--18.915,-19.885,-18.721,-15.908,73.4581,46.8898
--18.9189,-19.8891,-18.72486,-15.81426,73.473246,45.2034
--17.9712,-18.8928,-17.78688,-14.83776,69.792768,45.3504
--17.784,-18.6048,-17.6016,-14.8656,69.06576,45.552
--18.72,-19.584,-18.528,-15.648,72.7008,45.0624
--18.34755,-19.28845,-18.15937,-15.52485,71.254357,45.1632
--19.305,-20.295,-19.107,-16.236,74.9727,47.0646
--19.5,-20.5,-19.3,-16.6,75.73,47.24
--18.44164,-19.58236,-18.34658,-15.6849,71.988938,45.6385
--18.1545,-19.1786,-18.0614,-15.3615,70.50463,46.501
--18.9189,-19.98612,-18.72486,-16.10532,73.473246,45.5112
--18.3456,-19.2864,-18.25152,-15.33504,71.246784,44.5824
--18.72,-19.776,-18.528,-15.648,72.7008,44.5824
--17.59875,-18.5915,-17.5085,-14.89125,68.346325,45.0775
--18.72585,-19.78218,-18.62982,-15.94098,72.723519,44.6588
--18.34755,-19.38254,-18.25346,-15.52485,71.254357,46.1041
--18.72,-19.776,-18.624,-16.032,72.7008,46.25
--18.34755,-19.38254,-18.25346,-15.61894,71.263766,44.7655
--17.9712,-18.98496,-17.87904,-15.39072,69.792768,44.4
--19.11,-20.286,-19.11,-16.17,74.2154,46.14
--18.72,-19.872,-18.72,-15.84,72.7008,47.45
--19.305,-20.493,-19.305,-16.236,74.9727,47.05
--19.305,-20.394,-19.305,-16.434,74.9727,47.0547
--18.525,-19.57,-18.525,-15.77,71.9435,46.84
--17.96925,-18.9829,-17.96925,-15.20475,69.785195,44.6975
--19.11195,-20.28807,-19.11195,-16.36767,74.222973,46.6587
--18.72,-19.872,-18.72,-15.84,72.7008,47.64
--17.59875,-18.68175,-17.59875,-14.89125,68.346325,43.9375
--18.5367,-19.67742,-18.5367,-15.6849,71.988938,46.0265
--17.96925,-19.07505,-17.96925,-15.20475,69.785195,45.3572
--18.3456,-19.47456,-18.3456,-15.61728,71.246784,47.2752
--19.5,-20.7,-19.5,-16.7,75.73,49.03
--18.4338,-19.46835,-18.33975,-15.51825,71.224065,47.3517
--18.9189,-20.08314,-18.9189,-16.20234,73.473246,47.1636
--19.404,-20.493,-19.305,-16.434,74.9727,47.83
--18.816,-19.968,-18.72,-15.936,72.7008,45.552
--18.816,-19.872,-18.816,-15.936,72.7008,47.24
--18.62,-19.665,-18.525,-15.865,71.953,45.258
--18.816,-19.872,-18.816,-15.936,72.7008,46.128
--18.44164,-19.57072,-18.44164,-15.80712,71.254357,45.3572
--18.62,-19.76,-18.62,-15.675,71.9435,44.6975
--18.25152,-19.36896,-18.25152,-15.64416,70.612896,45.2505
--18.63176,-19.67742,-18.63176,-15.77996,72.083998,45.5318
--19.012,-20.176,-19.012,-16.199,73.5551,45.1535
--18.0614,-19.07505,-18.0614,-15.4812,69.877345,45.5318
--19.012,-20.176,-19.012,-16.199,73.5551,45.0468
--18.4338,-19.46835,-18.4338,-15.6123,71.318115,44.1085
--18.0614,-19.1672,-18.0614,-15.57335,69.877345,44.2805
--18.0614,-19.1672,-18.0614,-15.38905,69.86813,45.1438
--19.01592,-20.18016,-19.01592,-16.10532,73.570266,45.9756
--18.816,-19.968,-18.816,-15.84,72.7872,44.4
--18.25152,-19.36896,-18.25152,-15.3648,70.603584,44.4648
--18.816,-19.968,-18.816,-15.936,72.7872,44.1888
--18.0614,-19.07505,-18.0614,-15.20475,69.877345,44.5715
--18.0614,-19.07505,-18.0614,-15.20475,69.86813,45.2505
--18.2476,-19.2717,-18.2476,-15.3615,70.59773,45.9032
--19.208,-20.384,-19.208,-16.17,74.3036,45.84
--18.63176,-19.67742,-18.63176,-15.58984,72.074492,44.8528
--19.306,-20.286,-19.208,-16.17,74.3134,45.1094
--18.816,-19.872,-18.816,-15.648,72.7968,44.112
--17.8752,-18.8784,-17.8752,-14.9568,69.29376,44.304
--18.25152,-19.18272,-18.1584,-15.3648,70.612896,44.2902
--17.8752,-18.7872,-17.784,-15.1392,69.28464,43.738
--19.404,-20.493,-19.305,-16.335,75.0717,45.7875
--19.11294,-20.08314,-18.9189,-16.20234,73.706094,45.325
--18.816,-19.872,-18.816,-15.936,72.9312,44.5824
--19.208,-20.286,-19.208,-16.17,74.4604,45.74
--18.72682,-19.67742,-18.5367,-15.49478,72.217082,45.1094
--18.72682,-19.67742,-18.5367,-15.6849,72.217082,44.6491
--18.3407,-19.2717,-18.1545,-15.2684,70.73738,43.662
--19.30797,-20.28807,-19.11195,-15.97563,74.458197,45.5697
--19.11294,-19.98612,-18.9189,-16.0083,73.706094,45.2826
--18.91791,-19.87821,-18.72585,-15.65289,72.953991,44.1835
--18.3407,-19.2717,-18.1545,-15.4546,70.72807,43.2725
--17.9664,-18.8784,-17.784,-15.048,69.28464,44.1888
--18.52785,-19.46835,-18.33975,-15.4242,71.449785,43.377
--19.30797,-20.28807,-19.11195,-16.17165,74.458197,44.8767
--18.3407,-19.1786,-18.1545,-15.1753,70.72807,42.9875
--18.52785,-19.46835,-18.33975,-15.4242,71.449785,42.8925
--18.53573,-19.38254,-18.34755,-15.33667,71.480173,44.1835
--19.11294,-19.98612,-18.9189,-16.0083,73.706094,44.8767
--17.77925,-18.5915,-17.59875,-14.9815,68.562925,42.693
--18.72288,-19.4832,-18.5328,-15.6816,72.201888,43.44
--18.15552,-18.98496,-17.9712,-15.11424,70.013952,43.1424
--18.15355,-19.07505,-17.96925,-15.2969,70.006355,42.8925
--19.306,-20.286,-19.11,-16.17,74.4506,43.855
--18.15355,-19.07505,-17.96925,-15.1126,70.006355,42.5125
--19.306,-20.188,-19.11,-15.974,74.4506,44.86
--19.11294,-19.98612,-18.9189,-15.91128,73.706094,43.6688
--18.3407,-19.1786,-18.1545,-15.2684,70.72807,43.4532
--18.72288,-19.67328,-18.5328,-15.6816,72.201888,44.0055
--18.53376,-19.47456,-18.3456,-15.61728,71.472576,43.7472
--18.15552,-19.07712,-17.9712,-15.11424,70.023168,43.1424
--17.9664,-18.7872,-17.784,-15.048,69.28464,42.693
--19.109,-20.079,-18.915,-15.908,73.6909,44.56
--19.306,-20.286,-19.11,-15.974,74.4506,44.86
--18.2457,-18.9829,-17.96925,-15.1126,70.006355,43.2232
--18.72288,-19.57824,-18.5328,-15.58656,72.201888,42.8544
--19.01394,-19.78218,-18.72585,-15.84495,72.953991,43.3008
--17.8695,-18.5915,-17.59875,-14.89125,68.562925,42.123
--18.4338,-19.1786,-18.1545,-15.4546,70.72807,43.4532
--18.4338,-19.1786,-18.1545,-15.3615,70.73738,42.028
--18.4338,-19.1786,-18.1545,-15.4546,70.73738,43.463
--17.8695,-18.5915,-17.59875,-14.89125,68.562925,41.9425
--18.82188,-18.91694,-16.82562,-14.63924,72.217082,43.7472
--19.404,-18.522,-15.876,-13.72,74.4506,44.34
--19.404,-17.64,-14.896,-12.74,74.4506,44.45
--18.81,-16.435,-13.585,-11.115,72.1715,44.15
--19.01394,-15.94098,-12.86802,-9.89109,72.953991,43.4214
--18.62784,-15.14688,-11.85408,-8.84352,71.472576,43.3552
--18.0576,-14.3184,-10.8528,-7.752,69.29376,41.952
--19.01394,-14.59656,-10.75536,-7.49034,72.953991,43.8966
--18.4338,-13.5926,-9.8686,-6.2377,70.73738,42.875
--19.40598,-13.81941,-9.70299,-5.97861,74.467998,44.0055
--18.4338,-12.6616,-8.4721,-6.1446,70.72807,41.5625
--18.0576,-11.7648,-7.8432,-6.6576,69.28464,42.123
--19.20996,-11.83644,-7.7616,-6.7914,73.706094,44.0055
--18.0576,-10.3056,-7.1136,-6.6576,69.28464,42.1824
--19.206,-10.379,-7.178,-6.887,73.6909,43.94
--18.81792,-9.31392,-6.46272,-6.46272,72.201888,42.1824
--18.6219,-8.55855,-5.73705,-5.54895,71.44038,43.4214
--18.81,-7.885,-5.035,-5.035,72.181,44.05
--18.62982,-7.05675,-4.04587,-4.51632,71.480173,42.7285
--19.008,-6.432,-3.168,-3.936,72.9312,43.94
--17.9664,-5.2896,-2.0976,-3.3744,69.29376,42.1056
--18.82188,-4.84806,-1.04566,-3.3271,72.217082,42.5442
--19.109,-4.074,-0.194,-2.813,73.7006,44.15
--18.3407,-3.2585,0.931,-2.1413,70.72807,42.9828
--17.9664,-2.5536,2.0976,-1.7328,69.28464,41.743
--18.34464,-2.328,3.07296,-1.30368,70.743264,42.5442
--18.15355,-1.38225,4.0546,-1.19795,70.006355,41.458
--18.72682,-0.9506,5.2283,-0.38024,72.217082,42.581
--18.34464,-0.37248,6.14592,-0.09312,70.743264,42.195
--17.689,0.27075,7.12975,0.5415,68.562925,41.4675
--18.2476,1.0241,8.2859,0.931,70.72807,42.875
--19.01592,1.4553,9.702,1.35828,73.706094,42.7672
--19.404,1.98,11.187,2.079,75.2103,43.2135
--19.305,2.871,12.177,2.376,75.2103,43.4214
--17.96925,3.5017,12.62455,2.85665,70.006355,41.363
--18.5367,4.18264,13.97382,3.3271,72.217082,43.267
--18.5328,4.94208,15.30144,3.51648,72.201888,42.1824
--18.25152,5.45664,16.27584,4.13952,71.472576,42.288
--19.206,6.336,18.315,4.851,75.2103,43.7085
--18.43,7.125,18.715,5.035,72.1715,42.1325
--18.15165,7.7121,19.46835,5.4549,71.45919,42.237
--18.15744,8.18496,20.41536,6.20928,71.472576,42.3936
--18.06336,9.03168,21.35616,6.39744,71.472576,42.7776
--18.62784,9.89604,22.99374,7.37352,73.706094,44.1936
--18.34173,10.46727,23.71941,7.49034,72.953991,43.6095
--18.15264,11.21472,24.42528,7.69824,72.201888,42.1056
--17.5085,11.4266,24.6962,8.1092,70.006355,42.3308
--18.24,12.576,26.4,8.832,72.9312,43.94
--17.05725,12.54475,25.72125,8.93475,68.562925,41.743
--17.78301,13.83123,27.47428,9.69127,71.489582,42.3405
--17.32608,14.19264,27.648,9.86112,70.023168,42.1056
--17.58735,15.048,29.06145,10.62765,71.449785,41.667
--17.23205,15.57335,29.21155,10.96585,70.006355,41.363
--17.67,16.53,30.97,11.59,72.1715,43.86
--18.6,18,33.2,12.7,75.97,43.94
--18.315,18.414,33.462,12.87,75.2103,43.64
--17.49104,18.25152,32.89076,13.3084,72.217082,42.7672
--17.57349,19.10997,34.09065,13.54023,72.953991,42.1465
--17.568,19.68,34.752,14.016,72.9312,43.76
--17.20586,20.05766,35.07714,14.16394,72.217082,42.9828
--17.38143,20.93454,36.29934,15.07671,72.953991,43.5006
--16.7616,20.85888,35.75808,14.99232,70.743264,42.6218
--17.18937,22.0869,37.64376,15.84495,72.953991,42.2241
--16.2336,21.432,36.48,15.6864,69.28464,41.3535
--16.1424,21.9792,37.1184,16.0512,69.28464,41.5625
--16.0512,22.5264,37.9392,16.5984,69.28464,41.6256
--16.632,24.04512,40.10688,17.77248,72.201888,41.3376
--16.0341,23.959,39.53235,17.60065,70.006355,41.9525
--15.94195,24.5119,39.9931,18.0614,70.006355,41.287
--16.01664,25.23552,40.9728,18.71712,70.743264,41.9525
--16.59042,26.97156,43.1739,19.59804,73.706094,43.3125
--16.83,28.017,44.847,20.691,75.2202,43.75
--15.90121,27.19201,43.09322,20.22935,71.480173,42.4375
--15.96,27.93,43.985,20.9,72.1715,41.4675
--15.6123,28.215,44.10945,21.16125,71.449785,43.1046
--15.675,28.88,45.125,21.85,72.1715,41.667
--15.74892,29.7693,46.19043,22.66308,72.953991,42.2338
--15.49478,29.84884,46.1041,22.8144,72.217082,41.8458
--15.39,30.115,46.455,23.275,72.1715,41.4675
--14.592,29.4576,45.0528,22.7088,69.28464,41.363
--14.80608,30.63648,46.56,23.46624,70.743264,42
--15.32916,32.40468,48.9951,25.03116,73.706094,42.7086
--14.3754,31.23885,46.90435,24.23545,70.006355,40.6315
--14.8862,32.94172,49.26852,25.64268,72.961588,41.9832
--14.79016,33.51796,49.74872,26.12288,72.971192,42.1008
--14.744,34.338,50.828,26.869,73.6909,41.7682
--14.20155,33.6699,49.6584,26.5221,71.449785,42.9264
--14.751,35.937,52.767,28.413,75.2103,42.8175
--13.4976,33.5616,48.9744,26.6304,69.28464,41.6256
--14.162,36.181,52.574,28.712,73.6909,42.9128
--13.54896,35.56602,51.37314,28.227,71.480173,41.9525
--14.3,38.2,54.5,30.6,75.97,43.06
--13.26105,35.9271,50.5989,30.6603,71.449785,41.0875
--13.62339,37.2438,52.04331,33.22539,74.458197,43.2135
--13.25214,36.4914,50.31972,32.07402,72.944388,43.0947
--12.79488,35.65632,48.63936,31.23456,71.472576,42.1824
--12.4416,34.92864,47.0016,30.4128,70.013952,41.7216
--12.77332,35.15064,46.96356,35.63084,72.951984,43.3552
--12.45024,33.16896,44.00352,35.25984,72.201888,43.2135
--12.38787,32.55417,42.34923,34.85889,72.953991,42.1465
--11.6736,30.0048,39.1248,31.7376,69.28464,40.983
--11.7306,29.3265,38.3572,31.5609,70.72807,41.458
--11.78744,28.61306,37.35858,31.8451,72.217082,42.5442
--11.71566,28.13679,36.20331,31.49784,72.953991,43.2036
--11.4048,27.0864,34.40448,30.12768,72.201888,43.4214
--11.21,26.03,33.155,29.45,72.1715,44.45
--11.02464,25.1856,32.12352,28.9872,72.201888,42.288
--10.944,24.672,31.392,28.32,72.9312,43.46
--10.42944,23.28,29.42592,26.91168,70.743264,41.4144
--10.78,23.716,29.792,27.734,74.4506,42.4928
--10.368,22.56,28.416,26.688,72.9312,41.52
--9.975,21.66,27.265,25.745,72.2665,41.287
--10.197,21.879,27.522,26.235,75.2103,43.2036
--9.70004,20.55256,25.9308,24.87436,72.961588,42.4928
--9.2169,19.3648,24.3922,23.5543,70.71876,41.363
--9.0307,18.8993,23.7405,22.9957,70.72807,41.2775
--9.405,19.305,24.552,23.76,75.2103,42.9165
--8.56995,17.5085,22.20815,21.83955,70.006355,42.1562
--8.56128,17.4048,22.01472,21.73248,71.472576,42.5908
--8.9,18,22.8,22.5,76.07,43.53
--8.265,16.625,20.995,20.805,72.2665,43.36
--7.9968,15.89952,20.32128,20.2272,71.566656,42.1988
--7.7273,15.2684,19.551,19.551,70.81186,41.0875
--7.6048,15.11454,19.39224,19.4873,72.312142,42.385
--7.33824,14.67648,18.72192,18.91008,71.566656,41.7216
--7.24185,14.20155,18.2457,18.52785,71.543835,42.028
--6.8894,13.5926,17.5959,17.7821,70.82117,42.5908
--7.227,13.86,18.117,18.612,75.2994,43.3125
--6.4752,12.4032,16.2336,16.7808,69.37584,40.944
--6.555,12.54,16.435,17.1,72.257,41.0875
--6.7,12.9,17,17.6,76.06,43.25
--6.1789,11.78744,15.58984,16.35032,72.312142,41.7682
--5.92704,11.2896,14.95872,15.80544,71.566656,40.9536
--5.68032,10.7088,14.52672,15.17856,70.836384,41.0496
--5.5872,10.42944,14.06112,14.80608,70.836384,42.1562
--5.40096,10.05696,13.68864,14.52672,70.836384,42.1562
--5.1604,9.5836,13.0853,14.0068,70.08929,40.8025
--5.13216,9.504,13.11552,14.16096,72.306432,41.0496
--5.04504,9.41094,13.00068,13.97088,73.803114,42.4928
--4.7481,8.6583,12.103,13.1271,70.82117,41.458
--4.60845,8.37045,11.75625,12.7908,71.543835,43.1046
--4.33105,7.83275,11.15015,12.44025,70.098505,41.6615
--4.23225,7.80615,11.00385,12.4146,71.543835,41.1825
--4.09728,7.35648,10.61568,11.91936,70.836384,41.5645
--4.116,7.448,10.78,12.25,74.5486,42.091
--3.96,7.128,10.593,11.781,75.3093,43.06
--3.74517,6.53004,9.89109,11.42757,73.059624,42.2334
--3.58974,6.3063,9.60498,11.1573,73.803114,41.9048
--3.52836,6.27264,9.40896,11.07513,74.556207,42.2334
--3.4,6.1,9.3,11,76.07,42.55
--3.20166,5.62716,8.63478,10.57518,73.803114,41.8068
--2.94686,5.2283,8.17516,9.88624,72.312142,41.5548
--2.736,4.7424,7.4784,9.0288,69.37584,40.527
--2.716,4.656,7.663,9.409,73.7879,41.2735
--2.4624,4.104,6.84,8.5728,69.37584,40.8025
--2.3765,4.18264,6.84432,8.93564,72.321648,41.5912
--2.28,3.895,6.65,8.645,72.2665,42.66
--2.25423,3.82239,6.56667,8.62488,74.556207,42.5205
--2.09088,3.42144,6.08256,8.17344,72.296928,42.5304
--1.96,3.332,5.978,7.938,74.5486,41.9048
--1.86219,2.9403,5.68458,7.54677,74.556207,42.5205
--1.8,2.6,5.5,7.5,76.07,43.06
--1.64934,2.32848,5.04504,7.2765,73.803114,42.2772
--1.47,2.254,4.9,7.35,74.5486,42.77
--1.33056,1.99584,4.46688,6.74784,72.306432,41.2416
--1.22265,1.881,4.1382,6.3954,71.449785,42.2334
--1.1286,1.6929,3.9501,6.11325,71.543835,42.6294
--1.05644,1.34456,3.74556,5.95448,73.057628,41.5912
--1,1.1,3.6,6,75.97,43.06
--0.882,0.784,3.234,5.684,74.4506,41.9048
--0.76,0.665,3.04,5.51,72.2665,43.06
--0.693,0.495,2.871,5.544,75.3093,43.54
--0.55296,0.4608,2.48832,4.97664,70.106112,41.0496
--0.4608,0.27648,2.304,4.79232,70.115328,41.0592
--0.38016,0.09504,2.18592,4.56192,72.211392,42.0156
--0.291,-0.194,2.037,4.268,73.6909,41.3705
--0.19208,-0.57624,1.72872,4.22576,72.971192,42.1988
--0.09603,-0.67221,1.53648,4.12929,72.953991,42.4116
--0.09702,-0.77616,1.35828,3.8808,73.706094,41.9832
-0,-0.84681,1.12908,3.7636,71.480173,41.4772
-0.09312,-1.02432,0.9312,3.44544,70.743264,41.8458
-0.1862,-1.2103,0.7448,3.3516,70.72807,40.983
-0.1843,-1.38225,0.5529,2.9488,70.006355,41.5645
-0.2736,-1.5504,0.3648,3.0096,69.28464,41.1264
-0.37632,-1.78752,0.18816,2.8224,71.472576,41.9048
-0.4802,-2.01684,-0.09604,2.59308,72.961588,41.9048
-0.4752,-2.18592,-0.28512,2.376,72.201888,42.1245
-0.588,-2.352,-0.392,2.45,74.4506,43.25
-0.5529,-2.3959,-0.5529,2.0273,70.006355,40.907
-0.64512,-2.48832,-0.73728,1.93536,70.013952,41.7984
-0.686,-2.842,-0.98,1.96,74.4506,42.091
-0.7448,-2.8861,-1.0241,1.5827,70.72807,40.983
-0.76824,-3.16899,-1.24839,1.44045,72.953991,42.4375
-0.82935,-3.22525,-1.38225,1.2901,70.006355,41.2775
-0.9215,-3.3174,-1.56655,1.19795,70.006355,41.8458
-0.95,-3.515,-1.805,0.95,72.1715,40.622
-0.99,-3.861,-1.98,0.792,75.2103,43.53
-1.06722,-3.97782,-2.13444,0.58212,73.706094,42.8175
-1.0241,-4.0033,-2.2344,0.5586,70.72807,42.581
-1.04544,-4.18176,-2.376,0.28512,72.068832,41.232
-1.0944,-4.104,-2.4624,0.2736,69.15696,41.1825
-1.11744,-4.37664,-2.70048,0.18624,70.603584,41.3376
-1.14072,-4.56288,-2.8518,-0.38024,72.217082,42.2338
-1.19795,-4.69965,-3.04095,-0.64505,70.006355,41.9525
-1.23552,-5.13216,-3.3264,-0.28512,72.059328,41.616
-1.22304,-4.98624,-3.38688,-0.37632,71.340864,41.6256
-1.274,-5.096,-3.528,-0.49,74.4506,42.1988
-1.261,-5.044,-3.686,-0.388,73.5551,41.7682
-1.33084,-5.13324,-3.61228,-0.66542,72.226588,42.1008
-1.386,-5.445,-3.96,-1.881,75.0717,42.8175
-1.372,-5.782,-4.116,-1.666,74.3134,43.06
-1.3034,-5.6791,-4.0964,-1.4896,70.72807,40.983
-1.2768,-5.5632,-4.104,-1.2768,69.15696,40.907
-1.4,-6.1,-4.6,-1.4,75.83,43.14
-1.386,-6.039,-4.653,-1.386,75.0618,43.75
-1.35828,-6.01524,-4.65696,-1.64934,73.560564,42.4928
-1.4,-6.4,-4.9,-2.5,75.83,43.25
-1.344,-6.528,-4.896,-2.496,72.7968,41.52
-1.31712,-6.5856,-4.98624,-2.352,71.331456,42.091
-1.37214,-6.8607,-5.29254,-2.15622,74.320983,42.6294
-1.35375,-6.3175,-4.96375,-1.9855,68.42755,41.2775
-1.372,-6.762,-5.488,-2.058,74.3134,42.385
-1.2768,-6.384,-5.1984,-2.0976,69.14784,41.4144
-1.5,-7.1,-5.8,-2.5,75.82,43.14
-1.31726,-6.86857,-5.55131,-2.54043,71.348447,41.6615
-1.344,-7.2,-5.76,-2.688,72.7872,41.4144
-1.35828,-7.37352,-5.91822,-3.00762,73.570266,42.6692
-1.3034,-7.2618,-5.8653,-2.793,70.58842,42.581
-1.33084,-7.50974,-6.08384,-3.04192,72.074492,41.9525
-1.2103,-7.3549,-6.0515,-3.0723,70.58842,42.1988
-1.30368,-7.4496,-6.14592,-3.2592,70.612896,41.7682
-1.22265,-7.61805,-6.30135,-3.47985,71.318115,42.9165
-1.26126,-8.05266,-6.59736,-3.78378,73.570266,42.091
-1.261,-8.245,-6.79,-3.88,73.5551,43.14
-1.235,-8.265,-6.745,-3.8,72.0385,43.86
-1.083,-7.85175,-6.498,-3.61,68.436575,41.0875
-1.22304,-8.18496,-6.86784,-3.7632,71.331456,42.091
-1.083,-7.942,-6.6785,-3.7905,68.42755,40.8025
-1.16424,-8.63478,-7.2765,-4.17186,73.570266,42.5205
-1.176,-9.016,-7.546,-4.606,74.3134,42.2772
-1.04544,-9.0288,-7.50816,-4.46688,72.068832,42.8175
-1.078,-9.212,-7.742,-4.606,74.3134,42.95
-1.05644,-9.02776,-7.6832,-4.60992,72.827132,41.797
-0.9506,-8.93564,-7.69986,-4.37276,72.083998,42.0495
-0.931,-8.7514,-7.5411,-4.1895,70.59773,41.192
-0.9215,-8.75425,-7.5563,-4.51535,69.877345,41.5645
-0.87318,-9.31392,-8.05266,-4.94802,73.570266,42.4215
-0.86436,-9.31588,-8.06736,-5.2822,72.817528,42.2772
-0.891,-9.801,-8.514,-5.445,75.0717,42.5205
-0.792,-9.999,-8.613,-5.445,75.0717,43.06
-0.768,-9.696,-8.352,-5.184,72.7872,42.76
-0.76,-9.69,-8.36,-5.13,72.0385,42.95
-0.65856,-9.59616,-8.37312,-5.26848,71.340864,41.9146
-0.67228,-9.89212,-8.6436,-5.37824,72.817528,41.5128
-0.588,-10.192,-8.918,-5.782,74.3134,41.9832
-0.594,-10.395,-9.108,-5.742,75.0717,42.0156
-0.47025,-9.9693,-8.74665,-5.8311,71.318115,42.1245
-0.47025,-10.06335,-8.8407,-5.8311,71.30871,40.622
-0.4704,-10.16064,-8.9376,-6.02112,71.331456,40.7424
-0.37632,-10.16064,-9.03168,-5.73888,71.340864,41.699
-0.384,-10.56,-9.216,-6.048,72.7968,42.25
-0.27936,-10.2432,-9.03264,-6.0528,70.622208,41.8458
-0.3,-11.2,-9.9,-6.5,75.82,42.54
-0.194,-10.961,-9.603,-6.499,73.5551,43.54
-0.19206,-10.94742,-9.603,-6.33798,72.819549,42.7086
-0.194,-11.058,-9.797,-6.693,73.5454,41.8458
-0.099,-11.286,-10.098,-6.831,75.0618,42.3324
-0.097,-11.155,-9.991,-6.887,73.5551,41.7682
-0,-11.21708,-9.88624,-6.93938,72.074492,41.4772
-0,-11.662,-10.29,-7.056,74.3036,41.699
--0.095,-11.305,-10.07,-6.84,72.0385,40.8025
--0.09504,-11.21472,-10.07424,-7.03296,72.059328,42.9165
--0.18816,-11.10144,-10.06656,-6.77376,71.331456,41.0496
--0.27648,-10.96704,-9.86112,-6.81984,69.875712,40.944
--0.285,-11.495,-10.355,-7.6,72.029,40.318
--0.384,-11.904,-10.56,-7.68,72.7968,43.14
--0.384,-12,-10.656,-7.488,72.7872,42.66
--0.4704,-11.57184,-10.44288,-7.24416,71.331456,41.0496
--0.48,-11.712,-10.656,-7.296,72.7968,42.95
--0.5415,-11.0105,-10.01775,-6.94925,68.436575,40.6315
--0.55296,-11.24352,-10.32192,-7.28064,69.875712,40.7424
--0.65184,-11.54688,-10.42944,-7.54272,70.612896,41.0892
--0.74496,-11.73312,-10.61568,-7.72896,70.612896,41.4772
--0.75272,-12.04352,-10.82035,-7.90356,71.348447,41.2735
--0.83808,-11.91936,-10.7088,-7.54272,70.612896,40.9536
--0.82935,-11.70305,-10.6894,-7.46415,69.86813,41.6615
--0.9408,-11.94816,-10.91328,-7.80864,71.331456,41.0496
--0.96,-12.192,-11.136,-7.968,72.7968,42.25
--1.0241,-11.8237,-10.8927,-7.7273,70.59773,40.527
--1.078,-12.544,-11.466,-8.232,74.3036,41.797
--1.14072,-12.16768,-11.21708,-7.98504,72.083998,41.5912
--1.22265,-12.13245,-11.0979,-8.0883,71.318115,40.1375
--1.22265,-12.32055,-11.19195,-8.2764,71.30871,41.8275
--1.3167,-12.4146,-11.286,-8.4645,71.30871,40.907
--1.2768,-12.2208,-11.0352,-8.1168,69.14784,40.944
--1.3968,-12.47808,-11.26752,-8.10144,70.603584,41.4772
--1.584,-13.266,-12.078,-8.91,75.0717,42.55
--1.64934,-13.00068,-11.83644,-8.63478,73.560564,42.2772
--1.5827,-12.5685,-11.4513,-8.1928,70.59773,40.4225
--1.6758,-12.4754,-11.4513,-8.1928,70.59773,41.9048
--1.69344,-12.7008,-11.66592,-8.4672,71.331456,41.699
--1.78752,-12.7008,-11.66592,-8.56128,71.331456,40.4544
--1.824,-13.056,-12,-8.832,72.7872,42.36
--1.8816,-12.88896,-11.85408,-8.74944,71.340864,41.5912
--2.01663,-13.34817,-12.19581,-9.12285,72.809946,42.1146
--2.03742,-13.48578,-12.32154,-9.2169,73.570266,41.2972
--2.11266,-13.4442,-12.29184,-9.21888,72.809946,40.8758
--2.277,-13.86,-12.771,-9.603,75.0618,41.95
--2.07575,-12.72525,-11.64225,-8.75425,68.436575,40.033
--2.25792,-13.26528,-12.2304,-9.12576,71.331456,41.405
--2.45,-13.916,-12.74,-9.604,74.3134,42.25
--2.425,-13.968,-12.707,-9.7,73.5454,42.44
--2.49678,-13.92435,-12.67596,-9.603,72.819549,41.7186
--2.54016,-13.54752,-12.41856,-9.408,71.340864,41.1894
--2.48805,-13.36175,-12.25595,-9.12285,69.877345,40.1375
--2.527,-13.08625,-12.00325,-9.2055,68.436575,40.6315
--2.84229,-14.40747,-13.23135,-10.29105,74.311182,41.6097
--2.72861,-14.01941,-12.79624,-9.87945,71.348447,40.7788
--2.97,-14.751,-13.464,-10.098,75.0618,42.14
--2.736,-13.4064,-12.4032,-9.3024,69.14784,40.176
--2.85665,-13.4539,-12.5324,-9.3993,69.86813,40.033
--2.9184,-13.224,-12.4032,-9.2112,69.14784,40.033
--2.9792,-13.4995,-12.6616,-9.5893,70.58842,39.938
--3.3,-14.7,-13.7,-10.7,75.83,41.74
--3.366,-14.85,-13.662,-10.791,75.0618,41.85
--3.1654,-14.0581,-12.9409,-9.8686,70.59773,41.5128
--3.43035,-14.79951,-13.62339,-10.29105,74.311182,41.6196
--3.38688,-14.112,-13.07712,-10.06656,71.331456,41.1208
--3.38724,-14.01941,-13.07851,-9.87945,71.339038,40.6915
--3.589,-14.453,-13.483,-10.185,73.5551,40.5945
--3.4656,-13.68,-12.6768,-9.4848,69.14784,40.4544
--3.762,-14.85,-13.86,-10.494,75.0618,41.8275
--3.783,-14.55,-13.58,-10.379,73.5551,41.96
--3.648,-13.7712,-12.8592,-9.8496,69.15696,40.0032
--3.7248,-14.15424,-13.12992,-10.2432,70.612896,40.0998
--3.7392,-13.9536,-12.8592,-10.032,69.14784,40.272
--3.895,-14.63,-13.49,-10.355,71.9435,42.04
--3.99168,-14.63616,-13.59072,-10.54944,72.068832,41.9364
--4.214,-15.19,-14.014,-10.78,74.2154,43.36
--4.12929,-14.98068,-13.82832,-10.85139,72.809946,42.3324
--4.26888,-15.13512,-13.97088,-10.96326,73.473246,41.2972
--4.2336,-14.67648,-13.6416,-10.63104,71.246784,43.169
--4.6,-15.7,-14.5,-11.4,75.73,43.06
--4.37276,-15.01948,-13.87876,-10.83684,71.988938,41.5128
--4.55994,-15.42618,-14.26194,-11.06028,73.473246,41.4315
--4.33105,-14.65185,-13.54605,-10.59725,69.785195,40.7788
--4.46976,-14.80608,-13.68864,-10.61568,70.519776,40.3488
--4.56288,-14.80608,-13.78176,-10.80192,70.519776,40.4878
--4.56288,-14.80608,-13.78176,-10.89504,70.519776,40.5945
--4.95,-15.939,-14.751,-11.682,74.9727,41.3226
--4.89753,-15.55686,-14.30847,-11.33154,72.723519,41.5404
--5.049,-16.038,-14.85,-11.583,74.9727,42.55
--4.8412,-15.0822,-13.965,-11.0789,70.50463,40.4225
--5.3,-16.2,-15.1,-12.1,75.73,41.45
--5.03818,-15.39972,-14.35406,-11.4072,71.988938,40.5945
--4.9248,-14.8656,-13.8624,-10.7616,69.06576,40.176
--5.5,-16.3,-15.2,-11.9,75.72,42.03
--5.445,-16.236,-15.147,-11.979,74.9727,42.95
--5.488,-16.17,-14.994,-11.956,74.2154,43.53
--5.3067,-15.4546,-14.3374,-11.2651,70.50463,42.1988
--5.36313,-15.52485,-14.48986,-11.38489,71.254357,42.1465
--5.51,-15.675,-14.63,-11.305,71.9435,40.033
--5.626,-16.102,-15.035,-11.64,73.4581,42.76
--5.60854,-15.77996,-14.7343,-11.69238,71.988938,41.5912
--5.6448,-15.71136,-14.5824,-11.66592,71.246784,40.3584
--5.6454,-15.80712,-14.67804,-11.76125,71.254357,40.4199
--5.978,-16.464,-15.386,-12.054,74.2154,40.9052
--6.076,-16.464,-15.386,-12.152,74.1468,41.74
--5.5955,-15.162,-14.16925,-11.3715,68.346325,40.1375
--5.8653,-15.7339,-14.7098,-11.8237,70.50463,41.405
--5.8976,-15.57335,-14.5597,-11.7952,69.785195,40.983
--5.8368,-15.504,-14.5008,-11.5824,68.9928,40.318
--6.1152,-15.9936,-14.95872,-12.2304,71.17152,41.232
--6.3063,-16.59042,-15.42618,-12.41856,73.39563,42.4116
--6.27,-16.34,-15.2,-12.35,71.8675,40.8025
--6.36902,-16.35032,-15.2096,-12.3578,71.903384,41.5128
--6.1104,-15.7776,-14.6832,-11.856,69.00192,41.232
--6.33216,-16.10976,-14.99232,-12.1056,70.44528,41.1668
--6.48945,-16.27065,-15.14205,-12.32055,71.148825,41.6097
--6.624,-16.704,-15.552,-12.48,72.624,42.95
--6.93,-17.226,-16.038,-12.969,74.8935,42.14
--6.95871,-17.05374,-15.97563,-12.93732,74.134764,42.0156
--6.61152,-16.296,-15.17856,-12.5712,70.44528,42.1056
--6.5664,-16.0512,-14.9568,-12.1296,68.9016,42.332
--6.7963,-16.3856,-15.2684,-12.3823,70.43015,41.9832
--6.93938,-16.73056,-15.6849,-12.73804,71.827336,42.8352
--6.7488,-16.1424,-15.048,-12.1296,68.9016,41.2775
--7.275,-17.169,-16.005,-12.901,73.2835,40.9825
--7.05675,-16.74802,-15.61894,-12.79624,71.084995,42.0495
--7.524,-17.622,-16.434,-13.365,74.7945,42.4116
--7.296,-17.088,-16.032,-13.056,72.528,42.95
--7.47054,-17.36658,-16.20234,-13.19472,73.29861,43.7085
--7.392,-17.184,-16.032,-12.96,72.528,42.76
--7.566,-17.363,-16.296,-13.289,73.2835,42.54
--7.66458,-17.4636,-16.29936,-13.29174,73.308312,42.3423
--7.505,-17.1,-15.96,-13.015,71.7725,40.8025
--7.76,-17.46,-16.393,-13.386,73.2835,43.25
--7.77843,-17.2854,-16.22907,-13.34817,72.560268,42.2241
--7.3872,-16.5072,-15.504,-12.4944,68.9016,41.1825
--7.71538,-17.12438,-15.9953,-13.07851,71.084995,42.0495
--7.5696,-16.5984,-15.504,-12.8592,68.9016,42.1824
--8.134,-17.934,-16.758,-13.622,74.039,44.15
--7.98336,-17.39232,-16.25184,-13.21056,71.80272,41.9904
--7.8204,-16.9442,-15.9201,-12.9409,70.33705,42.4928
--7.752,-16.6896,-15.6864,-12.768,68.9016,42.7776
--8.17,-17.48,-16.435,-13.395,71.7725,44.15
--8.09088,-17.31072,-16.27584,-13.1712,71.07744,41.6256
--8.265,-17.48,-16.435,-13.395,71.7725,42.332
--8.0997,-17.1304,-16.1063,-13.2202,70.33705,42.7672
--8.0256,-16.6896,-15.7776,-12.8592,68.9016,41.667
--8.36,-17.385,-16.435,-13.3,71.763,43.45
--8.37312,-17.31072,-16.36992,-13.45344,71.07744,42.6692
--8.55,-17.67,-16.53,-13.585,71.7725,43.25
--8.5554,-17.77622,-16.6355,-13.49852,71.81783,42.9828
--8.73964,-17.95948,-16.807,-13.82976,72.55822,43.6688
--8.38565,-17.1399,-16.12625,-13.0853,69.619325,42.4375
--8.74,-17.67,-16.625,-13.49,71.7725,42.332
--9.11493,-18.22986,-17.15175,-14.01543,74.046555,44.4807
--8.93079,-17.86158,-16.90128,-13.73229,72.550665,44.9856
--8.93564,-17.68116,-16.73056,-13.7837,71.81783,46.2952
--9.21294,-18.42588,-17.34777,-14.21145,73.958346,43.7184
--9.025,-17.955,-16.815,-13.965,71.6775,43.75
--8.93475,-17.6814,-16.64685,-13.63725,70.960725,42.123
--8.664,-16.967,-15.97425,-12.996,68.093625,42.503
--9.504,-18.612,-17.523,-14.157,74.6955,45.15
--9.31588,-18.05552,-16.99908,-13.73372,72.46218,43.267
--9.408,-18.144,-17.088,-14.016,72.432,43.728
--9.41094,-18.2457,-17.09334,-14.11641,72.464238,46.6587
--9.50697,-18.2457,-17.18937,-13.82832,72.454635,46.1835
--9.215,-17.41635,-16.4027,-13.4539,69.53639,43.2725
--9.603,-18.14967,-17.18937,-13.92435,72.454635,43.3008
--9.69903,-18.14967,-17.18937,-13.73229,72.454635,43.2232
--9.898,-18.522,-17.542,-14.21,73.843,45.66
--9.69408,-17.96256,-17.01216,-13.87584,71.70768,43.8966
--9.49824,-17.78592,-16.66848,-13.5024,70.268352,42.7776
--9.68715,-17.96355,-16.83495,-13.82535,70.960725,44.9856
--9.5893,-17.7821,-16.758,-13.5926,70.16016,44.737
--10.296,-18.909,-17.82,-14.454,74.5965,46.65
--10.192,-18.62,-17.64,-14.308,73.8528,46.109
--9.87525,-17.77545,-16.929,-13.63725,70.866675,42.8925
--9.97248,-17.8752,-16.9344,-13.6416,70.898688,43.2384
--10.07636,-18.15646,-17.1108,-14.259,71.637216,45.3572
--10.06763,-18.06528,-17.03029,-13.92532,70.896815,43.7955
--9.86005,-17.6928,-16.67915,-13.73035,69.435025,43.168
--9.95328,-17.69472,-16.68096,-13.54752,69.44256,43.9008
--10.37124,-18.34173,-17.38143,-14.02038,72.358605,46.0845
--10.15008,-17.78592,-16.85472,-13.5024,70.175232,45.4348
--10.573,-18.527,-17.557,-14.162,73.0992,45.95
--10.032,-17.328,-16.5072,-13.3152,68.7192,43.5168
--10.67,-18.43,-17.557,-14.259,73.0992,44.0768
--10.54944,-18.24768,-17.20224,-14.35104,71.61264,43.344
--10.44288,-18.15744,-17.12256,-14.30016,70.88928,43.056
--10.75648,-18.53572,-17.47928,-14.30996,72.375744,44.345
--10.52256,-17.97216,-16.94784,-13.87488,70.16592,43.6224
--10.74178,-18.34658,-17.30092,-14.06888,71.62771,44.4234
--10.52256,-17.87904,-16.94784,-13.87488,70.175232,42.8544
--10.6134,-17.8752,-16.9442,-13.7788,70.16016,43.6688
--11.155,-18.624,-17.654,-14.55,73.0992,45.25
--10.81575,-18.15165,-17.1171,-14.01345,70.866675,43.9375
--10.469,-17.5085,-16.51575,-13.62775,68.0124,42.788
--10.5792,-17.6928,-16.6896,-13.7712,68.72832,42.408
--11.232,-18.624,-17.568,-14.304,72.336,47.45
--11.00736,-18.25152,-17.21664,-14.20608,70.88928,45.1094
--11.8,-19.4,-18.3,-15,75.35,44.45
--11.10144,-18.25152,-17.21664,-14.01792,70.898688,43.9008
--11.54538,-18.82188,-17.85168,-14.65002,73.10457,44.0314
--11.42757,-18.62982,-17.66952,-14.50053,72.358605,44.8767
--10.83,-17.59875,-16.606,-13.62775,68.0124,44.1085
--11.4048,-18.5328,-17.48736,-14.256,71.61264,43.0656
--12.1,-19.5,-18.4,-15.1,75.36,45.33
--11.616,-18.816,-17.76,-14.496,72.336,45.25
--11.59732,-18.63176,-17.5861,-14.44912,71.62771,43.3978
--11.2423,-17.96925,-17.04775,-13.91465,69.342875,44.3678
--11.4741,-18.33975,-17.39925,-14.1075,70.87608,45.6786
--11.69238,-18.5367,-17.5861,-14.44912,71.62771,43.6888
--11.191,-17.59875,-16.69625,-13.62775,68.003375,42.503
--12.152,-19.306,-18.13,-15.092,73.843,46.25
--11.90772,-18.91791,-17.86158,-14.59656,72.368208,44.7975
--12.5,-19.7,-18.6,-15.1,75.26,46.84
--11.51875,-18.15355,-17.1399,-14.0068,69.342875,43.5821
--11.8503,-18.52785,-17.4933,-14.4837,70.78203,44.4114
--12.19581,-18.91791,-17.86158,-14.69259,72.272178,44.1835
--12.19708,-18.91988,-17.86344,-14.79016,72.279704,44.8252
--12.19581,-18.91791,-17.95761,-14.78862,72.272178,45.3816
--12.04352,-18.53573,-17.50074,-14.48986,70.812134,44.4648
--12.16768,-18.72682,-17.77622,-14.63924,71.542156,43.7955
--12.771,-19.602,-18.513,-15.147,74.5074,45.04
--11.64225,-17.8695,-16.87675,-13.8985,67.913125,43.9375
--12.513,-19.206,-18.236,-14.938,73.0022,45.25
--11.9795,-18.33785,-17.23205,-14.1911,69.342875,42.2275
--12.32055,-18.71595,-17.6814,-14.57775,70.78203,42.8925
--12.57993,-19.10997,-18.05364,-14.78862,72.281781,43.7955
--12.19872,-18.53088,-17.50656,-14.52672,70.0728,43.7184
--12.29184,-18.53088,-17.50656,-14.52672,70.082112,43.824
--12.16512,-18.33984,-17.32608,-14.46912,69.359616,43.2384
--12.804,-19.303,-18.236,-14.938,72.9925,44.23
--13.03533,-19.602,-18.42588,-15.28956,73.762326,43.8966
--13.034,-19.6,-18.522,-15.288,73.7548,44.345
--12.86936,-19.208,-18.15156,-14.8862,72.279704,43.953
--12.34944,-18.432,-17.41824,-14.37696,69.359616,42.8544
--12.69675,-18.81,-17.77545,-14.6718,70.791435,45.6786
--12.825,-18.905,-17.955,-14.82,71.497,43.548
--12.53376,-18.432,-17.41824,-14.2848,69.267456,43.2384
--13.06008,-19.206,-18.14967,-15.17274,72.272178,44.0055
--12.7908,-18.90405,-17.8695,-14.8599,70.68798,42.693
--13.42737,-19.70001,-18.6219,-15.38757,73.762326,44.7975
--13.426,-19.698,-18.62,-15.386,73.7548,44.8154
--13.38876,-19.50102,-18.4338,-15.13512,73.017252,45.1094
--13.524,-19.796,-18.62,-15.288,73.7548,45.9032
--12.9409,-18.7131,-17.689,-14.6167,69.97396,44.345
--13.21334,-19.10706,-18.15646,-15.01948,71.447096,43.4532
--13.21334,-19.10706,-18.15646,-15.11454,71.456602,44.6491
--13.0368,-18.71712,-17.78592,-14.80608,69.988992,44.5715
--13.86,-19.998,-18.909,-15.642,74.4084,45.2727
--13.54164,-19.40008,-18.34364,-15.17432,72.183664,45.8248
--12.8592,-18.4224,-17.4192,-14.4096,68.54592,44.4
--13.54023,-19.39806,-18.43776,-15.07671,72.176148,45.6786
--13.35936,-19.00416,-18.06336,-14.77056,70.710528,45.1094
--13.3551,-18.9981,-18.0576,-14.95395,70.68798,44.213
--13.49852,-19.20212,-18.25152,-15.01948,71.447096,44.0314
--13.0416,-18.4224,-17.5104,-14.5008,68.54592,44.5728
--13.585,-19.285,-18.24,-15.295,71.402,44.85
--13.4064,-18.8993,-17.8752,-14.8029,69.89017,42.332
--13.68576,-19.29312,-18.24768,-15.11136,71.346528,43.728
--14.0679,-19.69506,-18.72486,-15.5232,72.823212,43.659
--14.065,-19.691,-18.624,-15.423,72.8082,45.04
--13.775,-19.285,-18.24,-15.105,71.3165,45.04
--13.5926,-18.8993,-17.8752,-14.8029,69.88086,43.3454
--13.87876,-19.29718,-18.25152,-15.2096,71.352036,45.0371
--13.87,-19.285,-18.335,-15.295,71.3165,42.8925
--13.54605,-18.7986,-17.78495,-14.5597,69.16779,44.2805
--13.26675,-18.411,-17.41825,-14.44,67.74165,42.332
--14.504,-19.992,-18.914,-15.582,73.5588,44.85
--13.92532,-19.19436,-18.15937,-15.0544,70.623954,43.4075
--13.6382,-18.7986,-17.78495,-14.65185,69.177005,43.5142
--14.155,-19.38,-18.43,-15.105,71.3165,42.617
--13.87488,-18.99648,-17.97216,-14.99232,69.895872,44.7558
--14.01345,-19.1862,-18.15165,-15.14205,70.59393,45.2727
--13.87488,-18.99648,-18.06528,-14.80608,69.895872,42.384
--14.7,-19.992,-18.914,-15.778,73.5588,44.4234
--14.4,-19.584,-18.624,-15.36,72.0576,45.33
--15.1,-20.4,-19.4,-16.2,75.07,44.34
--13.91616,-18.8928,-17.87904,-14.92992,69.175296,42.672
--14.79951,-20.09205,-19.01394,-15.77961,73.478097,43.5996
--14.79951,-20.09205,-19.01394,-15.6816,73.478097,45.2826
--14.896,-20.09,-19.11,-15.68,73.4608,44.6292
--14.84406,-19.8891,-18.9189,-15.71724,72.832914,44.9232
--14.69259,-19.68615,-18.62982,-15.3648,71.993691,44.4807
--14.69259,-19.68615,-18.62982,-15.3648,71.984088,44.2926
--14.39577,-19.28845,-18.34755,-15.14849,70.529864,43.6888
--15.4,-20.5,-19.5,-16.1,74.96,44.45
--14.48832,-19.2864,-18.3456,-15.42912,70.522368,42.96
--14.4837,-19.3743,-18.33975,-15.2361,70.49988,43.168
--14.4305,-19.1786,-18.1545,-15.0822,69.79707,43.2768
--14.4305,-19.1786,-18.1545,-14.9891,69.78776,44.6292
--14.28325,-18.9829,-17.96925,-14.83615,69.084855,43.2232
--14.6718,-19.3743,-18.33975,-15.2361,70.509285,43.5006
--15.13512,-19.98612,-18.9189,-15.71724,72.735894,44.6985
--15.132,-19.982,-18.915,-15.714,72.7209,43.5045
--15.072,-19.776,-18.816,-15.744,71.9712,44.85
--15.543,-20.394,-19.305,-16.137,74.2203,46.54
--15.326,-20.079,-19.012,-15.908,72.7209,43.9701
--14.7098,-19.2717,-18.2476,-15.1753,69.80638,42.237
--15.8,-20.6,-19.6,-16.1,74.97,44.55
--15.326,-19.982,-19.012,-15.617,72.7209,45.05
--15.105,-19.665,-18.62,-15.39,71.212,45.84
--14.8029,-19.2717,-18.2476,-15.1753,69.78776,44.0314
--14.5008,-18.8784,-17.8752,-14.7744,68.28144,42.9875
--15.3648,-19.87821,-18.82188,-15.84495,71.897661,44.4807
--15.3648,-19.87821,-18.82188,-15.55686,71.897661,44.2805
--15.3648,-19.87821,-18.82188,-15.55686,71.897661,44.2728
--14.896,-19.2717,-18.2476,-15.2684,69.70397,44.345
--14.83615,-19.07505,-18.15355,-14.9283,68.992705,42.408
--14.9891,-19.2717,-18.3407,-14.9891,69.70397,43.6688
--15.14205,-19.5624,-18.52785,-15.2361,70.415235,42.408
--15.714,-20.079,-19.109,-15.811,72.6239,42.9031
--15.24258,-19.57072,-18.53573,-15.14849,70.445183,44.4648
--15.974,-20.286,-19.306,-15.974,73.3726,44.1392
--15.811,-20.176,-19.109,-16.005,72.6239,45.4348
--16.3,-20.7,-19.7,-16.3,74.87,44.85
--15.81426,-20.08314,-19.11294,-15.81426,72.638874,43.855
--15.02045,-19.07505,-18.15355,-15.02045,68.992705,42.408
--15.42912,-19.47456,-18.53376,-15.33504,70.437696,43.056
--15.908,-20.079,-19.109,-15.811,72.6239,44.4648
--16.236,-20.592,-19.503,-16.434,74.1213,44.64
--16.17165,-20.38608,-19.30797,-16.07364,73.380087,44.4807
--16.005,-20.176,-19.109,-16.102,72.6239,44.34
--15.675,-19.76,-18.715,-15.675,71.1265,42.9875
--16.335,-20.592,-19.503,-16.137,74.1312,45.3915
--16.268,-20.384,-19.306,-15.974,73.3726,44.1392
--15.936,-19.968,-18.912,-15.84,71.8752,43.1328
--15.77664,-19.76832,-18.72288,-15.58656,71.156448,43.056
--16.10532,-20.18016,-19.20996,-15.81426,72.629172,43.7085
--16.533,-20.592,-19.602,-16.335,74.1213,44.15
--16.03868,-19.97632,-19.01592,-15.65452,71.905148,44.737
--16.032,-19.968,-18.912,-15.36,71.8752,43.9008
--16.296,-19.303,-16.975,-16.199,72.5269,45.15
--16.296,-18.333,-15.811,-16.878,72.6336,44.05
--15.80544,-16.84032,-14.30016,-16.55808,70.343616,44.345
--15.64416,-16.10976,-13.22304,-16.66848,69.718944,43.6224
--15.89952,-16.27584,-13.07712,-13.35936,70.437696,42.4608
--16.562,-18.62,-15.288,-15.092,73.3726,42.581
--15.7339,-18.1545,-15.2684,-14.6167,69.70397,41.9425
--15.827,-18.2476,-15.5477,-14.2443,69.70397,42.0185
--16.1568,-18.62784,-16.06176,-14.35104,71.156448,43.2384
--16.83,-19.305,-16.929,-14.751,74.1213,44.1144
--16.1602,-18.44164,-16.35032,-14.35406,71.180928,44.149
--15.9936,-18.25152,-16.36992,-14.01792,70.437696,42.672
--15.9936,-18.25152,-16.464,-14.01792,70.437696,42.4928
--16.59042,-18.82188,-17.07552,-14.84406,72.638874,43.4532
--16.25526,-18.44164,-16.82562,-14.44912,71.171422,43.3008
--16.245,-18.525,-16.91,-14.44,71.1265,42.503
--16.416,-18.72,-17.184,-14.784,71.8752,42.4608
--15.92352,-18.34464,-16.7616,-14.52672,69.718944,43.8925
--16.34688,-18.81792,-17.20224,-14.63616,71.156448,44.8767
--16.34688,-18.81792,-17.29728,-14.63616,71.165952,42.672
--16.1766,-18.6219,-17.1171,-14.4837,70.33059,45.6786
--16.1766,-18.6219,-17.21115,-14.57775,70.321185,42.5125
--16.01664,-18.43776,-17.13408,-14.4336,69.625824,42.9031
--16.10976,-18.43776,-17.13408,-14.34048,69.625824,43.44
--15.61325,-17.8695,-16.69625,-13.98875,67.479925,42.123
--16.781,-19.303,-17.945,-15.035,72.5269,43.2232
--16.27065,-18.71595,-17.4933,-14.4837,70.321185,42.8925
--16.44192,-18.91296,-17.67744,-14.82624,71.070912,43.5006
--16.435,-19,-17.67,-14.725,71.041,44.34
--17.226,-19.8,-18.513,-15.444,74.0223,45.33
--15.8688,-18.24,-17.0544,-14.4096,68.19024,42.1824
--16.53696,-19.008,-17.86752,-15.01632,71.061408,45.6786
--16.0341,-18.52215,-17.3242,-14.5597,68.900555,45.1438
--16.45875,-18.90405,-17.6814,-14.76585,70.321185,44.3025
--16.9785,-19.50102,-18.23976,-15.42618,72.541854,43.8452
--16.2925,-18.8062,-17.5959,-14.5236,69.61087,41.458
--16.45875,-18.9981,-17.8695,-14.76585,70.321185,42.2275
--16.296,-18.81024,-17.6928,-14.71296,69.635136,42.2784
--17.072,-19.594,-18.43,-15.229,72.5269,44.45
--16.72,-19.19,-18.05,-15.01,71.041,45.44
--16.55808,-19.00416,-17.8752,-14.77056,70.343616,42.8544
--17.248,-19.894,-18.718,-15.484,73.2746,44.56
--17.07552,-19.69506,-18.53082,-15.32916,72.551556,43.2036
--16.90128,-19.49409,-18.34173,-15.07671,71.801631,42.9128
--17.072,-19.691,-18.527,-15.617,72.5269,42.4375
--17.424,-20.097,-18.909,-15.84,74.0223,43.4214
--16.48224,-18.90336,-17.87904,-14.71296,69.625824,43.344
--16.31232,-18.70848,-17.69472,-14.7456,68.908032,42.7776
--16.1424,-18.6048,-17.5104,-14.6832,68.19936,42.617
--16.815,-19.38,-18.24,-15.2,71.0315,44.213
--17.523,-20.196,-19.008,-15.741,74.0223,45.04
--16.992,-19.584,-18.528,-15.456,71.7792,45.15
--16.91,-19.38,-18.335,-15.2,71.0315,42.123
--16.92068,-19.39224,-18.34658,-15.2096,71.076362,43.953
--16.91,-19.38,-18.335,-15.2,71.0315,45.15
--16.5718,-18.9924,-17.9683,-14.896,69.61087,42.8925
--16.91712,-19.38816,-18.34272,-15.2064,71.061408,44.0055
--17.444,-20.09,-18.914,-15.68,73.2746,44.86
--16.84032,-19.2864,-18.15744,-14.95872,70.343616,44.1392
--17.363,-19.788,-18.818,-15.617,72.5269,43.2232
--17.721,-20.295,-19.107,-15.84,74.0223,45.65
--17.01574,-19.4873,-18.44164,-15.30466,71.076362,44.1835
--17.36658,-19.8891,-18.82188,-15.62022,72.541854,46.3716
--17.01574,-19.58236,-18.44164,-15.39972,71.076362,45.1438
--17.01216,-19.57824,-18.43776,-15.39648,71.061408,43.1424
--17.6418,-20.19006,-19.01394,-15.87762,73.282077,46.1835
--17.1072,-19.57824,-18.43776,-15.39648,71.061408,42.7776
--17.82,-20.394,-19.305,-15.939,74.0223,44.93
--17.1,-19.57,-18.525,-15.39,71.0315,42.788
--17.1072,-19.57824,-18.5328,-15.30144,71.061408,43.056
--17.2872,-19.78424,-18.7278,-15.55848,71.809108,43.4532
--17.1072,-19.67328,-18.5328,-15.49152,71.061408,44.4807
--16.67915,-19.07505,-17.96925,-15.02045,68.900555,43.9701
--17.919,-20.493,-19.305,-16.038,74.0223,44.64
--17.919,-20.493,-19.404,-16.236,74.0223,45.6786
--17.38143,-19.78218,-18.72585,-15.46083,71.801631,43.9701
--16.33525,-18.5915,-17.59875,-14.53025,67.479925,42.8925
--17.20586,-19.58236,-18.5367,-15.2096,71.076362,43.6688
--16.5984,-18.8784,-17.8752,-14.7744,68.19024,42.6075
--16.5984,-18.7872,-17.8752,-14.8656,68.19024,41.9425
--17.472,-19.776,-18.816,-15.648,71.7792,44.3904
--17.29728,-19.67328,-18.62784,-15.49152,71.061408,43.6128
--17.47746,-19.87821,-18.82188,-15.65289,71.801631,44.5896
--16.77312,-19.07712,-18.06336,-14.92992,68.917248,42.9504
--16.7713,-19.07505,-18.0614,-15.02045,68.900555,41.9425
--16.7713,-19.07505,-18.0614,-15.02045,68.900555,41.9425
--17.93583,-20.28807,-19.20996,-15.97563,73.282077,44.0055
--17.751,-20.079,-19.012,-15.811,72.5269,44.93
--17.21664,-19.56864,-18.43968,-15.42912,70.343616,43.2384
--17.57349,-19.97424,-18.91791,-15.65289,71.801631,44.1738
--17.751,-20.176,-19.109,-15.811,72.5269,44.45
--16.86528,-19.16928,-18.15552,-15.02208,68.908032,43.824
--17.848,-20.079,-19.109,-15.811,72.5269,44.2805
--18.117,-20.592,-19.503,-16.335,74.0223,45.84
--17.568,-19.968,-18.912,-15.552,71.7792,43.0656
--17.31256,-19.57072,-18.53573,-15.33667,70.351093,43.2232
--17.3052,-19.5624,-18.52785,-15.4242,70.23654,42.8925
--17.3052,-19.5624,-18.52785,-15.33015,70.23654,46.3716
--17.13408,-19.36896,-18.34464,-15.08544,69.542016,43.7955
--17.3052,-19.5624,-18.52785,-15.51825,70.227135,45.1935
--17.67136,-19.97632,-18.91988,-15.8466,71.713068,44.247
--17.04775,-19.1672,-18.2457,-14.9283,68.81762,42.123
--17.0496,-19.26144,-18.15552,-15.11424,68.815872,43.344
--17.7674,-19.97632,-19.01592,-15.8466,71.722672,44.7468
--17.9487,-20.27718,-19.20996,-15.91128,72.454536,44.5312
--17.2272,-19.36896,-18.43776,-15.27168,69.542016,43.44
--17.4048,-19.66272,-18.62784,-15.42912,70.353024,44.9232
--17.04775,-19.25935,-18.2457,-15.1126,68.808405,44.1738
--17.575,-19.665,-17.955,-15.105,71.0315,45.15
--17.68116,-18.72682,-16.35032,-16.44538,70.981302,44.4648
--17.5824,-17.67744,-15.2064,-17.01216,70.975872,44.496
--16.9632,-16.1424,-13.5888,-16.5072,68.19024,43.0635
--17.49888,-16.18176,-13.26528,-17.02848,70.249536,45.5014
--17.49888,-16.464,-13.35936,-12.98304,70.343616,43.7472
--17.32032,-17.87904,-14.71296,-14.4336,69.625824,42.672
--18.22986,-19.20996,-16.17165,-15.19155,73.282077,43.8966
--17.49888,-18.43968,-15.80544,-14.39424,70.343616,43.3552
--17.59296,-18.43968,-15.89952,-14.20608,70.343616,42.1056
--17.95761,-18.72585,-16.42113,-14.30847,71.801631,42.2338
--16.87675,-17.59875,-15.61325,-13.62775,67.479925,41.9425
--18.32787,-19.11195,-17.05374,-14.7015,73.282077,44.4906
--17.77248,-18.43776,-16.632,-14.16096,71.070912,43.728
--17.952,-18.72,-16.896,-14.496,71.7792,45.4464
--17.23392,-17.9712,-16.31232,-14.00832,68.908032,42.7776
--17.0544,-17.784,-16.2336,-13.9536,68.19024,41.8475
--17.77248,-18.72288,-17.01216,-14.7312,71.061408,42
--18.513,-19.602,-17.919,-15.147,74.0322,43.0254
--17.41344,-18.43776,-16.94784,-14.15424,69.625824,41.8458
--17.23205,-18.33785,-16.7713,-14.28325,68.900555,41.458
--18.139,-19.303,-17.751,-15.035,72.5269,43.0098
--17.952,-19.104,-17.664,-14.784,71.7888,43.65
--17.3242,-18.33785,-16.9556,-14.28325,68.900555,41.9525
--17.3242,-18.43,-17.04775,-14.28325,68.900555,40.983
--17.68704,-18.816,-17.4048,-14.67648,70.343616,42.9828
--17.87128,-19.012,-17.68116,-14.92442,71.076362,42.385
--17.50656,-18.624,-17.41344,-14.61984,69.625824,42.1465
--17.1456,-18.3312,-17.0544,-14.4096,68.19024,40.983
--17.68704,-18.91008,-17.59296,-14.86464,70.428288,41.0496
--18.05364,-19.30203,-18.05364,-15.07671,71.801631,41.6615
--17.68704,-18.91008,-17.68704,-14.77056,70.343616,41.1264
--17.1456,-18.3312,-17.2368,-14.4096,68.28144,40.983
--17.68892,-19.00618,-17.78301,-14.96031,70.445183,41.5839
--18.424,-19.796,-18.522,-15.386,73.3824,43.06
--18.612,-19.998,-18.711,-15.84,74.1213,42.95
--18.424,-19.894,-18.62,-15.582,73.3726,42.6594
--17.5959,-18.8993,-17.689,-14.8029,69.69466,40.413
--17.59968,-18.90336,-17.6928,-14.8992,69.718944,41.2638
--17.59968,-18.90336,-17.78592,-14.8992,69.709632,41.6615
--17.59968,-18.90336,-17.78592,-14.8992,69.709632,41.4772
--17.59968,-18.90336,-17.78592,-14.80608,69.718944,40.7424
--18.14967,-19.49409,-18.34173,-15.3648,71.897661,41.8458
--18.144,-19.488,-18.432,-15.168,71.8752,42.44
--18.52389,-19.99404,-18.81792,-15.58359,73.380087,42.4116
--18.15156,-19.59216,-18.43968,-15.3664,71.905148,42.1988
--17.96634,-19.39224,-18.25152,-15.11454,71.171422,42.091
--17.77545,-19.1862,-18.0576,-15.14205,70.415235,42.7086
--17.689,-18.9924,-17.9683,-14.8029,69.70397,40.318
--18.14967,-19.59012,-18.43776,-15.3648,71.897661,41.2735
--18.33678,-19.79208,-18.72486,-15.42618,72.638874,42.2235
--17.8771,-19.28845,-18.15937,-15.14849,70.539273,40.9825
--17.1475,-18.50125,-17.41825,-14.53025,67.570175,40.1375
--18.4338,-19.8891,-18.82188,-15.62022,72.638874,41.9364
--17.6928,-19.0896,-17.97216,-14.99232,69.718944,40.56
--18.24,-19.68,-18.624,-15.552,71.8752,40.6656
--18.81,-20.295,-19.206,-16.038,74.1213,41.8275
--18.81,-20.295,-19.206,-15.939,74.1213,42.14
--17.689,-19.1786,-18.0614,-14.9891,69.70397,40.242
--17.8752,-19.38048,-18.3456,-15.24096,70.437696,41.405
--18.05,-19.57,-18.525,-15.2,71.136,41.96
--18.05,-19.57,-18.525,-15.39,71.1265,42.44
--18.2476,-19.78424,-18.7278,-15.46244,71.991584,41.503
--18.62,-20.188,-19.11,-15.974,73.4608,42.54
--17.328,-18.7872,-17.784,-14.7744,68.37264,40.1375
--17.1475,-18.5915,-17.59875,-14.6205,67.6514,40.2325
--19.1,-20.6,-19.5,-16.3,74.97,42.54
--19.1,-20.7,-19.5,-16.3,74.97,42.54
--17.78592,-19.18272,-18.25152,-14.99232,69.812064,40.6656
--18.15646,-19.67742,-18.5367,-15.49478,71.266482,41.405
--17.60256,-18.98496,-18.06336,-14.92992,69.083136,40.3488
--18.53082,-20.08314,-19.01592,-15.81426,72.735894,41.6892
--17.96928,-19.47456,-18.43968,-15.33504,70.522368,41.405
--17.97119,-19.47663,-18.44164,-15.33667,70.529864,40.7691
--19.1,-20.7,-19.6,-16.4,74.96,42.14
--19.1,-20.8,-19.6,-16.2,74.97,42.04
--18.15646,-19.77248,-18.63176,-15.49478,71.266482,41.0892
--17.78592,-19.36896,-18.34464,-15.08544,69.812064,40.4544
--17.4192,-18.9696,-17.9664,-14.7744,68.37264,40.1375
--18.15264,-19.76832,-18.72288,-15.58656,71.241984,41.8275
--18.15646,-19.77248,-18.72682,-15.6849,71.256976,41.111
--18.336,-19.968,-18.912,-15.84,71.9616,42.44
--19.008,-20.592,-19.503,-16.236,74.2104,41.6097
--17.69472,-19.16928,-18.15552,-15.02208,69.083136,40.272
--18.43968,-19.97632,-18.91988,-15.8466,72.001188,41.503
--17.96355,-19.65645,-18.52785,-15.51825,70.49988,41.7186
--17.87904,-19.46208,-18.43776,-15.3648,69.812064,40.6915
--18.43776,-19.87821,-18.72585,-15.3648,71.993691,40.7691
--18.0576,-18.6219,-16.5528,-15.8004,70.49988,39.9285
--18.816,-18.326,-15.778,-17.052,73.4706,41.2972
--18.25152,-17.01574,-14.35406,-16.82562,71.266482,40.8758
--18.06336,-16.18176,-13.35936,-16.55808,70.531776,40.1664
--18.24768,-16.632,-13.59072,-13.02048,71.346528,40.1664
--18.34658,-18.0614,-15.11454,-14.7343,71.256976,41.0032
--18.81792,-19.11195,-16.17165,-15.28956,73.566306,41.5305
--18.43776,-18.82188,-16.13304,-14.78862,72.080118,41.2434
--17.8752,-18.2476,-15.827,-14.0581,69.78776,39.5865
--17.6928,-17.96925,-15.8498,-13.8225,69.16779,39.8525
--18.34658,-18.5367,-16.44538,-14.35406,71.352036,40.6915
--18.15165,-18.2457,-16.3647,-14.01345,70.59393,41.1444
--18.15744,-18.25152,-16.464,-14.01792,70.522368,40.0704
--17.9683,-18.0614,-16.3856,-13.8719,69.88086,39.8525
--17.8752,-18.0614,-16.4787,-14.1512,69.88086,39.748
--17.78495,-17.96925,-16.4027,-14.09895,69.16779,39.482
--17.78495,-18.0614,-16.49485,-14.1911,69.177005,40.4102
--18.34658,-18.72682,-17.1108,-14.82936,71.352036,40.719
--18.34272,-18.81792,-17.20224,-14.92128,71.337024,39.792
--17.6016,-18.0576,-16.5984,-14.136,68.45472,39.888
--19.3,-19.8,-18.2,-15.3,75.06,41.45
--18.914,-19.404,-17.934,-15.19,73.5686,41.111
--17.78495,-18.33785,-16.9556,-14.09895,69.16779,40.4102
--17.78688,-18.24768,-16.95744,-14.19264,69.175296,39.792
--18.528,-19.008,-17.76,-14.88,72.0576,39.9936
--18.721,-19.303,-17.945,-15.035,72.8179,41.74
--17.78495,-18.33785,-17.1399,-14.1911,69.177005,39.7575
--18.34658,-19.012,-17.68116,-14.63924,71.361542,40.3132
--18.914,-19.6,-18.228,-15.386,73.5588,41.84
--18.528,-19.2,-17.952,-15.072,72.0672,41.95
--17.78495,-18.43,-17.23205,-14.1911,69.177005,39.577
--19.107,-19.8,-18.612,-15.444,74.3094,41.2434
--19.107,-19.8,-18.612,-15.345,74.3094,41.1444
--18.15165,-18.81,-17.6814,-14.8599,70.603335,39.653
--18.335,-19.095,-17.86,-14.82,71.3165,39.938
--18.34272,-19.19808,-17.96256,-14.92128,71.337024,40.3584
--18.53379,-19.30203,-18.14967,-15.26877,72.089721,41.5305
--18.914,-19.796,-18.522,-15.582,73.5686,42.25
--18.34658,-19.10706,-18.0614,-14.82936,71.352036,40.5132
--17.41825,-18.14025,-17.1475,-14.16925,67.750675,39.7575
--17.6016,-18.4224,-17.328,-14.2272,68.45472,40.1375
--17.78688,-18.61632,-17.5104,-14.46912,69.184512,40.0704
--17.41825,-18.2305,-17.1475,-14.2595,67.750675,39.653
--18.44164,-19.20212,-18.0614,-15.11454,71.361542,40.8366
--18.15937,-19.00618,-17.97119,-14.96031,70.633363,40.7691
--17.78495,-18.70645,-17.60065,-14.5597,69.177005,39.748
--18.335,-19.285,-18.145,-15.105,71.3165,42.03
--19.3,-20.3,-19.1,-15.9,75.07,41.95
--17.8771,-18.70645,-17.60065,-14.65185,69.16779,39.9285
--18.0614,-18.8993,-17.7821,-14.4305,69.88086,39.8525
--18.62982,-19.49409,-18.34173,-15.07671,72.089721,41.6097
--17.8771,-18.70645,-17.6928,-14.744,69.177005,40.1375
--18.25346,-19.10027,-18.06528,-15.33667,70.633363,40.8758
--17.87904,-18.80064,-17.69472,-14.56128,69.184512,40.1664
--18.62982,-19.59012,-18.43776,-15.26877,72.089721,41.5305
--18.818,-19.788,-18.624,-15.52,72.8082,42.03
--17.87904,-18.80064,-17.78688,-14.92992,69.184512,39.9936
--18.43776,-19.38816,-18.34272,-15.39648,71.346528,40.176
--18.818,-19.788,-18.721,-15.617,72.8179,41.74
--18.63176,-19.6882,-18.53572,-15.46244,72.097228,40.9052
--18.43,-19.475,-18.335,-15.39,71.3165,39.577
--19.206,-20.295,-19.206,-16.137,74.3193,41.2533
--18.624,-19.68,-18.624,-15.552,72.0672,41.74
--18.43,-19.57,-18.43,-15.485,71.3165,41.67
--18.2457,-19.3743,-18.2457,-15.33015,70.603335,41.4216
--18.44164,-19.58236,-18.44164,-15.39972,71.361542,40.8268
--18.44164,-19.58236,-18.5367,-15.6849,71.361542,40.8366
--18.624,-19.776,-18.72,-15.648,72.1536,41.45
--17.8771,-19.07505,-17.96925,-15.02045,69.177005,39.482
--17.6928,-18.8784,-17.784,-14.8656,68.46384,39.3775
--17.87904,-19.07712,-17.9712,-15.11424,69.276672,40.176
--17.87904,-19.07712,-17.9712,-15.11424,69.184512,39.8976
--18.0614,-19.2717,-18.2476,-15.0822,69.88086,39.482
--18.62982,-19.97424,-18.82188,-15.65289,72.089721,41.1444
--18.43,-19.76,-18.62,-15.58,71.3165,39.197
--18.25152,-19.56864,-18.43968,-15.5232,70.625856,39.792
--17.5085,-18.772,-17.689,-14.801,67.8319,39.577
--17.8771,-19.1672,-18.0614,-15.2969,69.177005,39.577
--19.206,-20.592,-19.503,-16.335,74.3193,40.9266
--18.43776,-19.76832,-18.72288,-15.6816,71.346528,41.2533
--18.06528,-19.36896,-18.34464,-15.3648,69.905184,39.6864
--18.0614,-19.3648,-18.3407,-15.5477,69.97396,39.3775
--18.43776,-19.76832,-18.72288,-15.77664,71.432064,39.792
--19.11195,-20.48409,-19.30797,-16.07364,73.664316,41.0355
--18.1545,-18.9924,-16.9442,-15.827,69.89017,39.3775
--18.5328,-18.34272,-15.87168,-16.53696,71.337024,41.3226
--19.5,-18.3,-15.4,-16.9,75.16,41.74
--17.9712,-16.128,-13.45536,-15.57504,69.193728,40.2816
--18.5367,-16.06514,-13.11828,-15.49478,71.447096,40.9052
--18.72585,-17.86158,-14.69259,-14.59656,72.080118,40.4102
--18.72,-18.624,-15.648,-15.168,72.1536,40.0704
--17.9712,-18.06336,-15.39072,-14.46912,69.267456,40.0704
--18.1584,-18.25152,-15.73728,-14.15424,69.988992,40.5945
--18.72,-18.816,-16.416,-14.496,72.1632,40.2816
--18.1584,-18.1584,-16.01664,-14.06112,69.988992,40.5945
--19.305,-19.206,-17.226,-15.147,74.4084,41.95
--18.72,-18.72,-16.8,-14.4,72.1632,40.2816
--17.59875,-17.59875,-15.884,-13.357,67.8319,40.242
--18.5328,-18.5328,-16.82208,-14.35104,71.432064,41.8275
--18.9189,-18.9189,-17.26956,-14.65002,72.929934,41.1992
--18.525,-18.62,-17.005,-14.63,71.402,42.25
--18.72,-18.912,-17.28,-14.976,72.1632,40.56
--18.915,-19.206,-17.557,-14.938,72.9149,41.0892
--18.33975,-18.6219,-17.1171,-14.4837,70.697385,41.8275
--19.5,-19.9,-18.3,-15.6,75.16,42.44
--17.59875,-17.95975,-16.51575,-13.8985,67.840925,40.527
--18.9189,-19.30698,-17.85168,-15.13512,72.920232,42.2235
--18.5367,-18.91694,-17.5861,-14.92442,71.447096,41.9832
--18.915,-19.4,-17.945,-15.132,72.9052,43.64
--17.96925,-18.43,-17.1399,-14.3754,69.25994,41.7682
--18.9189,-19.404,-18.04572,-15.32916,72.920232,42.2772
--19.11,-19.6,-18.326,-15.386,73.6568,43.06
--18.1584,-18.71712,-17.41344,-14.52672,69.998304,41.4144
--18.1545,-18.7131,-17.5028,-14.7098,69.97396,40.907
--18.525,-19.095,-17.86,-14.915,71.402,40.907
--17.59875,-18.2305,-17.05725,-14.34975,67.8319,40.698
--18.525,-19.19,-17.955,-15.01,71.402,40.907
--18.915,-19.594,-18.333,-15.326,72.9052,42.0495
--17.784,-18.4224,-17.328,-14.4096,68.54592,41.3376
--19.11,-19.796,-18.62,-15.484,73.6568,42.091
--18.1545,-18.8993,-17.689,-14.7098,69.98327,41.838
--18.72,-19.488,-18.24,-15.072,72.1536,42
--18.72,-19.488,-18.336,-15.168,72.1536,42.5664
--19.11,-19.894,-18.718,-15.484,73.6568,42.7672
--18.3456,-19.09824,-17.96928,-14.95872,70.710528,42
--18.915,-19.691,-18.527,-15.326,72.9052,43.53
--18.5328,-19.29312,-18.15264,-15.01632,71.432064,41.616
--18.5328,-19.29312,-18.15264,-15.11136,71.432064,43.0947
--18.915,-19.691,-18.527,-15.326,72.9052,43.45
--18.3456,-19.09824,-18.06336,-15.0528,70.719936,42.6594
--17.9712,-18.70848,-17.69472,-14.7456,69.276672,41.7888
--19.5,-20.4,-19.2,-16,75.17,43.75
--19.208,-19.992,-18.816,-15.778,73.6666,43.86
--17.96925,-18.7986,-17.78495,-14.65185,69.25994,42.5442
--18.34755,-19.19436,-18.15937,-14.96031,70.718044,42.3308
--17.59875,-18.411,-17.41825,-14.6205,67.8319,41.458
--18.915,-19.788,-18.721,-15.714,72.9052,44.15
--17.96925,-18.89075,-17.78495,-14.65185,69.269155,41.743
--19.11195,-19.99404,-18.91593,-15.6816,73.664316,43.0155
--19.20996,-20.09205,-18.91593,-15.87762,73.664316,43.7877
--18.72,-19.68,-18.528,-15.552,72.1632,41.4144
--18.82188,-19.68615,-18.62982,-15.65289,72.185751,43.2036
--18.62784,-19.4832,-18.43776,-15.2064,71.432064,42.1056
--18.1545,-19.0855,-18.0614,-14.9891,69.97396,40.983
--18.4338,-19.28025,-18.2457,-15.2361,70.68798,43.5006
--18.25152,-19.0896,-18.06528,-15.08544,69.998304,43.6888
--18.915,-19.885,-18.818,-15.423,72.9149,42.4375
--19.012,-19.885,-18.818,-15.617,72.9052,42.8255
--18.63176,-19.4873,-18.44164,-15.30466,71.447096,42.7672
--18.915,-19.982,-18.915,-15.617,72.9149,43.06
--18.1584,-19.18272,-18.1584,-14.8992,69.988992,42.3308
--18.44164,-19.38254,-18.25346,-15.33667,70.727453,43.1165
--19.012,-19.982,-18.915,-15.617,72.9052,43.75
--18.82188,-19.78218,-18.72585,-15.3648,72.176148,42.1465
--19.404,-20.394,-19.305,-16.236,74.4183,43.4214
--18.63176,-19.58236,-18.5367,-15.2096,71.456602,42.1562
--18.63176,-19.58236,-18.5367,-15.39972,71.456602,42.4375
--18.0614,-19.07505,-17.96925,-14.83615,69.25994,41.458
--17.8752,-18.8784,-17.784,-14.592,68.55504,41.6256
--18.44164,-19.38254,-18.34755,-15.33667,70.727453,41.9428
--18.43968,-19.47456,-18.43968,-15.14688,70.710528,42.1988
--18.62784,-19.67328,-18.62784,-15.2064,71.441568,41.712
--18.82188,-19.87821,-18.82188,-15.3648,72.185751,42.0495
--18.25152,-19.27584,-18.25152,-14.99232,69.988992,41.52
--18.25152,-19.27584,-18.25152,-14.99232,69.998304,41.4144
--19.404,-20.493,-19.404,-16.038,74.4084,42.8175
--18.2476,-19.1786,-18.2476,-15.1753,69.97396,40.5175
--18.62784,-19.57824,-18.62784,-15.39648,71.441568,44.3025
--18.2476,-19.2717,-18.2476,-14.9891,69.97396,47.187
--18.0614,-19.07505,-18.0614,-15.02045,69.25994,41.5548
--18.25152,-19.27584,-18.25152,-15.17856,69.988992,41.4144
--18.06336,-19.07712,-18.06336,-15.02208,69.267456,43.2384
--18.43968,-19.47456,-18.43968,-15.14688,70.719936,42.4608
--18.62784,-19.67328,-18.62784,-15.39648,71.432064,42.9165
--18.06336,-19.16928,-18.06336,-15.11424,69.267456,41.8944
--19.01592,-20.08314,-19.01592,-15.71724,72.920232,42.6294
--18.2476,-19.2717,-18.3407,-15.0822,69.97396,41.9425
--18.816,-19.968,-18.816,-15.648,72.1536,42.8544
--17.8752,-18.8784,-17.9664,-14.8656,68.54592,41.667
--18.62,-19.76,-18.715,-15.58,71.4115,43.53
--18.0614,-19.1672,-18.15355,-14.9283,69.25994,42.6218
--19.012,-20.176,-19.012,-15.811,72.9149,43.1165
--18.91791,-19.97424,-18.91791,-15.55686,72.185751,42.5442
--19.503,-20.592,-19.503,-16.038,74.4084,43.0254
--18.53573,-19.57072,-18.53573,-15.24258,70.727453,42.1465
--18.912,-19.968,-18.912,-15.648,72.1632,41.7888
--18.15355,-19.1672,-18.15355,-15.1126,69.269155,42.3308
--18.91791,-19.97424,-18.91791,-15.65289,72.176148,42.0495
--18.52785,-19.5624,-18.52785,-15.33015,70.68798,40.8025
--18.63176,-19.77248,-18.72682,-15.49478,71.542156,42.2772
--19.11294,-20.18016,-19.11294,-15.81426,73.017252,42.8175
--18.53376,-19.56864,-18.53376,-15.33504,70.804608,42.483
--19.503,-20.592,-19.503,-16.038,74.5074,42.7086
--18.72682,-19.77248,-18.72682,-15.58984,71.542156,41.993
--18.91791,-19.97424,-18.91791,-15.74892,72.272178,42.4116
--19.7,-20.8,-19.8,-16.2,75.26,43.06
--18.91791,-19.97424,-19.01394,-15.84495,72.272178,41.7682
--18.72288,-19.76832,-18.81792,-15.49152,71.527104,43.0155
--17.9664,-18.9696,-18.0576,-14.9568,68.64624,41.616
--17.9664,-18.9696,-18.0576,-14.9568,68.63712,41.616
--18.715,-19.76,-18.715,-15.675,71.497,43.06
--18.3407,-19.4579,-18.4338,-15.2684,70.06706,41.078
--18.91988,-19.97632,-19.01592,-15.8466,72.289308,42.4928
--18.53573,-19.66481,-18.62982,-15.33667,70.812134,41.7682
--18.3407,-19.4579,-18.4338,-15.1753,70.07637,40.698
--18.91791,-20.07027,-19.01394,-15.65289,72.272178,41.5548
--18.53376,-19.56864,-18.62784,-15.42912,70.804608,41.4144
--18.52785,-19.5624,-18.6219,-15.51825,70.78203,42.8175
--19.109,-20.176,-19.109,-15.908,73.0022,43.25
--17.77925,-18.86225,-17.8695,-14.89125,67.92215,40.8025
--18.52785,-19.65645,-18.6219,-15.4242,70.78203,42.3324
--18.15355,-19.1672,-18.15355,-15.1126,69.361305,40.6315
--18.15355,-19.1672,-18.2457,-15.1126,69.35209,40.907
--18.15355,-19.25935,-18.2457,-15.1126,69.35209,41.7682
--18.912,-20.064,-19.008,-15.84,72.2496,41.712
--18.53376,-19.66272,-18.62784,-15.33504,70.804608,41.3376
--19.11294,-20.27718,-19.20996,-16.0083,73.017252,42.7086
--18.62982,-19.66481,-18.62982,-15.33667,70.812134,41.5548
--19.20996,-20.27718,-19.20996,-16.0083,73.017252,42.5205
--18.62982,-19.66481,-18.62982,-15.14849,70.812134,41.4772
--18.82188,-19.29718,-17.1108,-16.25526,71.551662,41.5548
--19.01394,-18.34173,-15.84495,-16.61319,72.272178,41.2638
--18.62982,-17.03029,-14.48986,-16.46575,70.812134,41.4772
--19.20996,-16.88148,-14.0679,-17.36658,73.017252,41.797
--18.24768,-15.48288,-12.71808,-15.94368,69.359616,41.0496
--19.602,-18.513,-15.048,-15.147,74.5074,43.25
--19.206,-18.818,-15.714,-15.132,73.0022,41.5548
--18.82188,-18.63176,-15.77996,-14.44912,71.542156,41.7682
--19.20996,-19.01592,-16.39638,-14.74704,73.017252,42.4215
--17.8695,-17.59875,-15.43275,-13.5375,67.92215,40.7075
--18.62784,-18.3456,-16.18176,-14.01792,70.804608,41.0496
--19.602,-19.206,-17.127,-14.85,74.5074,42.3324
--18.6219,-18.2457,-16.3647,-14.01345,70.78203,40.527
--19.20996,-18.82188,-16.9785,-14.553,73.026954,41.699
--19.20996,-18.82188,-17.07552,-14.553,73.017252,42.2334
--18.81,-18.525,-16.815,-14.535,71.5065,42.44
--19.404,-19.208,-17.444,-14.994,73.7548,42.44
--18.81,-18.715,-17.005,-14.63,71.497,42.76
--18.24768,-18.15552,-16.68096,-14.10048,69.359616,41.1264
--18.81792,-18.81792,-17.20224,-14.54112,71.527104,40.848
--18.0576,-18.0576,-16.5984,-13.9536,68.63712,40.944
--19.01592,-18.91988,-17.57532,-14.98224,72.279704,42.091
--18.0576,-18.0576,-16.6896,-14.136,68.63712,41.1264
--19.008,-19.008,-17.664,-14.976,72.2496,41.1264
--19.008,-19.104,-17.664,-14.88,72.2496,42.65
--18.43776,-18.53088,-17.2272,-14.61984,70.082112,40.7424
--18.81792,-19.008,-17.5824,-14.7312,71.536608,42.3324
--18.81792,-18.91296,-17.67744,-14.82624,71.527104,42.2235
--19.01394,-19.10997,-17.86158,-14.88465,72.272178,42.4116
--19.01394,-19.10997,-17.86158,-14.78862,72.272178,42.5205
--19.206,-19.303,-18.139,-15.132,73.0022,41.1668
--19.206,-19.4,-18.139,-15.229,73.0022,42.66
--19.01592,-19.208,-18.05552,-15.07828,72.279704,41.797
--18.81,-19,-17.86,-14.63,71.497,42.54
--19.008,-19.2,-18.048,-14.976,72.2496,40.9536
--19.206,-19.4,-18.236,-15.035,73.0119,41.0892
--19.206,-19.4,-18.236,-15.132,73.0022,41.3705
--19.20996,-19.404,-18.23976,-15.0381,73.017252,41.699
--18.2457,-18.52215,-17.41635,-14.5597,69.35209,40.527
--18.43776,-18.71712,-17.59968,-14.61984,70.082112,41.6615
--19.20996,-19.50102,-18.33678,-15.13512,73.017252,42.2235
--19.20996,-19.50102,-18.33678,-15.23214,73.017252,41.9832
--18.4338,-18.7131,-17.5959,-14.3374,70.06706,40.5175
--18.82188,-19.10706,-18.0614,-15.01948,71.542156,41.3705
--19.008,-19.296,-18.24,-15.072,72.2592,40.848
--19.20996,-19.50102,-18.4338,-15.32916,73.017252,41.699
--19.40598,-19.79802,-18.6219,-15.28956,73.762326,42.3324
--19.20996,-19.59804,-18.4338,-15.0381,73.017252,41.5912
--18.2457,-18.6143,-17.5085,-14.5597,69.35209,41.3705
--18.62784,-18.91008,-17.8752,-14.67648,70.804608,41.0496
--18.81,-19.095,-18.05,-14.915,71.497,40.698
--19.008,-19.392,-18.24,-15.264,72.2496,40.944
--19.008,-19.392,-18.24,-15.168,72.2496,42.95
--18.62784,-19.00416,-17.96928,-14.95872,70.804608,41.3376
--19.20996,-19.69506,-18.53082,-15.42618,73.017252,41.797
--19.40598,-19.89603,-18.71991,-15.58359,73.762326,42.4116
--18.0576,-18.5136,-17.4192,-14.5008,68.63712,41.5625
--18.81792,-19.29312,-18.15264,-14.92128,71.527104,41.1264
--17.8695,-18.32075,-17.23775,-14.34975,67.92215,40.8025
--18.81,-19.285,-18.24,-15.01,71.497,43.06
--18.2457,-18.70645,-17.6928,-14.46755,69.35209,40.983
--18.43776,-18.90336,-17.87904,-14.80608,70.082112,41.5548
--19.602,-20.097,-19.008,-15.543,74.5173,42.8175
--18.81,-19.285,-18.24,-14.915,71.497,42.55
--19.8,-20.3,-19.2,-15.8,75.26,42.55
--18.81,-19.285,-18.24,-15.105,71.497,42.84
--19.008,-19.488,-18.432,-15.36,72.2496,41.232
--19.602,-20.196,-19.008,-15.642,74.5074,42.3324
--18.81792,-19.38816,-18.24768,-15.11136,71.527104,42.5205
--19.602,-20.097,-19.107,-15.84,74.5074,42.95
--19.20996,-19.79208,-18.62784,-15.42618,73.017252,41.9048
--18.0576,-18.6048,-17.6016,-14.592,68.63712,40.318
--18.82188,-19.39224,-18.34658,-15.11454,71.542156,41.4772
--18.81792,-19.38816,-18.24768,-15.11136,71.527104,40.944
--19.8,-20.4,-19.2,-15.9,75.26,42.44
--18.62982,-19.19436,-18.15937,-15.0544,70.812134,41.4772
--19.40598,-19.89603,-18.81792,-15.48558,73.762326,42.2235
--18.82188,-19.39224,-18.34658,-15.2096,71.447096,41.5548
--19.206,-19.788,-18.721,-15.52,73.0022,42.84
--18.2457,-18.7986,-17.78495,-14.65185,69.269155,40.9825
--19.008,-19.584,-18.528,-15.456,72.1632,42.25
--19.01394,-19.59012,-18.53379,-15.17274,72.185751,41.0795
--19.206,-19.788,-18.721,-15.423,72.9149,43.45
--19.008,-19.584,-18.528,-15.168,72.1632,42.35
--18.62982,-19.19436,-18.15937,-15.14849,70.718044,40.7691
--18.62784,-19.19232,-18.15744,-14.95872,70.710528,42.384
--18.24768,-18.8928,-17.78688,-14.65344,69.267456,42.768
--18.2457,-18.7986,-17.78495,-14.744,69.269155,42.0495
--18.4338,-19.0855,-17.9683,-14.8029,69.98327,40.622
--18.62982,-19.28845,-18.15937,-15.14849,70.727453,41.1668
--18.62784,-19.2864,-18.25152,-14.95872,70.710528,41.7888
--18.0576,-18.696,-17.6928,-14.7744,68.54592,41.1264
--18.43776,-19.0896,-18.06528,-14.80608,69.988992,41.0496
--18.6219,-19.28025,-18.2457,-14.95395,70.68798,42.3324
--17.8695,-18.50125,-17.5085,-14.44,67.8319,40.622
--19.206,-19.885,-18.818,-15.714,72.9052,42.54
--19.008,-19.68,-18.624,-15.36,72.1536,41.4144
--19.40598,-20.09205,-19.01394,-15.6816,73.674117,42.8175
--18.2457,-18.89075,-17.8771,-14.83615,69.25994,41.6615
--17.8695,-18.50125,-17.5085,-14.44,67.840925,41.078
--19.01592,-19.6882,-18.63176,-15.3664,72.183664,42.6594
--18.82188,-19.4873,-18.44164,-15.2096,71.447096,43.1592
--19.602,-20.295,-19.206,-15.741,74.3094,41.6097
--19.404,-20.09,-19.012,-15.582,73.5686,41.9048
--19.404,-20.09,-19.012,-15.68,73.5686,44.34
--19.602,-20.295,-19.206,-15.84,74.3193,43.86
--19.01394,-19.68615,-18.62982,-15.46083,72.099324,43.1262
--17.8695,-18.50125,-17.5085,-14.44,67.750675,42.9875
--18.62784,-19.2864,-18.25152,-15.14688,70.625856,41.232
--18.0576,-18.7872,-17.784,-14.6832,68.37264,43.548
--19.602,-20.394,-19.305,-15.939,74.3193,47.13
--19.008,-19.68,-18.72,-15.456,71.9712,44.64
--17.8695,-18.5915,-17.59875,-14.44,67.660425,42.0185
--19.404,-20.188,-19.11,-15.974,73.4706,42.7672
--17.8695,-18.5915,-17.59875,-14.34975,67.660425,42.2275
--18.82188,-19.58236,-18.5367,-15.11454,71.275988,43.5918
--19.404,-20.09,-19.11,-15.68,73.4706,42.7672
--19.40598,-20.09205,-19.11195,-15.77961,73.478097,43.7085
--17.8695,-18.5915,-17.59875,-14.44,67.660425,42.0185
--18.82188,-19.58236,-18.5367,-15.49478,71.266482,42.6218
--18.81,-19.57,-18.525,-15.39,71.2215,41.287
--18.62784,-19.38048,-18.3456,-15.24096,70.531776,42.288
--18.43776,-19.18272,-18.1584,-15.17856,69.812064,42.2241
--19.206,-19.982,-18.915,-15.617,72.7209,44.15
--17.8695,-18.50125,-17.5085,-14.2595,67.660425,41.8475
--17.8695,-18.5915,-17.59875,-14.44,67.660425,40.5175
--17.8695,-18.5915,-17.59875,-14.53025,67.660425,43.263
--19.008,-19.68,-18.72,-15.456,71.9712,45.44
--17.8695,-18.5915,-17.59875,-14.6205,67.660425,42.6835
--19.20996,-19.98612,-18.9189,-15.71724,72.735894,43.5996
--19.8,-20.6,-19.5,-16.2,74.97,43.75
--18.6219,-19.3743,-18.33975,-15.048,70.415235,44.1144
--18.81792,-19.57824,-18.5328,-15.30144,71.251488,43.0155
--18.4338,-19.1786,-18.1545,-14.896,69.79707,42.385
--18.82188,-19.58236,-18.5367,-15.2096,71.266482,42.0495
--19.602,-20.394,-19.305,-15.84,74.2203,44.1144
--18.6219,-19.3743,-18.33975,-15.2361,70.415235,40.698
--19.404,-20.188,-19.11,-15.876,73.3726,43.35
--19.40598,-20.19006,-19.11195,-15.87762,73.380087,43.6095
--18.6219,-19.3743,-18.33975,-15.14205,70.415235,43.548
--19.008,-19.776,-18.72,-15.36,71.8752,44.0064
--18.0576,-18.7872,-17.784,-14.6832,68.29056,43.2725
--19.206,-19.982,-18.915,-15.52,72.5366,46.7055
--17.8695,-18.5915,-17.59875,-14.53025,67.570175,44.498
--19.206,-19.982,-18.915,-15.617,72.5269,49.44
--18.81,-19.57,-18.525,-15.295,71.041,51.23
--17.8695,-18.5915,-17.59875,-14.34975,67.48895,51.0435
--19.206,-19.982,-18.915,-15.52,72.5366,52.54
--19.8,-20.6,-19.5,-16.1,74.78,54.64
--19.206,-19.982,-18.915,-15.617,72.5269,57.94
--18.43776,-19.18272,-18.1584,-14.8992,69.635136,57.6568
--18.81,-19.57,-18.525,-15.295,71.0315,51.8035
--18.82188,-19.58236,-18.5367,-15.39972,71.085868,58.4134
--18.82188,-19.58236,-18.5367,-15.2096,70.990808,55.1348
--18.62982,-19.38254,-18.34755,-15.24258,70.360502,60.2661
--18.2457,-18.9829,-17.96925,-14.83615,68.90977,63.764
--18.91296,-19.57824,-18.5328,-15.39648,71.070912,71.6958
--18.62982,-19.38254,-18.34755,-15.0544,70.454592,76.3196
--18.81,-19.57,-18.525,-15.39,71.136,82.28
--18.905,-19.57,-18.525,-15.39,71.136,83.78
--17.95975,-18.5915,-17.59875,-14.53025,67.660425,83.011
--18.43776,-19.18272,-18.1584,-14.99232,69.812064,84.384
--19.11196,-19.6882,-18.7278,-15.3664,72.001188,87.4062
--18.91296,-19.4832,-18.5328,-15.39648,71.346528,89.6049
--19.104,-19.776,-18.72,-15.456,72.2496,91.92
--18.33984,-18.98496,-17.9712,-14.83776,69.543936,88.7328
--18.33785,-18.89075,-17.96925,-14.83615,69.711475,88.559
--19.008,-19.776,-18.72,-15.552,72.6336,89.6928
--18.905,-19.57,-18.525,-15.2,72.048,93.74
--18.91694,-19.4873,-18.5367,-15.30466,72.083998,91.9632
--19.701,-20.394,-19.305,-15.939,75.3192,94.14
--18.33785,-18.9829,-17.96925,-14.9283,70.098505,91.3158
--18.5269,-19.1786,-18.1545,-14.896,70.83048,89.3285
--19.701,-20.394,-19.305,-15.939,75.5073,93.0897
--19.303,-19.982,-18.915,-15.617,73.8946,92.84
--19.701,-20.394,-19.305,-15.741,75.7053,86.4369
--19.9,-20.6,-19.5,-16,76.76,85.18
--19.303,-19.982,-18.915,-15.617,74.6415,79.9183
--18.91694,-19.4873,-18.5367,-15.2096,73.43385,77.7843
--18.71595,-19.28025,-18.2457,-15.048,72.785295,76.8141
--19.104,-19.68,-18.72,-15.36,74.4864,73.3632
--18.5269,-19.1786,-18.1545,-14.8029,72.31077,71.1645
--18.1488,-18.696,-17.784,-14.5008,71.01744,70.6895
--19.104,-19.68,-18.624,-15.264,74.8512,73.31
--19.104,-19.68,-18.72,-15.36,74.8512,70.4832
--19.701,-20.295,-19.305,-16.038,77.1012,72.91
--18.72391,-19.28845,-18.25346,-15.14849,73.267883,70.9264
--19.701,-20.196,-19.206,-15.84,77.1012,73.12
--18.5269,-18.9924,-18.0614,-14.896,72.49697,72.4514
--18.72391,-19.28845,-18.25346,-14.96031,73.183202,71.1107
--18.1488,-18.696,-17.6928,-14.5008,70.93536,69.9168
--18.72192,-19.2864,-18.25152,-15.0528,73.175424,70.3738
--19.303,-19.788,-18.818,-15.617,75.4466,71.33
--19.303,-19.788,-18.721,-15.423,75.4466,68.4141
--19.30698,-19.79208,-18.82188,-15.42618,75.365136,67.9336
--18.91296,-19.38816,-18.34272,-15.11136,73.827072,67.2192
--18.91296,-19.38816,-18.34272,-15.2064,73.827072,66.8256
--18.72192,-19.19232,-18.15744,-14.95872,73.175424,68.7274
--18.91296,-19.38816,-18.34272,-15.01632,73.827072,66.9312
--18.91694,-19.39224,-18.34658,-15.11454,73.842608,67.8418
--18.33984,-18.80064,-17.78688,-14.56128,71.589888,66.6528
--18.72192,-19.19232,-18.15744,-14.77056,73.081344,67.6494
--18.91694,-19.39224,-18.34658,-15.01948,73.842608,68.3256
--18.53088,-18.99648,-17.97216,-14.71296,72.344928,68.8608
--18.1488,-18.5136,-17.6016,-14.4096,70.84416,68.324
--18.905,-19.285,-18.24,-15.105,73.8055,69.1885
--18.1488,-18.5136,-17.5104,-14.5008,70.84416,70.585
--19.104,-19.488,-18.432,-15.264,74.5728,73.71
--19.10997,-19.49409,-18.43776,-15.17274,74.605707,73.5669
--19.303,-19.691,-18.624,-15.423,75.3496,75.32
--19.10997,-19.49409,-18.43776,-15.07671,74.596104,73.7394
--19.104,-19.488,-18.432,-15.168,74.4864,71.0496
--19.303,-19.691,-18.624,-15.229,75.2526,77.3
--18.905,-19.285,-18.24,-14.915,73.701,81.4
--18.72391,-19.10027,-18.06528,-14.77213,73.004431,81.6643
--18.71595,-19.09215,-18.0576,-14.95395,72.96399,84.7341
--18.5269,-18.8993,-17.8752,-14.5236,72.32008,86.6516
--19.9,-20.3,-19.2,-15.8,77.78,90.63
--19.11196,-19.40008,-18.34364,-15.07828,74.613476,86.044
--19.9,-20.3,-19.2,-15.8,77.88,85
--18.1488,-18.5136,-17.5104,-14.3184,71.11776,80.2656
--18.1488,-18.5136,-17.4192,-14.2272,71.20896,76.8096
--18.53088,-18.81024,-17.78592,-14.61984,72.885024,76.5427
--18.91296,-19.19808,-18.15264,-14.82624,74.473344,73.7472
--18.33785,-18.6143,-17.60065,-14.3754,72.30089,74.5154
--19.30698,-19.59804,-18.53082,-15.0381,76.121892,72.8238
--19.50399,-19.70001,-18.6219,-15.28956,76.898646,73.8738
--18.72192,-18.91008,-17.8752,-14.77056,73.815168,73.2158
--18.71595,-18.90405,-17.8695,-14.6718,73.79163,71.2785
--19.303,-19.497,-18.43,-15.326,76.1062,72.7791
--19.502,-19.698,-18.62,-15.19,76.8908,73.1374
--18.905,-19.095,-18.05,-14.725,74.537,70.034
--18.91296,-19.10304,-18.0576,-14.63616,74.568384,71.7057
--18.91296,-19.10304,-18.0576,-14.82624,74.568384,71.0919
--18.91296,-19.10304,-17.96256,-14.63616,74.568384,70.2207
--18.53088,-18.71712,-17.6928,-14.4336,72.968832,68.5984
--18.71595,-18.90405,-17.8695,-14.4837,73.706985,66.443
--19.303,-19.497,-18.333,-14.938,76.0189,66.7845
--18.1488,-18.24,-17.2368,-14.2272,71.47344,67.1424
--18.1488,-18.24,-17.2368,-14.2272,71.47344,66.139
--18.5269,-18.62,-17.5959,-14.6167,72.96247,68.3354
--18.53088,-18.624,-17.59968,-14.52672,72.968832,66.9408
--19.502,-19.6,-18.522,-15.288,76.8026,69.54
--18.905,-19,-17.955,-14.725,74.442,69.43
--19.502,-19.6,-18.522,-15.092,76.7928,68.0414
--19.30698,-19.404,-18.23976,-14.84406,76.024872,67.6494
--19.206,-19.10997,-18.05364,-14.69259,75.258711,67.9536
--18.91694,-18.91694,-17.87128,-14.44912,74.498522,67.0712
--19.303,-19.303,-18.236,-14.938,76.0189,68.23
--18.905,-18.905,-17.86,-14.63,74.4515,64.638
--18.905,-18.905,-17.86,-14.725,74.442,64.2485
--19.502,-19.6,-18.424,-14.994,76.8026,67.43
--18.1488,-18.1488,-17.1456,-14.0448,71.46432,63.973
--18.72192,-18.72192,-17.68704,-14.30016,73.721088,64.4448
--17.95975,-17.95975,-16.87675,-13.718,70.7199,63.7735
--19.104,-19.008,-17.952,-14.496,75.2352,64.2624
--18.71595,-18.6219,-17.58735,-14.38965,73.79163,65.9736
--18.33984,-18.24768,-17.23392,-13.91616,72.216576,63.696
--19.9,-19.8,-18.7,-15.2,78.36,65.83
--19.10997,-19.01394,-17.95761,-14.59656,75.345138,63.6611
--18.905,-18.81,-17.765,-14.535,74.632,62.0635
--18.53088,-18.43776,-17.41344,-14.24736,73.23888,63.1858
--18.33785,-18.2457,-17.23205,-14.0068,72.604985,61.503
--19.9,-19.8,-18.6,-15.2,78.88,64.44
--18.71595,-18.52785,-17.4933,-14.20155,74.28069,63.3996
--19.104,-18.912,-17.856,-14.592,75.9168,63.83
--18.1488,-17.9664,-16.9632,-13.7712,72.11184,60.6385
--18.1488,-17.8752,-16.9632,-13.5888,72.11184,61.2768
--18.91694,-18.63176,-17.5861,-14.35406,75.163942,61.9151
--19.30698,-19.11294,-18.04572,-14.65002,76.723416,63.1125
--18.53088,-18.43776,-17.32032,-13.968,73.639296,61.0944
--18.1488,-17.9664,-16.9632,-13.5888,72.11184,61.0944
--19.30698,-19.11294,-17.9487,-14.553,76.723416,62.7165
--18.91694,-18.63176,-17.5861,-14.259,75.163942,61.1814
--19.9,-19.6,-18.5,-15,79.08,62.54
--19.303,-19.012,-17.945,-14.647,76.7076,62.73
--18.72192,-18.43968,-17.4048,-14.112,74.398464,61.1814
--18.5269,-18.3407,-17.2235,-14.1512,73.53038,59.3085
--18.905,-18.62,-17.575,-14.25,75.031,64.05
--18.33785,-18.0614,-17.04775,-13.8225,72.697135,61.294
--18.5269,-18.2476,-17.1304,-13.965,73.43728,60.5625
--19.303,-19.012,-17.848,-14.356,76.5233,64.53
--19.11196,-18.7278,-17.67136,-14.406,75.669916,69.9034
--18.53088,-18.06528,-17.13408,-13.968,73.453056,70.2571
--18.2457,-17.96925,-16.9556,-13.91465,72.604985,73.4581
--19.602,-19.404,-18.216,-14.85,77.9922,74.2797
--19.303,-19.012,-17.848,-14.55,76.4166,75.3787
--19.40598,-19.11195,-18.03384,-14.79951,77.094666,74.4678
--18.4338,-18.1545,-17.1304,-13.8719,73.22315,75.8618
--18.6219,-18.33975,-17.3052,-14.20155,73.97973,73.8245
--17.8695,-17.5085,-16.51575,-13.26675,70.981625,74.2045
--19.206,-18.721,-17.751,-14.356,76.2032,75.66
--18.62784,-18.25152,-17.21664,-14.112,73.909248,76.2538
--18.81792,-18.5328,-17.39232,-14.06592,74.663424,71.4978
--19.404,-19.11,-17.934,-14.7,76.9888,73.8234
--19.01394,-18.62982,-17.57349,-14.21244,75.431565,73.5357
--18.4338,-18.0614,-17.0373,-13.8719,73.13936,71.459
--19.404,-18.914,-17.934,-14.406,76.9888,76.43
--19.01394,-18.53379,-17.47746,-14.21244,75.450771,74.6027
--18.62784,-18.15744,-17.12256,-14.01792,73.909248,75.7536
--19.20996,-18.82188,-17.65764,-14.26194,76.218912,79.8798
--18.2457,-17.8771,-16.7713,-13.6382,72.39304,78.66
--19.20996,-18.82188,-17.65764,-14.26194,76.218912,83.754
--19.20996,-18.82188,-17.65764,-14.26194,76.218912,81.1538
--18.0576,-17.6016,-16.5984,-13.3152,71.7288,78.6432
--18.2457,-17.6928,-16.67915,-13.36175,72.604985,78.182
--19.404,-18.816,-17.738,-14.602,77.3122,80.12
--18.6219,-18.2457,-17.1171,-14.1075,74.196045,73.7295
--18.6219,-18.33975,-17.1171,-13.9194,74.18664,73.9195
--19.206,-18.818,-17.654,-13.774,76.5233,75.63
--18.3407,-17.9683,-16.8511,-13.3133,73.43728,70.319
--18.0576,-17.5104,-16.5072,-13.3152,71.93856,70.034
--18.91791,-18.34173,-17.38143,-13.73229,75.844494,70.7227
--17.77925,-17.1475,-16.245,-12.90575,71.27945,68.3335
--18.912,-18.144,-17.28,-13.824,75.8208,69.84
--18.15552,-17.41824,-16.49664,-13.27104,72.787968,65.7888
--19.109,-18.333,-17.363,-14.065,76.6106,67.83
--19.306,-18.62,-17.542,-14.112,77.4004,67.74
--18.715,-18.145,-17.005,-13.965,75.031,64.0585
--18.715,-18.145,-17.1,-13.87,75.031,67.74
--19.503,-19.008,-17.721,-14.454,78.1902,67.74
--19.503,-18.909,-17.721,-14.157,78.1902,66.0528
--19.109,-18.43,-17.363,-14.162,76.6106,65.73
--18.53376,-17.8752,-16.84032,-13.73568,74.304384,66.003
--17.77925,-17.23775,-16.15475,-13.1765,71.27945,64.2485
--19.503,-19.008,-17.82,-14.553,78.1902,68.15
--19.11294,-18.62784,-17.4636,-14.0679,76.626396,68.2407
--18.3407,-17.8752,-16.758,-13.5926,73.62348,67.473
--18.912,-18.336,-17.184,-13.824,75.9168,68.74
--18.15552,-17.5104,-16.49664,-13.17888,72.880128,66.096
--19.404,-18.81,-17.721,-14.355,78.2892,67.2507
--18.0614,-17.60065,-16.49485,-13.73035,72.87222,64.0585
--18.3407,-17.8752,-16.6649,-13.7788,73.62348,64.429
--18.52785,-18.0576,-16.929,-13.82535,74.37474,67.0626
--18.816,-18.336,-17.28,-13.92,75.9168,63.9744
--17.8752,-17.4192,-16.3248,-13.3152,72.12096,63.6975
--18.2476,-17.689,-16.6649,-13.4064,73.61417,65.023
--18.62784,-18.0576,-17.01216,-13.87584,75.157632,63.1968
--18.63176,-18.0614,-17.01574,-13.87876,75.173448,64.4252
--18.62784,-18.15264,-17.01216,-13.87584,75.157632,64.7856
--19.012,-18.624,-17.363,-14.162,76.8046,65.44
--18.0614,-17.6928,-16.49485,-13.54605,72.96437,63.4768
--18.82188,-18.34173,-17.18937,-13.92435,75.940524,63.2925
--18.62,-18.05,-17.005,-13.68,75.221,61.6835
--18.816,-18.24,-17.184,-13.92,76.0032,62.0448
--18.63176,-18.0614,-17.01574,-14.06888,75.354062,62.5941
--19.208,-18.718,-17.542,-14.504,77.7826,64.05
--17.689,-17.328,-16.245,-13.26675,71.721675,60.7525
--18.3456,-18.06336,-16.9344,-13.73568,74.755968,62.6612
--18.72585,-18.34173,-17.18937,-13.82832,76.305438,63.0036
--18.72,-18.24,-17.184,-13.632,76.2912,60.9984
--18.72585,-18.2457,-17.18937,-13.82832,76.315041,61.7308
--19.5,-19,-17.9,-14.5,79.47,64.05
--19.11,-18.816,-17.542,-14.406,77.8806,66.43
--18.915,-18.624,-17.363,-14.259,77.0859,65.7854
--19.5,-19.1,-17.9,-14.5,79.37,69.44
--17.9712,-17.5104,-16.49664,-13.45536,73.147392,64.0608
--18.33975,-17.8695,-16.83495,-13.5432,74.647485,61.6275
--18.5367,-18.0614,-17.01574,-13.7837,75.449122,68.5305
--18.915,-18.43,-17.363,-14.162,76.8919,64.15
--18.5328,-18.15264,-17.01216,-13.97088,75.338208,61.1226
--17.784,-17.4192,-16.3248,-13.3152,72.29424,63.9825
--19.5,-19.1,-17.9,-14.5,79.27,71.82
--19.11,-18.62,-17.542,-14.406,77.6944,75.1856
--18.5328,-17.96256,-16.91712,-13.59072,75.252672,66.1728
--18.33975,-17.77545,-16.7409,-13.5432,74.46879,62.453
--17.5085,-17.1475,-16.15475,-13.26675,71.450925,65.3315
--18.82188,-18.53082,-17.36658,-14.0679,76.810734,64.3174
--18.915,-18.624,-17.363,-14.065,76.7949,61.2361
--18.0614,-17.689,-16.5718,-13.4064,73.70727,61.691
--19.01394,-18.6219,-17.44578,-14.01543,77.594517,61.4097
--19.012,-18.522,-17.444,-14.014,77.5866,60.8972
--18.82188,-18.4338,-17.26956,-14.0679,76.810734,61.1226
--18.25152,-17.8752,-16.84032,-13.82976,74.483136,58.9824
--18.43,-18.05,-16.91,-13.68,75.2115,58.748
--18.2457,-17.96355,-16.7409,-13.3551,74.46879,61.1226
--19.012,-18.62,-17.444,-13.916,77.5866,62.04
--19.01394,-18.42588,-17.44578,-13.81941,77.604318,61.0137
--18.63176,-18.05552,-16.99908,-13.73372,76.044472,62.083
--18.06528,-17.50656,-16.57536,-13.31616,73.723104,64.1568
--18.06528,-17.6928,-16.57536,-13.40928,73.732416,63.984
--18.82188,-18.4338,-17.26956,-13.77684,76.810734,69.0327
--18.624,-18.144,-17.088,-13.728,76.0128,72.63
--18.15165,-17.6814,-16.64685,-13.26105,74.46879,64.923
--18.721,-18.139,-17.072,-13.677,76.8046,71.4017
--18.914,-18.326,-17.248,-13.818,77.5964,72.0594
--17.9683,-17.4097,-16.4787,-13.4064,73.70727,70.5185
--17.9683,-17.5028,-16.4787,-13.3133,73.80037,70.034
--19.107,-18.711,-17.523,-14.058,78.3783,72.5868
--17.9683,-17.5028,-16.4787,-13.2202,73.70727,68.894
--18.72486,-18.14274,-17.07552,-13.5828,76.810734,71.4186
--17.9683,-17.4097,-16.3856,-12.9409,73.71658,70.8834
--18.914,-18.326,-17.248,-13.916,77.5964,70.5894
--18.335,-17.765,-16.72,-13.68,75.2115,67.0035
--18.914,-18.424,-17.248,-14.014,77.5866,67.6592
--18.72486,-18.23976,-17.07552,-13.67982,76.917456,67.1594
--19.107,-18.513,-17.424,-13.761,78.4773,67.8447
--18.721,-18.042,-16.975,-13.677,76.8046,67.0755
--18.15744,-17.49888,-16.464,-13.26528,74.492544,68.6294
--18.15744,-17.59296,-16.464,-13.1712,74.483136,68.0512
--18.15937,-17.59483,-16.46575,-13.36078,74.500462,66.9688
--18.914,-18.326,-17.15,-13.72,77.4984,67.767
--17.6016,-16.9632,-15.96,-12.6768,72.12096,65.9904
--18.25152,-17.68116,-16.6355,-13.40346,75.078388,66.9688
--18.43968,-17.86344,-16.71096,-13.4456,75.852392,67.473
--19.2,-18.6,-17.5,-14,78.98,68.04
--18.62784,-18.14274,-16.9785,-13.67982,76.626396,66.8654
--18.62784,-18.14274,-16.9785,-13.67982,76.626396,66.8547
--18.06528,-17.50074,-16.46575,-13.07851,74.312282,65.2228
--17.328,-16.69625,-15.7035,-12.635,71.27945,63.7735
--18.432,-17.76,-16.704,-13.344,75.8208,64.368
--18.0576,-17.4933,-16.3647,-13.3551,74.28069,63.3935
--19.008,-18.513,-17.226,-13.959,77.9922,66.5676
--17.5104,-17.0544,-15.8688,-12.6768,71.93856,64.2624
--17.328,-16.7865,-15.7035,-12.4545,71.27945,63.3175
--17.5104,-16.872,-15.8688,-12.6768,72.02976,63.1085
--18.25152,-17.5861,-16.54044,-13.3084,75.173448,64.2528
--18.62784,-18.04572,-16.88148,-13.5828,76.810734,64.7856
--18.06528,-17.50074,-16.37166,-13.26669,74.585143,63.3022
--18.15646,-17.68116,-16.54044,-13.40346,75.449122,63.945
--18.34173,-17.76555,-16.70922,-13.15611,76.219011,63.1858
--17.60065,-16.9556,-15.94195,-12.80885,73.13024,63.0888
--18.909,-18.216,-17.127,-13.761,78.5763,64.93
--18.15264,-17.5824,-16.44192,-13.21056,75.433248,64.0926
--17.78592,-17.32032,-16.10976,-13.31616,73.900032,62.5068
--18.71991,-18.22986,-16.95573,-13.81941,77.780736,63.5085
--17.96355,-17.39925,-16.27065,-12.9789,74.647485,63.3006
--17.96355,-17.21115,-15.51825,-12.32055,74.647485,60.743
--18.718,-16.954,-14.308,-11.956,77.7826,63.54
--17.4192,-14.8656,-12.2208,-9.8496,72.38544,59.9735
--17.60065,-14.1911,-11.51875,-8.93855,72.955155,61.5465
--18.718,-14.406,-11.368,-8.526,77.4004,61.8674
--18.53082,-13.77684,-10.57518,-7.2765,76.713714,62.6076
--18.05,-13.015,-9.69,-6.27,75.2115,64.44
--18.34173,-12.77199,-8.83476,-5.28165,76.026951,62.9045
--17.328,-11.5824,-7.752,-4.104,72.12096,60.9216
--17.689,-11.3582,-7.2618,-3.6309,73.62348,61.9875
--17.8752,-11.00736,-6.5856,-3.10464,74.389056,61.3824
--17.328,-10.1232,-5.7456,-2.9184,72.12096,61.2864
--19,-10.3,-5.8,-3.8,79.07,63.46
--17.8695,-9.0288,-4.98465,-3.9501,74.365335,63.1917
--17.6928,-8.19456,-4.84224,-3.81792,73.629984,62.7978
--18.2476,-7.58716,-4.51388,-3.64952,75.948432,65.3954
--17.5085,-6.6348,-3.8703,-3.40955,72.863005,63.0325
--17.1475,-5.9565,-3.0685,-2.7075,71.360675,60.743
--17.2368,-5.1984,-2.3712,-1.9152,72.02064,61.584
--18.33678,-4.94802,-1.74636,-1.55232,76.723416,63.7294
--17.78112,-3.95136,-0.75264,-1.12896,74.304384,62.1504
--17.59968,-3.16608,0.18624,-0.65184,73.536864,61.0944
--17.2368,-2.28,1.0944,0,72.11184,63.8784
--17.6814,-1.78695,2.16315,-0.09405,74.271285,67.4685
--17.59968,-1.02432,3.2592,0.37248,73.629984,66.1055
--17.68704,-0.37632,4.51584,0.75264,74.389056,67.9968
--17.68704,0.37632,5.45664,1.31712,74.389056,70.3836
--17.87128,0.9506,6.55914,1.52096,75.173448,74.5094
--17.41344,1.3968,7.4496,2.14176,73.639296,72.2112
--17.4097,1.862,8.4721,2.5137,73.53038,71.9435
--18.513,2.574,10.098,3.069,78.1902,73.72
--18.513,3.267,11.484,3.564,78.1803,74.13
--17.86158,4.03326,12.38787,3.93723,75.930921,73.7748
--17.32032,4.56288,13.0368,4.09728,73.629984,70.7712
--17.86158,5.18562,14.88465,4.89753,75.930921,73.0917
--17.04775,5.7133,15.38905,4.88395,72.87222,68.153
--16.872,6.4752,16.1424,5.3808,72.12096,67.6685
--17.4048,7.33824,17.78112,6.20928,74.389056,69.6192
--18.03384,8.52687,19.602,6.66468,77.398497,71.0226
--17.48,8.74,20.14,7.125,74.9455,67.4975
--17.21847,9.31491,21.07616,7.5272,74.312282,68.2395
--18.117,10.494,23.166,8.514,78.0912,69.4287
--17.1171,10.9098,23.23035,8.4645,74.18664,68.8446
--16.5984,11.3088,23.1648,8.664,71.93856,66.48
--17.56062,12.6126,25.80732,9.99306,76.529376,68.3496
--17.02848,13.07712,25.872,9.97248,74.210304,67.473
--16.5888,13.54752,26.08128,10.1376,72.695808,65.8848
--17.1,14.63,27.74,11.02,74.936,65.018
--17.721,15.84,29.601,12.177,78.0912,67.7655
--17.184,16.224,29.76,12.096,75.6384,65.5008
--16.40448,16.128,29.21472,12.34944,72.603648,65.2128
--17.44578,18.03384,31.65723,13.23135,77.212278,67.3596
--16.992,18.24,31.68,13.632,75.6288,64.9344
--17.072,19.303,32.495,14.162,76.5136,67.43
--16.9785,19.8891,33.4719,14.94108,76.432356,66.8547
--16.9785,20.66526,34.34508,15.42618,76.432356,66.7557
--16.36992,20.79168,34.05696,15.24096,74.116224,65.709
--16.10976,21.23136,34.26816,15.64416,73.453056,64.9318
--16.35032,22.24404,35.83762,16.54044,74.983328,65.3954
--16.18176,22.29696,36.03264,16.9344,74.304384,63.696
--16.587,23.668,38.024,18.042,76.6106,65.94
--16.49,24.153,38.703,18.43,76.7949,63.7678
--16.22907,24.77574,39.18024,18.82188,76.026951,64.7856
--15.80712,24.74567,39.04735,18.91209,74.491053,63.4768
--15.5477,24.9508,39.1951,19.4579,73.70727,62.0635
--15.94264,26.411,41.00908,20.55256,76.140512,63.945
--15.20475,25.9863,39.9931,20.0887,73.047305,63.1955
--15.744,27.648,42.336,21.312,76.0992,64.93
--15.97563,28.61892,43.81047,22.5423,77.692527,63.9837
--15.39972,28.61306,42.96712,22.43416,75.354062,62.4001
--15.14688,28.88256,43.08864,22.39104,74.577216,61.7664
--15.2,29.545,44.175,23.085,75.3065,60.2775
--14.5008,28.728,42.6816,22.7088,72.29424,60.5625
--14.86622,30.67334,44.59866,23.89886,74.491053,61.1585
--14.82,31.445,45.6,24.605,74.9455,60.1825
--14.4336,31.1952,44.97696,24.6768,73.536864,61.1585
--14.63,32.49,46.36,25.46,75.2115,60.1825
--14.744,33.756,47.724,26.481,76.7949,64.2528
--14.65002,34.15104,48.31596,27.1656,76.810734,63.3006
--14.1075,33.6699,47.30715,26.8983,74.459385,61.218
--14.06,34.485,48.26,27.55,75.2115,63.64
--13.82976,34.90368,48.35712,27.94176,74.483136,60.9984
--13.59552,34.92,48.32928,28.12224,73.723104,60.8928
--13.68864,36.40798,49.9065,29.08836,75.259002,62.475
--13.17745,35.47775,48.74735,28.84295,72.955155,62.2725
--13.12992,36.13056,49.72608,29.51904,73.723104,63.3888
--13.0368,36.87552,50.09856,29.98464,73.732416,63.4768
--12.98304,37.82016,51.17952,30.67008,74.483136,64.656
--13.7,40.4,54.7,33,79.17,67.93
--12.8304,39.15648,52.46208,31.64832,75.243168,65.1168
--12.1296,37.5744,50.7984,30.9168,72.20304,64.368
--12.838,41.258,54.782,33.32,77.5964,66.14
--12.2265,39.1248,52.1037,33.4818,74.459385,65.2905
--12.29184,39.85245,52.52841,35.81919,76.026951,65.6865
--11.97,39.235,51.205,35.53,75.2115,66.65
--12.5,41.3,53.3,37.1,79.17,66.94
--11.4513,38.2641,48.9706,34.2608,73.70727,62.168
--11.616,38.496,49.248,37.44,76.0032,65.14
--11.19195,34.9866,45.99045,36.8676,74.459385,63.6975
--10.8927,33.7022,43.757,35.9366,73.70727,64.631
--11.1573,34.9272,45.1143,37.44972,76.820436,63.9936
--10.5051,32.8054,42.0204,34.6484,72.955155,65.0385
--10.4272,31.1885,40.6847,33.7022,73.71658,66.003
--10.1365,30.0409,38.79515,32.9897,73.047305,68.4238
--10.37124,30.82563,39.18024,33.13035,76.122981,68.8446
--9.87525,29.1555,36.96165,31.88295,74.553435,69.198
--9.68715,28.4031,36.02115,31.50675,74.553435,71.4186
--9.79902,28.81494,36.18846,31.14342,76.810734,73.9629
--9.50697,27.56061,34.76286,30.53754,76.122981,70.5481
--8.8464,25.4448,32.1936,28.6368,72.21216,70.8985
--9.12285,26.31222,32.93829,28.90503,76.122981,74.9727
--8.93079,25.44795,32.17005,28.71297,76.122981,72.2941
--8.918,25.284,32.046,29.008,77.6846,76.91
--8.45856,23.95008,30.22272,26.99136,75.338208,72.4992
--8.17,23.37,29.545,26.6,75.3065,72.3995
--8.316,23.661,29.997,27.522,78.4773,74.2896
--7.872,22.464,28.32,25.728,76.0992,72.7008
--7.8408,22.24827,28.12887,25.97265,77.702328,74.5866
--7.722,21.879,27.72,25.938,78.4773,74.6559
--7.2765,21.05334,26.48646,24.93414,76.907754,73.6758
--7.227,20.988,26.334,24.948,78.3783,73.0917
--6.68039,19.19436,24.4634,23.24023,74.585143,70.9361
--6.48945,18.81,23.8887,22.85415,74.459385,71.6067
--6.633,19.305,24.552,23.661,78.3783,70.4088
--6.37,18.522,23.716,22.638,77.5866,70.35
--6.111,17.945,22.795,22.213,76.7949,70.35
--6.039,17.919,22.77,22.275,78.3882,68.2506
--5.2896,16.2336,20.52,19.8816,72.20304,65.588
--5.415,16.435,20.805,20.33,75.2115,65.208
--5.016,15.2304,19.5168,19.3344,72.20304,65.1168
--4.89268,15.43076,19.66481,19.66481,74.491053,66.1831
--4.6075,14.744,18.70645,18.7986,72.955155,64.0585
--4.56288,14.52672,18.43776,18.43776,73.723104,65.7888
--4.46292,14.65002,18.82188,19.01592,76.810734,66.003
--4.275,13.87,17.955,18.525,75.2115,63.3175
--3.8304,13.0416,16.872,17.4192,72.20304,63.1085
--3.89664,13.3056,17.1072,17.48736,75.243168,63.2064
--3.63168,12.5712,16.296,16.85472,73.723104,63.696
--3.589,12.804,16.587,17.46,76.7949,64.1461
--3.43,12.642,16.366,17.542,77.5866,64.8074
--3.0723,11.7306,15.1753,16.2925,73.70727,61.3035
--2.91555,11.4741,14.95395,15.89445,74.18664,66.0627
--2.8224,11.00736,14.5824,15.61728,74.210304,64.9344
--2.744,11.172,14.798,15.974,77.3024,67.9434
--2.47,10.64,14.06,15.295,75.0215,65.303
--2.30375,10.1365,13.2696,14.28325,72.78007,64.0585
--2.208,10.176,13.44,14.496,75.8208,67.4304
--1.99626,9.69612,13.02322,14.35406,75.078388,68.7372
--1.9602,9.801,13.03533,14.7015,77.408298,70.6266
--1.6758,9.1238,12.103,13.6857,73.53038,69.6192
--1.5048,8.93475,11.94435,13.5432,74.28069,70.5177
--1.485,9.009,12.177,13.761,78.1902,71.12
--1.19795,8.01705,11.058,12.5324,72.87222,68.5425
--1.164,8.148,11.349,13.095,76.6979,71.53
--1,8.2,11.4,13.3,79.08,74.63
--0.873,7.857,10.767,12.513,76.6979,73.13
--0.65856,7.43232,10.16064,11.85408,74.389056,70.7712
--0.56448,7.056,9.78432,11.38368,74.398464,72.3534
--0.3724,6.517,9.4962,11.2651,73.61417,74.7936
--0.294,6.86,9.702,11.76,77.5964,76.51
--0.0931,6.4239,8.9376,10.9858,73.70727,75.4698
-0,6.36768,8.93376,10.64448,75.243168,73.4496
-0.09408,5.92704,8.56128,10.25472,74.483136,72.4992
-0.19008,5.60736,8.36352,10.16928,75.243168,72.7008
-0.38412,5.47371,8.25858,10.27521,76.026951,73.4976
-0.48015,5.37768,7.97049,10.17918,76.026951,70.5481
-0.57024,5.2272,7.69824,9.88416,75.243168,69.5424
-0.7372,4.88395,7.27985,9.215,72.863005,69.7721
-0.855,4.75,7.125,9.215,75.126,67.393
-0.9603,4.41738,7.01019,9.02682,75.940524,68.6367
-1.03455,4.23225,6.5835,9.0288,74.459385,68.3496
-1.1058,3.96245,6.2662,8.56995,72.955155,64.7425
-1.22304,4.04544,6.20928,8.65536,74.389056,66.4734
-1.386,4.158,6.336,8.712,78.3783,67.35
-1.4256,3.70656,5.89248,7.88832,75.243168,66.3795
-1.55232,3.29868,5.72418,8.05266,76.810734,64.9152
-1.63268,3.16932,5.37824,7.87528,76.044472,65.023
-1.728,3.072,5.28,7.872,76.0032,63.2064
-1.7689,2.8861,4.9343,7.7273,73.71658,64.5232
-1.9208,2.8812,4.89804,7.58716,76.034868,64.3174
-2.016,2.592,4.704,7.2,76.0032,63.1104
-2.06998,2.25816,4.32814,6.77448,74.491053,63.8648
-2.11288,2.01684,4.22576,6.81884,76.034868,64.8074
-2.18638,1.9012,3.99252,6.93938,75.173448,63.0532
-2.304,1.92,3.936,6.72,75.7248,65.14
-2.375,1.805,3.705,6.46,75.0215,62.8235
-2.548,1.764,3.626,5.978,77.4004,67.64
-2.3959,1.2901,3.22525,5.529,72.78007,64.5438
-2.592,1.152,3.168,5.76,75.8208,64.1568
-2.66168,0.85554,2.94686,5.60854,75.078388,67.1594
-2.71656,0.9702,2.81358,6.01524,76.626396,67.9437
-2.6448,0.8208,2.5536,5.2896,72.02976,67.2288
-2.6448,0.6384,2.3712,4.7424,72.02976,67.4304
-2.7075,0.361,2.166,4.5125,71.27945,67.488
-2.8272,0.0912,2.0064,4.6512,72.02976,66.9085
-3.1,0,2,5,78.99,71.53
-3.2,-0.1,1.9,5,78.97,72.52
-2.9488,-0.1843,1.56655,4.4232,72.78007,69.8535
-3.0723,-0.1862,1.4896,4.3757,73.62348,72.4612
-3.13632,-0.28512,1.33056,4.18176,75.157632,73.3887
-2.97825,-0.45125,1.17325,3.61,71.27945,70.794
-3.332,-0.882,0.98,3.822,77.4004,73.2158
-3.23,-1.045,0.855,3.705,75.031,73.94
-3.192,-1.0032,0.6384,3.4656,72.02976,69.654
-3.2585,-1.1172,0.5586,3.6309,73.53969,69.0935
-3.43035,-1.17612,0.49005,3.62637,77.408298,71.3097
-3.528,-1.372,0.294,3.626,77.4004,71.12
-3.35232,-1.3968,0.18624,3.16608,73.546176,67.9968
-3.3174,-1.56655,0.09215,2.9488,72.770855,66.6235
-3.51722,-1.80614,-0.09506,2.94686,75.068882,67.9434
-3.48096,-1.8816,-0.28224,2.54016,74.304384,66.1728
-3.44544,-1.95552,-0.37248,2.51424,73.546176,66.8621
-3.33925,-1.9855,-0.45125,2.3465,71.27945,65.1035
-3.48096,-2.16384,-0.56448,2.44608,74.304384,65.712
-3.724,-2.352,-0.784,2.254,77.4004,66.787
-3.5378,-2.6068,-0.931,1.5827,73.53038,67.3652
-3.5739,-2.8215,-1.1286,1.6929,74.28069,68.0526
-3.53856,-2.88672,-1.21056,1.8624,73.536864,65.7888
-3.762,-3.069,-1.386,1.881,78.1902,67.7556
-3.57504,-2.91648,-1.4112,1.78752,74.210304,65.6064
-3.61152,-2.8512,-1.52064,1.80576,74.967552,67.4685
-3.64914,-2.97693,-1.63251,1.53648,75.748464,67.4685
-3.762,-3.366,-1.782,1.287,78.0912,67.2507
-3.57504,-3.48096,-1.8816,1.03488,74.210304,66.5714
-3.57504,-3.57504,-1.97568,1.12896,74.210304,65.2128
-3.724,-3.822,-2.156,1.078,77.2044,66.3852
-3.53856,-3.63168,-2.23488,1.02432,73.359936,64.8288
-3.53856,-3.63168,-2.23488,0.83808,73.453056,65.3295
-3.68676,-3.8808,-2.4255,0.77616,76.626396,66.003
-3.724,-3.92,-2.548,0.686,77.3906,66.84
-3.8,-4.2,-2.7,0.4,79.07,66.54
-3.61152,-4.18176,-2.75616,0.19008,75.243168,65.6865
-3.4656,-4.1952,-2.8272,0.2736,72.29424,63.3792
-3.5378,-4.3757,-2.8861,0.1862,73.80037,62.643
-3.57504,-4.42176,-3.10464,0.18816,74.577216,64.6996
-3.61,-4.56,-3.23,0.19,75.4015,66.02
-3.64914,-4.60944,-3.26502,0,76.209408,64.0491
-3.626,-4.802,-3.43,-0.294,77.7728,65.84
-3.663,-4.95,-3.564,-0.198,78.4773,64.5975
-3.663,-5.049,-3.663,-0.396,78.4674,63.9837
-3.48096,-4.98624,-3.66912,-0.56448,74.661888,63.2394
-3.626,-5.39,-3.92,-0.686,77.7826,63.2394
-3.7,-5.7,-4.1,-0.9,79.36,64.05
-3.456,-5.472,-4.032,-0.672,76.1856,61.8624
-3.35232,-5.40096,-4.00416,-0.83808,73.909344,62.1504
-3.564,-5.643,-4.257,-0.891,78.3783,63.54
-3.2832,-5.2896,-4.104,-1.0944,72.20304,60.6385
-3.36,-5.856,-4.416,-1.728,75.9168,64.15
-3.395,-6.208,-4.656,-1.746,76.6979,62.4098
-3.192,-5.7456,-4.4688,-1.2768,72.20304,61.6835
-3.15875,-5.68575,-4.42225,-1.083,71.450925,61.6835
-3.16608,-5.77344,-4.656,-1.11744,73.629984,64.8348
-3.13344,-5.71392,-4.608,-1.19808,72.963072,63.3792
-3.10464,-5.73888,-4.704,-1.59936,74.483136,64.3174
-3.201,-6.208,-4.947,-2.231,76.7949,66.34
-3.13632,-6.46272,-5.03712,-2.09088,75.243168,61.9488
-3.16932,-6.53072,-5.18616,-1.72872,76.034868,63.6314
-2.9184,-6.1104,-4.9248,-1.6416,72.20304,61.294
-3.168,-6.633,-5.445,-1.584,78.3783,63.83
-3.038,-6.566,-5.39,-1.862,77.5866,63.0532
-2.85696,-6.26688,-5.16096,-1.93536,72.963072,64.8288
-3.007,-6.596,-5.432,-2.134,76.7949,64.85
-2.7936,-6.5184,-5.30784,-2.51424,73.723104,61.8375
-2.8224,-6.96192,-5.55072,-2.63424,74.483136,63.3374
-2.8512,-7.128,-5.7024,-2.56608,75.243168,64.9737
-2.784,-7.2,-5.856,-2.304,76.0032,62.256
-2.78487,-7.10622,-5.85783,-2.40075,76.036554,65.9835
-2.58048,-6.72768,-5.62176,-2.21184,72.963072,63.312
-2.744,-7.154,-6.076,-2.45,77.5866,65.2092
-2.61954,-7.17948,-6.01524,-2.32848,76.810734,65.709
-2.54016,-6.96192,-5.92704,-2.63424,74.483136,67.5514
-2.565,-7.22,-6.08,-3.04,75.2115,66.65
-2.3712,-7.1136,-5.928,-2.9184,72.20304,63.2064
-2.47104,-7.6032,-6.08256,-2.18592,75.252672,65.3184
-2.45,0,-3.136,7.056,77.5866,68.93
-2.4255,-3.97782,-4.46292,0.38808,76.810734,71.1018
-2.2116,-0.9215,-1.843,10.5051,72.955155,68.5305
-2.23488,-2.70048,-2.70048,1.8624,73.639296,66.2784
-2.23146,-3.97782,-3.3957,0.4851,76.713714,66.5676
-2.208,-4.32,-3.552,-0.192,75.9168,66.64
-2.0273,-4.33105,-3.5017,-0.5529,72.955155,64.5438
-2.09088,-4.65696,-3.70656,-0.85536,75.148128,68.5476
-2.09,-4.94,-3.8,-1.14,75.126,67.64
-1.97589,-5.17495,-3.95178,-1.41135,74.396963,64.5438
-2.01663,-5.56974,-4.22532,-1.72854,75.940524,67.1418
-1.9206,-5.66577,-4.32135,-1.72854,75.930921,67.3596
-1.8816,-5.73888,-4.32768,-1.97568,74.389056,66.096
-1.8816,-5.83296,-4.51584,-2.06976,74.483136,68.551
-1.82476,-6.05052,-4.70596,-2.01684,76.034868,69.4134
-1.7689,-6.0515,-4.655,-2.1413,73.71658,70.8985
-1.6416,-6.0192,-4.7424,-2.4624,72.20304,72.0195
-1.8,-6.9,-5.4,-3,79.18,75.04
-1.764,-7.056,-5.488,-3.136,77.5866,75.82
-1.649,-7.081,-5.529,-3.104,76.7076,75.11
-1.47456,-6.72768,-5.34528,-2.85696,72.972288,73.0848
-1.52064,-6.93792,-5.60736,-2.8512,75.243168,72.2112
-1.3968,-6.79776,-5.5872,-2.88672,73.723104,74.4192
-1.3968,3.63168,-2.328,17.87904,73.723104,74.3117
-1.4259,6.84432,-1.23578,10.9319,75.259002,75.2817
-1.33084,1.33084,-1.23578,9.0307,75.363568,73.7491
-1.386,7.524,1.089,14.553,78.4773,75.5568
-1.37214,1.86219,-0.19602,6.17463,77.692527,75.6558
-1.26126,0.19404,0,6.59736,76.907754,74.4678
-1.19795,2.3959,2.11945,8.01705,73.047305,69.0935
-1.12896,0.65856,0.9408,4.89216,74.577216,71.1676
-1.17612,0,0.68607,4.21443,77.692527,71.7156
-1.1172,-0.6517,0.3724,3.1654,73.80037,68.943
-1.089,-1.287,0.198,2.871,78.4773,69.0327
-1.04566,-1.52096,0,2.66168,75.363568,67.5514
-1.04566,-1.80614,-0.09506,2.3765,75.449122,67.8552
-0.9312,-1.95552,-0.27936,2.04864,73.909344,66.1728
-0.931,-2.1413,-0.4655,1.7689,73.89347,65.1985
-0.9603,-2.49678,-0.67221,1.44045,76.219011,67.4685
-0.97,-3.007,-1.067,1.067,76.9889,67.64
-0.83808,-3.2592,-1.21056,0.65184,73.909344,65.4071
-0.88209,-3.52836,-1.56816,0.88209,77.790537,66.5676
-0.891,-1.089,0.99,7.92,78.5763,64.8945
-0.855,-2.09,-0.38,2.28,75.4015,61.788
-0.78408,-2.84229,-0.9801,1.56816,77.790537,64.8945
-0.7448,-2.9792,-1.2103,0.931,73.89347,64.0234
-0.77616,-1.55232,0.29106,5.43312,77.004774,64.4154
-0.66542,-2.8518,-0.85554,1.4259,75.354062,63.5835
-0.65835,2.0691,1.41075,14.4837,74.46879,62.453
-0.66528,4.37184,3.61152,13.59072,75.243168,63.3888
-0.686,1.568,2.254,6.37,77.5866,65.14
-0.582,0.873,2.619,6.014,76.8046,68.34
-0.5529,0.5529,2.7645,5.3447,72.955155,64.1535
-0.594,6.435,4.455,14.85,78.3783,67.83
-0.5415,2.7075,3.971,8.4835,71.450925,65.778
-0.588,6.174,5.488,12.25,77.5866,70.13
-0.4752,6.6528,7.03296,14.06592,75.243168,67.0464
-0.475,9.12,8.265,17.385,75.2115,66.519
-0.4704,5.92704,6.67968,10.63104,74.483136,69.0214
-0.4851,4.55994,6.20928,8.92584,76.810734,69.8247
-0.4655,3.6309,5.586,7.6342,73.80968,67.488
-0.4608,2.85696,5.25312,6.54336,73.055232,69.4368
-0.3724,2.1413,4.8412,6.3308,73.80037,73.1374
-0.37248,1.76928,4.56288,6.14592,73.816224,71.2608
-0.3686,1.4744,4.2389,5.80545,73.047305,71.4017
-0.37636,1.31726,3.95178,5.45722,74.585143,71.7994
-0.396,0.891,3.861,4.95,78.4773,73.3887
-0.37248,0.18624,3.16608,4.46976,73.816224,71.4017
-0.38,-0.095,2.85,4.37,75.221,73.32
-0.384,-0.192,2.688,4.416,76.0032,72.73
-0.37636,-0.28227,2.35225,4.04587,74.491053,70.2668
-0.38024,-0.4753,2.09132,3.70734,75.259002,70.4914
-0.396,-0.99,1.782,3.366,78.3783,71.34
-0.37636,-1.31726,1.41135,3.01088,74.491053,68.9088
-0.38016,-1.52064,1.04544,2.8512,75.062592,70.0128
-0.37636,-1.69362,0.84681,2.72861,74.406372,68.5984
-0.384,-1.728,0.672,2.592,75.9168,67.7184
-0.38412,-1.9206,0.28809,2.40075,75.940524,69.4386
-0.38412,-2.20869,0.09603,2.01663,76.026951,69.3297
-0.3648,-2.4624,-0.1824,1.6416,72.21216,66.2435
-0.38416,-2.78516,-0.4802,1.63268,76.034868,68.0512
-0.27936,-2.88672,-0.65184,1.58304,73.639296,66.6528
-0.288,-3.072,-0.864,1.44,75.9168,69.44
-0.28812,-3.07328,-1.05644,1.24852,75.948432,67.767
-0.29403,-3.23433,-1.37214,1.17612,77.594517,68.3496
-0.27936,-3.35232,-1.48992,0.74496,73.723104,66.5711
-0.29106,-3.8808,-1.74636,0.38808,76.917456,67.6566
-0.28809,-4.03326,-2.01663,0.38412,76.219011,67.3596
-0.297,-4.257,-2.178,0.594,78.5763,68.15
-0.294,-4.214,-2.352,0.196,77.7826,67.93
-0.18624,-4.09728,-2.328,0.18624,73.909344,65.1168
-0.1881,-4.04415,-2.4453,0,74.647485,64.4385
-0.198,-4.356,-2.772,0,78.5763,66.4587
-0.18624,-4.28352,-2.70048,-0.4656,73.909344,64.1461
-0.19404,-4.851,-3.10464,-0.87318,77.004774,64.8074
-0.19206,-4.99356,-3.16899,-0.67221,76.219011,64.5975
-0.18816,-4.98624,-3.2928,-0.9408,74.671296,62.4384
-0.09405,-5.0787,-3.3858,-0.84645,74.647485,61.9875
-0.09408,-5.08032,-3.48096,-1.03488,74.671296,64.239
-0.09504,-5.2272,-3.70656,-1.23552,75.433248,62.3328
-0.09025,-5.054,-3.61,-1.2635,71.631425,61.0185
-0.1,-5.8,-4.2,-1.9,79.37,64.05
-0.095,-5.89,-4.085,-1.9,75.392,61.6075
-0.098,-6.174,-4.41,-1.96,77.7924,63.945
-0,-6.174,-4.508,-1.96,77.7826,64.4252
-0,-6.4,-4.8,-2.1,79.37,65.63
-0,-6.272,-4.802,-2.058,77.7826,65.04
-0,-6.1446,-4.655,-2.1413,73.88416,64.0234
-0,-6.33798,-4.89753,-2.40075,76.219011,62.7978
--0.099,-6.732,-5.148,-2.673,78.5763,65.25
--0.097,-6.887,-5.238,-2.813,76.9889,64.85
--0.09312,-6.79776,-5.1216,-3.07296,73.909344,63.4848
--0.09408,-6.96192,-5.36256,-2.8224,74.671296,62.7168
--0.09408,-6.96192,-5.45664,-3.01056,74.671296,63.312
--0.09604,-7.203,-5.66636,-3.07328,76.226948,65.8952
--0.1843,-6.91125,-5.529,-2.9488,73.139455,64.2528
--0.19,-7.315,-5.795,-3.325,75.4015,63.0325
--0.19,-7.41,-5.985,-3.42,75.4015,63.593
--0.19206,-7.6824,-6.14592,-3.64914,76.209408,66.6765
--0.28809,-7.77843,-6.24195,-3.8412,76.209408,69.3297
--0.28215,-7.7121,-6.2073,-3.762,74.65689,64.638
--0.285,-7.79,-6.365,-3.8,75.4015,67.83
--0.294,-8.134,-6.664,-4.018,77.6846,66.5714
--0.38416,-8.06736,-6.62676,-4.12972,76.130908,65.8952
--0.3762,-7.99425,-6.5835,-4.23225,74.553435,64.4385
--0.38024,-8.27022,-6.74926,-4.37276,75.354062,66.5714
--0.4655,-8.1928,-6.7032,-4.2826,73.80037,68.0512
--0.485,-8.633,-7.081,-4.559,76.8919,69.25
--0.4752,-8.45856,-7.03296,-4.37184,75.338208,67.5576
--0.485,-8.73,-7.275,-4.753,76.9016,66.9785
--0.4704,-8.56128,-7.15008,-4.704,74.671296,67.3248
--0.588,-9.016,-7.546,-4.998,77.7826,70.6972
--0.594,-9.306,-7.722,-5.049,78.4773,72.44
--0.66542,-9.0307,-7.41468,-4.94312,75.354062,71.8964
--0.686,-9.212,-7.742,-4.9,77.7826,74.7936
--0.66528,-9.0288,-7.6032,-5.2272,75.433248,74.1807
--0.66542,-9.41094,-7.79492,-5.7036,75.449122,74.3036
--0.76824,-9.603,-7.97049,-5.56974,76.219011,73.1477
--0.8,-9.8,-8.3,-5.4,79.38,75.82
--0.8,-9.7,-8.3,-5.5,79.37,74.93
--0.82935,-8.8464,-7.7406,-4.88395,73.139455,72.4784
--0.891,-9.504,-8.316,-5.643,78.5763,73.72
--0.98,-9.408,-8.232,-5.88,77.8806,73.83
--0.99,-9.9,-8.514,-6.237,78.6753,72.8739
--0.99,-10.197,-8.613,-6.336,78.6753,73.3887
--0.96,-9.792,-8.448,-5.952,76.1952,70.9824
--1.06722,-9.79902,-8.53776,-5.72418,77.004774,71.5596
--1.045,-9.5,-8.36,-5.415,75.4015,71.74
--1.164,-9.7,-8.536,-5.626,76.9889,68.5305
--1.12896,-9.408,-8.27904,-5.55072,74.680704,67.824
--1.152,-9.696,-8.544,-6.048,76.1952,70.43
--1.24839,-10.08315,-8.6427,-6.43401,76.219011,69.0327
--1.21056,-9.87072,-8.47392,-6.0528,73.909344,66.48
--1.372,-10.388,-9.016,-6.174,77.7728,66.4636
--1.33084,-9.9813,-8.74552,-5.79866,75.449122,65.6108
--1.34442,-9.98712,-8.83476,-5.7618,76.219011,65.1258
--1.35375,-9.386,-8.303,-5.5955,71.631425,64.3625
--1.4112,-9.78432,-8.65536,-5.83296,74.671296,65.5032
--1.55232,-10.09008,-9.02286,-6.11226,77.004774,65.9835
--1.52,-9.975,-8.835,-6.08,75.4015,63.3175
--1.683,-10.494,-9.207,-6.435,78.5763,65.9835
--1.5827,-9.9617,-8.7514,-6.2377,73.89347,62.7285
--1.59885,-10.06335,-8.93475,-6.3954,74.647485,62.548
--1.6758,-10.0548,-8.8445,-6.1446,73.97726,64.6212
--1.71108,-10.36154,-9.0307,-6.36902,75.449122,63.9548
--1.881,-10.791,-9.504,-6.633,78.5763,64.7955
--1.843,-10.573,-9.312,-6.596,76.9889,62.4098
--1.9,-10.45,-9.215,-6.46,75.3065,64.15
--1.9,-10.545,-9.31,-6.65,75.3065,63.75
--1.97505,-10.5336,-9.2169,-6.5835,74.553435,62.8254
--1.99584,-10.64448,-9.31392,-6.6528,75.338208,65.1816
--2.01663,-10.75536,-9.50697,-6.7221,76.122981,63.9618
--2.06998,-10.63217,-9.409,-6.68039,74.679233,64.4371
--2.0064,-10.488,-9.12,-6.7488,72.29424,63.213
--2.18638,-10.9319,-9.60106,-6.93938,75.354062,66.8654
--2.3,-11.5,-10.1,-7.4,79.27,69.04
--2.1888,-10.3968,-9.3024,-6.7488,72.38544,65.1035
--2.328,-11.252,-9.991,-7.178,76.8919,67.8515
--2.4255,-11.54538,-10.09008,-7.66458,76.907754,68.4432
--2.376,-11.4048,-9.9792,-7.41312,75.433248,69.9336
--2.4453,-11.0979,-9.7812,-6.9597,74.647485,68.3335
--2.3712,-10.5792,-9.4848,-6.7488,72.38544,67.773
--2.3712,-10.488,-9.4848,-6.5664,72.38544,69.3312
--2.619,-11.155,-10.088,-7.469,76.9889,72.15
--2.772,-11.682,-10.494,-8.217,78.5763,73.62
--2.5802,-11.15015,-9.7679,-7.5563,73.139455,72.4687
--2.67235,-11.058,-9.86005,-7.0034,73.139455,72.1874
--2.75674,-11.31214,-10.07636,-7.22456,75.449122,73.2158
--2.84229,-11.46717,-10.38906,-7.35075,77.790537,74.7648
--2.8812,-11.23668,-10.18024,-7.203,76.226948,73.8234
--2.88,-11.232,-10.176,-7.296,76.1952,70.9824
--3.1,-11.7,-10.6,-7.6,79.37,73.13
--3.104,-11.64,-10.379,-7.663,76.9889,72.83
--2.9184,-11.2176,-9.8496,-7.3872,72.29424,69.4368
--3.0723,-11.5444,-10.1479,-7.3549,73.89347,70.5992
--3.13632,-11.68992,-10.35936,-7.50816,75.433248,68.2752
--3.135,-11.495,-10.355,-7.41,75.3065,67.564
--3.23136,-11.49984,-10.35936,-7.41312,75.433248,67.8144
--3.1008,-11.0352,-9.9408,-7.1136,72.29424,67.0035
--3.36105,-11.61963,-10.46727,-7.6824,76.219011,68.0358
--3.3957,-11.73942,-10.57518,-7.56756,77.004774,69.2505
--3.3858,-11.4741,-10.3455,-7.61805,74.647485,68.9238
--3.2832,-11.2176,-10.032,-7.296,72.38544,66.6624
--3.663,-12.276,-10.989,-8.217,78.4773,68.7456
--3.51722,-11.78744,-10.55166,-7.69986,75.354062,67.1725
--3.686,-12.125,-10.767,-8.148,76.8919,66.9688
--3.686,-12.125,-10.864,-7.857,76.8919,68.74
--3.5568,-11.4,-10.2144,-7.6608,72.29424,65.113
--3.9,-12.5,-11.3,-8.4,79.27,68.34
--3.8,-11.875,-10.735,-8.075,75.4015,64.8185
--3.8,-11.97,-10.735,-7.885,75.3065,64.8185
--3.85728,-11.94816,-10.72512,-7.90272,74.483136,67.081
--3.70025,-11.46175,-10.2885,-7.67125,71.541175,64.4385
--3.8304,-11.6736,-10.488,-7.8432,72.38544,64.656
--4.03326,-12.38787,-11.04345,-8.35461,76.219011,66.5676
--4.00416,-12.01248,-10.7088,-8.00832,73.909344,65.2228
--4.08758,-12.26274,-11.02696,-8.17516,75.544182,65.0385
--4.1382,-12.2265,-11.00385,-8.0883,74.73213,66.4587
--4.18,-12.35,-11.115,-8.36,75.487,66.65
--4.1472,-11.9808,-10.78272,-7.92576,73.230336,63.7728
--4.2336,-12.32448,-11.10144,-8.37312,74.765376,65.1014
--4.1952,-12.0384,-10.7616,-8.1168,72.47664,63.1104
--4.1952,-12.0384,-10.8528,-8.1168,72.47664,62.168
--4.33152,-12.25728,-10.96704,-8.2944,73.230336,62.3328
--4.55994,-12.90366,-11.6424,-8.63478,77.101794,63.553
--4.51632,-12.51397,-11.2908,-8.09174,74.763914,62.4098
--4.46976,-12.29184,-11.1744,-8.3808,73.993152,62.0218
--4.65794,-12.64298,-11.4072,-8.74552,75.534676,62.2692
--4.61041,-12.70215,-11.47898,-8.93855,74.763914,61.2361
--4.656,-12.75744,-11.36064,-8.66016,73.993152,60.528
--4.95,-13.464,-12.078,-8.91,78.6654,62.94
--5.049,-13.266,-12.078,-9.009,78.6753,62.43
--4.84806,-12.64298,-11.59732,-8.46034,75.534676,60.7894
--4.94208,-12.54528,-11.59488,-8.45856,75.433248,59.8656
--4.7918,-12.25595,-11.2423,-8.2935,73.13024,59.2325
--5.035,-12.92,-11.685,-9.025,75.4015,63.13
--4.93536,-12.85056,-11.54688,-8.8464,73.909344,60.5571
--4.9248,-12.5856,-11.3088,-8.3904,72.38544,60.9984
--5.184,-13.056,-11.904,-8.64,76.1952,62.3328
--5.1744,-12.7008,-11.66592,-8.56128,74.661888,61.488
--5.28165,-12.96405,-11.90772,-8.73873,76.209408,62.2255
--5.37768,-12.96405,-11.90772,-8.73873,76.122981,65.8746
--5.32336,-12.8331,-11.78744,-8.93564,75.363568,61.8472
--5.25255,-12.7167,-11.51875,-9.0307,73.047305,60.743
--5.472,-13.44,-12.096,-9.408,76.0992,60.9984
--5.742,-13.86,-12.474,-9.405,78.4773,66.03
--5.2896,-12.6768,-11.4912,-8.4816,72.29424,63.0048
--5.723,-13.386,-12.222,-8.73,76.8919,65.25
--5.43685,-12.62455,-11.6109,-8.4778,73.047305,62.5165
--5.78259,-13.32936,-12.25125,-9.11493,77.692527,64.2807
--5.88,-13.328,-12.348,-9.212,77.6846,65.709
--5.917,-13.289,-12.222,-9.021,76.9016,68.75
--5.856,-13.152,-12.096,-9.216,76.0992,65.424
--5.6791,-12.8478,-11.7306,-9.0307,73.89347,67.5514
--5.952,-13.44,-12.192,-9.024,76.0992,69.8208
--5.83296,-13.1712,-11.94816,-9.03168,74.304384,69.2544
--6.11226,-13.5828,-12.32154,-9.31392,76.529376,72.6957
--5.92515,-13.167,-12.0384,-8.8407,74.28069,69.654
--6.0192,-13.167,-12.0384,-9.0288,74.18664,72.0027
--6.37065,-13.7214,-12.54528,-9.60498,77.418099,73.4877
--6.435,-13.959,-12.672,-9.702,78.2892,73.62
--6.435,-14.058,-12.771,-9.9,78.3783,74.93
--6.14592,-13.40928,-12.1056,-9.21888,73.723104,72.6724
--6.402,-13.871,-12.61,-9.603,76.7949,75.52
--6.23904,-13.31616,-12.1056,-9.03264,73.723104,72.8664
--6.633,-14.058,-12.87,-9.702,78.4773,73.7748
--6.53004,-13.63626,-12.4839,-9.41094,76.026951,72.9828
--6.596,-13.774,-12.707,-9.603,76.8919,69.9758
--6.2928,-13.1328,-11.9472,-9.12,72.30336,68.8704
--6.2928,-13.224,-12.0384,-9.12,72.29424,66.5285
--6.49152,-13.6416,-12.41856,-9.31392,74.577216,67.6592
--6.86,-14.112,-12.936,-9.702,77.6846,67.43
--6.86,-14.112,-12.936,-9.506,77.5866,63.7392
--7.1,-14.3,-13.2,-9.8,79.27,64.74
--6.68039,-13.54896,-12.41988,-9.59718,74.585143,62.1285
--6.984,-14.162,-12.901,-10.088,76.7949,61.5562
--6.7032,-13.6857,-12.4754,-9.5893,73.70727,60.363
--6.84288,-13.87584,-12.73536,-9.504,75.252672,61.5186
--7.3,-14.5,-13.3,-9.8,79.17,61.33
--6.9597,-13.5432,-12.50865,-9.31095,74.459385,59.6376
--7.252,-14.112,-13.034,-9.506,77.4886,58.4472
--7.104,-13.92,-12.768,-9.984,75.9072,56.7648
--6.91125,-13.6382,-12.3481,-9.67575,72.78007,55.4325
--7.275,-14.356,-13.095,-10.088,76.6009,57.95
--6.9312,-13.4064,-12.312,-9.2112,72.02976,55.3375
--7.448,-14.308,-13.132,-9.604,77.3024,55.8992
--7.623,-14.355,-13.266,-9.603,78.0912,57.25
--7.24185,-13.5432,-12.6027,-9.405,74.09259,54.017
--7.546,-14.112,-13.034,-9.898,77.2044,55.615
--7.49112,-13.9258,-12.86936,-9.604,75.660312,54.929
--7.41468,-13.7837,-12.73804,-9.22082,74.76469,53.6895
--7.3549,-13.4995,-12.4754,-9.4031,73.22315,54.1352
--7.74279,-14.30946,-13.13334,-9.70299,76.986855,54.7965
--7.92,-14.553,-13.266,-9.999,77.7744,54.4005
--7.92,-14.553,-13.266,-10.098,77.6853,54.6975
--7.524,-13.82535,-12.69675,-9.49905,73.782225,51.642
--7.54272,-13.68864,-12.5712,-9.59136,72.968832,52.2624
--7.776,-14.112,-12.96,-9.792,75.1296,54.43
--8.036,-14.504,-13.23,-9.996,76.6948,54.54
--7.5563,-13.6382,-12.5324,-9.5836,72.02444,51.433
--7.7273,-13.8719,-12.6616,-9.6824,72.77627,51.0625
--7.64845,-13.73035,-12.5324,-9.7679,71.941505,51.053
--7.885,-14.155,-12.92,-9.975,74.1665,54.03
--7.8204,-13.8719,-12.6616,-9.6824,72.59938,52.4888
--7.6608,-13.5888,-12.4944,-9.4848,71.10864,50.8725
--8.415,-14.85,-13.563,-10.296,77.1903,52.7175
--8.0801,-14.35406,-13.11828,-10.17142,74.032728,51.695
--8.514,-15.048,-13.662,-10.296,77.0913,52.85
--8.17,-14.25,-13.11,-10.07,73.891,50.768
--8.34372,-14.45598,-13.38876,-10.1871,75.365136,51.8714
--8.613,-14.85,-13.662,-10.494,76.9032,52.3215
--8.439,-14.744,-13.483,-10.476,75.2526,53.25
--8.10144,-14.34048,-13.0368,-9.96384,72.251808,51.6622
--8.712,-15.147,-13.86,-10.791,76.7151,52.56
--8.36352,-14.35104,-13.21056,-9.88416,73.636992,52.3215
--8.37045,-14.1075,-13.07295,-9.5931,72.785295,52.1037
--8.03225,-13.44725,-12.54475,-9.47625,69.844475,50.388
--8.6427,-14.4045,-13.34817,-10.37124,74.173572,51.1578
--8.4681,-14.30168,-13.1726,-10.16172,72.581026,50.8765
--8.827,-14.938,-13.58,-10.573,74.8258,51.0608
--8.736,-14.784,-13.536,-10.464,74.0544,50.8128
--8.82882,-14.74704,-13.5828,-10.1871,74.75391,51.107
--8.645,-14.44,-13.3,-9.785,73.188,49.723
--8.74,-14.25,-13.3,-9.785,73.1025,50.103
--8.92584,-14.553,-13.48578,-10.09008,74.65689,51.2932
--8.74,-14.25,-13.205,-10.07,73.1025,52.44
--8.928,-14.4,-13.44,-10.176,73.776,52.23
--8.4816,-13.7712,-12.768,-9.7584,70.0872,49.438
--8.84446,-14.39577,-13.1726,-10.16172,72.214075,50.1975
--8.75328,-14.34048,-13.12992,-10.05696,71.478912,49.68
--9.0307,-14.63924,-13.40346,-10.17142,72.872996,51.2834
--8.93855,-14.48986,-13.26669,-9.87945,72.129394,50.9735
--9.0307,-14.54418,-13.40346,-9.88624,72.777936,50.9735
--9.31392,-14.84406,-13.67982,-10.38114,74.278512,51.3117
--8.84736,-14.10048,-12.99456,-10.04544,70.557696,49.7568
--8.9376,-14.3374,-13.2202,-10.241,71.18426,50.421
--8.75425,-13.98875,-12.8155,-10.01775,69.00515,48.963
--9.7,-15.5,-14.2,-10.7,76.46,51.75
--9.0307,-14.4305,-13.2202,-10.1479,71.10047,51.401
--9.506,-15.035,-13.774,-10.573,73.9819,51.6525
--9.50796,-15.0381,-13.87386,-10.57518,73.997154,52.5868
--9.50697,-14.88465,-13.73229,-10.37124,73.232478,52.1278
--9.40896,-14.82624,-13.59072,-10.64448,72.477504,51.7824
--9.12285,-14.46755,-13.2696,-10.22865,70.282805,52.3218
--9.12,-14.3184,-13.1328,-10.032,69.54912,51.8688
--9.504,-14.82624,-13.68576,-10.4544,72.487008,53.4897
--9.506,-14.7343,-13.68864,-10.36154,72.492756,52.5061
--9.696,-14.976,-13.824,-10.944,73.2192,53.95
--9.50309,-14.96031,-13.64305,-10.82035,71.753034,52.2248
--9.696,-15.36,-14.016,-10.944,73.2192,54.13
--9.5931,-14.8599,-13.7313,-10.5336,71.72253,51.243
--9.5931,-14.76585,-13.63725,-10.25145,71.731935,53.2026
--9.4962,-14.5236,-13.4995,-10.241,71.09116,51.053
--9.3936,-14.2272,-13.224,-9.9408,69.64944,51.053
--9.59136,-14.52672,-13.5024,-10.42944,71.115744,51.9435
--9.99306,-15.23214,-14.16492,-11.06028,74.084472,53.4105
--10.4,-15.9,-14.6,-11.4,76.37,53.66
--9.68448,-14.8992,-13.68864,-10.42944,71.106432,51.6864
--9.975,-15.105,-13.965,-10.735,72.542,53.66
--10.08,-15.168,-14.112,-10.656,73.3152,53.55
--10.08315,-15.07671,-14.02038,-10.65933,73.338111,51.9435
--9.9792,-14.92128,-13.87584,-10.73952,72.572544,52.9056
--10.07424,-14.92128,-13.97088,-10.73952,72.667584,51.408
--9.97248,-14.86464,-13.82976,-10.53696,71.848896,53.5472
--10.486,-15.582,-14.406,-11.074,74.8328,52.479
--9.96384,-14.8992,-13.68864,-10.7088,71.115744,52.3315
--10.16928,-15.30144,-14.06592,-10.9296,72.572544,52.176
--10.593,-15.84,-14.652,-11.286,75.5964,53.9946
--10.16064,-15.0528,-13.92384,-10.63104,71.754816,53.3414
--10.37124,-15.3648,-14.21244,-10.85139,73.242081,52.4091
--10.26,-15.2,-14.06,-10.545,72.4565,51.053
--9.9408,-14.592,-13.5888,-10.6704,69.55824,51.0144
--10.36154,-15.30466,-14.16394,-11.21708,72.502262,51.3421
--10.25145,-15.2361,-14.01345,-10.9098,71.637885,50.483
--10.6722,-15.71724,-14.45598,-11.1573,73.900134,51.9255
--10.7811,-15.77961,-14.7015,-11.17314,74.556207,52.0245
--10.032,-14.6832,-13.5888,-10.3968,69.37584,50.1408
--10.87911,-15.77961,-14.60349,-11.07513,74.556207,51.9156
--10.878,-15.876,-14.7,-11.564,74.5486,51.6852
--10.44288,-15.33504,-14.20608,-10.8192,71.566656,51.9792
--10.43955,-15.4242,-14.20155,-11.00385,71.45919,53.1234
--10.752,-15.648,-14.496,-11.04,72.9408,51.7824
--10.97712,-15.97563,-14.7015,-11.27115,74.467998,53.6976
--10.75536,-15.46083,-14.50053,-10.94742,72.819549,53.5887
--10.5203,-15.0822,-14.0581,-10.8927,70.59773,51.4235
--10.41295,-15.1126,-13.91465,-11.058,70.01557,52.5061
--10.3056,-15.1392,-13.8624,-10.944,69.28464,51.528
--10.94742,-15.84495,-14.59656,-11.42757,72.953991,52.6128
--11.058,-15.908,-14.744,-11.446,73.6909,54.03
--10.944,-15.552,-14.496,-11.04,72.9312,53.94
--10.3968,-14.7744,-13.7712,-10.5792,69.29376,51.053
--10.9319,-15.30466,-14.35406,-10.83684,72.226588,52.9494
--10.488,-14.6832,-13.7712,-10.488,69.28464,51.148
--11.13948,-15.55686,-14.50053,-11.23551,72.953991,52.1278
--10.91328,-15.33504,-14.30016,-11.00736,71.566656,52.479
--11.484,-16.236,-15.048,-11.583,75.3093,53.3016
--11.484,-16.236,-15.048,-11.385,75.3093,53.1927
--10.89504,-15.27168,-14.15424,-10.98816,70.836384,51.8688
--11.7,-16.4,-15.2,-11.7,76.08,54.03
--11.00853,-15.33667,-14.30168,-10.82035,71.574263,52.3218
--11.44836,-15.91128,-14.74704,-11.35134,73.812816,53.3016
--11.446,-15.908,-14.744,-11.446,73.7879,53.84
--11.0979,-15.51825,-14.38965,-11.0979,71.543835,53.1234
--11.564,-16.17,-14.994,-11.564,74.5486,52.6652
--11.0789,-15.3615,-14.2443,-11.0789,70.82117,52.577
--11.424,-15.936,-14.784,-11.328,73.1232,53.65
--11.31214,-15.77996,-14.63924,-11.31214,72.407202,52.0405
--11.5236,-15.84495,-14.69259,-11.5236,73.146051,52.9056
--11.5236,-15.84495,-14.78862,-11.33154,73.146051,51.7301
--11.172,-15.3615,-14.3374,-11.172,70.92358,50.768
--11.737,-16.199,-14.938,-11.834,73.8849,51.5458
--11.058,-15.38905,-14.1911,-11.058,70.18144,50.768
--11.50226,-15.87502,-14.7343,-11.50226,72.407202,52.0772
--11.15015,-15.38905,-14.28325,-11.058,70.27359,51.6525
--11.38005,-15.8004,-14.57775,-11.38005,71.731935,50.6635
--11.956,-16.464,-15.19,-11.956,74.7348,53.74
--11.1264,-15.4128,-14.2272,-11.0352,69.54912,50.5875
--11.47776,-15.89952,-14.67648,-11.38368,71.754816,52.3712
--11.56815,-15.89445,-14.6718,-11.286,71.74134,52.4007
--11.931,-16.49,-15.229,-11.834,74.0692,51.1578
--11.68992,-16.1568,-14.92128,-11.4048,72.572544,52.2126
--11.68992,-16.1568,-14.92128,-11.49984,72.572544,52.5096
--11.78,-16.055,-14.915,-11.59,72.5515,50.2835
--11.4266,-15.6655,-14.46755,-11.33445,70.45789,51.2645
--11.5444,-15.827,-14.6167,-11.5444,71.09116,51.107
--12.00375,-16.42113,-15.17274,-11.71566,73.424538,51.0511
--12.1275,-16.59042,-15.32916,-12.03048,74.181492,51.3912
--12.25,-16.66,-15.484,-12.152,74.9308,52.34
--12.00375,-16.42113,-15.17274,-12.00375,73.424538,51.5196
--11.75625,-15.9885,-14.8599,-11.6622,71.91063,49.9225
--12.22452,-16.4934,-15.32916,-12.03048,74.181492,51.3117
--11.97504,-16.25184,-15.01632,-11.97504,72.762624,51.3117
--11.70305,-15.75765,-14.65185,-11.70305,70.55004,50.0908
--12.32154,-16.59042,-15.32916,-11.93346,74.26881,51.7077
--12.19581,-16.3251,-15.26877,-11.81169,73.520568,50.1975
--11.94943,-16.08939,-14.96031,-11.66716,72.035304,50.7601
--12.319,-16.587,-15.423,-12.319,74.2632,52.15
--11.6736,-15.6864,-14.5008,-11.4912,69.82272,49.438
--12.288,-16.512,-15.264,-11.904,73.4976,50.064
--12.16,-16.34,-15.105,-11.875,72.827,50.2075
--11.7952,-15.8498,-14.744,-11.51875,70.632975,51.8368
--12.29312,-16.61492,-15.3664,-12.10104,73.61466,51.499
--12.13761,-16.37166,-15.14849,-11.85534,72.129394,50.2751
--12.513,-16.878,-15.617,-12.125,74.3602,50.9735
--12.01248,-16.20288,-14.99232,-11.82624,71.385792,50.3818
--11.856,-15.8688,-14.6832,-11.4912,69.91392,49.6185
--12.6126,-16.88148,-15.62022,-12.51558,74.375532,51.499
--12.2265,-16.3647,-15.14205,-12.0384,72.09873,49.438
--12.45024,-16.53696,-15.30144,-11.97504,72.857664,50.3424
--12.32448,-16.36992,-15.24096,-11.85408,72.2064,50.2152
--12.1961,-16.1994,-15.0822,-12.0099,71.45425,48.678
--11.82275,-15.79375,-14.6205,-11.64225,69.266875,48.678
--12.57993,-16.80525,-15.55686,-12.09978,73.703025,51.0246
--12.804,-16.975,-15.714,-12.513,74.4572,51.75
--12.0384,-15.96,-14.7744,-11.7648,69.996,49.0848
--12.54528,-16.72704,-15.49152,-12.26016,72.9432,49.0848
--12.41856,-16.55808,-15.33504,-12.2304,72.2064,50.4994
--12.1296,-16.0512,-14.8656,-11.7648,69.996,48.678
--12.51397,-16.55984,-15.33667,-12.13761,72.214075,51.0511
--12.1296,-16.0512,-14.8656,-11.856,70.00512,49.1625
--12.38496,-16.38912,-15.17856,-12.1056,71.4696,48.7968
--12.86802,-16.99731,-15.65289,-12.38787,73.799055,49.5961
--12.998,-17.072,-15.908,-12.707,74.4572,50.73
--13.00068,-17.17254,-15.91128,-12.80664,74.55987,49.8465
--12.6027,-16.64685,-15.4242,-12.2265,72.277425,50.8365
--12.5712,-16.48224,-15.27168,-12.47808,71.56272,48.5184
--12.8331,-16.92068,-15.6849,-12.54792,73.05361,50.029
--13.095,-17.266,-15.908,-12.707,74.5445,50.43
--12.7008,-16.74624,-15.42912,-12.32448,72.30048,49.637
--12.7008,-16.74624,-15.5232,-12.32448,72.30048,48.7452
--13.328,-17.542,-16.17,-12.936,75.313,50.43
--13.32936,-17.54379,-16.17165,-12.83931,75.428496,49.6485
--13.464,-17.721,-16.434,-13.365,76.1805,49.8465
--13.464,-17.721,-16.434,-13.167,76.1805,50.4306
--12.62455,-16.49485,-15.2969,-12.1638,70.909425,48.8395
--12.62592,-16.49664,-15.29856,-12.25728,70.91712,48.5184
--13.02322,-17.1108,-15.77996,-12.64298,73.14867,49.1372
--12.62455,-16.587,-15.2969,-12.44025,70.909425,48.6358
--13.7,-18,-16.7,-13.4,76.95,50.04
--13.25214,-17.2854,-16.03701,-12.96405,73.895085,49.0238
--13.11828,-17.20586,-15.87502,-12.73804,73.14867,48.8395
--12.98304,-16.9344,-15.71136,-12.60672,72.39456,48.5184
--13.8,-18.1,-16.7,-13.5,76.95,49.85
--13.761,-17.919,-16.632,-13.563,76.1706,49.7475
--12.6768,-16.5072,-15.3216,-12.312,70.26048,48.336
--13.07712,-17.02848,-15.80544,-12.7008,72.48864,48.336
--13.21056,-17.20224,-15.96672,-12.92544,73.22832,48.1344
--13.3084,-17.20586,-15.97008,-13.02322,73.24373,49.3148
--13.58,-17.654,-16.393,-13.095,74.7385,48.9171
--12.635,-16.4255,-15.25225,-12.274,69.537625,48.013
--13.3056,-17.29728,-16.06176,-13.02048,73.22832,49.1634
--13.5828,-17.65764,-16.39638,-13.0977,74.75391,48.5496
--13.677,-17.751,-16.393,-13.289,74.7288,47.7725
--13.818,-17.836,-16.562,-13.328,75.509,49.55
--13.54023,-17.57349,-16.3251,-13.06008,73.991115,47.5688
--13.26528,-17.21664,-15.9936,-12.98304,72.479232,48.4512
--13.2202,-17.0373,-15.827,-12.8478,71.73355,47.177
--13.77684,-17.75466,-16.4934,-13.38876,74.75391,48.853
--12.9504,-16.6896,-15.504,-12.4944,70.2696,47.0725
--13.36078,-17.31256,-16.08939,-13.07851,72.486936,47.5688
--13.59358,-17.49104,-16.25526,-13.02322,73.329284,48.559
--13.3133,-17.1304,-15.9201,-12.9409,71.73355,49.0392
--13.3133,-17.0373,-15.9201,-12.8478,71.73355,47.4525
--13.17745,-16.86345,-15.75765,-12.7167,70.99236,47.3575
--13.45487,-17.31256,-16.08939,-13.07851,72.581026,47.8501
--13.97088,-17.85168,-16.59042,-13.38876,74.85093,48.4407
--13.68864,-17.49104,-16.35032,-13.21334,73.33879,48.0592
--12.996,-16.606,-15.523,-12.4545,69.61885,46.4835
--13.6416,-17.31072,-16.18176,-13.07712,72.573312,47.0784
--14.355,-18.216,-17.028,-13.662,76.3686,48.1437
--14.21,-18.13,-16.856,-13.72,75.5972,48.2748
--14.065,-17.945,-16.684,-13.386,74.8258,47.4621
--14.21145,-18.22986,-16.95573,-13.81941,75.604914,48.2625
--14.16492,-18.04572,-16.78446,-13.5828,74.841228,47.9514
--14.02038,-17.86158,-16.61319,-13.4442,74.077542,48.4407
--13.7313,-17.4933,-16.27065,-12.7908,72.559575,48.2625
--14.016,-17.76,-16.608,-13.344,74.0544,46.512
--13.87584,-17.5824,-16.44192,-13.11552,73.313856,48.1437
--14.406,-18.228,-16.954,-13.916,75.5972,47.5888
--13.54605,-17.23205,-16.0341,-13.17745,71.08451,47.1711
--13.82976,-17.59296,-16.36992,-13.35936,72.573312,46.7904
--13.54752,-17.14176,-16.03584,-12.81024,71.184384,46.4064
--13.4064,-16.9632,-15.7776,-12.5856,70.44288,46.0275
--14.208,-17.856,-16.704,-13.44,74.1504,48.35
--14.06888,-17.77622,-16.54044,-13.3084,73.424344,48.167
--14.504,-18.424,-17.052,-13.916,75.607,47.5888
--14.06592,-17.86752,-16.53696,-13.49568,73.408896,46.2336
--13.73035,-17.23205,-16.0341,-13.0853,71.17666,45.828
--14.304,-17.952,-16.704,-13.632,74.1504,48.05
--14.304,-17.952,-16.704,-13.44,74.1504,48.35
--14.45598,-18.23976,-16.9785,-13.67982,74.938248,47.089
--14.304,-18.048,-16.8,-13.536,74.1408,45.9168
--15,-18.8,-17.5,-14.2,77.25,48.16
--13.68,-17.2368,-16.0512,-12.9504,70.44288,46.128
--14.25,-17.86,-16.625,-13.395,73.378,45.828
--13.824,-17.32608,-16.128,-13.17888,71.175168,46.0224
--14.345,-17.86,-16.72,-13.775,73.378,47.94
--14.647,-18.43,-17.072,-14.065,74.9228,46.4048
--15,-19,-17.6,-14.3,77.24,48.05
--13.91465,-17.5085,-16.2184,-13.0853,71.17666,46.3272
--14.35104,-17.96256,-16.72704,-13.49568,73.408896,45.84
--14.50204,-18.05552,-16.90304,-13.73372,74.1909,47.1968
--14.592,-18.048,-16.896,-13.728,74.1504,47.75
--14.44608,-17.96256,-16.82208,-13.68576,73.408896,46.128
--14.44,-18.05,-16.815,-13.68,73.378,47.84
--14.744,-18.43,-17.169,-13.968,74.9228,47.76
--14.59808,-18.15156,-16.99908,-13.73372,74.181296,46.795
--14.39577,-17.78301,-16.65393,-13.45487,72.675116,46.0362
--14.841,-18.333,-17.169,-13.968,74.9228,46.3175
--14.535,-18.145,-16.815,-13.68,73.378,45.543
--14.688,-18.336,-17.088,-13.92,74.1504,47.95
--14.2443,-17.7821,-16.5718,-13.4995,71.91044,45.448
--15.092,-18.718,-17.444,-13.916,75.6952,48.05
--14.0448,-17.328,-16.2336,-13.0416,70.44288,46.4064
--15.092,-18.62,-17.444,-14.112,75.6952,48.35
--14.79016,-18.2476,-17.09512,-13.82976,74.181296,46.795
--14.4837,-17.96355,-16.7409,-13.9194,72.634815,44.878
--14.4336,-17.87904,-16.57536,-13.78176,71.925888,45.84
--15.0381,-18.62784,-17.26956,-14.16492,74.938248,46.795
--14.88465,-18.34173,-17.09334,-13.92435,74.183175,47.2725
--14.88465,-18.34173,-17.09334,-13.92435,74.173572,46.3716
--14.7312,-18.0576,-16.91712,-13.87584,73.408896,46.8765
--14.82624,-18.0576,-17.01216,-13.97088,73.408896,46.6587
--14.82936,-18.25152,-17.01574,-14.06888,73.424344,46.1874
--15.6,-19.3,-17.9,-14.7,77.24,47.54
--14.98068,-18.43776,-17.18937,-14.02038,74.173572,45.6385
--14.46755,-17.6928,-16.49485,-13.36175,71.17666,45.8228
--15.229,-18.527,-17.363,-13.774,74.8258,47.46
--14.16925,-17.23775,-16.15475,-12.635,69.61885,44.7735
--15.23214,-18.4338,-17.36658,-13.87386,74.938248,46.2952
--14.92128,-18.15264,-17.01216,-13.97088,73.408896,45.3504
--14.86464,-17.96928,-16.84032,-13.92384,72.667392,45.168
--15.01948,-18.25152,-17.1108,-13.97382,73.424344,45.6385
--15.17274,-18.43776,-17.18937,-14.11641,74.077542,46.6587
--14.86464,-18.06336,-16.9344,-13.73568,72.667392,46.5892
--14.4096,-17.4192,-16.3248,-13.4064,70.35168,45.163
--14.8029,-17.7821,-16.6649,-13.7788,71.82665,45.087
--15.26877,-18.43776,-17.2854,-14.11641,74.173572,46.9854
--15.264,-18.624,-17.28,-14.4,74.0544,47.54
--14.96031,-18.25346,-16.9362,-13.83123,72.675116,45.9295
--14.8029,-17.9683,-16.758,-13.7788,71.81734,46.2952
--15.264,-18.528,-17.28,-14.208,74.0544,47.46
--14.592,-17.6016,-16.5072,-13.224,70.44288,46.128
--15.048,-18.15165,-16.929,-13.9194,72.64422,47.2725
--15.84,-19.107,-17.919,-14.85,76.4676,46.2924
--14.44,-17.59875,-16.33525,-13.44725,69.7091,44.5075
--15.3648,-18.72585,-17.38143,-14.30847,74.173572,45.6385
--14.99232,-18.1584,-16.85472,-13.68864,71.925888,45.9168
--15.30144,-18.5328,-17.29728,-14.16096,73.408896,46.8765
--15.295,-18.43,-17.29,-14.06,73.378,45.163
--14.83776,-17.87904,-16.68096,-13.54752,71.184384,46.3104
--15.456,-18.624,-17.472,-14.4,74.1504,47.75
--14.99232,-18.25152,-17.04096,-14.06112,71.925888,45.9295
--16.2,-19.6,-18.2,-15.2,77.24,48.05
--15.71724,-19.01592,-17.75466,-14.553,74.938248,47.3616
--14.9283,-17.96925,-16.86345,-13.8225,71.17666,45.543
--15.714,-18.915,-17.751,-14.647,74.9228,47.46
--15.39648,-18.5328,-17.39232,-13.97088,73.408896,47.3517
--15.71724,-18.9189,-17.65764,-14.65002,74.938248,47.2725
--15.33504,-18.43968,-17.21664,-14.30016,72.667392,45.456
--15.97563,-19.30797,-17.93583,-14.99553,75.604914,46.7676
--15.811,-19.109,-17.751,-14.647,74.9131,47.13
--15.974,-19.306,-18.032,-14.7,75.5972,46.5892
--15.02045,-18.0614,-16.9556,-13.91465,71.08451,46.4048
--16.072,-19.208,-18.032,-14.896,75.5972,46.8734
--15.58984,-18.63176,-17.49104,-14.44912,73.424344,46.6085
--16.072,-19.208,-18.032,-14.994,75.6952,46.9812
--15.2684,-18.4338,-17.1304,-14.2443,71.81734,45.087
--14.9568,-18.0576,-16.872,-13.8624,70.44288,45.448
--15.58984,-18.82188,-17.5861,-14.7343,73.329284,46.7928
--15.8466,-19.01592,-17.7674,-14.406,74.085256,47.383
--15.20475,-18.15355,-17.04775,-14.09895,71.093725,45.3625
--16.5,-19.7,-18.4,-15,77.14,47.75
--15.3615,-18.3407,-17.2235,-14.0581,71.81734,46.795
--16.005,-19.206,-17.945,-14.938,74.9228,47.94
--15.048,-18.0576,-16.872,-13.9536,70.44288,45.9264
--15.4546,-18.5269,-17.2235,-14.1512,71.91044,46.4075
--15.94264,-19.01592,-17.7674,-14.79016,74.085256,47.2752
--15.94098,-19.10997,-17.86158,-14.78862,74.077542,47.4606
--15.45792,-18.43776,-17.32032,-14.34048,71.832768,46.6944
--15.94098,-19.01394,-17.86158,-14.88465,74.087145,46.8995
--16.199,-19.303,-18.042,-14.744,74.8258,48.05
--16.032,-19.104,-17.856,-14.688,74.0544,48.24
--15.87502,-18.91694,-17.68116,-14.44912,73.329284,46.6085
--16.533,-19.8,-18.513,-15.246,76.3686,48.93
--15.70635,-18.81,-17.58735,-14.4837,72.559575,46.132
--15.87168,-19.008,-17.77248,-14.7312,73.313856,47.7576
--16.13304,-19.206,-17.95761,-14.98068,74.077542,46.7152
--15.80544,-18.816,-17.59296,-14.67648,72.573312,47.6574
--15.97008,-18.91694,-17.77622,-14.44912,73.33879,46.7928
--15.80544,-18.72192,-17.59296,-14.48832,72.573312,47.5888
--15.4812,-18.33785,-17.23205,-14.28325,71.08451,46.4835
--16.29936,-19.404,-18.14274,-15.0381,74.841228,47.2752
--16.29936,-19.50102,-18.14274,-15.13512,74.85093,47.4606
--16.06176,-19.008,-17.86752,-14.7312,73.313856,46.2336
--16.562,-19.6,-18.424,-15.092,75.5972,48.16
--15.89445,-18.81,-17.58735,-14.4837,72.55017,47.8665
--15.4128,-18.24,-17.0544,-14.136,70.35168,46.7904
--16.562,-19.502,-18.326,-15.092,75.5972,48.57
--16.4934,-19.30698,-18.14274,-14.84406,74.85093,47.9514
--15.8304,-18.53088,-17.41344,-14.34048,71.832768,46.5216
--15.9885,-18.81,-17.58735,-14.4837,72.55017,48.6585
--16.1602,-19.012,-17.77622,-14.63924,73.329284,47.873
--16.3251,-19.206,-17.95761,-14.98068,74.077542,47.4621
--16.42113,-19.206,-18.05364,-14.78862,74.077542,48.5496
--16.42284,-19.208,-17.95948,-14.8862,74.09486,47.6574
--15.5952,-18.24,-17.1456,-14.0448,70.3608,46.4075
--16.42113,-19.206,-18.05364,-14.78862,74.077542,48.6585
--16.59042,-19.404,-18.23976,-14.84406,74.841228,47.5888
--15.43275,-18.05,-16.967,-13.8985,69.61885,46.1985
--16.25184,-19.008,-17.86752,-14.7312,73.313856,47.8665
--16.587,-19.4,-18.236,-15.132,74.8258,47.1032
--16.856,-19.6,-18.424,-15.092,75.5972,48.64
--16.18176,-18.816,-17.68704,-14.39424,72.573312,47.2752
--17.028,-19.8,-18.612,-15.246,76.3785,47.7576
--16.51716,-19.206,-18.05364,-14.69259,74.087145,48.2625
--15.8498,-18.43,-17.3242,-14.28325,71.08451,46.7152
--16.01664,-18.624,-17.50656,-14.4336,71.84208,46.2336
--16.608,-19.296,-18.048,-14.976,74.0544,46.6176
--16.78446,-19.50102,-18.33678,-15.13512,74.85093,47.383
--16.435,-19.095,-17.86,-14.63,73.2925,48.16
--16.44192,-19.10304,-17.86752,-14.7312,73.313856,46.6944
--16.781,-19.497,-18.236,-14.841,74.8355,47.6755
--16.608,-19.2,-18.048,-14.976,74.0544,46.6176
--17.226,-19.899,-18.612,-15.345,76.3785,48.05
--16.0341,-18.52215,-17.3242,-14.1911,71.08451,45.6475
--16.88148,-19.50102,-18.33678,-15.23214,74.85093,48.1437
--17.4,-20.1,-18.9,-15.6,77.14,48.05
--15.7035,-18.14025,-17.05725,-14.079,69.61885,45.543
--17.226,-19.899,-18.711,-15.345,76.3686,48.05
--17.226,-19.899,-18.711,-15.444,76.3686,47.94
--16.36992,-18.91008,-17.78112,-14.67648,72.573312,46.128
--16.37166,-18.91209,-17.78301,-14.58395,72.581026,46.6085
--17.325,-19.998,-18.711,-15.444,76.3785,47.75
--17.15,-19.796,-18.522,-15.092,75.607,47.089
--17.5,-20.2,-18.9,-15.6,77.14,48.15
--16.12625,-18.52215,-17.41635,-14.1911,71.08451,46.3951
--16.632,-19.10304,-17.96256,-14.82624,73.313856,46.0224
--17.6,-20.1,-18.9,-15.7,77.14,48.24
--16.0512,-18.3312,-17.2368,-14.3184,70.35168,45.543
--16.896,-19.392,-18.144,-14.976,74.0544,46.6848
--17.07552,-19.59804,-18.33678,-15.32916,74.85093,47.4606
--16.73056,-19.20212,-17.96634,-14.92442,73.329284,46.9812
--17.424,-19.998,-18.711,-15.543,76.3785,47.7576
--17.424,-19.998,-18.711,-15.246,76.3785,47.65
--16.65393,-19.00618,-17.78301,-14.67804,72.581026,46.3175
--15.884,-18.2305,-17.05725,-14.2595,69.627875,44.878
--17.523,-19.998,-18.711,-15.642,76.3785,47.1735
--16.99731,-19.49409,-18.14967,-15.17274,74.077542,47.4606
--16.992,-19.392,-18.144,-14.976,74.1504,46.128
--17.169,-19.594,-18.333,-15.035,74.8355,46.2205
--17.169,-19.594,-18.333,-15.229,74.8258,46.5018
--17.17254,-19.59804,-18.4338,-15.23214,74.841228,47.1735
--16.4027,-18.70645,-17.5085,-14.3754,71.17666,46.3951
--17.088,-19.488,-18.24,-15.072,74.1504,46.512
--16.92068,-19.29718,-18.0614,-15.01948,73.329284,46.697
--16.57536,-18.90336,-17.6928,-14.61984,71.832768,45.6384
--16.91712,-19.19808,-18.0576,-14.7312,73.408896,47.5695
--16.4027,-18.6143,-17.5085,-14.46755,71.08451,45.7425
--17.44578,-19.89603,-18.6219,-15.48558,75.614715,47.9754
--16.84211,-19.00618,-17.8771,-14.77213,72.675116,46.3175
--17.184,-19.488,-18.24,-15.072,74.0544,47.64
--16.83495,-19.09215,-17.8695,-14.76585,72.55017,45.4385
--17.18937,-19.49409,-18.2457,-15.26877,74.077542,47.0646
--17.01574,-19.29718,-18.0614,-14.92442,73.329284,46.5108
--16.84211,-19.19436,-17.8771,-14.86622,72.581026,46.1138
--17.19116,-19.49612,-18.34364,-15.07828,74.09486,46.9812
--17.46,-19.691,-18.43,-15.229,74.8355,50.25
--17.542,-19.894,-18.62,-15.484,75.607,48.46
--16.9344,-19.09824,-17.96928,-14.86464,72.58272,45.552
--16.7616,-18.90336,-17.6928,-14.71296,71.832768,45.3504
--17.1072,-19.29312,-18.0576,-14.92128,73.32336,46.9728
--17.4636,-19.69506,-18.4338,-15.32916,74.75391,47.6574
--16.9344,-19.09824,-17.8752,-14.86464,72.58272,47.873
--17.46,-19.691,-18.43,-15.326,74.8355,48.85
--17.1,-19.285,-18.145,-15.01,73.283,46.4835
--17.20224,-19.38816,-18.15264,-15.11136,73.32336,46.9728
--17.20224,-19.38816,-18.15264,-15.11136,73.32336,48.3714
--17.557,-19.788,-18.527,-15.326,74.8258,48.1702
--17.38143,-19.59012,-18.34173,-15.17274,73.991115,48.3545
--16.8511,-18.9924,-17.7821,-14.6167,71.81734,47.9085
--17.02848,-19.19232,-17.96928,-14.86464,72.479232,47.4624
--17.195,-19.38,-18.145,-15.105,73.1975,49.34
--16.8511,-18.9924,-17.7821,-14.7098,71.73355,47.462
--17.472,-19.584,-18.336,-15.168,73.968,47.4624
--17.654,-19.788,-18.527,-15.326,74.7385,47.9568
--17.29728,-19.38816,-18.24768,-15.2064,73.218816,49.3515
--17.29728,-19.4832,-18.24768,-15.01632,73.22832,46.2336
--16.9442,-19.0855,-17.8752,-14.7098,71.73355,48.2748
--17.12256,-19.19232,-18.06336,-14.95872,72.48864,47.3732
--17.47928,-19.59216,-18.34364,-15.17432,73.99882,48.2748
--17.47746,-19.59012,-18.43776,-15.26877,73.991115,46.9965
--16.77312,-18.80064,-17.69472,-14.56128,71.00928,46.6176
--17.385,-19.38,-18.24,-15.105,73.188,49.66
--17.57532,-19.6882,-18.43968,-15.17432,73.99882,48.6668
--17.57532,-19.78424,-18.43968,-15.46244,73.99882,49.1372
--17.21115,-19.28025,-18.0576,-14.95395,72.465525,47.462
--17.57532,-19.6882,-18.43968,-15.27036,73.99882,48.265
--16.86345,-18.89075,-17.6928,-14.83615,71.001575,48.3545
--17.385,-19.475,-18.24,-15.105,73.1975,47.253
--17.0373,-19.0855,-17.8752,-14.896,71.73355,47.253
--17.0373,-19.0855,-17.8752,-14.8029,71.73355,47.0725
--18.117,-20.295,-19.008,-15.84,76.2696,49.1634
--17.85168,-19.79208,-18.62784,-15.62022,74.75391,48.7452
--17.39598,-19.4873,-18.25152,-15.2096,73.234224,47.9568
--17.49104,-19.4873,-18.25152,-15.11454,73.234224,47.7822
--17.48736,-19.57824,-18.34272,-15.2064,73.218816,47.0784
--17.66952,-19.78218,-18.53379,-15.26877,73.895085,47.4621
--17.664,-19.68,-18.528,-15.264,73.9584,49.74
--17.31256,-19.38254,-18.15937,-14.96031,72.402255,47.6755
--17.848,-19.982,-18.721,-15.714,74.6415,48.45
--17.76,-19.776,-18.528,-15.36,73.872,47.0784
--17.5861,-19.58236,-18.34658,-15.2096,73.158176,48.167
--18.13185,-20.19006,-18.91593,-15.58359,75.516705,48.1536
--18.315,-20.394,-19.107,-15.939,76.1805,48.4407
--17.2272,-19.18272,-17.97216,-14.99232,71.65584,47.5688
--17.76555,-19.78218,-18.53379,-15.26877,73.895085,48.8367
--17.4048,-19.38048,-18.15744,-15.0528,72.39456,47.7652
--17.40665,-19.38254,-18.25346,-15.0544,72.496345,47.7725
--17.76555,-19.78218,-18.53379,-15.3648,73.895085,48.3615
--16.9632,-18.7872,-17.6928,-14.6832,70.16928,45.923
--18.315,-20.394,-19.206,-15.84,76.1805,48.35
--18.414,-20.394,-19.206,-15.741,76.1805,48.1536
--17.50074,-19.38254,-18.25346,-15.14849,72.402255,47.8501
--17.1399,-18.9829,-17.8771,-14.83615,70.909425,45.923
--17.67744,-19.67328,-18.43776,-15.2064,73.13328,47.7576
--18.6,-20.6,-19.4,-16,76.95,49.25
--17.67744,-19.67328,-18.43776,-15.2064,73.13328,47.6784
--17.49888,-19.38048,-18.25152,-15.24096,72.385152,47.5888
--17.68116,-19.58236,-18.44164,-15.39972,73.139164,47.187
--17.77622,-19.67742,-18.44164,-15.30466,73.158176,47.0062
--17.95948,-19.88028,-18.63176,-15.3664,73.90278,48.4512
--16.87675,-18.68175,-17.5085,-14.71075,69.447375,46.303
--17.77248,-19.67328,-18.43776,-15.39648,73.13328,46.7904
--17.59296,-19.47456,-18.25152,-15.14688,72.39456,46.8734
--17.59483,-19.47663,-18.25346,-15.14849,72.402255,46.7152
--18.139,-20.079,-18.818,-15.52,74.6415,47.1032
--17.0544,-18.8784,-17.6928,-14.6832,70.1784,46.7904
--18.32787,-20.19006,-19.01394,-15.77961,75.418695,47.7576
--18.14274,-20.08314,-18.82188,-15.62022,74.65689,47.3517
--16.87675,-18.68175,-17.5085,-14.53025,69.447375,46.132
--17.1456,-18.8784,-17.6928,-14.7744,70.1784,46.6176
--18.048,-19.968,-18.624,-15.456,73.872,47.184
--17.86752,-19.76832,-18.43776,-15.30144,73.13328,46.128
--17.68892,-19.57072,-18.34755,-15.24258,72.402255,46.7928
--17.1456,-18.9696,-17.784,-14.6832,70.1784,46.128
--17.5028,-19.2717,-18.1545,-15.0822,71.64045,48.167
--18.048,-19.968,-18.72,-15.552,73.8816,49.04
--18.612,-20.592,-19.305,-16.137,76.1805,48.93
--18.05364,-19.97424,-18.72585,-15.46083,73.895085,46.3951
--17.32608,-19.16928,-17.9712,-15.02208,70.91712,46.6848
--17.86,-19.76,-18.525,-15.485,73.1025,44.9825
--17.78301,-19.57072,-18.34755,-15.24258,72.402255,46.6085
--17.78112,-19.56864,-18.3456,-15.24096,72.39456,46.697
--17.5959,-19.3648,-18.1545,-14.9891,71.64045,46.2952
--17.78112,-19.56864,-18.3456,-15.0528,72.39456,46.3104
--17.96634,-19.86754,-18.63176,-15.39972,73.14867,46.8832
--17.5959,-19.3648,-18.1545,-15.0822,71.64045,44.422
--18.711,-20.592,-19.404,-16.137,76.1805,47.24
--18.522,-20.482,-19.208,-15.876,75.411,47.05
--17.78112,-19.66272,-18.43968,-15.24096,72.39456,46.0224
--18.522,-20.482,-19.208,-16.072,75.411,47.35
--17.96256,-19.86336,-18.62784,-15.30144,73.13328,45.0624
--18.4338,-20.18016,-19.01592,-15.71724,74.65689,47.3732
--18.14967,-19.97424,-18.82188,-15.46083,73.895085,45.4348
--18.0614,-19.77248,-18.63176,-15.58984,73.158176,46.2205
--18.62,-20.384,-19.208,-16.17,75.411,46.5892
--18.05,-19.855,-18.62,-15.58,73.1025,45.258
--18.2457,-20.07027,-18.82188,-15.74892,73.895085,46.6587
--17.328,-19.0608,-17.8752,-14.8656,70.1784,46.416
--18.2476,-20.07236,-18.82384,-15.55848,73.90278,46.2952
--18.2457,-19.97424,-18.82188,-15.84495,73.895085,46.9854
--18.05,-19.855,-18.62,-15.58,73.1025,45.163
--18.15264,-19.86336,-18.62784,-15.58656,73.13328,45.552
--17.7821,-19.4579,-18.2476,-15.3615,71.64045,46.1972
--18.15646,-19.86754,-18.63176,-15.58984,73.14867,45.7268
--17.78592,-19.46208,-18.25152,-15.27168,71.65584,45.6384
--18.15646,-19.86754,-18.63176,-15.58984,73.14867,45.9295
--18.53082,-20.27718,-19.01592,-15.91128,74.65689,47.5695
--18.909,-20.691,-19.404,-16.236,76.1805,47.0646
--18.145,-19.855,-18.62,-15.58,73.1025,44.9825
--18.53082,-20.27718,-19.01592,-16.0083,74.65689,47.6784
--17.4192,-19.0608,-17.8752,-14.8656,70.1784,46.3125
--18.909,-20.691,-19.404,-16.137,76.1904,48.16
--17.87904,-19.46208,-18.25152,-15.27168,71.56272,46.4064
--17.60065,-19.25935,-18.15355,-15.1126,70.909425,45.4385
--17.96355,-19.65645,-18.4338,-15.51825,72.371475,47.1735
--18.81792,-20.48409,-19.20996,-16.26966,75.418695,47.0646
--18.624,-20.273,-19.109,-16.102,74.6415,45.8228
--18.25152,-19.86754,-18.63176,-15.6849,73.14867,46.2108
--18.624,-20.273,-19.109,-15.811,74.6415,46.8898
--18.06528,-19.66481,-18.53573,-15.43076,72.402255,47.1032
--17.87904,-19.5552,-18.34464,-15.27168,71.65584,46.6085
--18.24768,-19.9584,-18.72288,-15.58656,73.13328,46.128
--17.87904,-19.5552,-18.34464,-15.3648,71.65584,45.5616
--18.24,-19.95,-18.715,-15.77,73.1025,44.878
--18.25152,-19.9626,-18.72682,-15.39972,73.14867,46.8734
--17.5104,-19.152,-17.9664,-14.9568,70.1784,44.9825
--17.87904,-19.5552,-18.34464,-15.17856,71.65584,45.6384
--18.34272,-19.9584,-18.72288,-15.6816,73.13328,47.6685
--18.15937,-19.7589,-18.53573,-15.43076,72.411664,46.1138
--17.78495,-19.3515,-18.15355,-15.1126,70.909425,45.258
--18.528,-20.16,-18.912,-15.648,73.872,45.9168
--18.34272,-19.9584,-18.72288,-15.6816,73.13328,47.5695
--17.78495,-19.3515,-18.15355,-15.20475,70.909425,45.087
--18.53379,-20.1663,-19.01394,-15.84495,73.895085,46.2205
--18.53379,-20.1663,-18.91791,-15.84495,73.895085,46.2205
--17.97216,-19.5552,-18.43776,-15.45792,71.65584,45.6385
--19.3,-21.1,-19.8,-16.6,76.95,46.84
--18.34272,-20.05344,-18.81792,-15.58656,73.13328,46.4805
--17.78495,-19.44365,-18.2457,-15.1126,70.909425,44.7735
--18.62982,-20.26233,-19.01394,-15.74892,73.799055,47.4606
--18.15744,-19.85088,-18.62784,-15.42912,72.39456,47.1968
--18.2457,-19.84455,-18.6219,-15.33015,72.277425,47.7576
--18.2457,-19.84455,-18.6219,-15.4242,72.371475,46.8765
--17.6928,-19.2432,-18.0576,-15.1392,70.0872,44.7735
--18.0614,-19.6441,-18.4338,-15.2684,71.54735,45.5112
--18.2457,-19.84455,-18.6219,-15.6123,72.277425,46.2924
--18.43,-20.045,-18.81,-15.58,73.017,46.44
--18.44164,-20.05766,-18.82188,-15.77996,73.05361,45.9295
--19.206,-20.889,-19.602,-16.335,76.0815,46.1934
--19.206,-20.889,-19.602,-16.236,76.0815,45.8964
--18.25152,-19.85088,-18.62784,-15.42912,72.30048,46.8734
--17.87904,-19.44576,-18.24768,-15.2064,70.82496,44.7936
--18.1584,-19.64832,-18.43776,-15.3648,71.56272,46.512
--18.624,-20.256,-19.008,-15.744,73.7856,45.6384
--18.9189,-20.47122,-19.20996,-16.10532,74.55987,46.3815
--18.72,-20.256,-19.104,-15.84,73.7856,46.77
--17.784,-19.2432,-18.0576,-15.1392,70.0872,44.2944
--19.305,-20.889,-19.602,-16.434,76.0815,46.85
--18.33975,-19.84455,-18.6219,-15.6123,72.277425,46.4805
--18.33975,-19.84455,-18.6219,-15.51825,72.371475,46.6686
--18.1545,-19.6441,-18.5269,-15.5477,71.54735,45.258
--17.9712,-19.44576,-18.33984,-15.39072,70.82496,44.688
--18.34755,-19.85299,-18.72391,-15.61894,72.308165,44.4745
--19.11,-20.776,-19.502,-16.366,75.313,46.2952
--18.43968,-19.85088,-18.72192,-15.61728,72.39456,44.976
--19.11,-20.678,-19.502,-16.268,75.411,45.96
--18.72585,-20.26233,-19.10997,-15.84495,73.895085,44.7655
--19.20996,-20.68011,-19.50399,-16.36767,75.418695,44.9856
--19.404,-20.889,-19.701,-16.236,76.1805,45.5697
--18.2476,-19.7372,-18.5269,-15.4546,71.64045,44.2225
--18.62784,-20.14848,-18.91296,-15.6816,73.13328,46.5795
--18.06336,-19.53792,-18.33984,-15.29856,70.91712,44.8896
--18.25152,-19.74144,-18.53088,-15.55104,71.65584,44.688
--18.62784,-20.14848,-18.91296,-15.77664,73.13328,44.688
--18.25152,-19.74144,-18.53088,-15.55104,71.65584,45.2505
--18.0614,-19.5358,-18.33785,-15.2969,70.909425,43.662
--18.0614,-19.5358,-18.33785,-15.20475,70.909425,44.7558
--18.62,-20.14,-18.905,-15.675,73.1025,43.833
--19.404,-20.988,-19.701,-16.434,76.1805,46.44
--19.012,-20.564,-19.303,-16.005,74.6415,45.66
--18.06336,-19.53792,-18.33984,-15.48288,70.926336,44.9664
--18.43968,-19.94496,-18.72192,-15.71136,72.309888,46.011
--18.52785,-19.9386,-18.71595,-15.70635,72.277425,44.878
--19.404,-20.988,-19.701,-16.533,76.0815,47.45
--18.3407,-19.7372,-18.62,-15.3615,71.55666,44.498
--19.7,-21.2,-20,-16.6,76.85,47.24
--18.15355,-19.5358,-18.43,-15.38905,70.817275,45.9295
--18.912,-20.352,-19.2,-15.936,73.7856,47.13
--19.306,-20.776,-19.6,-16.366,75.313,45.9032
--18.91791,-20.45439,-19.206,-16.03701,73.789452,46.0845
--19.11294,-20.56824,-19.404,-16.10532,74.569572,46.4805
--18.53573,-19.94708,-18.818,-15.61894,72.317574,46.6085
--18.53573,-19.94708,-18.818,-15.80712,72.308165,44.7558
--18.91791,-20.45439,-19.206,-15.84495,73.799055,46.0845
--19.306,-20.188,-18.13,-16.954,75.3228,48.05
--19.503,-19.305,-17.127,-17.127,76.0815,46.84
--17.9664,-16.9632,-14.8656,-15.4128,70.0872,44.422
--18.912,-17.184,-14.976,-16.128,73.776,45.2448
--19.008,-16.704,-14.112,-15.456,73.776,45.0624
--18.24768,-17.23392,-14.2848,-13.91616,70.834176,44.5056
--19.01394,-19.01394,-15.94098,-15.3648,73.799055,45.9295
--19.20996,-19.404,-16.4934,-15.23214,74.55987,47.3517
--18.81792,-19.008,-16.34688,-14.63616,73.03824,46.3716
--18.6219,-18.71595,-16.3647,-14.38965,72.277425,47.0547
--18.82188,-18.91694,-16.6355,-14.35406,73.05361,45.8228
--19.008,-19.008,-16.896,-14.496,73.776,45.456
--18.81,-18.81,-16.815,-14.535,72.922,44.7735
--19.602,-19.503,-17.622,-14.949,75.9924,47.76
--18.43776,-18.34464,-16.57536,-14.24736,71.56272,46.2205
--19.206,-19.206,-17.363,-14.938,74.5445,46.7055
--18.81,-19,-17.195,-14.82,72.922,45.752
--19.01394,-19.30203,-17.47746,-14.88465,73.703025,46.6587
--18.0576,-18.3312,-16.5984,-14.2272,69.996,45.1535
--18.62982,-18.91209,-17.21847,-14.39577,72.214075,46.1138
--19.206,-19.497,-17.848,-15.132,74.4475,45.1535
--19.8,-20.1,-18.4,-15.5,76.76,48.34
--19.206,-19.497,-17.945,-15.132,74.4475,47.24
--18.2457,-18.52215,-17.04775,-14.46755,70.73434,46.0275
--18.82188,-19.10706,-17.5861,-15.01948,72.968056,46.0265
--18.62982,-19.00618,-17.50074,-14.86622,72.223484,45.9295
--18.81792,-19.29312,-17.77248,-15.01632,72.9432,46.6587
--18.0576,-18.5136,-17.0544,-14.3184,69.996,46.6176
--18.6219,-19.09215,-17.6814,-14.76585,72.19278,45.3915
--19.01394,-19.49409,-18.05364,-15.07671,73.712628,46.0845
--18.43776,-18.90336,-17.50656,-14.71296,71.478912,44.5824
--19.206,-19.691,-18.236,-15.326,74.4572,47.13
--18.4338,-18.8993,-17.5959,-14.5236,71.46356,43.5575
--19.602,-20.097,-18.711,-15.642,75.9924,45.4905
--18.4338,-18.9924,-17.5959,-14.896,71.45425,46.403
--18.81792,-19.38816,-18.0576,-15.11136,72.9432,46.2924
--18.1488,-18.6048,-17.328,-14.4096,69.996,45.3625
--19.20996,-19.8891,-18.53082,-15.42618,74.46285,45.5697
--18.62784,-19.2864,-17.96928,-14.95872,72.2064,45.8248
--19.701,-20.295,-18.909,-15.543,75.9825,46.1835
--19.10997,-19.68615,-18.34173,-15.46083,73.712628,44.8625
--18.1488,-18.696,-17.4192,-14.592,69.996,44.9825
--18.43776,-19.0896,-17.78592,-14.80608,71.4696,45.84
--18.91694,-19.4873,-18.25152,-15.01948,72.872996,45.9295
--18.24768,-18.8928,-17.69472,-14.65344,70.649856,45.5616
--19.30698,-19.8891,-18.62784,-15.5232,74.375532,46.109
--19.50399,-20.09205,-18.81792,-15.6816,75.134466,47.0646
--18.53088,-19.18272,-17.87904,-14.80608,71.385792,45.8228
--18.91694,-19.58236,-18.25152,-15.2096,72.872996,45.6092
--19.701,-20.394,-19.107,-15.741,75.8934,48.16
--18.91694,-19.58236,-18.34658,-15.2096,72.872996,45.0468
--18.1488,-18.7872,-17.6016,-14.6832,69.91392,45.4385
--19.502,-20.188,-18.914,-15.582,75.117,46.94
--19.104,-19.776,-18.528,-15.36,73.5936,47.35
--19.9,-20.6,-19.3,-16.1,76.66,47.94
--19.502,-20.286,-18.914,-15.778,75.117,46.0012
--18.1488,-18.8784,-17.6928,-14.7744,69.91392,45.163
--19.9,-20.7,-19.4,-16.1,76.66,46.65
--18.33785,-19.1672,-17.8771,-14.744,70.64219,44.783
--19.701,-20.592,-19.206,-16.038,75.8835,47.6784
--18.2457,-19.07505,-17.8771,-14.9283,70.64219,45.4385
--19.701,-20.592,-19.206,-15.939,75.8934,48.05
--18.72192,-19.56864,-18.25152,-15.24096,72.11232,46.4064
--18.72391,-19.57072,-18.25346,-15.43076,72.035304,47.3845
--19.303,-20.176,-18.915,-15.714,74.3602,46.0362
--19.303,-20.176,-18.915,-15.811,74.2632,47.64
--19.11196,-19.97632,-18.7278,-15.55848,73.624264,46.109
--18.5269,-19.3648,-18.1545,-15.1753,71.37046,45.163
--19.303,-20.273,-18.915,-15.811,74.2632,46.2108
--18.71595,-19.65645,-18.33975,-15.33015,72.00468,47.2725
--18.72192,-19.56864,-18.43968,-15.14688,72.121728,45.168
--19.303,-20.273,-18.915,-15.811,74.2632,46.3175
--18.72192,-19.66272,-18.43968,-15.33504,72.027648,46.6872
--19.11196,-20.07236,-18.82384,-15.65452,73.528224,47.089
--18.91296,-19.86336,-18.62784,-15.49152,72.762624,47.5695
--19.10997,-19.97424,-18.82188,-15.46083,73.520568,47.6784
--19.701,-20.691,-19.404,-16.335,75.7944,46.3023
--18.905,-19.855,-18.62,-15.485,72.732,47.64
--18.71595,-19.65645,-18.4338,-15.6123,72.00468,44.7735
--18.91694,-19.9626,-18.63176,-15.58984,72.777936,46.501
--19.104,-20.064,-18.816,-15.744,73.4976,47.94
--17.95975,-18.9525,-17.77925,-14.71075,69.0954,45.923
--18.72192,-19.7568,-18.53376,-15.42912,72.01824,45.552
--18.1488,-19.0608,-17.9664,-14.9568,69.82272,46.3104
--19.30698,-20.3742,-19.11294,-15.81426,74.278512,48.3434
--18.91296,-19.9584,-18.72288,-15.58656,72.762624,46.1934
--19.502,-20.58,-19.306,-16.072,75.0288,48.74
--18.91296,-19.9584,-18.72288,-15.58656,72.762624,46.9854
--19.10997,-20.1663,-18.91791,-15.84495,73.520568,46.2205
--19.30698,-20.3742,-19.20996,-15.91128,74.278512,48.1437
--18.5269,-19.551,-18.3407,-15.2684,71.26805,45.258
--18.5269,-19.551,-18.3407,-15.1753,71.27736,46.0275
--19.11196,-20.1684,-19.01592,-15.8466,73.528224,46.1874
--19.10997,-20.1663,-18.91791,-15.65289,73.520568,47.4606
--18.72192,-19.7568,-18.62784,-15.5232,72.027648,46.8734
--18.71595,-19.84455,-18.6219,-15.51825,72.00468,46.132
--19.10997,-20.26233,-19.01394,-15.94098,73.520568,47.8566
--18.72192,-19.85088,-18.62784,-15.61728,71.933568,45.4328
--17.95975,-19.04275,-17.8695,-14.89125,69.00515,43.833
--18.53088,-19.64832,-18.43776,-15.3648,71.199552,45.4464
--19,-20.045,-18.81,-15.675,72.637,44.498
--19.9,-21.1,-19.8,-16.4,76.46,48.56
--19.502,-20.678,-19.404,-16.17,74.9308,46.1874
--19.404,-20.47122,-19.20996,-16.10532,74.278512,46.109
--18.905,-20.045,-18.81,-15.77,72.732,47.24
--18.33785,-19.44365,-18.2457,-15.2969,70.540825,47.1032
--18.53088,-19.64832,-18.43776,-15.45792,71.199552,44.784
--18.53088,-19.64832,-18.43776,-15.55104,71.199552,45.6385
--19.206,-20.35836,-19.10997,-16.13304,73.424538,46.5795
--18.816,-19.94496,-18.72192,-15.5232,71.933568,46.9812
--18.624,-19.74144,-18.53088,-15.3648,71.199552,46.4064
--18.24,-19.3344,-18.1488,-15.1392,69.74064,46.6848
--18.818,-19.94708,-18.72391,-15.80712,71.941214,45.9295
--18.816,-19.94496,-18.72192,-15.61728,71.933568,44.688
--18.816,-19.94496,-18.72192,-15.71136,71.933568,44.5056
--18.43,-19.62795,-18.33785,-15.2969,70.55004,45.6385
--18.818,-20.04117,-18.72391,-15.61894,72.035304,45.1535
--19.206,-19.97424,-17.76555,-15.94098,73.520568,46.0845
--19.008,-18.72288,-16.44192,-16.82208,72.667584,45.2826
--19.208,-17.95948,-15.75056,-16.51888,73.528224,45.4328
--19.206,-17.38143,-14.98068,-16.70922,73.530171,46.1934
--18.816,-16.464,-13.92384,-15.9936,72.027648,44.1888
--19.206,-17.57349,-14.59656,-13.82832,73.520568,45.2826
--19.8,-19.503,-16.335,-15.642,75.7944,44.8074
--19.8,-19.8,-16.731,-15.543,75.7944,45.85
--18.816,-18.816,-16.08768,-14.48832,72.01824,45.4328
--18.24,-18.1488,-15.7776,-14.0448,69.82272,44.8896
--19.602,-19.50399,-17.05374,-14.99553,75.036456,45.2826
--19.206,-19.01394,-16.90128,-14.59656,73.520568,44.2902
--18.816,-18.62784,-16.65216,-14.30016,72.037056,44.2568
--19.208,-19.01592,-17.09512,-14.59808,73.528224,43.9628
--18.818,-18.53573,-16.74802,-14.39577,72.035304,44.2902
--18.62,-18.4338,-16.6649,-14.2443,71.27736,43.5575
--18.816,-18.72192,-16.9344,-14.5824,72.027648,44.5312
--19.012,-19.012,-17.30092,-14.7343,72.777936,44.2902
--19.4,-19.594,-17.751,-15.229,74.2632,44.3678
--19.208,-19.40008,-17.57532,-15.07828,73.624264,44.4234
--19.206,-19.39806,-17.66952,-15.07671,73.616598,45.2034
--19.404,-19.50102,-17.85168,-15.0381,74.375532,44.4906
--18.62,-18.7131,-17.2235,-14.5236,71.36115,43.6688
--19.6,-19.698,-18.13,-15.19,75.117,43.9628
--19.8,-19.998,-18.414,-15.345,75.8835,44.0055
--20,-20.2,-18.6,-15.4,76.65,44.05
--18.81,-19.09215,-17.58735,-14.38965,72.089325,42.2275
--18.816,-19.09824,-17.68704,-14.86464,72.121728,43.2768
--18.624,-18.99648,-17.50656,-14.71296,71.385792,43.2232
--18.62,-18.8993,-17.5028,-14.8029,71.36115,42.2275
--19.2,-19.488,-18.144,-15.168,73.584,44.45
--19,-19.285,-17.955,-15.105,72.8175,44.56
--19.6,-19.894,-18.522,-15.778,75.117,45.05
--18.62,-18.9924,-17.689,-14.896,71.36115,43.855
--19.6,-20.09,-18.62,-15.778,75.215,43.855
--18.816,-19.2864,-17.8752,-15.0528,72.2064,43.056
--18.816,-19.2864,-17.96928,-15.14688,72.215808,43.6688
--18.816,-19.38048,-17.96928,-15.24096,72.2064,43.7472
--18.62,-19.1786,-17.8752,-14.9891,71.45425,42.408
--19.4,-19.982,-18.624,-15.908,74.4475,43.1165
--18.62,-19.1786,-17.8752,-15.0822,71.45425,42.617
--19.4,-20.079,-18.721,-15.908,74.4475,44.94
--18.624,-19.36896,-17.97216,-15.17856,71.4696,43.1424
--19.4,-20.176,-18.721,-15.811,74.4475,44.94
--19.2,-19.872,-18.528,-15.456,73.68,44.45
--18.816,-19.56864,-18.25152,-15.33504,72.2064,43.3454
--19.404,-20.18016,-18.82188,-16.0083,74.46285,43.3552
--19.206,-19.97424,-18.62982,-15.74892,73.703025,43.2232
--19,-19.855,-18.525,-15.58,72.9125,44.56
--19.208,-20.07236,-18.7278,-15.75056,73.7107,43.855
--19.602,-20.48409,-19.11195,-16.17165,75.232476,44.3025
--19.4,-20.273,-19.012,-15.908,74.4475,43.3008
--18.24,-19.152,-17.8752,-15.048,70.00512,42.7975
--18.81,-19.7505,-18.4338,-15.6123,72.19278,44.5995
--18.43,-19.3515,-18.0614,-15.1126,70.725125,42.408
--18.62,-19.551,-18.2476,-15.2684,71.45425,44.0412
--18.624,-19.5552,-18.25152,-15.45792,71.4696,43.1424
--19.6,-20.58,-19.306,-16.464,75.3228,44.75
--19.404,-20.47122,-19.11294,-16.10532,74.46285,44.1392
--18.24,-19.2432,-17.9664,-15.048,69.996,42.617
--19.2,-20.256,-19.008,-15.936,73.68,43.344
--18.81,-19.84455,-18.6219,-15.70635,72.277425,44.1936
--19.008,-20.14848,-18.81792,-15.87168,73.03824,43.248
--18.05,-19.133,-17.8695,-15.162,69.266875,42.408
--18.81,-19.9386,-18.71595,-15.89445,72.183375,43.2725
--19.6,-20.678,-19.404,-16.268,75.215,45.34
--18.432,-18.61632,-16.49664,-15.6672,70.82496,43.3536
--18.24,-17.6016,-15.3216,-16.3248,69.996,43.168
--18.624,-17.04096,-14.71296,-17.04096,71.56272,45.168
--18.816,-16.55808,-14.01792,-17.02848,72.30048,44.688
--18.62,-16.1063,-13.3133,-15.3615,71.54735,43.9375
--18.62,-17.689,-14.6167,-14.5236,71.46356,44.2225
--18.816,-18.62784,-15.61728,-14.95872,72.30048,44.247
--18.816,-18.816,-15.9936,-14.77056,72.30048,44.149
--19.4,-19.4,-16.684,-15.132,74.5445,45.85
--19.206,-19.10997,-16.70922,-14.88465,73.799055,43.7955
--18.81,-18.71595,-16.45875,-14.4837,72.277425,45.7875
--20,-19.8,-17.6,-15.5,76.85,45.44
--19.404,-19.20996,-17.17254,-14.84406,74.55987,44.639
--18.624,-18.53088,-16.57536,-14.34048,71.572032,44.4745
--19.206,-19.10997,-17.18937,-14.88465,73.808658,44.0865
--18.24,-18.24,-16.416,-14.2272,70.0872,43.5168
--18.81,-18.90405,-17.02305,-14.8599,72.277425,43.0635
--19.008,-19.19808,-17.39232,-14.82624,73.03824,45.3915
--19.008,-19.19808,-17.48736,-15.01632,73.03824,43.4496
--18.62,-18.8062,-17.1304,-14.7098,71.54735,43.548
--19.012,-19.29718,-17.5861,-15.2096,73.05361,44.1835
--19.4,-19.691,-18.042,-15.423,74.5445,44.7558
--19.206,-19.59012,-17.86158,-15.26877,73.799055,43.9798
--18.05,-18.411,-16.87675,-14.44,69.36615,43.2725
--19.404,-19.8891,-18.23976,-15.42618,74.55987,44.8866
--19,-19.38,-17.86,-15.105,73.0075,44.118
--20,-20.5,-18.9,-16.1,76.85,46.44
--18.816,-19.2864,-17.78112,-15.0528,72.30048,45.0408
--19.404,-19.79208,-18.33678,-15.42618,74.55987,44.8252
--18.624,-19.0896,-17.6928,-14.99232,71.56272,43.728
--18.624,-19.18272,-17.6928,-14.99232,71.56272,43.9104
--18.43,-18.9829,-17.60065,-14.83615,70.817275,43.2725
--18.62,-19.0855,-17.7821,-14.9891,71.54735,43.453
--18.43,-18.9829,-17.6928,-14.744,70.817275,43.168
--19.206,-19.78218,-18.43776,-15.3648,73.799055,44.7558
--18.624,-19.18272,-17.87904,-14.80608,71.572032,44.8625
--20,-20.6,-19.2,-16.1,76.85,45.74
--19.8,-20.394,-19.107,-15.939,76.0815,44.8767
--19.404,-19.98612,-18.72486,-15.71724,74.55987,44.6985
--18.816,-19.47456,-18.15744,-15.14688,72.30048,43.728
--19.012,-19.67742,-18.34658,-15.49478,73.063116,44.2902
--19.6,-20.286,-18.914,-15.778,75.313,45.95
--19,-19.665,-18.335,-15.39,73.0075,42.9875
--18.81,-19.46835,-18.2457,-15.33015,72.277425,45.2727
--18.81,-19.46835,-18.2457,-15.33015,72.277425,43.168
--18.818,-19.57072,-18.25346,-15.33667,72.308165,44.4745
--18.81,-19.5624,-18.2457,-15.33015,72.277425,45.3915
--19.012,-19.77248,-18.44164,-15.39972,73.05361,44.0768
--19.012,-19.77248,-18.5367,-15.39972,73.05361,43.9701
--18.624,-19.36896,-18.1584,-15.08544,71.56272,42.96
--20,-20.9,-19.5,-16.2,76.95,45.44
--18.818,-19.66481,-18.34755,-15.43076,72.308165,43.5142
--19.012,-19.77248,-18.5367,-15.6849,73.14867,44.933
--18.81,-19.5624,-18.33975,-15.33015,72.371475,43.6525
--18.624,-19.36896,-18.1584,-15.08544,71.56272,44.6491
--19.012,-19.86754,-18.63176,-15.49478,73.14867,44.5312
--18.43,-19.25935,-18.0614,-15.1126,70.817275,42.693
--19.404,-20.27718,-19.01592,-15.81426,74.65689,45.0945
--19.8,-20.691,-19.404,-16.137,76.0914,45.16
--18.43,-19.25935,-18.0614,-15.1126,70.909425,43.9798
--18.24,-19.0608,-17.8752,-14.9568,70.0872,42.96
--18.816,-19.66272,-18.43968,-15.42912,72.39456,43.248
--19.2,-20.16,-18.816,-15.84,73.776,45.25
--18.62,-19.551,-18.3407,-15.3615,71.54735,44.1392
--18.816,-19.7568,-18.53376,-15.5232,72.30048,43.344
--18.816,-19.7568,-18.53376,-15.5232,72.39456,43.855
--18.24,-19.152,-17.9664,-15.048,70.1328,42.028
--19.008,-19.9584,-18.72288,-15.58656,73.142784,42.288
--19.404,-20.3742,-19.11294,-16.0083,74.65689,44.247
--19.404,-20.3742,-19.11294,-15.91128,74.647188,44.8767
--19,-19.95,-18.81,-15.675,73.0075,43.168
--18.624,-19.5552,-18.43776,-15.3648,71.56272,43.5045
--19.2,-20.16,-19.008,-15.936,73.776,43.1424
--19.2,-20.256,-19.008,-15.84,73.776,44.05
--18.624,-19.64832,-18.43776,-15.45792,71.65584,42.4704
--19.206,-20.26233,-19.01394,-16.03701,73.895085,42.8255
--18.818,-19.85299,-18.62982,-15.52485,72.402255,43.0195
--19.2,-20.064,-18.432,-15.072,73.872,42.4704
--18.43,-18.33785,-16.2184,-12.62455,70.909425,43.2232
--19.2,-18.144,-15.84,-12.096,73.872,44.86
--19.206,-17.47746,-15.17274,-11.81169,73.895085,42.9128
--19.602,-17.15175,-14.7015,-11.07513,75.418695,43.3125
--19.2,-16.32,-13.536,-9.984,73.8624,43.86
--18.43,-15.20475,-12.44025,-8.8464,70.909425,41.743
--18.818,-15.14849,-12.13761,-7.90356,72.402255,42.5442
--18.624,-14.52672,-11.54688,-7.17024,71.65584,43.3008
--19.8,-14.85,-11.484,-7.326,76.1805,43.86
--19.206,-13.92435,-10.5633,-6.43401,73.895085,43.5006
--19.206,-13.54023,-9.89109,-7.29828,73.895085,42.3308
--19.602,-13.03533,-9.801,-7.8408,75.418695,43.2036
--18.81,-11.75625,-9.0288,-7.42995,72.371475,41.1825
--19.206,-11.42757,-8.73873,-7.49034,73.895085,42.3405
--19.008,-10.73952,-8.17344,-6.74784,73.123776,43.3125
--19.602,-10.58508,-7.64478,-6.37065,75.418695,43.4214
--19.008,-9.504,-6.74784,-5.89248,73.13328,42
--18.05,-8.1225,-5.50525,-5.2345,69.447375,41.743
--19.404,-7.85862,-4.94802,-4.94802,74.65689,43.7976
--19.012,-7.03444,-3.89746,-4.2777,73.14867,42.4928
--19.206,-6.24195,-2.97693,-3.93723,73.895085,43.2036
--18.43,-5.43685,-1.843,-3.3174,70.909425,41.4675
--18.33785,-4.69965,-0.7372,-2.67235,70.909425,42.1465
--19.502,-4.214,0.49,-2.45,75.411,42.4928
--18.53088,-3.53856,1.48992,-2.23488,71.665152,41.424
--19.50399,-2.84229,2.9403,-1.9602,75.418695,43.5006
--18.33785,-2.0273,3.59385,-1.4744,70.909425,42.7285
--18.72391,-1.50544,4.79859,-1.03499,72.402255,42.9128
--19.30698,-1.16424,6.11226,-0.58212,74.647188,43.7184
--19.602,-0.396,7.326,-0.099,76.1805,43.3125
--18.81,0.19,7.98,0.38,73.1025,43.94
--19.20996,0.87318,9.31392,0.29106,74.647188,43.7085
--19.404,1.274,10.388,1.078,75.4012,43.14
--18.53376,2.06976,10.91328,1.4112,72.39456,42.4928
--19.503,2.673,12.672,1.683,76.1805,43.45
--17.9664,3.1008,12.5856,2.0064,70.1784,41.7984
--18.82188,3.93723,14.21244,2.59281,73.895085,42.1562
--19.01592,4.65696,15.32916,3.20166,74.65689,43.0254
--18.816,5.088,16.416,3.84,73.872,41.6256
--18.816,5.856,17.088,3.84,73.872,43.86
--18.33975,6.48945,17.77545,4.42035,72.371475,41.363
--18.5367,7.31962,19.012,5.03818,73.14867,41.6615
--18.72,7.968,20.16,5.952,73.8816,44.16
--19.01394,8.62488,21.36618,6.37065,75.418695,43.5006
--18.528,9.216,21.888,6.624,73.872,43.36
--18.914,9.996,23.226,7.154,75.411,42.581
--17.9683,10.3341,22.9957,7.2618,71.64045,42.4928
--19.008,11.682,25.443,8.514,76.1805,43.0155
--18.816,12.446,25.97,8.624,75.411,43.36
--17.23775,12.00325,24.81875,8.21275,69.43835,41.5625
--18.15646,13.40346,26.80692,9.60106,73.14867,42.385
--17.6928,13.59552,27.19104,9.7776,71.65584,41.424
--17.5104,14.19264,27.46368,9.86112,70.907904,41.6256
--17.78112,15.0528,28.78848,10.72512,72.39456,42.1988
--18.048,15.936,30.144,11.232,73.872,42.85
--17.87128,16.25526,30.32414,11.8825,73.05361,42.2772
--18.139,17.46,32.01,12.513,74.6415,42.84
--17.32032,17.32032,31.00896,12.19872,71.56272,41.9525
--17.04775,17.60065,31.1467,12.62455,70.909425,41.9525
--17.04775,18.2457,32.0682,12.901,70.817275,41.6615
--16.606,18.50125,32.03875,13.26675,69.447375,41.363
--17.21664,19.66272,34.24512,14.30016,72.30048,42
--16.86345,19.99655,34.2798,14.3754,70.817275,42.1562
--17.47928,21.22484,36.39916,15.3664,73.80674,42.5908
--17.557,22.116,37.248,16.005,74.5542,43.36
--17.28,22.464,37.728,16.608,73.776,42.84
--16.6649,22.344,37.1469,16.2925,71.54735,41.8068
--16.57536,22.90752,37.80672,16.7616,71.56272,41.1264
--16.48224,23.46624,38.55168,17.32032,71.572032,41.3802
--17.6,25.7,41.9,18.9,76.85,43.14
--16.80525,25.54398,40.81275,18.91791,73.799055,41.8458
--16.88148,26.1954,41.81562,19.50102,74.65689,42.7086
--16.44192,26.32608,41.62752,19.67328,73.03824,41.6256
--16.85772,28.03086,43.41843,20.48409,75.320685,42.4215
--16.25184,27.75168,42.67296,20.62368,73.03824,42.6294
--16.3251,28.52091,43.69365,21.1266,73.799055,42.9264
--15.25225,27.2555,41.515,20.3965,69.357125,40.812
--15.80712,29.07381,43.75185,21.45252,72.317574,41.8555
--15.94098,29.86533,45.23013,22.56705,73.799055,41.8458
--16.005,30.458,46.075,23.668,74.5445,41.1668
--16.072,31.066,47.236,24.01,75.313,41.9146
--15.485,30.59,46.17,24.13,73.0075,42.66
--15.939,32.868,48.609,25.245,76.0815,42.85
--14.7456,30.68928,45.43488,23.86944,70.82496,41.6256
--15.484,33.222,49,26.166,75.313,43.64
--14.61984,32.03328,46.93248,25.32864,71.56272,42.0592
--14.98068,33.6105,48.78324,26.31222,73.808658,42.7185
--15.092,34.986,50.372,27.342,75.313,42.1008
--14.84406,35.4123,50.25636,27.35964,74.55987,42.4928
--14.06112,33.70944,48.51552,26.72544,71.56272,41.6712
--14.112,34.24512,49.392,27.09504,72.30048,41.9146
--13.9194,34.4223,49.00005,28.215,72.277425,40.983
--13.82976,34.24512,48.35712,30.01152,72.30048,42.1988
--13.7808,34.40448,48.09024,30.888,73.03824,41.52
--14.112,35.378,48.902,31.164,75.313,42.76
--13.63768,34.67044,47.25168,30.34864,73.80674,42.2086
--12.768,31.7376,42.864,31.8288,70.0872,40.812
--13.662,32.769,44.154,34.353,76.0815,42.5304
--13.02322,30.4192,40.59062,32.22534,73.05361,41.699
--12.4416,28.66176,37.60128,29.76768,70.82496,41.0592
--12.90366,28.6209,37.8378,30.75534,74.55987,42.5908
--12.32055,26.61615,35.1747,29.24955,72.277425,43.0254
--12.51558,26.6805,34.83018,28.91196,74.55987,41.993
--11.9168,24.3922,32.0264,27.2783,71.54735,40.6315
--12.222,24.638,32.107,27.839,74.5445,42.66
--11.904,23.712,30.624,26.4,73.776,42.44
--11.3582,22.1578,28.5817,25.137,71.54735,40.527
--11.5236,21.99087,28.42488,25.44795,73.799055,41.3705
--11.682,21.879,28.314,25.641,76.0815,42.7185
--10.7996,19.9234,25.6025,23.4612,71.54735,40.907
--10.83684,19.67742,25.28596,23.38476,73.05361,41.4772
--10.64672,19.012,24.43042,22.8144,73.05361,41.6615
--10.25472,18.25152,23.42592,22.01472,72.30048,41.601
--10.0548,17.4097,22.4371,21.2268,71.54735,41.699
--9.6672,16.416,21.2496,20.3376,70.16928,41.232
--9.68448,16.20288,21.04512,20.39328,71.56272,41.232
--9.69612,16.06514,20.81814,20.24778,73.05361,42.385
--9.504,15.58656,20.14848,19.67328,73.03824,40.9536
--8.9376,14.3184,18.7872,18.5136,70.0872,40.7075
--9.40896,14.99553,19.602,19.40598,75.320685,42.6294
--8.7514,13.8719,18.0614,18.0614,71.54735,40.812
--8.736,13.92,18.048,18.048,73.776,41.232
--8.379,12.9409,16.9442,17.0373,71.54735,40.7075
--8.36352,12.73536,16.82208,17.1072,73.123776,42.2334
--8.428,12.74,16.856,17.052,75.4012,42.1988
--8.316,12.474,16.533,16.929,76.0815,42.5205
--7.7121,11.4741,15.33015,15.70635,72.371475,42.1245
--7.3728,10.87488,14.46912,14.92992,70.82496,41.2416
--7.41,10.735,14.535,14.82,73.093,41.0875
--7.469,10.573,14.453,14.938,74.5445,42.66
--6.984,9.7776,13.40928,14.06112,71.65584,41.136
--7.01019,9.89109,13.34817,14.11641,73.799055,42.0156
--6.74926,9.31588,12.92816,13.49852,73.05361,42.1008
--6.762,9.114,12.838,13.426,75.313,42.2772
--6.17405,8.20135,11.70305,12.44025,70.817275,41.7682
--6.14592,7.82208,11.36064,12.19872,71.56272,40.848
--6.14592,7.97049,11.42757,12.38787,73.799055,41.6615
--5.95386,7.58637,11.04345,12.00375,73.799055,41.0892
--5.97861,7.54677,10.87911,11.85921,75.320685,41.9364
--5.841,7.326,10.593,11.583,76.0815,42.85
--5.529,6.693,10.088,10.961,74.5445,42.66
--5.37768,6.33798,9.603,10.65933,73.799055,42.1245
--4.9761,5.7133,8.93855,9.86005,70.817275,40.318
--4.98465,5.54895,8.74665,9.7812,72.277425,40.1375
--4.70016,5.25312,8.2944,9.30816,70.82496,40.7424
--4.753,5.141,8.342,9.506,74.5445,40.8855
--4.46976,4.56288,7.63584,8.8464,71.56272,41.1668
--4.2389,4.14675,7.27985,8.56995,70.817275,40.8758
--4.104,3.9216,6.84,8.3904,70.09632,40.147
--4.22576,4.03368,6.91488,8.45152,73.816344,41.5128
--3.9501,3.66795,6.5835,7.99425,72.277425,41.8275
--4.018,3.43,6.468,7.742,75.313,42.25
--3.783,3.007,6.014,7.566,74.5445,41.0892
--3.64914,2.68884,5.66577,7.20225,73.799055,41.6196
--3.47985,2.4453,5.2668,7.05375,72.277425,42.3423
--3.465,2.376,5.247,7.227,76.0815,42.0156
--3.13344,2.11968,4.70016,6.54336,70.82496,40.56
--3.04128,1.8432,4.42368,5.9904,70.82496,40.9536
--2.85665,1.56655,4.14675,5.80545,70.817275,40.0425
--2.8227,1.22317,3.95178,5.6454,72.308165,40.8855
--2.813,1.067,3.783,5.723,74.5445,42.55
--2.5802,0.82935,3.3174,5.25255,70.817275,41.1668
--2.61954,0.77616,3.29868,5.43312,74.55987,41.7285
--2.4206,0.6517,2.8861,4.9343,71.54735,41.307
--2.304,0.27648,2.67264,4.51584,70.82496,40.3584
--2.23146,0,2.52252,4.46292,74.55987,41.1992
--2.06998,-0.28227,2.16407,4.13996,72.308165,40.7788
--1.9551,-0.5586,1.9551,3.9102,71.54735,41.5128
--1.94,-0.679,1.746,3.88,74.5445,42.44
--1.86219,-0.88209,1.56816,3.72438,75.320685,42.0156
--1.764,-0.98,1.372,3.528,75.313,41.5912
--1.72854,-1.15236,1.15236,3.45708,73.799055,41.4772
--1.59953,-1.31726,0.9409,3.01088,72.308165,41.4772
--1.52096,-1.52096,0.66542,2.8518,73.05361,41.9146
--1.3965,-1.6758,0.4655,2.6068,71.54735,40.983
--1.344,-2.016,0.192,2.4,73.776,42.85
--1.3,-2.4,0,2.5,76.85,42.66
--1.14072,-2.3765,-0.19012,2.18638,73.05361,41.1668
--1.14048,-2.47104,-0.4752,2.09088,73.03824,42.2334
--1.06722,-2.61954,-0.58212,1.9404,74.55987,42.091
--1.056,-2.784,-0.768,1.728,73.776,40.7424
--0.9506,-2.94686,-0.9506,1.33084,73.05361,41.2735
--0.85536,-3.23136,-1.14048,1.23552,73.03824,40.6656
--0.792,-3.564,-1.386,1.188,76.0914,41.96
--0.7372,-3.40955,-1.56655,0.9215,70.817275,41.5645
--0.6517,-3.5378,-1.6758,0.6517,71.54735,41.8068
--0.5586,-3.724,-1.862,0.6517,71.54735,41.192
--0.57618,-4.03326,-2.11266,0.38412,73.799055,42.3324
--0.4655,-4.0964,-2.2344,0.1862,71.54735,39.5865
--0.4851,-4.46292,-2.52252,0,74.55987,41.9364
--0.38,-4.56,-2.66,-0.095,73.0075,40.8025
--0.38416,-4.802,-2.8812,-0.19208,73.80674,41.993
--0.3724,-4.655,-2.8861,-0.3724,71.55666,40.527
--0.285,-4.94,-3.135,-0.475,73.0075,42.36
--0.28809,-5.18562,-3.36105,-0.86427,73.799055,41.4869
--0.194,-5.626,-3.686,-1.067,74.5445,41.96
--0.1881,-5.643,-3.66795,-1.03455,72.277425,42.0156
--0.1881,-5.643,-3.762,-1.03455,72.277425,40.318
--0.18818,-5.6454,-3.95178,-0.9409,72.308165,41.4869
--0.09312,-5.5872,-4.00416,-1.11744,71.56272,40.6752
--0.098,-5.88,-4.312,-1.372,75.313,41.405
-0,-5.5955,-4.1515,-1.9855,69.36615,39.862
-0,-6.3063,-4.65696,-2.4255,74.55987,41.4148
-0,-6.596,-4.753,-2.425,74.5445,42.36
-0,-6.2928,-4.6512,-2.1888,70.0872,40.848
-0,-6.72,-4.992,-2.304,73.776,40.176
-0.09504,-6.6528,-5.03712,-2.18592,73.03824,40.464
-0.09216,-6.54336,-4.97664,-2.21184,70.82496,40.6656
-0.09405,-6.67755,-5.2668,-2.2572,72.277425,39.862
-0.09405,-6.86565,-5.36085,-2.53935,72.277425,40.242
-0.09405,-7.05375,-5.54895,-2.8215,72.277425,39.938
-0.099,-7.722,-5.94,-3.267,76.0815,41.4315
-0.099,-7.92,-6.138,-3.465,76.0815,41.96
-0.098,-7.938,-6.272,-3.234,75.313,42.04
-0.09702,-7.85862,-6.3063,-3.29868,74.55987,41.307
-0.097,-7.857,-6.402,-3.395,74.5348,41.1668
-0.09216,-7.55712,-6.17472,-3.59424,70.815744,40.176
-0.0912,-7.6608,-6.2016,-3.7392,70.0872,40.318
-0.09504,-8.26848,-6.6528,-3.99168,72.9432,41.5305
-0.09312,-8.28768,-6.70464,-3.81792,71.553408,40.9825
-0.09216,-8.2944,-6.72768,-3.96288,70.7328,40.176
-0.1,-9,-7.4,-4,76.85,42.04
-0.0912,-8.208,-6.84,-4.0128,69.996,40.0032
-0.09312,-8.47392,-7.07712,-4.09728,71.4696,40.176
-0.09312,-8.47392,-7.17024,-4.1904,71.56272,40.2816
-0.095,-8.74,-7.315,-4.37,73.0075,40.1375
-0.09506,-8.93564,-7.50974,-4.753,73.05361,41.1668
-0,-9.405,-7.92,-5.148,75.9825,42.44
-0,-9.312,-7.776,-4.992,73.68,41.96
-0,-9.2169,-7.7121,-4.8906,72.277425,39.938
-0,-9.50697,-7.97049,-5.18562,73.799055,40.8855
-0,-9.702,-8.2467,-5.53014,74.55987,41.6196
--0.09409,-9.50309,-8.09174,-5.08086,72.308165,40.7788
--0.09025,-9.2055,-7.85175,-5.14425,69.3481,40.242
--0.098,-10.094,-8.624,-5.684,75.313,41.85
--0.09312,-9.68448,-8.28768,-5.40096,71.56272,40.7012
--0.1862,-9.7755,-8.379,-5.586,71.55666,41.1992
--0.198,-10.593,-9.009,-6.039,76.0815,42.44
--0.19206,-10.27521,-8.83476,-5.95386,73.799055,41.6196
--0.196,-10.584,-9.212,-6.37,75.3032,42.15
--0.294,-10.682,-9.31,-6.468,75.313,42.15
--0.28224,-10.44288,-9.03168,-6.39744,72.30048,41.1208
--0.288,-10.752,-9.312,-6.432,73.776,42.44
--0.38016,-10.73952,-9.31392,-6.46272,73.03824,42.0156
--0.4,-11.3,-9.9,-6.7,76.85,42.15
--0.4802,-10.94856,-9.604,-6.53072,73.720304,41.1992
--0.4752,-10.83456,-9.59904,-6.74784,73.03824,42.2334
--0.48,-11.328,-9.792,-7.2,73.776,42.26
--0.57624,-11.5248,-9.89212,-7.29904,73.80674,41.405
--0.5643,-11.19195,-9.7812,-6.5835,72.183375,42.1245
--0.5643,-11.0979,-9.7812,-6.48945,72.183375,42.0156
--0.67221,-11.33154,-10.08315,-6.91416,73.799055,41.7285
--0.64512,-10.78272,-9.6768,-6.81984,70.7328,40.848
--0.67228,-11.42876,-10.18024,-7.77924,73.7107,41.307
--0.75264,-11.47776,-10.16064,-7.62048,72.215808,41.5226
--0.86427,-11.81169,-10.46727,-7.6824,73.799055,40.8855
--0.84645,-11.56815,-10.25145,-7.24185,72.277425,41.8374
--0.864,-11.712,-10.56,-7.392,73.68,42.44
--0.9504,-11.59488,-10.4544,-7.22304,73.03824,42.2334
--0.9025,-11.0105,-9.9275,-7.0395,69.357125,40.3275
--1.03488,-11.57184,-10.44288,-7.33824,72.291072,41.1208
--1.06722,-12.03048,-10.86624,-7.95564,74.46285,41.7285
--1.0944,-11.5824,-10.3056,-7.6608,69.996,40.7424
--1.14072,-12.26274,-10.9319,-7.98504,73.05361,40.9922
--1.21056,-12.1056,-10.7088,-7.82208,71.478912,41.0592
--1.22265,-12.13245,-10.9098,-7.80615,72.277425,40.3275
--1.37214,-12.64329,-11.36916,-8.23284,75.232476,42.1245
--1.2901,-11.9795,-10.78155,-7.83275,70.73434,40.318
--1.47,-12.74,-11.466,-8.428,75.215,41.699
--1.455,-12.707,-11.446,-8.245,74.4475,40.8855
--1.4744,-12.07165,-10.96585,-7.83275,70.817275,40.6315
--1.584,-13.068,-11.781,-8.613,75.9825,42.25
--1.552,-12.901,-11.64,-8.439,74.5542,40.8855
--1.66617,-13.13334,-11.85921,-8.91891,75.222675,41.8275
--1.6416,-12.312,-11.1264,-8.208,70.0872,40.4544
--1.6416,-12.4032,-11.2176,-8.3904,69.996,39.938
--1.86219,-13.42737,-12.05523,-9.21294,75.222675,41.8275
--1.862,-13.524,-12.25,-9.016,75.215,42.14
--1.9206,-13.25214,-12.00375,-9.02682,73.703025,41.0892
--1.995,-13.205,-11.875,-8.835,73.0075,42.44
--2.01663,-13.34817,-12.09978,-9.12285,73.799055,42.0156
--2.06998,-13.26669,-11.94943,-9.22082,72.214075,41.1668
--2.09088,-13.49568,-12.16512,-9.31392,72.952704,42.0156
--2.0976,-13.1328,-11.7648,-9.0288,69.996,40.318
--2.166,-12.996,-11.7325,-8.93475,69.357125,40.4225
--2.166,-12.996,-11.82275,-8.75425,69.266875,40.242
--2.4,-13.728,-12.576,-9.408,73.776,42.85
--2.35225,-13.54896,-12.32579,-9.409,72.308165,41.1668
--2.4453,-13.82535,-12.50865,-9.87525,72.28683,41.8275
--2.49704,-14.30996,-12.86936,-9.98816,73.80674,41.8068
--2.53935,-14.01345,-12.69675,-9.7812,72.183375,42.3324
--2.71656,-14.35896,-13.0977,-9.89604,74.55987,41.993
--2.527,-13.357,-12.274,-9.29575,69.266875,40.242
--2.84229,-14.40747,-13.32936,-10.09503,75.222675,42.3423
--2.9106,-14.35896,-13.19472,-9.89604,74.46285,41.9364
--2.9403,-14.50548,-13.32936,-10.19304,75.222675,42.4116
--3.007,-14.356,-13.289,-9.991,74.4475,42.44
--2.97693,-14.4045,-13.25214,-10.27521,73.703025,41.0892
--3.01088,-14.20759,-12.98442,-10.06763,72.317574,41.1765
--3.16899,-14.69259,-13.34817,-10.46727,73.703025,42.1245
--3.234,-14.994,-13.72,-10.682,75.2248,41.8068
--3.23136,-14.54112,-13.3056,-10.35936,72.952704,40.464
--3.298,-14.841,-13.677,-10.476,74.4475,41.1668
--3.36,-14.688,-13.536,-10.464,73.68,40.7424
--3.42,-14.725,-13.49,-10.545,72.9125,42.44
--3.42,-14.82,-13.585,-10.83,72.9125,40.527
--3.40992,-14.37696,-13.27104,-10.50624,70.7328,40.848
--3.4295,-14.2595,-13.08625,-10.37875,69.2759,40.6315
--3.61152,-15.01632,-13.7808,-10.9296,72.9432,40.6656
--3.783,-15.326,-14.162,-11.058,74.4475,42.55
--4,-15.8,-14.6,-11.4,76.75,42.55
--3.7636,-14.86622,-13.73714,-10.72626,72.223484,41.2735
--3.81792,-14.80608,-13.68864,-10.98816,71.4696,40.4544
--4.032,-15.552,-14.208,-11.328,73.68,42.04
--4.03326,-15.65289,-14.30847,-11.42757,73.703025,40.9825
--4.04415,-15.33015,-14.01345,-10.9098,72.183375,40.033
--4.18,-15.39,-14.155,-11.115,72.922,42.37
--4.0546,-14.83615,-13.8225,-10.78155,70.725125,40.7788
--4.41,-15.778,-14.7,-11.564,75.215,42.04
--4.37276,-15.49478,-14.35406,-11.50226,72.95855,40.9825
--4.462,-16.005,-14.744,-12.125,74.4475,40.5945
--4.51341,-15.94098,-14.69259,-11.81169,73.712628,41.0892
--4.56192,-15.6816,-14.54112,-11.59488,72.9432,40.3584
--4.56,-15.675,-14.535,-11.4,72.9125,39.938
--4.65696,-15.58656,-14.54112,-11.21472,72.952704,40.56
--4.56288,-15.27168,-14.24736,-11.08128,71.478912,40.3584
--4.7025,-15.4242,-14.4837,-11.19195,72.183375,42.4215
--4.79808,-15.42912,-14.48832,-11.38368,72.2064,40.464
--5.044,-16.005,-14.938,-12.028,74.4572,40.8855
--5.04504,-16.29936,-15.13512,-12.22452,74.472552,41.699
--5.035,-16.055,-14.82,-11.78,72.9125,42.14
--4.8336,-15.4128,-14.3184,-11.4,70.00512,40.6656
--5.0274,-15.7339,-14.6167,-11.6375,71.46356,41.5912
--5.39055,-16.56369,-15.38757,-12.05523,75.222675,42.1245
--5.2822,-16.03868,-15.07828,-11.62084,73.720304,41.8068
--5.21472,-15.64416,-14.61984,-11.45376,71.4696,41.1668
--5.415,-15.96,-14.915,-11.685,72.9125,42.44
--5.626,-16.393,-15.326,-12.222,74.4475,41.5645
--5.51,-16.15,-15.01,-12.065,72.9125,42.44
--5.60736,-16.25184,-15.11136,-12.16512,72.9432,40.3584
--5.72418,-16.59042,-15.42618,-12.32154,74.46285,41.1992
--5.76,-16.512,-15.36,-12.384,73.68,41.95
--6.039,-17.028,-15.84,-12.771,75.9924,42.36
--5.978,-16.954,-15.778,-12.642,75.215,42.55
--6.014,-16.781,-15.617,-12.804,74.3505,42.03
--6.048,-16.704,-15.456,-12.48,73.68,40.3584
--5.92515,-16.3647,-15.2361,-12.2265,72.183375,40.622
--6.08384,-16.6355,-15.39972,-12.45286,72.872996,41.5912
--6.11585,-16.46575,-15.33667,-12.41988,72.204666,41.0892
--5.98975,-16.12625,-15.02045,-12.25595,70.725125,40.7788
--6.27,-16.72,-15.58,-12.635,72.9125,42.85
--6.50034,-17.07552,-15.91128,-13.00068,74.375532,41.5226
--6.56667,-17.34777,-16.17165,-12.93732,75.124665,41.9364
--6.596,-17.266,-16.005,-12.998,74.3505,41.2735
--6.62607,-17.09334,-15.84495,-12.96405,73.616598,42.2334
--6.62607,-17.09334,-15.94098,-12.96405,73.703025,42.1245
--6.93,-17.721,-16.434,-13.365,75.8934,42.66
--6.74784,-17.01216,-15.87168,-13.02048,72.84816,42.1245
--6.958,-17.542,-16.366,-13.426,75.1268,42.76
--6.498,-16.245,-15.162,-12.36425,69.18565,40.8025
--6.6348,-16.587,-15.4812,-12.5324,70.64219,42.0592
--7.154,-17.738,-16.562,-13.328,75.117,43.06
--6.8894,-16.8511,-15.7339,-12.5685,71.37046,41.458
--7.10696,-17.47928,-16.23076,-13.34956,73.624264,42.1008
--7.35,-17.836,-16.66,-13.818,75.1268,41.993
--7.22456,-17.39598,-16.1602,-13.3084,72.872996,41.797
--7.22456,-17.39598,-16.1602,-13.21334,72.872996,41.699
--7.315,-17.385,-16.245,-13.395,72.8175,42.85
--7.8,-18.3,-17.1,-14.1,76.66,42.44
--7.26336,-17.04096,-16.01664,-13.22304,71.395104,41.4869
--7.50974,-17.5861,-16.35032,-13.68864,72.872996,41.8458
--7.3549,-17.3166,-16.1063,-13.3133,71.36115,40.907
--7.3728,-17.23392,-16.03584,-13.27104,70.649856,41.4144
--7.5411,-17.4097,-16.1994,-13.4064,71.37046,41.287
--7.69824,-17.67744,-16.53696,-13.49568,72.857664,42
--7.6342,-17.3166,-16.1994,-13.4995,71.37046,42.5908
--7.885,-17.67,-16.625,-13.775,72.827,41.363
--8.3,-18.8,-17.5,-14.8,76.66,43.65
--7.98504,-18.0614,-16.73056,-13.97382,72.882502,42.4928
--8.415,-18.81,-17.523,-14.652,75.8835,43.46
--7.752,-17.2368,-16.1424,-13.3152,69.9048,41.192
--8.6,-18.9,-17.7,-14.5,76.66,43.25
--8.26848,-17.96256,-16.82208,-13.7808,72.857664,42.5205
--7.9344,-17.2368,-16.1424,-13.5888,69.9048,41.6256
--8.36352,-18.0576,-16.91712,-14.06592,72.857664,41.3376
--8.37045,-17.96355,-16.83495,-14.1075,72.09873,42.4215
--8.45856,-18.24768,-17.01216,-14.256,72.762624,41.232
--8.1168,-17.5104,-16.416,-13.4976,69.91392,40.6315
--8.3808,-17.87904,-16.7616,-13.78176,71.385792,41.6256
--8.38656,-17.69472,-16.5888,-13.824,70.649856,42.288
--8.3904,-17.4192,-16.416,-13.4976,69.91392,41.0875
--9.108,-19.008,-17.82,-14.751,75.7944,43.54
--9.021,-18.721,-17.557,-14.647,74.3602,42.85
--9.114,-19.012,-17.836,-14.7,75.1268,42.777
--8.75328,-18.1584,-16.94784,-14.34048,71.292672,42.1562
--8.8464,-18.1584,-16.94784,-14.06112,71.395104,41.52
--8.9376,-18.25152,-17.12256,-14.112,72.121728,41.3376
--9.21888,-18.62982,-17.57349,-14.59656,73.520568,42.4375
--8.9376,-18.1545,-17.0373,-14.0581,71.27736,42.5908
--9.506,-19.11,-17.934,-15.092,75.0288,42.4928
--9.31,-18.62,-17.48,-14.535,72.732,43.15
--9.60498,-19.20996,-18.03384,-15.19155,75.036456,43.0254
--9.40896,-18.72288,-17.5824,-14.63616,72.857664,43.4214
--9.12285,-18.15355,-17.04775,-14.1911,70.55004,43.168
--9.9,-19.503,-18.315,-15.246,75.8934,44.46
--9.69903,-18.91791,-17.76555,-14.69259,73.520568,43.5006
--9.999,-19.503,-18.414,-15.246,75.7845,43.25
--9.69408,-18.81792,-17.67744,-14.82624,72.762624,42.9264
--9.79506,-19.10997,-17.86158,-14.88465,73.520568,42.0592
--9.3936,-18.1488,-17.0544,-14.2272,69.82272,40.907
--9.88624,-18.91694,-17.77622,-14.7343,72.777936,41.7682
--9.68448,-18.53088,-17.41344,-14.4336,71.292672,42.5442
--10.185,-19.4,-18.236,-15.035,74.2632,42.3405
--10.07424,-19.008,-17.86752,-14.82624,72.772128,41.424
--10.494,-19.8,-18.612,-15.444,75.7944,42.95
--10.28412,-19.404,-18.23976,-15.23214,74.278512,41.993
--10.593,-19.8,-18.711,-15.741,75.7944,43.94
--10.8,-20.1,-18.9,-15.7,76.56,43.94
--10.26648,-19.10706,-17.96634,-15.01948,72.777936,42.7285
--10.46727,-19.39806,-18.14967,-15.17274,73.520568,42.8352
--10.464,-19.296,-18.24,-15.168,73.5072,42.1824
--10.2432,-18.81024,-17.6928,-14.71296,71.292672,42.6218
--10.76922,-19.50102,-18.4338,-15.42618,74.288214,43.4214
--10.1232,-18.4224,-17.328,-14.5008,69.82272,41.743
--10.54944,-19.29312,-18.15264,-15.30144,72.762624,44.1936
--11.088,-20.196,-18.909,-15.741,75.7944,43.5006
--10.63104,-19.19232,-18.06336,-15.14688,72.027648,43.463
--10.63104,-19.19232,-18.06336,-14.86464,72.027648,43.1424
--10.72512,-19.09824,-18.06336,-15.0528,72.027648,42.7776
--11.4,-20.4,-19.2,-16,76.56,44.05
--10.7088,-18.99648,-17.87904,-14.80608,71.292672,42.3405
--10.80192,-18.99648,-17.87904,-14.8992,71.301984,42.5442
--11.02,-19.38,-18.335,-15.2,72.732,43.94
--11.466,-19.992,-18.914,-15.778,75.0288,44.639
--10.89504,-18.99648,-17.97216,-15.08544,71.301984,42.7776
--11.682,-20.295,-19.107,-15.84,75.7944,43.7184
--11.33272,-19.59216,-18.53572,-15.3664,73.528224,44.345
--11.424,-19.68,-18.624,-15.36,73.4976,42.96
--11.5248,-19.6882,-18.53572,-15.55848,73.528224,44.149
--11.52,-19.68,-18.624,-15.456,73.4976,43.5168
--11.2651,-19.0855,-18.0614,-14.9891,71.27736,43.9628
--11.0352,-18.7872,-17.6928,-14.6832,69.73152,42.617
--11.3582,-19.1786,-18.0614,-15.1753,71.18426,44.0412
--12.2,-20.7,-19.5,-16.3,76.46,44.45
--11.33445,-18.9829,-17.96925,-14.9283,70.45789,43.0635
--11.93346,-19.98612,-18.9189,-15.62022,74.191194,43.7472
--12.152,-20.286,-19.11,-15.778,74.9308,43.855
--12.028,-19.982,-18.915,-15.617,74.1662,43.94
--12.375,-20.493,-19.305,-16.137,75.6954,43.7184
--12.125,-20.079,-18.915,-15.908,74.1662,44.45
--11.97,-19.665,-18.62,-15.675,72.637,44.34
--11.4912,-18.8784,-17.8752,-14.6832,69.73152,41.743
--12.573,-20.493,-19.404,-16.137,75.6954,43.86
--11.82624,-19.27584,-18.25152,-15.17856,71.199552,42.5442
--12.04224,-19.56864,-18.43968,-15.5232,71.933568,42.5664
--12.16512,-19.76832,-18.62784,-15.58656,72.667584,42.5664
--12.255,-19.76,-18.62,-15.485,72.6465,42.123
--11.856,-19.0608,-17.9664,-15.048,69.74064,42.408
--12.4839,-20.07027,-18.91791,-15.74892,73.434141,43.3008
--12.35,-19.855,-18.715,-15.485,72.637,44.34
--12.32055,-19.65645,-18.52785,-15.51825,71.91063,44.0154
--11.82275,-18.86225,-17.77925,-14.801,69.014175,42.902
--12.54792,-19.86754,-18.82188,-15.6849,72.682876,43.2768
--12.64032,-19.86336,-18.81792,-15.6816,72.667584,43.5006
--12.77199,-20.07027,-19.01394,-15.74892,73.434141,44.4114
--12.635,-19.95,-18.81,-15.77,72.637,44.35
--12.60806,-19.66481,-18.62982,-15.43076,71.950623,43.4075
--12.86802,-19.87821,-17.86158,-15.74892,73.424538,44.1936
--13.095,-19.206,-16.781,-16.975,74.1662,44.05
--12.69675,-17.6814,-15.4242,-16.3647,71.920035,44.1936
--13.19472,-17.36658,-14.94108,-16.9785,74.181492,43.7472
--12.274,-15.7035,-13.1765,-16.33525,69.00515,42.123
--12.62455,-16.587,-13.91465,-13.2696,70.45789,42.5125
--12.89033,-18.15937,-15.43076,-14.96031,71.950623,44.0768
--12.4545,-17.689,-15.162,-14.16925,69.00515,43.453
--13.25352,-18.91988,-16.42284,-14.79016,73.441788,44.149
--12.9409,-18.3407,-16.1063,-14.1512,71.10047,44.4234
--13.21334,-18.63176,-16.54044,-14.35406,72.692382,44.5312
--13.07295,-18.4338,-16.45875,-14.2956,71.91063,43.7184
--14,-19.6,-17.6,-15.5,76.46,43.86
--13.3,-18.62,-16.815,-14.44,72.637,44.45
--13.1271,-18.2476,-16.5718,-14.2443,71.18426,42.8925
--13.26528,-18.43968,-16.84032,-14.48832,71.933568,43.169
--13.774,-19.109,-17.46,-15.132,74.1662,45.15
--13.36078,-18.62982,-17.12438,-14.86622,71.950623,44.0865
--13.49852,-19.012,-17.39598,-15.01948,72.692382,42.7285
--13.17745,-18.43,-16.9556,-14.46755,70.45789,41.287
--13.17745,-18.43,-16.9556,-14.5597,70.36574,41.363
--13.68,-19,-17.575,-15.01,72.637,43.36
--13.5432,-18.81,-17.4933,-14.8599,71.91063,43.5006
--14.256,-19.899,-18.414,-15.642,75.6954,44.34
--13.92435,-19.30203,-17.95761,-15.26877,73.424538,43.6888
--13.224,-18.3312,-17.1456,-14.4096,69.73152,41.743
--13.4539,-18.52215,-17.3242,-14.65185,70.374955,42.2338
--13.73568,-19.00416,-17.68704,-14.86464,71.839488,41.6256
--13.4539,-18.6143,-17.41635,-14.65185,70.36574,41.363
--13.965,-19.19,-17.955,-15.01,72.6465,40.983
--14.553,-20.097,-18.711,-15.84,75.6063,43.5006
--14.35896,-19.79208,-18.4338,-15.71724,74.084472,42.875
--14.504,-19.992,-18.718,-15.778,74.8426,42.4928
--14.06888,-19.4873,-18.15646,-15.39972,72.597322,42.0592
--14.45598,-19.8891,-18.62784,-15.81426,74.094174,42.4928
--14.155,-19.475,-18.24,-15.39,72.542,41.667
--14.45598,-19.8891,-18.62784,-15.5232,74.094174,43.0612
--13.965,-19.0855,-17.8752,-14.9891,71.10047,42.6692
--13.968,-19.0896,-17.97216,-15.27168,71.115744,43.0656
--13.68,-18.7872,-17.6016,-14.9568,69.64944,41.7984
--13.91616,-18.98496,-17.78688,-14.92992,70.382592,41.904
--14.20608,-19.38048,-18.25152,-15.42912,71.839488,41.6256
--14.30016,-19.47456,-18.25152,-15.24096,71.848896,43.267
--14.59808,-19.88028,-18.63176,-15.55848,73.345748,42.6692
--14.44912,-19.67742,-18.44164,-15.39972,72.587816,42.6218
--14.09895,-19.07505,-17.96925,-15.02045,70.36574,41.287
--14.09895,-19.07505,-17.96925,-15.1126,70.36574,41.8475
--14.39577,-19.57072,-18.34755,-15.43076,71.847124,42.0592
--14.4837,-19.5624,-18.4338,-15.51825,71.81658,42.5205
--14.34048,-19.36896,-18.25152,-15.27168,71.115744,42.2338
--14.938,-20.176,-19.012,-15.908,74.0692,43.06
--14.725,-19.855,-18.62,-15.675,72.4565,40.983
--14.88465,-20.07027,-18.91791,-15.84495,73.251684,42.2338
--14.57775,-19.65645,-18.52785,-15.70635,71.72253,41.0875
--15.444,-20.691,-19.503,-16.434,75.5073,43.25
--14.37696,-19.26144,-18.15552,-15.29856,70.281216,41.4144
--15.132,-20.273,-19.109,-16.102,73.9819,41.7682
--15.229,-20.273,-19.206,-16.102,73.9722,41.5645
--14.915,-19.95,-18.81,-15.96,72.4565,40.8025
--14.16925,-18.9525,-17.8695,-15.07175,68.833675,41.0875
--15.326,-19.885,-17.848,-16.102,73.9722,43.35
--14.8599,-18.4338,-15.89445,-16.5528,71.74134,42.7185
--15.741,-18.513,-15.741,-17.622,75.4974,43.06
--15.264,-17.088,-14.688,-16.704,73.2192,43.25
--14.65185,-15.94195,-13.2696,-16.0341,70.27359,40.8025
--15.11136,-17.48736,-14.44608,-14.256,72.477504,42.1245
--15.048,-18.33975,-15.33015,-15.048,71.731935,41.667
--14.744,-18.15355,-15.4812,-14.46755,70.282805,42.2338
--15.2096,-18.82188,-16.25526,-14.7343,72.407202,41.5645
--14.9891,-18.4338,-16.1063,-14.2443,70.91427,41.699
--15.778,-19.306,-17.052,-14.896,74.6564,42.85
--15.46244,-18.91988,-16.807,-14.59808,73.153668,42.2772
--16.2,-19.7,-17.7,-15.2,76.18,43.06
--14.9283,-18.15355,-16.31055,-14.09895,70.190655,41.0875
--15.87762,-19.30797,-17.44578,-14.99553,74.654217,42.6294
--15.876,-19.306,-17.64,-15.19,74.6466,43.54
--15.39972,-18.82188,-17.20586,-14.82936,72.407202,42.1562
--16.137,-19.8,-18.018,-15.642,75.4083,44.0055
--15.49152,-19.10304,-17.39232,-14.92128,72.391968,42.8175
--15.49478,-19.10706,-17.49104,-15.01948,72.407202,43.5918
--15.17856,-18.71712,-17.2272,-14.61984,70.929504,42.7285
--15.27168,-18.71712,-17.2272,-14.61984,70.836384,42.1562
--15.58,-19.19,-17.67,-15.01,72.3615,41.743
--15.1126,-18.6143,-17.23205,-14.65185,70.098505,41.9525
--15.675,-19.19,-17.86,-15.295,72.2665,44.24
--15.8466,-19.49612,-18.05552,-15.27036,73.057628,43.169
--16.0083,-19.79208,-18.33678,-15.5232,73.803114,43.3552
--14.89125,-18.411,-17.1475,-14.6205,68.6622,41.8475
--15.6816,-19.38816,-18.0576,-15.2064,72.296928,43.5006
--15.77,-19.38,-18.05,-15.295,72.2665,41.458
--15.2969,-18.7986,-17.60065,-14.83615,70.098505,41.743
--15.936,-19.584,-18.336,-15.552,73.0368,42.672
--16.36767,-20.19006,-18.81792,-15.87762,74.556207,43.4214
--16.20234,-19.98612,-18.62784,-15.71724,73.803114,43.5006
--15.38905,-18.9829,-17.78495,-15.02045,70.10772,43.2232
--15.87168,-19.67328,-18.34272,-15.49152,72.211392,41.904
--16.296,-20.079,-18.818,-16.005,73.7976,42.9128
--15.96,-19.665,-18.43,-15.58,72.1715,43.46
--16.13304,-19.87821,-18.62982,-15.55686,72.953991,42.6218
--16.13304,-19.97424,-18.72585,-15.74892,72.953991,43.0098
--16.23076,-19.97632,-18.7278,-15.65452,72.971192,44.247
--15.7339,-19.3648,-18.1545,-15.4546,70.72807,41.8475
--15.57335,-19.1672,-18.0614,-15.38905,70.006355,42.332
--16.731,-20.592,-19.404,-16.434,75.2202,43.2135
--16.49,-20.273,-19.012,-16.296,73.6909,42.7285
--17,-20.9,-19.6,-16.5,75.99,44.76
--15.3425,-18.86225,-17.77925,-14.89125,68.57195,42.693
--16.1568,-19.9584,-18.72288,-15.77664,72.211392,43.2384
--16.3268,-20.1684,-18.91988,-15.8466,72.971192,44.7468
--16.1568,-19.9584,-18.72288,-15.6816,72.211392,44.7975
--16.42113,-20.1663,-19.01394,-16.03701,72.819549,43.7085
--15.92352,-19.46208,-18.34464,-14.8992,70.612896,42.288
--16.08255,-18.90405,-16.929,-15.9885,71.318115,44.5995
--15.75765,-17.6928,-15.38905,-15.6655,69.877345,43.4075
--15.85152,-16.95744,-14.65344,-16.49664,69.894144,43.0656
--16.68744,-17.07552,-14.65002,-17.36658,73.570266,44.4234
--16.34688,-16.25184,-13.59072,-16.06176,72.068832,43.7184
--16.01664,-17.50656,-14.61984,-14.52672,70.612896,43.7955
--15.7776,-17.8752,-15.1392,-14.592,69.15696,42.5125
--16.61492,-18.91988,-16.23076,-14.8862,72.827132,44.8154
--15.94368,-18.24768,-15.85152,-14.2848,69.884928,42.8544
--16.608,-18.912,-16.608,-14.784,72.7968,44.56
--17.127,-19.503,-17.226,-15.048,75.0717,45.0945
--16.3647,-18.52785,-16.5528,-14.4837,71.32752,44.4906
--17.052,-19.306,-17.346,-14.994,74.3134,43.3552
--16.20288,-18.34464,-16.57536,-14.24736,70.612896,43.4075
--16.3647,-18.52785,-16.7409,-14.38965,71.318115,42.788
--17.4,-19.8,-18,-15.7,75.83,44.45
--16.2925,-18.5269,-16.8511,-14.7098,70.59773,42.788
--16.12625,-18.43,-16.7713,-14.5597,69.79441,43.5918
--16.296,-18.71712,-17.04096,-14.61984,70.519776,43.8336
--16.9785,-19.59804,-17.85168,-15.32916,73.473246,45.9032
--16.2925,-18.8062,-17.2235,-14.6167,70.50463,43.2725
--16.2925,-18.7131,-17.3166,-14.8029,70.50463,45.031
--16.807,-19.40008,-17.86344,-15.27036,72.731092,45.717
--16.2925,-18.8062,-17.4097,-14.8029,70.50463,45.8248
--16.896,-19.488,-18.048,-15.552,72.7008,44.496
--16.90304,-19.59216,-18.05552,-15.65452,72.740696,45.9032
--16.2184,-18.89075,-17.41635,-14.9283,69.785195,44.4648
--16.72,-19.475,-18.05,-15.295,71.9435,46.03
--16.99731,-19.68615,-18.2457,-15.3648,72.723519,44.0768
--16.31232,-18.8928,-17.60256,-14.92992,69.792768,44.9664
--17.34777,-20.09205,-18.71991,-15.77961,74.222973,45.2826
--17.17254,-19.8891,-18.62784,-15.71724,73.405332,46.697
--16.65393,-19.38254,-18.06528,-15.43076,71.188494,47.3845
--16.65393,-19.38254,-18.15937,-15.33667,71.179085,44.5715
--16.65393,-19.47663,-18.15937,-15.43076,71.179085,44.7558
--16.4027,-19.07505,-17.8771,-15.02045,69.72069,44.5075
--16.91712,-19.67328,-18.43776,-15.39648,71.89776,44.784
--17.09334,-19.87821,-18.62982,-15.65289,72.656298,45.1438
--17.26956,-20.08314,-18.82188,-15.81426,73.405332,47.9655
--17.8,-20.8,-19.5,-16.3,75.66,47.75
--16.4027,-19.1672,-17.96925,-15.2969,69.72069,46.303
--17.8,-20.8,-19.6,-16.6,75.56,48.16
--17.36658,-20.18016,-19.01592,-15.91128,73.308312,46.501
--17.9,-20.9,-19.6,-16.5,75.56,49.25
--17.36658,-20.27718,-19.01592,-16.0083,73.308312,47.6574
--16.83495,-19.65645,-18.52785,-15.6123,71.06418,44.7735
--17.01574,-19.86754,-18.72682,-15.77996,71.827336,46.7928
--17.1,-19.95,-18.715,-15.865,71.7725,46.35
--17.28,-20.16,-19.008,-16.032,72.528,48.15
--17.6418,-20.5821,-19.40598,-16.26966,74.056356,46.0746
--16.7616,-19.5552,-18.43776,-15.3648,70.361472,45.7344
--17.82,-20.097,-17.919,-16.83,74.8044,46.84
--16.9344,-18.15744,-15.80544,-15.89952,71.086848,46.0224
--17.46,-17.848,-15.423,-17.751,73.2835,47.13
--17.738,-17.346,-14.798,-18.032,74.039,47.34
--16.67915,-15.75765,-13.36175,-15.75765,69.62854,45.828
--16.67915,-17.41635,-14.5597,-14.28325,69.62854,46.1985
--17.20586,-18.63176,-15.87502,-15.11454,71.81783,44.0768
--17.376,-19.008,-16.32,-15.072,72.528,43.9104
--18.1,-19.8,-17.2,-15.7,75.55,45.65
--17.20224,-18.81792,-16.53696,-14.44608,71.812224,45.0945
--17.836,-19.306,-17.15,-14.994,74.039,45.74
--17.47746,-18.91791,-16.90128,-14.78862,72.550665,43.5045
--17.47928,-18.91988,-16.99908,-14.69412,72.567824,45.1094
--17.47746,-18.91791,-17.09334,-14.78862,72.560268,44.9595
--17.29,-18.81,-17.1,-14.725,71.7725,43.2725
--17.29,-18.81,-17.1,-14.725,71.782,44.0325
--17.472,-19.104,-17.376,-14.976,72.5376,46.36
--17.472,-19.296,-17.568,-15.264,72.528,46.25
--17.83782,-19.79802,-18.03384,-15.6816,74.056356,45.2034
--17.93583,-19.79802,-18.13185,-15.6816,74.046555,45.7875
--17.934,-19.796,-18.228,-15.582,74.039,45.4328
--17.39232,-19.19808,-17.77248,-15.11136,71.80272,43.6224
--16.6896,-18.5136,-17.0544,-14.5008,68.9016,44.878
--17.39232,-19.29312,-17.86752,-15.2064,71.80272,43.728
--18.117,-20.097,-18.612,-15.741,74.7945,44.0055
--17.57349,-19.59012,-18.14967,-15.55686,72.550665,45.3816
--18.216,-20.295,-18.81,-15.939,74.8044,45.0945
--18.216,-20.295,-18.81,-16.038,74.8044,45.66
--17.48,-19.475,-18.145,-15.485,71.782,46.25
--17.48,-19.57,-18.145,-15.39,71.782,43.7285
--18.03384,-20.19006,-18.81792,-15.87762,74.056356,44.9856
--17.85168,-19.98612,-18.62784,-15.81426,73.308312,45.1094
--17.48736,-19.57824,-18.24768,-15.49152,71.812224,44.0064
--18.03384,-20.28807,-18.91593,-15.97563,73.968147,44.9856
--17.848,-20.079,-18.818,-15.811,73.1962,47.34
--17.48736,-19.67328,-18.43776,-15.58656,71.717184,47.1636
--17.40665,-19.47663,-18.25346,-15.43076,71.009723,45.1535
--17.2272,-19.36896,-18.06528,-15.45792,70.268352,45.8228
--17.39925,-19.5624,-18.33975,-15.51825,70.97013,44.8767
--17.4048,-19.56864,-18.3456,-15.71136,70.992768,43.953
--18.315,-20.691,-19.404,-16.533,74.7054,45.4905
--17.04775,-19.25935,-18.0614,-15.20475,69.53639,42.408
--17.76,-20.064,-18.816,-15.936,72.4416,45.04
--17.39925,-19.65645,-18.52785,-15.6123,70.97013,43.6095
--17.9487,-20.3742,-19.11294,-16.0083,73.211292,43.267
--17.4048,-19.7568,-18.53376,-15.61728,70.992768,43.1424
--17.4933,-19.7505,-18.52785,-15.6123,70.97013,44.4906
--17.49888,-19.7568,-18.62784,-15.61728,70.992768,43.2384
--17.50074,-19.47663,-17.68892,-15.52485,71.000314,44.8625
--18.414,-19.701,-17.028,-16.929,74.7054,47.53
--17.3166,-17.5028,-15.0822,-16.1994,70.25326,46.0012
--17.67744,-17.1072,-14.54112,-17.20224,71.622144,44.4015
--16.9632,-15.8688,-13.3152,-16.3248,68.72832,44.1888
--18.042,-17.363,-14.356,-13.677,73.1089,46.35
--18.32787,-18.91593,-15.87762,-15.48558,73.860336,44.7975
--17.95948,-19.01592,-16.13472,-15.17432,72.375744,44.9232
--18.32787,-19.40598,-16.6617,-15.19155,73.860336,44.5896
--17.4097,-18.4338,-16.0132,-14.4305,70.16016,43.855
--17.952,-19.008,-16.704,-14.688,72.3456,42.7776
--18.32787,-19.30797,-17.15175,-15.19155,73.860336,45.2727
--17.59296,-18.53376,-16.55808,-14.48832,70.898688,44.4234
--18.139,-19.109,-17.169,-14.938,73.0992,45.25
--18.326,-19.306,-17.444,-14.994,73.8626,44.16
--18.326,-19.404,-17.542,-15.092,73.8528,44.64
--18.326,-19.502,-17.738,-15.484,73.8528,44.34
--17.765,-19.095,-17.29,-15.105,71.592,45.44
--18.23976,-19.50102,-17.75466,-15.32916,73.114272,43.267
--18.8,-20.2,-18.4,-15.7,75.36,44.56
--17.3242,-18.6143,-17.04775,-14.65185,69.44424,42.3405
--18.42588,-19.79802,-18.22986,-15.58359,73.860336,44.5896
--18.236,-19.594,-18.042,-15.423,73.0992,44.24
--18.236,-19.691,-18.139,-15.52,73.0992,45.15
--16.967,-18.32075,-16.967,-14.44,68.0124,42.6835
--18.8,-20.4,-18.9,-16.2,75.36,45.25
--17.32608,-18.80064,-17.41824,-14.83776,69.460992,43.5264
--18.05552,-19.6882,-18.2476,-15.55848,72.375744,43.3552
--17.32608,-18.8928,-17.5104,-14.92992,69.451776,43.1328
--17.6814,-19.3743,-17.96355,-15.2361,70.78203,42.5125
--18.048,-19.776,-18.336,-15.648,72.2496,46.54
--17.5028,-19.1786,-17.8752,-15.1753,70.06706,42.332
--17.41635,-18.9829,-17.6928,-14.9283,69.35209,43.9701
--18.144,-19.872,-18.528,-15.648,72.2496,45.33
--18.522,-20.286,-18.914,-15.974,73.7548,44.247
--17.59968,-19.27584,-18.06528,-15.3648,70.082112,43.1165
--18.33678,-20.18016,-18.82188,-16.10532,73.017252,44.8154
--18.14967,-19.97424,-18.72585,-15.84495,72.281781,43.8966
--17.77545,-19.5624,-18.33975,-15.4242,70.791435,44.1936
--18.144,-20.064,-18.72,-15.84,72.2496,42.4704
--17.2368,-19.0608,-17.8752,-15.2304,68.63712,41.9425
--18.711,-20.691,-19.404,-16.335,74.5074,44.7975
--18.33678,-20.27718,-19.01592,-16.0083,73.017252,45.1935
--17.05725,-18.9525,-17.689,-15.07175,67.931175,42.6075
--18.711,-20.79,-19.503,-16.335,74.5074,45.2826
--18.522,-20.58,-19.306,-16.366,73.7548,43.6688
--18.05,-19.95,-18.715,-15.865,71.5065,43.36
--17.328,-19.2432,-18.0576,-15.4128,68.63712,42.6075
--18.4338,-20.18016,-18.04572,-15.91128,73.017252,43.4532
--17.328,-17.9664,-15.8688,-16.1424,68.63712,43.453
--18.05,-17.765,-15.39,-16.91,71.497,44.94
--17.328,-16.5072,-14.136,-16.0512,68.63712,42
--17.5085,-16.0341,-13.73035,-16.12625,69.361305,43.1262
--18.81,-17.721,-14.85,-13.959,74.5074,45.44
--18.2476,-18.63176,-15.65452,-15.17432,72.279704,43.3454
--18.43,-19.109,-16.296,-15.423,73.0119,43.35
--18.81,-19.701,-16.929,-15.444,74.5074,43.75
--17.7821,-18.4338,-16.1063,-14.5236,70.06706,42.503
--18.336,-19.008,-16.704,-14.784,72.2496,42.8544
--17.6928,-18.34464,-16.296,-14.24736,70.082112,42.4704
--17.7821,-18.3407,-16.3856,-14.1512,70.06706,42.123
--18.15264,-18.81792,-16.91712,-14.7312,71.527104,44.1144
--18.15264,-18.81792,-17.01216,-14.63616,71.527104,42.672
--18.527,-19.206,-17.363,-15.132,73.0022,45.0371
--17.96928,-18.72192,-17.02848,-14.77056,70.719936,44.112
--18.527,-19.497,-17.654,-15.423,72.9052,43.1165
--18.53082,-19.59804,-17.85168,-15.32916,72.929934,42.7672
--18.909,-19.998,-18.216,-15.543,74.4084,43.7976
--18.34173,-19.39806,-17.76555,-15.17274,72.185751,43.4214
--17.78592,-18.90336,-17.32032,-14.8992,69.998304,42.9504
--18.718,-19.894,-18.326,-15.68,73.6666,46.35
--17.7821,-18.8993,-17.4097,-14.7098,69.97396,43.3552
--18.53082,-19.69506,-18.23976,-15.5232,72.929934,43.2036
--18.145,-19.38,-17.955,-15.2,71.4115,40.983
--18.718,-19.992,-18.522,-15.778,73.6568,44.15
--18.71991,-20.09205,-18.6219,-15.77961,73.664316,43.7184
--17.60065,-18.9829,-17.5085,-15.02045,69.269155,43.4075
--17.4192,-18.7872,-17.4192,-14.9568,68.54592,42.6835
--18.71991,-20.19006,-18.81792,-15.97563,73.664316,44.1144
--17.78592,-19.18272,-17.87904,-15.17856,69.988992,43.6888
--17.4192,-18.8784,-17.6016,-14.9568,68.54592,43.728
--17.5104,-18.8784,-17.6016,-14.8656,68.55504,42.384
--18.24768,-19.67328,-18.34272,-15.6816,71.432064,43.5996
--18.0576,-19.5624,-18.2457,-15.33015,70.68798,43.8966
--17.69472,-19.16928,-17.87904,-15.2064,69.267456,42.7776
--18.0576,-19.5624,-18.2457,-15.4242,70.697385,44.4906
--17.5104,-18.9696,-17.784,-15.1392,68.54592,42.9875
--18.816,-20.482,-19.11,-16.268,73.6568,46.03
--19.008,-20.691,-19.404,-16.236,74.4183,45.15
--19.008,-20.79,-19.404,-16.434,74.4183,45.5697
--17.328,-18.9525,-17.77925,-14.89125,67.840925,42.617
--18.0576,-19.7505,-18.52785,-15.51825,70.68798,42.2275
--18.62784,-20.3742,-19.11294,-16.0083,72.920232,44.3025
--18.24768,-19.9584,-18.72288,-15.87168,71.432064,45.0945
--17.8752,-19.551,-18.4338,-15.4546,69.97396,42.5125
--18.43968,-20.07236,-18.53572,-15.46244,72.183664,44.0314
--18.0576,-18.81,-16.7409,-16.08255,70.68798,42.6075
--18.914,-18.62,-16.17,-17.542,73.6568,43.4532
--18.72486,-17.56062,-15.13512,-17.26956,72.920232,43.561
--18.335,-16.625,-14.155,-17.005,71.4115,43.46
--18.335,-16.625,-13.87,-13.585,71.4115,44.45
--18.721,-18.624,-15.617,-15.423,72.9052,44.34
--17.41825,-17.77925,-15.07175,-14.34975,67.74165,42.408
--18.53379,-19.01394,-16.3251,-15.07671,72.089721,43.3008
--17.41825,-17.8695,-15.523,-13.8985,67.750675,42.693
--18.335,-18.81,-16.435,-14.63,71.3165,45.33
--18.53379,-18.91791,-16.80525,-14.78862,72.089721,44.0055
--18.914,-19.306,-17.248,-14.994,73.5686,43.86
--17.78495,-18.2457,-16.31055,-14.1911,69.177005,42.332
--18.15165,-18.6219,-16.7409,-14.4837,70.59393,46.1835
--18.721,-19.206,-17.46,-15.035,72.8082,43.75
--18.72486,-19.30698,-17.56062,-15.32916,72.823212,44.1936
--17.41825,-18.14025,-16.4255,-14.34975,67.750675,41.743
--17.9683,-18.8062,-17.0373,-14.8029,69.88086,42.9828
--18.721,-19.594,-17.848,-15.326,72.8082,44.45
--18.72486,-19.59804,-17.9487,-15.42618,72.832914,43.9628
--18.721,-19.691,-18.042,-15.52,72.8082,45.25
--17.78495,-18.70645,-17.23205,-14.744,69.177005,44.3678
--17.6016,-18.5136,-17.1456,-14.5008,68.45472,43.453
--17.9683,-18.9924,-17.5028,-14.8029,69.88086,41.667
--18.72486,-19.79208,-18.23976,-15.42618,72.823212,44.9856
--18.721,-19.788,-18.333,-15.714,72.8082,42.2241
--17.78495,-18.89075,-17.41635,-15.02045,69.16779,43.4075
--18.15165,-19.3743,-17.8695,-15.2361,70.59393,42.408
--19.107,-20.394,-18.909,-16.038,74.3193,44.4807
--17.8771,-18.89075,-17.60065,-15.1126,69.16779,42.8925
--18.82188,-19.98612,-18.62784,-15.91128,72.832914,43.7976
--19.012,-20.188,-18.816,-15.876,73.5588,43.94
--18.2457,-19.46835,-18.15165,-15.33015,70.59393,41.1825
--18.0614,-19.2717,-17.9683,-15.2684,69.88086,43.953
--18.43,-19.665,-18.43,-15.58,71.307,41.838
--18.624,-19.872,-18.624,-15.84,72.0576,43.75
--18.44164,-19.77248,-18.44164,-15.58984,71.361542,43.0098
--18.44164,-19.77248,-18.5367,-15.58984,71.352036,45.1094
--18.82188,-20.27718,-18.9189,-16.10532,72.735894,44.3025
--18.06528,-19.46208,-18.25152,-15.17856,69.802752,41.4144
--18.25152,-19.66272,-18.43968,-15.33504,70.616448,43.344
--19.206,-20.691,-19.404,-16.335,74.2203,43.6095
--18.06528,-19.46208,-18.34464,-15.45792,69.812064,43.056
--19.206,-20.691,-19.503,-16.335,74.2203,44.86
--18.818,-20.37,-19.109,-16.102,72.7209,45.25
--17.8771,-19.3515,-18.15355,-15.2969,69.084855,42.2275
--17.8771,-19.3515,-18.2457,-15.2969,69.07564,41.3535
--18.82188,-20.3742,-19.11294,-16.20234,72.745596,44.1936
--18.2457,-19.84455,-18.6219,-15.51825,70.509285,42.123
--19.206,-20.79,-19.503,-16.038,74.2203,45.2727
--17.87904,-18.52416,-16.49664,-15.48288,69.092352,42.672
--18.25152,-18.06336,-15.71136,-16.84032,70.531776,44.247
--18.62982,-17.57349,-15.26877,-17.18937,71.897661,45.5697
--18.72,-16.896,-14.496,-17.28,71.8848,45.74
--18.5328,-16.25184,-13.59072,-16.34688,71.156448,44.4015
--18.72585,-18.05364,-14.88465,-14.78862,71.993691,43.5918
--18.9189,-19.01592,-16.0083,-15.42618,72.735894,44.5312
--18.9189,-19.20996,-16.39638,-15.13512,72.735894,46.4706
--18.9189,-19.20996,-16.59042,-14.94108,72.638874,44.247
--18.72585,-19.01394,-16.61319,-14.78862,71.993691,44.8767
--17.784,-18.0576,-15.8688,-14.136,68.28144,42.408
--18.5328,-18.72288,-16.72704,-14.44608,71.156448,44.4015
--17.784,-17.9664,-16.1424,-13.9536,68.28144,42.5664
--18.1545,-18.3407,-16.5718,-14.4305,69.70397,45.2172
--18.9189,-19.20996,-17.36658,-14.94108,72.638874,44.4807
--18.1584,-18.43776,-16.7616,-14.52672,69.812064,43.6888
--18.33975,-18.81,-17.02305,-14.8599,70.509285,45.8865
--18.5328,-19.10304,-17.39232,-15.01632,71.156448,45.7875
--18.72585,-19.39806,-17.66952,-15.46083,71.897661,46.0746
--18.72585,-19.39806,-17.76555,-15.3648,71.897661,47.2681
--17.784,-18.5136,-16.9632,-14.6832,68.37264,45.6288
--18.1545,-18.8993,-17.4097,-14.8029,69.70397,43.833
--18.5328,-19.38816,-17.77248,-15.30144,71.156448,46.6587
--18.915,-19.788,-18.236,-15.52,72.7209,49.65
--18.525,-19.38,-17.955,-15.485,71.136,45.95
--18.1584,-19.0896,-17.59968,-15.08544,69.718944,44.6784
--19.11,-20.09,-18.62,-15.974,73.4706,47.6574
--18.1545,-19.1786,-17.7821,-15.0822,69.79707,49.9212
--18.1584,-19.18272,-17.78592,-15.27168,69.812064,45.7344
--18.34755,-19.47663,-18.06528,-15.24258,70.539273,44.9595
--18.915,-19.982,-18.624,-15.811,72.7209,46.9965
--19.11195,-20.28807,-18.91593,-15.97563,73.478097,47.5596
--18.72585,-19.87821,-18.53379,-15.74892,71.993691,48.2724
--18.72,-19.968,-18.624,-15.936,72.0672,50.25
--18.3456,-19.56864,-18.25152,-15.61728,70.616448,46.7904
--18.915,-20.176,-18.915,-15.908,72.8179,46.2108
--18.1584,-19.46208,-18.1584,-15.45792,69.905184,45.0624
--18.5367,-19.86754,-18.63176,-15.87502,71.361542,46.0265
--19.305,-20.79,-19.404,-16.335,74.3094,47.64
--19.404,-20.79,-19.404,-16.533,74.3193,48.7575
--19.11,-20.58,-19.306,-15.974,73.5686,47.34
--17.59875,-18.9525,-17.77925,-14.89125,67.8319,46.968
--17.8752,-19.152,-17.9664,-15.1392,68.46384,46.303
--18.525,-19.95,-18.715,-15.96,71.3165,46.0275
--19.11,-20.286,-18.228,-16.17,73.5588,49.245
--18.915,-19.012,-16.684,-17.072,72.8082,47.8501
--19.404,-18.513,-16.038,-17.523,74.3193,48.1437
--19.012,-17.46,-15.035,-17.654,72.8179,48.15
--18.82384,-16.71096,-14.11788,-17.2872,72.097228,46.109
--17.689,-16.245,-13.44725,-12.90575,67.750675,46.132
--18.43968,-18.25152,-15.24096,-15.0528,70.625856,46.5108
--17.689,-17.8695,-15.162,-14.2595,67.750675,45.1535
--18.62784,-18.81792,-16.1568,-14.82624,71.432064,46.9728
--18.82188,-19.01394,-16.51716,-14.88465,72.176148,44.7558
--18.4338,-18.6219,-16.3647,-14.4837,70.68798,45.0775
--18.82188,-18.91791,-16.80525,-14.78862,72.185751,47.1636
--18.816,-18.912,-16.896,-14.784,72.0672,47.23
--18.25152,-18.43776,-16.57536,-14.15424,69.988992,46.5018
--18.25152,-18.43776,-16.57536,-14.52672,69.988992,44.9595
--18.82384,-19.01592,-17.2872,-14.98224,72.193268,46.0012
--18.44164,-18.818,-17.03029,-14.86622,70.718044,44.4648
--17.689,-18.14025,-16.4255,-14.34975,67.8319,43.7285
--19.208,-19.796,-17.934,-15.386,73.6568,46.1874
--18.43968,-19.00416,-17.31072,-14.86464,70.710528,44.9664
--18.82188,-19.39806,-17.76555,-15.07671,72.185751,46.6587
--19.012,-19.691,-18.042,-15.52,72.9052,44.8625
--18.63176,-19.29718,-17.77622,-15.01948,71.447096,45.8248
--18.62,-19.285,-17.86,-14.915,71.402,43.6525
--17.689,-18.411,-16.967,-14.34975,67.840925,43.6525
--17.689,-18.411,-17.05725,-14.44,67.8319,43.833
--19.208,-19.992,-18.522,-15.778,73.6568,45.5112
--18.43968,-19.2864,-17.8752,-15.24096,70.710528,44.1888
--18.82384,-19.6882,-18.2476,-15.55848,72.183664,45.1094
--18.816,-19.776,-18.336,-15.456,72.1536,43.824
--18.43968,-19.38048,-18.06336,-15.33504,70.710528,44.4234
--18.2476,-19.1786,-17.8752,-15.1753,69.98327,45.4385
--18.25152,-19.27584,-17.87904,-15.17856,69.988992,46.3175
--18.62784,-19.67328,-18.34272,-15.58656,71.441568,45.6384
--19.01592,-20.08314,-18.72486,-15.91128,72.929934,45.6786
--18.0614,-19.07505,-17.8771,-15.20475,69.25994,44.6491
--18.63176,-19.77248,-18.44164,-15.58984,71.447096,43.9701
--18.63176,-19.77248,-18.44164,-15.77996,71.447096,44.9595
--19.20996,-20.38608,-19.11195,-16.26966,73.664316,45.8865
--19.012,-20.273,-18.915,-15.908,72.9149,44.8625
--19.012,-20.273,-19.012,-16.102,72.9052,45.0371
--17.8752,-19.0608,-17.8752,-15.1392,68.54592,43.6525
--18.82188,-20.07027,-18.82188,-15.84495,72.185751,44.8625
--17.8752,-19.152,-17.8752,-15.048,68.54592,43.833
--18.43968,-19.7568,-18.53376,-15.5232,70.719936,44.112
--18.82188,-20.1663,-18.91791,-16.13304,72.176148,46.2924
--18.0614,-19.3515,-18.15355,-15.38905,69.25994,45.9198
--17.8752,-19.152,-17.9664,-15.1392,68.54592,44.213
--18.2476,-19.551,-18.4338,-15.4546,69.97396,45.5112
--19.404,-20.691,-19.107,-16.137,74.4084,46.76
--18.82188,-19.10997,-16.90128,-16.51716,72.176148,45.2727
--17.8752,-17.328,-15.048,-15.8688,68.54592,44.2225
--18.0614,-16.67915,-14.3754,-16.31055,69.269155,43.9375
--18.91988,-16.807,-14.30996,-17.09512,72.183664,45.5014
--18.52785,-16.45875,-13.7313,-13.26105,70.68798,44.1085
--18.91791,-18.43776,-15.3648,-15.07671,72.089721,44.3581
--19.012,-19.109,-16.199,-15.326,72.9052,46.25
--18.15355,-18.15355,-15.6655,-14.3754,69.25994,43.8925
--19.012,-19.109,-16.684,-14.744,72.8179,45.65
--18.63176,-18.72682,-16.44538,-14.54418,71.361542,45.3152
--18.53376,-18.43968,-16.36992,-14.39424,70.625856,44.8252
--18.91791,-18.82188,-16.90128,-14.50053,72.089721,45.0846
--18.912,-18.816,-16.992,-14.784,72.1536,43.6224
--18.53376,-18.43968,-16.74624,-14.48832,70.710528,44.4
--19.7,-19.7,-17.9,-15.4,75.16,45.15
--18.62,-18.715,-17.1,-14.725,71.307,45.25
--18.816,-19.104,-17.376,-14.976,72.1536,44.2944
--18.72682,-19.012,-17.39598,-15.01948,71.352036,45.8248
--18.715,-19.095,-17.48,-14.915,71.3165,44.327
--19.109,-19.594,-17.848,-15.326,72.9052,44.8625
--19.306,-19.796,-18.13,-15.484,73.6568,44.933
--19.11294,-19.59804,-18.04572,-15.13512,72.823212,45.4905
--18.15355,-18.6143,-17.23205,-14.5597,69.177005,44.1835
--18.816,-19.488,-17.952,-15.168,72.0576,46.03
--19.11294,-19.69506,-18.23976,-15.42618,72.920232,44.9232
--17.77925,-18.32075,-16.967,-14.44,67.74165,43.453
--18.72682,-19.39224,-17.96634,-15.2096,71.43759,45.031
--19.30797,-19.99404,-18.52389,-15.6816,73.576107,45.8964
--19.30797,-20.09205,-18.6219,-15.77961,73.566306,44.9856
--18.52785,-19.28025,-17.8695,-15.14205,70.603335,42.9875
--18.72682,-19.4873,-18.15646,-15.39972,71.361542,44.1835
--18.912,-19.68,-18.432,-15.648,72.1536,44.1888
--18.91988,-19.78424,-18.43968,-15.65452,72.183664,44.5312
--18.15355,-18.9829,-17.6928,-14.9283,69.25994,43.0635
--19.30797,-20.19006,-18.91593,-15.97563,73.664316,44.5896
--18.91791,-19.78218,-18.53379,-15.65289,72.176148,43.8925
--19.7,-20.6,-19.3,-16.3,75.17,45.44
--18.3407,-19.2717,-17.9683,-15.0822,69.88086,43.2725
--18.715,-19.665,-18.43,-15.675,71.402,47.05
--18.72682,-19.77248,-18.44164,-15.6849,71.361542,44.1835
--18.72682,-19.67742,-18.44164,-15.6849,71.447096,42.9031
--18.52785,-19.5624,-18.33975,-15.51825,70.59393,43.6095
--17.9664,-18.8784,-17.784,-14.9568,68.46384,42.7776
--19.11294,-20.08314,-18.9189,-15.91128,72.823212,44.4906
--19.503,-20.493,-19.305,-16.236,74.3193,45.15
--18.715,-19.665,-18.62,-15.58,71.326,45.44
--18.91791,-19.87821,-18.82188,-15.74892,72.089721,43.8925
--19.30797,-20.28807,-19.20996,-15.97563,73.576107,45.8964
--17.9664,-18.9696,-17.8752,-15.048,68.45472,43.7285
--18.53573,-19.47663,-18.44164,-15.61894,70.623954,43.9701
--17.9664,-18.9696,-17.9664,-15.048,68.46384,43.168
--17.9664,-18.9696,-17.9664,-15.048,68.46384,43.9104
--19.11294,-20.18016,-19.11294,-16.10532,72.832914,46.3716
--17.9664,-18.9696,-17.9664,-15.2304,68.46384,44.0064
--18.53376,-19.56864,-18.53376,-15.61728,70.625856,44.784
--17.9664,-19.0608,-17.9664,-15.1392,68.46384,44.1085
--18.91988,-20.07236,-18.91988,-15.94264,72.097228,45.4328
--18.912,-19.68,-17.664,-15.84,72.0672,45.25
--17.9664,-17.6928,-15.4128,-15.96,68.46384,43.344
--19.30797,-18.03384,-15.58359,-17.24976,73.576107,44.9856
--18.53376,-16.55808,-14.112,-16.74624,70.719936,43.1424
--18.912,-16.32,-13.632,-16.608,72.1536,44.8896
--17.9664,-16.6896,-13.7712,-13.4976,68.54592,42.617
--18.715,-18.43,-15.485,-15.01,71.4115,42.9875
--18.3407,-18.2476,-15.5477,-14.5236,69.97396,44.4234
--19.11294,-19.01592,-16.4934,-14.94108,72.920232,45.4328
--18.15355,-18.0614,-15.75765,-14.0068,69.25994,43.9701
--19.109,-18.915,-16.781,-14.647,72.9052,45.44
--19.306,-19.11,-17.052,-14.896,73.6568,42.581
--18.72682,-18.5367,-16.6355,-14.35406,71.447096,43.561
--18.34464,-18.1584,-16.38912,-14.34048,69.998304,41.6256
--18.34464,-18.1584,-16.57536,-14.06112,69.998304,42.8352
--19.503,-19.404,-17.622,-15.246,74.4183,43.3125
--18.91988,-18.91988,-17.19116,-14.98224,72.193268,42.6692
--18.15355,-18.2457,-16.67915,-14.1911,69.25994,42.5442
--18.91791,-19.01394,-17.47746,-14.88465,72.185751,42.6218
--18.53573,-18.72391,-17.12438,-14.58395,70.727453,43.1165
--18.91791,-19.10997,-17.57349,-14.69259,72.176148,43.6985
--19.30797,-19.40598,-17.93583,-15.09354,73.664316,44.7975
--18.91791,-19.01394,-17.66952,-14.98068,72.176148,44.7558
--18.912,-19.104,-17.664,-15.264,72.1632,45.74
--19.30797,-19.602,-18.13185,-15.38757,73.664316,45.0945
--18.52785,-18.81,-17.4933,-14.76585,70.68798,44.4807
--18.34464,-18.71712,-17.32032,-14.71296,69.895872,44.0768
--19.503,-19.899,-18.513,-15.543,74.4084,45.04
--17.9664,-18.3312,-17.0544,-14.3184,68.54592,42.5125
--18.53573,-18.91209,-17.68892,-14.77213,70.718044,43.5821
--18.53376,-18.91008,-17.68704,-14.86464,70.710528,43.9628
--18.72682,-19.10706,-17.96634,-15.2096,71.447096,43.1165
--18.53573,-19.00618,-17.78301,-14.77213,70.727453,43.1165
--18.34464,-18.81024,-17.59968,-14.61984,69.988992,42.96
--19.109,-19.691,-18.333,-15.617,72.9052,45.04
--17.9664,-18.5136,-17.328,-14.5008,68.54592,42.6075
--19.109,-19.691,-18.43,-15.52,72.9149,43.4075
--17.77925,-18.32075,-17.1475,-14.34975,67.8319,43.263
--18.53376,-19.09824,-17.96928,-14.95872,70.710528,43.056
--18.912,-19.488,-18.336,-15.168,72.1536,44.64
--18.53376,-19.09824,-17.96928,-14.95872,70.710528,42.8544
--19.11294,-19.69506,-18.53082,-15.5232,72.920232,43.3552
--18.34464,-18.90336,-17.87904,-14.80608,69.988992,42.1056
--18.91791,-19.59012,-18.43776,-15.26877,72.176148,44.2805
--19.7,-20.4,-19.2,-15.9,75.16,45.73
--18.52785,-19.1862,-18.0576,-15.048,70.68798,45.0945
--18.91988,-19.59216,-18.43968,-15.27036,72.183664,42.875
--18.72682,-19.39224,-18.25152,-15.30466,71.447096,42.875
--19.503,-20.196,-19.107,-15.84,74.4084,44.4015
--19.11294,-19.79208,-18.72486,-15.62022,72.920232,43.7184
--19.306,-19.992,-18.914,-15.68,73.6568,43.267
--18.72682,-19.4873,-18.34658,-15.39972,71.447096,43.0098
--18.53376,-19.2864,-18.15744,-15.24096,70.710528,43.2384
--18.53376,-19.2864,-18.15744,-15.14688,70.710528,44.737
--18.72682,-19.4873,-18.44164,-15.30466,71.447096,43.561
--17.9664,-18.696,-17.6928,-14.6832,68.54592,42.617
--18.3407,-19.0855,-18.0614,-14.896,69.97396,44.5312
--19.109,-19.982,-18.818,-15.714,72.9052,43.2232
--18.912,-19.68,-18.624,-15.552,72.1536,44.74
--18.72288,-19.57824,-18.43776,-15.30144,71.441568,44.4015
--18.715,-19.57,-18.43,-15.485,71.402,43.0635
--19.30797,-20.19006,-19.01394,-15.6816,73.664316,43.7085
--18.912,-19.776,-18.72,-15.456,72.1536,44.0064
--18.715,-19.57,-18.525,-15.39,71.4115,42.8925
--18.72288,-19.57824,-18.5328,-15.30144,71.432064,44.5896
--18.72288,-19.57824,-18.5328,-15.2064,71.432064,44.7975
--17.9664,-18.7872,-17.784,-14.592,68.54592,43.168
--18.52785,-19.3743,-18.33975,-15.14205,70.697385,45.0945
--18.53376,-19.38048,-18.3456,-15.0528,70.710528,44.737
--18.15355,-19.07505,-17.96925,-15.02045,69.177005,43.5045
--18.15552,-19.07712,-17.9712,-15.11424,69.184512,42.9504
--17.9664,-18.8784,-17.784,-14.7744,68.46384,43.7184
--18.53376,-19.38048,-18.3456,-15.33504,70.625856,43.7472
--18.91791,-19.87821,-18.72585,-15.3648,72.080118,42.7285
--18.15552,-19.07712,-18.06336,-14.92992,69.184512,43.1424
--19.7,-20.7,-19.6,-16.2,75.07,44.45
--18.3407,-19.2717,-18.2476,-15.1753,69.89017,43.6688
--18.91791,-19.87821,-18.82188,-15.74892,72.089721,43.8925
--18.72288,-19.67328,-18.62784,-15.39648,71.337024,43.056
--18.72288,-19.67328,-18.62784,-15.39648,71.337024,43.44
--19.306,-20.286,-19.208,-15.876,73.5588,44.05
--18.3407,-19.3648,-18.2476,-15.1753,69.88086,44.1392
--19.40598,-20.28807,-19.20996,-15.97563,73.566306,43.8966
--18.52785,-19.5624,-18.4338,-15.33015,70.603335,43.4214
--18.91988,-19.97632,-18.82384,-15.75056,72.097228,43.953
--18.81792,-19.67328,-18.62784,-15.58656,71.346528,44.1936
--18.53376,-19.47456,-18.43968,-15.42912,70.625856,43.2384
--19.503,-20.493,-19.503,-16.038,74.3094,44.7975
--18.91791,-19.97424,-18.91791,-15.74892,72.089721,43.5045
--18.81,-19.665,-18.62,-15.485,71.307,44.75
--19.30797,-20.38608,-19.20996,-15.87762,73.566306,45.0945
--18.912,-19.872,-18.816,-15.744,72.0672,46.35
--19.109,-20.176,-19.012,-15.908,72.8082,45.73
--19.20996,-20.18016,-19.01592,-15.81426,72.823212,43.953
--19.206,-20.176,-19.109,-15.811,72.8179,44.1835
--19.109,-20.176,-19.109,-15.714,72.8179,44.3581
--18.0576,-18.9696,-17.9664,-14.9568,68.45472,42.408
--19.008,-20.064,-18.912,-15.84,72.0576,45.44
--19.404,-20.482,-19.306,-16.072,73.6568,43.953
--19.206,-20.273,-19.109,-15.811,72.8082,43.86
--18.43776,-19.46208,-18.34464,-15.3648,69.988992,42.96
--18.81,-19.855,-18.715,-15.675,71.3165,42.408
--18.82188,-19.77248,-18.82188,-15.39972,71.361542,42.8255
--19.01592,-19.97632,-18.91988,-15.75056,72.193268,43.2768
--18.81792,-19.76832,-18.72288,-15.58656,71.337024,42.672
--18.62982,-19.57072,-18.53573,-15.43076,70.718044,43.7955
--18.62982,-19.57072,-18.53573,-15.43076,70.727453,43.6888
--18.0576,-18.9696,-18.0576,-14.8656,68.54592,42.332
--18.6219,-19.5624,-18.6219,-15.4242,70.68798,42.123
--18.81,-19.76,-18.715,-15.675,71.402,42.9875
--19.40598,-20.48409,-19.30797,-15.97563,73.664316,46.3716
--19.008,-20.064,-18.912,-15.744,72.1536,43.53
--19.20996,-20.27718,-19.20996,-16.0083,72.920232,43.4214
--19.01592,-20.07236,-19.01592,-15.8466,72.183664,42.9828
--19.404,-20.482,-19.404,-15.974,73.6568,43.561
--19.20996,-20.27718,-19.20996,-15.91128,72.920232,42.9165
--19.01394,-20.07027,-19.01394,-15.74892,72.176148,44.3025
--18.62784,-19.66272,-18.62784,-15.33504,70.719936,43.3552
--18.0576,-18.9696,-18.0576,-14.9568,68.55504,41.667
--17.8695,-18.86225,-17.8695,-14.801,67.8319,42.123
--19.602,-20.691,-19.602,-16.236,74.4183,45.55
--18.43776,-19.46208,-18.43776,-15.08544,69.998304,42.8352
--19.602,-20.691,-19.602,-16.137,74.4084,44.1144
--19.20996,-20.18016,-19.01592,-15.23214,72.929934,44.0055
--18.81792,-18.81792,-16.53696,-16.06176,71.432064,43.6095
--18.4338,-17.5959,-15.0822,-16.4787,69.97396,42.028
--19.008,-17.184,-14.688,-16.8,72.1536,42.7776
--18.62982,-16.18348,-13.54896,-16.37166,70.718044,42.8255
--18.0576,-15.7776,-12.8592,-12.8592,68.63712,42.2275
--19.104,-18.24,-15.072,-14.784,72.1632,44.05
--19.206,-18.915,-15.908,-15.132,73.0022,43.94
--19.701,-19.305,-16.632,-14.949,74.5074,44.16
--18.82188,-18.63176,-16.1602,-14.44912,71.542156,42.2338
--18.71595,-18.33975,-16.08255,-14.1075,70.78203,41.2775
--19.502,-19.012,-16.954,-14.7,73.7548,42.875
--19.104,-18.624,-16.704,-14.208,72.2496,43.06
--18.72192,-18.25152,-16.464,-14.112,70.804608,43.6688
--19.01592,-18.7278,-16.90304,-14.406,72.279704,42.6594
--18.81,-18.43,-16.815,-14.155,71.5065,43.65
--19.9,-19.5,-17.8,-15,75.26,43.54
--18.0576,-17.8752,-16.3248,-14.0448,68.63712,41.9425
--18.91694,-18.72682,-17.1108,-14.63924,71.542156,42.6218
--18.91694,-18.82188,-17.20586,-14.63924,71.542156,42.875
--18.53088,-18.34464,-16.85472,-14.24736,70.175232,41.616
--19.602,-19.503,-18.018,-15.048,74.5965,43.75
--18.4338,-18.3407,-17.0373,-14.1512,70.15085,42.385
--18.4338,-18.3407,-17.0373,-14.3374,70.15085,41.2775
--18.81,-18.715,-17.48,-14.535,71.592,41.363
--18.82188,-18.72682,-17.49104,-14.54418,71.62771,42.3308
--19.602,-19.602,-18.315,-15.246,74.6064,43.75
--18.72192,-18.72192,-17.4048,-14.5824,70.898688,42.7776
--18.62784,-18.72192,-17.4048,-14.48832,70.88928,45.031
--19.30698,-19.30698,-18.04572,-14.94108,73.114272,44.4015
--19.008,-19.008,-17.856,-14.88,72.336,45.44
--18.43776,-18.53088,-17.32032,-14.52672,70.16592,43.344
--19.50399,-19.50399,-18.32787,-15.48558,73.860336,44.4906
--18.43776,-18.624,-17.41344,-14.4336,70.184544,44.2902
--18.82188,-19.012,-17.77622,-14.63924,71.72277,43.5918
--18.43776,-18.624,-17.50656,-14.4336,70.25904,42.9031
--18.81,-19,-17.86,-14.725,71.6775,43.64
--19.502,-19.6,-18.424,-15.386,73.9508,43.169
--19.206,-19.4,-18.236,-15.132,73.1865,43.64
--19.404,-19.6,-18.424,-15.288,73.941,43.463
--18.2457,-18.43,-17.3242,-14.28325,69.527175,42.408
--18.62784,-18.91008,-17.78112,-14.67648,70.98336,42.8554
--19.8,-20.1,-18.9,-15.7,75.45,44.56
--18.82188,-19.20212,-17.96634,-14.92442,71.72277,42.7285
--19.01592,-19.40008,-18.2476,-15.07828,72.471784,42.875
--18.905,-19.19,-18.05,-14.915,71.6775,43.25
--18.6219,-18.90405,-17.8695,-14.6718,70.960725,41.363
--18.62784,-18.91008,-17.8752,-14.67648,71.07744,41.232
--19.602,-19.998,-18.81,-15.444,74.7945,42.5205
--18.2457,-18.52215,-17.5085,-14.46755,69.62854,42.1562
--19.602,-19.998,-18.81,-15.642,74.7945,42.1245
--19.20996,-19.59804,-18.4338,-15.42618,73.29861,42.2334
--18.2457,-18.6143,-17.60065,-14.5597,69.619325,40.8855
--18.81792,-19.29312,-18.15264,-15.11136,71.80272,41.4144
--18.6219,-18.9981,-17.96355,-14.76585,71.054775,40.983
--18.24768,-18.61632,-17.60256,-14.37696,69.62688,40.7424
--18.62784,-19.00416,-17.96928,-14.95872,71.07744,41.5128
--18.62784,-19.09824,-17.96928,-14.67648,71.07744,41.3376
--19.01394,-19.39806,-18.34173,-15.07671,72.550665,42.0156
--17.8695,-18.2305,-17.23775,-14.16925,68.1929,40.527
--18.82188,-19.20212,-18.15646,-15.01948,71.81783,41.1894
--18.82188,-19.20212,-18.15646,-15.01948,71.81783,41.1668
--18.4338,-18.8062,-17.7821,-14.3374,70.43015,40.1375
--18.81792,-19.19808,-18.15264,-14.92128,71.89776,40.848
--18.2457,-18.52215,-17.60065,-14.5597,69.711475,40.4225
--19.008,-19.296,-18.336,-15.168,72.624,40.7424
--19.01394,-19.49409,-18.34173,-15.07671,72.646695,41.9364
--19.8,-20.3,-19.2,-16,75.65,42.66
--18.62784,-19.09824,-18.06336,-14.95872,71.17152,41.405
--19.01394,-19.49409,-18.43776,-15.3648,72.646695,40.8758
--19.008,-19.488,-18.432,-15.168,72.624,40.56
--18.81792,-19.29312,-18.24768,-15.01632,71.89776,40.56
--18.81,-19.285,-18.24,-15.01,71.8675,42.36
--19.602,-20.097,-19.008,-15.741,74.8935,41.7285
--18.43776,-18.90336,-17.87904,-14.80608,70.44528,41.2735
--18.24768,-18.70848,-17.69472,-14.65344,69.71904,41.1264
--19.20996,-19.69506,-18.62784,-15.42618,73.39563,42.1988
--18.62784,-19.19232,-18.06336,-14.86464,71.180928,42.1008
--19.404,-19.992,-18.914,-15.778,74.137,42.55
--18.82188,-19.39224,-18.34658,-15.11454,71.91289,42.1008
--19.20996,-19.79208,-18.72486,-15.42618,73.39563,42.2334
--18.81,-19.38,-18.335,-15.105,71.8675,40.527
--19.01394,-19.59012,-18.53379,-15.17274,72.646695,40.7788
--19.20996,-19.79208,-18.72486,-15.23214,73.39563,42.0156
--19.206,-19.788,-18.721,-15.229,73.3708,42.36
--18.82188,-19.39224,-18.34658,-15.11454,71.988938,40.5945
--19.404,-19.992,-18.914,-15.582,74.2154,41.405
--19.008,-19.584,-18.528,-15.168,72.7008,42.44
--17.8695,-18.411,-17.41825,-14.34975,68.346325,39.7575
--18.81,-19.38,-18.335,-15.2,71.9435,40.0425
--17.8695,-18.411,-17.41825,-14.2595,68.3373,39.862
--19.602,-20.196,-19.107,-15.939,74.9628,41.96
--18.24768,-18.80064,-17.78688,-14.56128,69.792768,40.176
--19.01394,-19.59012,-18.53379,-15.46083,72.723519,40.4878
--18.2457,-18.89075,-17.78495,-14.744,69.785195,40.4102
--19.404,-20.09,-18.914,-15.582,74.2154,41.013
--18.62784,-19.19232,-18.15744,-14.95872,71.246784,40.0704
--18.2457,-18.7986,-17.78495,-14.744,69.785195,40.033
--19.01592,-19.59216,-18.53572,-15.3664,72.731092,40.8366
--18.43776,-18.99648,-17.97216,-14.99232,70.519776,40.176
--17.8695,-18.50125,-17.5085,-14.44,68.346325,40.1375
--18.81792,-19.38816,-18.43776,-15.39648,72.068832,40.7424
--18.2457,-18.7986,-17.8771,-14.65185,69.785195,40.318
--19.008,-19.68,-18.624,-15.36,72.7008,40.6656
--18.43776,-18.99648,-18.06528,-14.80608,70.519776,40.6656
--19.20996,-19.8891,-18.82188,-15.42618,73.473246,41.699
--19.01592,-19.6882,-18.63176,-15.27036,72.817528,41.405
--19.206,-19.885,-18.818,-15.617,73.4581,41.0892
--19.01394,-19.68615,-18.62982,-15.07671,72.809946,41.7682
--19.404,-20.09,-19.012,-15.68,74.2154,42.95
--17.8695,-18.50125,-17.5085,-14.44,68.346325,39.9285
--18.43776,-19.0896,-18.06528,-14.99232,70.519776,40.848
--19.404,-20.09,-19.012,-15.582,74.3134,43.14
--18.6219,-19.28025,-18.2457,-15.048,71.318115,42.6294
--18.81,-19.475,-18.43,-15.2,72.0385,42.14
--19.404,-20.09,-19.012,-15.778,74.3036,42.44
--18.43776,-19.0896,-18.06528,-14.99232,70.519776,41.3705
--18.6219,-19.28025,-18.2457,-15.048,71.318115,41.6196
--18.82188,-19.4873,-18.44164,-15.2096,72.083998,40.7788
--18.62784,-19.2864,-18.25152,-15.14688,71.340864,41.1992
--19.20996,-19.8891,-18.82188,-15.5232,73.570266,41.6196
--18.62784,-19.2864,-18.25152,-15.0528,71.350272,40.176
--19.01592,-19.6882,-18.63176,-15.27036,72.827132,41.1894
--18.81,-19.475,-18.43,-15.295,72.029,42.25
--19.20996,-19.8891,-18.82188,-15.5232,73.560564,41.4315
--19.01592,-19.6882,-18.63176,-15.27036,72.827132,41.2972
--18.4338,-19.0855,-18.0614,-15.0822,70.58842,41.1894
--19.206,-19.982,-18.818,-15.617,73.5551,42.44
--18.2457,-18.9829,-17.8771,-14.83615,69.877345,40.7788
--19.01394,-19.68615,-18.62982,-15.46083,72.809946,40.7788
--18.43776,-19.0896,-18.1584,-14.99232,70.743264,40.8855
--18.81,-19.475,-18.43,-15.295,72.1715,42.03
--19.008,-19.68,-18.624,-15.264,72.7872,40.7424
--18.43776,-19.0896,-18.06528,-14.80608,70.603584,40.848
--19.404,-20.09,-19.012,-15.582,74.4506,41.5912
--18.81792,-19.4832,-18.43776,-15.2064,72.201888,42.0156
--18.81,-19.57,-18.43,-15.295,72.0385,42.44
--19.008,-19.776,-18.72,-15.552,72.7872,41.96
--19.602,-20.295,-19.206,-15.939,75.0717,43.7085
--18.62982,-19.28845,-18.25346,-15.0544,71.348447,42.1562
--18.2457,-18.89075,-17.8771,-14.83615,69.785195,40.7691
--18.4338,-19.0855,-18.0614,-15.1753,70.49532,40.622
--19.8,-20.5,-19.5,-16.1,75.73,42.55
--18.6219,-19.28025,-18.2457,-15.048,71.224065,40.242
--18.6219,-19.3743,-18.2457,-15.14205,71.318115,40.907
--19.602,-20.295,-19.206,-15.84,74.9727,43.14
--19.20996,-19.98612,-18.9189,-15.5232,73.473246,42.6294
--19.40598,-20.19006,-19.01394,-15.6816,74.222973,42.0057
--18.43776,-19.18272,-18.1584,-14.99232,70.529088,41.1264
--18.2457,-18.9829,-17.96925,-14.83615,69.877345,40.622
--19.602,-20.394,-19.305,-15.84,75.0618,42.1245
--18.2457,-18.9829,-17.96925,-14.65185,69.877345,41.1668
--18.82188,-19.4873,-18.44164,-15.30466,72.083998,41.3705
--18.82188,-19.58236,-18.5367,-15.30466,72.074492,41.0892
--19.20996,-19.98612,-18.82188,-15.71724,73.570266,42.1146
--19.404,-20.09,-19.11,-15.876,74.3134,41.5128
--19.8,-20.5,-19.4,-15.9,75.82,42.55
--19.20996,-19.98612,-18.9189,-15.5232,73.560564,42.1245
--18.81792,-19.4832,-18.5328,-15.2064,72.059328,40.7424
--18.2457,-18.89075,-17.96925,-14.744,69.877345,41.1668
--17.8695,-18.5915,-17.59875,-14.44,68.436575,40.5175
--18.82188,-19.4873,-18.44164,-15.11454,72.083998,41.5128
--18.72192,-19.38048,-18.25152,-15.14688,71.472576,41.699
--19.602,-20.295,-19.305,-15.84,75.2103,42.0156
--18.91694,-19.4873,-18.5367,-15.39972,72.217082,41.5128
--19.701,-20.295,-19.305,-15.84,75.2103,41.6097
--18.91694,-19.4873,-18.44164,-15.11454,72.217082,43.855
--19.303,-19.885,-18.915,-15.52,73.6909,43.36
--19.30698,-19.8891,-18.82188,-15.5232,73.706094,42.3324
--19.303,-19.982,-18.915,-15.423,73.6909,43.36
--19.104,-19.776,-18.72,-15.264,72.7872,41.616
--18.71595,-19.28025,-18.33975,-15.2361,71.449785,42.7086
--18.43776,-19.0896,-18.1584,-14.8992,70.743264,41.2735
--19.104,-19.68,-18.624,-15.36,72.9312,42.44
--18.33984,-18.8928,-17.87904,-14.7456,70.023168,42.1056
--19.104,-19.68,-18.624,-15.36,72.7872,41.904
--18.43776,-19.0896,-18.06528,-15.08544,70.743264,42.1562
--18.33785,-12.1638,-13.17745,2.3959,69.86813,41.5625
--18.4338,-7.9135,-10.3341,3.2585,70.58842,41.458
--19.206,-8.051,-8.633,2.91,73.5454,43.14
--19.8,-5.4,-7,7.4,75.83,42.95
--18.0576,-2.1888,-5.1072,7.5696,69.14784,40.907
--18.24768,-5.34528,-6.35904,-1.3824,69.884928,41.4144
--19.008,-7.872,-7.584,-3.84,72.7968,43.46
--19.40598,-8.91891,-8.03682,-5.29254,74.311182,43.5006
--18.82188,-9.506,-8.0801,-6.55914,72.083998,41.8458
--18.6219,-9.9693,-8.0883,-6.48945,71.30871,40.983
--18.0576,-9.9408,-8.1168,-6.1104,69.15696,41.52
--18.72288,-10.54944,-8.64864,-6.6528,72.068832,41.6256
--18.72288,-10.73952,-8.83872,-6.55776,72.201888,41.3376
--18.53376,-10.8192,-8.9376,-6.77376,71.481984,41.2416
--18.62784,-11.21472,-9.21888,-7.79328,72.201888,42.5205
--18.62784,-11.68992,-9.59904,-8.36352,72.211392,41.0496
--18.62784,-12.07008,-9.78912,-8.17344,72.201888,42.9264
--18.62,-12.065,-9.975,-7.885,72.0385,42.36
--18.5328,-12.16512,-10.16928,-7.98336,72.059328,42.6294
--19.305,-12.771,-10.791,-8.316,75.0717,42.65
--18.525,-12.35,-10.45,-8.17,72.0385,42.76
--19.01394,-12.83931,-10.97712,-8.62488,74.320983,42.2334
--18.82188,-12.90366,-11.06028,-8.92584,73.570266,42.7086
--18.44164,-13.11828,-11.12202,-9.12576,72.074492,41.4772
--18.82188,-13.5828,-11.54538,-9.31392,73.570266,42.7086
--18.72486,-13.67982,-11.6424,-9.31392,73.570266,42.7086
--18.91593,-13.81941,-11.95722,-9.40896,74.222973,46.4706
--18.34658,-13.40346,-11.69238,-9.22082,71.988938,47.8501
--17.87904,-13.22304,-11.54688,-9.03264,70.519776,48.3448
--18.43776,-13.63626,-12.00375,-9.31491,72.723519,50.3217
--18.624,-13.871,-12.222,-9.409,73.4581,49.95
--18.43968,-13.82976,-12.19708,-9.604,72.731092,47.0792
--17.96355,-13.63725,-12.0384,-9.49905,71.224065,47.322
--18.909,-14.454,-12.87,-10.395,74.9727,46.44
--18.336,-14.208,-12.576,-9.984,72.7008,46.54
--19.1,-15.1,-13.3,-10.7,75.73,44.93
--18.62,-14.896,-13.132,-10.388,74.2154,45.44
--18.05,-14.44,-12.825,-10.07,71.9435,45.15
--17.5085,-14.0068,-12.5324,-9.7679,69.785195,44.0325
--18.14967,-14.59656,-13.06008,-10.17918,72.723519,46.2108
--17.96256,-14.54112,-13.02048,-10.07424,71.973792,44.6985
--17.05725,-13.80825,-12.4545,-9.65675,68.346325,44.6975
--17.77545,-14.4837,-12.9789,-10.3455,71.224065,44.213
--17.5028,-14.4305,-12.9409,-10.1479,70.50463,46.132
--18.42588,-15.28956,-13.7214,-10.87911,74.222973,47.6685
--17.50656,-14.71296,-13.12992,-10.42944,70.519776,46.9965
--17.6814,-14.95395,-13.3551,-10.43955,71.224065,48.3615
--17.59296,-14.86464,-13.45344,-10.53696,71.246784,47.856
--18.139,-15.326,-13.871,-10.961,73.4581,48.5291
--17.0544,-14.4096,-13.1328,-10.488,69.06576,47.7408
--17.765,-15.105,-13.68,-10.83,71.9435,49.9225
--17.49888,-14.95872,-13.6416,-11.10144,71.246784,50.8914
--17.32032,-14.99232,-13.59552,-10.89504,70.519776,51.0144
--17.49888,-15.24096,-13.73568,-11.10144,71.331456,49.0848
--18.228,-15.876,-14.406,-11.76,74.3036,48.1572
--18.13185,-15.97563,-14.50548,-11.85921,74.320983,46.3716
--16.872,-14.9568,-13.5888,-11.1264,69.15696,45.1535
--17.04775,-15.1126,-13.73035,-11.15015,69.877345,46.132
--17.85168,-15.91128,-14.553,-11.83644,73.570266,46.0012
--17.1304,-15.3615,-13.965,-11.3582,70.59773,44.878
--17.49104,-15.6849,-14.35406,-11.78744,72.083998,45.8228
--17.48,-15.77,-14.44,-11.78,72.0385,46.25
--17.21115,-15.70635,-14.2956,-11.75625,71.318115,43.0635
--17.39598,-15.87502,-14.54418,-11.8825,72.217082,43.5142
--17.751,-16.296,-14.938,-12.222,73.6909,43.5045
--17.39232,-15.96672,-14.63616,-11.78496,72.201888,44.9856
--16.86528,-15.48288,-14.19264,-11.61216,70.013952,43.728
--17.83782,-16.56369,-15.19155,-12.44727,74.546406,44.9856
--17.30092,-16.1602,-14.82936,-11.97756,72.217082,44.0865
--18.2,-17,-15.6,-13,75.97,45.15
--16.77312,-15.6672,-14.46912,-11.70432,70.106112,43.5168
--16.5072,-15.504,-14.3184,-11.6736,69.37584,43.824
--16.33525,-15.43275,-14.2595,-11.46175,68.653175,42.8925
--17.73981,-16.75971,-15.48558,-12.54528,74.546406,44.8767
--16.33525,-15.523,-14.34975,-11.64225,68.653175,43.2725
--16.9362,-16.18348,-14.96031,-12.32579,71.668353,43.9701
--16.245,-15.61325,-14.44,-11.7325,68.743425,43.2725
--17.46,-16.781,-15.52,-12.707,73.8849,46.25
--17.4636,-16.78446,-15.5232,-12.70962,73.900134,44.345
--16.245,-15.7035,-14.53025,-11.64225,68.743425,43.2725
--17.1108,-16.54044,-15.30466,-12.3578,72.407202,44.737
--17.005,-16.53,-15.295,-12.445,72.352,45.55
--17.01216,-16.53696,-15.39648,-12.45024,72.487008,43.728
--16.49664,-16.128,-14.92992,-12.07296,70.281216,44.2944
--16.49485,-16.0341,-14.9283,-12.1638,70.27359,44.2902
--17.09334,-16.80525,-15.55686,-12.67596,73.232478,45.1935
--16.40448,-16.22016,-15.02208,-12.34944,70.281216,44.1984
--16.5718,-16.3856,-15.1753,-12.2892,70.99806,44.118
--16.40448,-16.22016,-15.11424,-12.25728,70.281216,44.5824
--16.91712,-16.72704,-15.58656,-12.8304,72.487008,45.9756
--16.91712,-16.72704,-15.58656,-12.8304,72.487008,45.6786
--16.31055,-16.31055,-15.20475,-12.3481,70.27359,44.973
--17.523,-17.523,-16.335,-13.167,75.5073,45.4905
--16.82208,-16.82208,-15.6816,-12.73536,72.477504,45.4905
--16.1424,-16.2336,-15.048,-12.4032,69.55824,44.112
--16.65393,-16.84211,-15.61894,-12.79624,71.753034,45.6385
--17.523,-17.721,-16.434,-13.563,75.4974,46.2924
--17.169,-17.363,-16.102,-13.095,73.9722,46.44
--16.2184,-16.49485,-15.38905,-12.5324,70.27359,45.0468
--16.0512,-16.3248,-15.2304,-12.312,69.54912,44.4
--16.55808,-16.9344,-15.80544,-12.79488,71.745408,45.325
--16.896,-17.28,-16.128,-13.152,73.2096,46.54
--17.24976,-17.6418,-16.46568,-13.32936,74.742426,45.9756
--16.55808,-16.9344,-15.80544,-12.98304,71.754816,45.5112
--16.55984,-17.03029,-15.80712,-12.98442,71.753034,45.4348
--16.625,-17.195,-15.96,-13.205,72.447,46.54
--16.72704,-17.20224,-16.06176,-13.02048,72.572544,45.4905
--16.625,-17.195,-16.055,-13.205,72.542,43.833
--17.5,-18.2,-16.9,-13.8,76.36,46.66
--16.625,-17.29,-16.15,-13.015,72.542,44.118
--16.6355,-17.30092,-16.1602,-13.02322,72.587816,45.2505
--16.2925,-16.9442,-15.827,-12.9409,71.09116,44.422
--16.8,-17.568,-16.32,-13.344,73.3152,44.7936
--16.80525,-17.57349,-16.42113,-13.15611,73.328508,45.7875
--16.6355,-17.30092,-16.25526,-13.11828,72.587816,45.2172
--16.80525,-17.47746,-16.3251,-13.06008,73.328508,44.3678
--17.15175,-17.83782,-16.75971,-13.42737,74.850237,45.5004
--16.296,-16.94784,-15.92352,-12.94368,71.106432,44.0064
--16.80525,-17.57349,-16.42113,-13.25214,73.328508,44.9692
--16.88148,-17.75466,-16.59042,-13.38876,74.084472,45.325
--16.80525,-17.57349,-16.42113,-13.06008,73.328508,44.6491
--15.8688,-16.5984,-15.5952,-12.5856,69.64032,43.738
--16.1994,-16.9442,-15.9201,-12.9409,71.09116,43.168
--16.1994,-17.0373,-15.9201,-12.8478,71.09116,44.4234
--16.03584,-16.86528,-15.85152,-12.81024,70.465536,43.728
--17.4,-18.4,-17.2,-13.7,76.36,45.74
--16.20288,-17.04096,-16.01664,-12.85056,71.106432,43.5168
--16.36992,-17.21664,-16.18176,-12.88896,71.839488,43.728
--17.226,-18.117,-17.028,-13.662,75.5964,45.4905
--16.36992,-17.31072,-16.18176,-13.26528,71.839488,44.933
--16.20288,-17.2272,-16.01664,-13.0368,71.199552,44.1835
--16.20288,-17.2272,-16.10976,-12.85056,71.199552,43.728
--16.36992,-17.31072,-16.18176,-12.88896,71.92416,44.8252
--16.3647,-17.21115,-16.1766,-13.07295,71.91063,44.8866
--16.88148,-17.75466,-16.78446,-13.38876,74.181492,44.7975
--16.37166,-17.31256,-16.27757,-13.1726,71.931805,44.0768
--16.36992,-17.4048,-16.27584,-13.35936,71.933568,44.639
--17.4,-18.5,-17.3,-13.8,76.46,45.95
--16.3647,-17.3052,-16.27065,-13.07295,71.91063,43.377
--16.88148,-17.85168,-16.78446,-13.19472,74.181492,44.5312
--16.1994,-17.1304,-16.1063,-13.034,71.18426,44.933
--16.53,-17.48,-16.435,-13.205,72.637,46.04
--17.226,-18.216,-17.127,-13.86,75.6954,45.3915
--16.20288,-17.2272,-16.20288,-13.0368,71.199552,43.6985
--16.3647,-17.39925,-16.27065,-13.07295,71.91063,44.8767
--16.53,-17.48,-16.435,-13.11,72.637,43.377
--16.1994,-17.2235,-16.1994,-12.9409,71.18426,42.9875
--16.20288,-17.32032,-16.20288,-13.0368,71.199552,43.728
--15.7035,-16.7865,-15.7035,-12.635,69.00515,42.9875
--16.781,-18.042,-16.878,-13.58,74.1662,45.55
--16.0341,-17.04775,-16.0341,-12.80885,70.45789,43.6985
--16.78446,-17.9487,-16.88148,-13.48578,74.181492,44.1392
--16.70922,-17.66952,-16.70922,-13.34817,73.424538,45.2034
--16.61319,-17.86158,-16.80525,-13.73229,73.424538,44.0768
--16.44192,-17.77248,-16.632,-13.49568,72.667584,44.8866
--16.435,-17.765,-16.625,-13.395,72.637,45.95
--16.878,-18.042,-16.975,-13.483,74.1759,43.7955
--16.70922,-17.76555,-16.80525,-13.25214,73.424538,45.3915
--16.88148,-17.9487,-16.88148,-13.5828,74.181492,44.7975
--16.608,-17.76,-16.704,-13.536,73.392,45.05
--16.71096,-17.86344,-16.807,-13.63768,73.432184,43.855
--16.53,-17.765,-16.625,-13.395,72.637,42.9875
--16.88148,-18.04572,-16.9785,-13.48578,74.181492,45.4328
--17.05374,-18.22986,-17.15175,-13.62339,74.928645,44.0055
--17.4,-18.3,-16.4,-13.2,76.46,44.86
--16.37166,-16.37166,-14.01941,-10.91444,71.941214,43.9798
--16.53,-15.485,-13.015,-9.69,72.637,44.86
--16.0341,-14.1911,-11.70305,-8.8464,70.45789,42.7975
--15.8688,-13.4976,-10.8528,-7.8432,69.73152,43.1424
--16.71096,-13.63768,-10.66044,-7.10696,73.432184,44.0412
--16.54044,-13.02322,-9.88624,-6.1789,72.682876,43.4075
--16.53,-12.635,-9.215,-5.225,72.6275,43.0635
--16.03584,-11.88864,-8.2944,-4.05504,70.465536,43.0656
--17.4,-12.4,-8.4,-3.9,76.46,44.64
--16.53696,-11.30976,-7.31808,-3.61152,72.667584,43.248
--16.70922,-10.75536,-6.81813,-4.51341,73.424538,43.7955
--16.53696,-10.07424,-6.36768,-4.84704,72.667584,44.3025
--17.052,-9.702,-6.174,-4.802,74.9308,44.86
--16.20288,-8.56704,-5.30784,-4.37664,71.19024,43.3008
--16.88148,-8.14968,-5.14206,-4.55994,74.181492,44.6985
--16.0341,-7.0034,-4.4232,-3.77815,70.45789,43.1165
--16.3647,-6.3954,-3.85605,-3.10365,71.91063,44.3025
--16.37166,-5.6454,-2.91679,-2.72861,71.941214,43.2232
--16.704,-5.184,-2.208,-2.016,73.4016,45.16
--16.0341,-4.0546,-1.1058,-1.4744,70.448675,42.2275
--16.44538,-3.61228,-0.09506,-1.33084,72.67337,43.1165
--17.3,-3.3,0.8,-0.7,76.46,44.45
--16.1063,-1.9551,1.862,-0.5586,71.18426,43.7472
--15.61325,-1.35375,2.79775,-0.09025,68.996125,42.617
--16.1063,-0.6517,4.0033,0.5586,71.18426,44.3548
--16.44538,-0.28518,5.13324,0.66542,72.67337,43.2768
--16.18348,0.37636,6.02176,0.9409,71.931805,43.7955
--17.127,0.891,7.425,1.683,75.6954,44.4114
--16.856,1.47,8.526,1.862,74.9308,44.345
--16.34,2.09,9.215,2.28,72.6275,44.75
--15.8498,2.7645,10.04435,2.67235,70.45789,43.5918
--16.35032,3.61228,11.4072,3.23204,72.682876,43.7955
--15.8498,3.96245,12.3481,3.40955,70.45789,43.9375
--17.1,4.8,14.6,4,76.46,46.14
--16.416,5.472,14.976,4.32,73.4016,43.0656
--16.245,5.985,15.96,4.845,72.637,44.45
--16.4934,6.7914,17.4636,5.53014,74.181492,43.463
--16.6617,7.64478,18.91593,6.07662,74.938446,44.8767
--16.66,8.134,19.992,6.174,74.9308,43.169
--15.8304,8.56704,20.0208,6.79776,71.199552,43.344
--15.57335,9.0307,20.73375,7.27985,70.45789,44.2805
--16.393,10.282,22.698,8.245,74.1662,44.86
--16.731,11.484,24.354,8.91,75.6954,44.5995
--16.632,11.979,25.443,9.504,75.6954,44.0055
--16.03701,12.38787,25.64001,9.603,73.328508,44.1936
--15.55104,12.66432,25.88736,9.87072,71.106432,43.1165
--16.533,14.058,28.116,10.89,75.6954,44.4906
--16.268,14.602,28.812,11.466,74.8328,44.4234
--15.4546,14.7098,27.93,11.7306,71.09116,44.6975
--15.6849,15.6849,29.56366,12.07262,72.587816,45.1094
--15.20475,16.0341,29.21155,12.1638,70.36574,44.3969
--15.58656,17.39232,30.98304,13.11552,72.572544,44.4906
--15.744,17.952,31.68,13.824,73.3056,43.44
--15.49478,18.34658,31.75004,14.06888,72.587816,43.5918
--15.0822,18.62,31.9333,14.4305,71.09116,44.5312
--15.24096,19.56864,33.11616,14.95872,71.839488,43.5168
--15.14205,20.40885,33.858,15.4242,71.81658,43.833
--15.0528,20.79168,34.71552,15.61728,71.848896,44.8252
--14.34975,20.66725,33.934,15.523,68.9149,43.2725
--15.27036,22.37732,37.26352,17.09512,73.336144,44.1392
--14.5597,22.116,36.3071,17.04775,70.374955,43.548
--15.072,23.808,38.4,17.76,73.3056,45.66
--14.52672,23.55936,37.89984,17.87904,71.106432,43.0656
--14.5236,24.2991,38.3572,18.3407,71.09116,43.168
--15.092,25.872,41.16,19.796,74.8328,45.325
--15.092,26.754,41.846,20.384,74.8328,45.44
--14.69259,26.50428,41.58099,20.45439,73.328508,43.6888
--14.15424,26.5392,40.9728,20.4864,71.106432,43.4075
--14.35406,27.66246,42.39676,20.81814,72.597322,44.0865
--13.965,27.8369,41.9881,21.2268,71.09116,42.2275
--14.602,29.792,44.688,22.932,74.8328,44.85
--13.92384,29.25888,43.37088,22.39104,71.839488,44.4234
--14.112,30.144,44.832,23.232,73.3056,45.05
--13.5926,29.6058,44.0363,23.1819,71.09116,43.377
--13.54752,30.76416,45.1584,23.80224,71.839488,44.1392
--13.31616,31.1952,45.1632,23.93184,71.106432,43.6224
--13.49568,32.40864,46.5696,24.99552,72.572544,44.0055
--13.26105,32.44725,46.55475,25.2054,71.825985,44.4906
--13.72,34.006,48.902,26.558,74.8328,43.6688
--13.386,34.047,48.985,27.063,74.0692,45.44
--13.02322,33.93642,48.38554,27.18716,72.587816,45.423
--13.192,35.502,49.858,28.13,74.0692,43.8925
--12.73804,35.07714,49.33614,27.85258,72.587816,44.1392
--12.50865,35.26875,49.18815,28.215,71.81658,42.617
--12.936,37.044,51.94,29.694,74.8328,43.25
--12.2265,36.1152,50.12865,28.9674,71.81658,45.1935
--12.51558,37.54674,52.19676,30.36726,74.094174,44.0154
--12.32154,38.51694,52.58484,30.94938,74.084472,44.9856
--12.096,38.496,52.32,30.912,73.3056,44.5824
--12.152,39.298,53.998,31.948,74.8328,45.2172
--11.45376,38.27232,51.6816,30.45024,71.106432,44.2944
--11.858,39.886,53.802,33.908,74.8328,45.25
--11.305,38.38,51.49,34.295,72.542,43.7285
--11.44836,38.90502,51.80868,35.4123,74.084472,44.345
--11.02,38,50.065,34.105,72.542,43.7285
--11.286,39.501,51.579,35.145,75.6063,45.85
--10.52256,36.96864,47.86368,32.96448,71.106432,44.1888
--10.3341,35.4711,46.1776,35.9366,71.09116,45.031
--10.1479,33.516,44.0363,35.1918,71.09116,44.8252
--10.05696,32.49888,42.55584,34.82688,71.106432,44.6491
--10.07,33.25,43.035,35.15,72.542,46.44
--9.7812,31.31865,40.91175,33.2937,71.81658,46.0845
--9.79506,30.53754,39.94848,33.51447,73.328508,45.6786
--9.6,30.048,38.304,33.12,73.3056,44.304
--9.2169,28.87335,36.1152,31.0365,71.81658,43.377
--9.12,27.835,35.245,31.065,72.542,42.332
--9.212,28.224,35.084,31.36,74.8328,44.86
--8.5652,25.9749,32.2126,29.0472,71.09116,43.168
--8.5554,25.6662,31.8451,29.27848,72.587816,43.9701
--8.53776,25.61328,31.5315,29.106,74.084472,43.9628
--8.09088,24.08448,29.6352,27.65952,71.839488,43.5168
--7.6608,22.7088,27.9072,26.448,69.64032,43.8336
--8.036,23.912,29.106,27.832,74.8328,45.65
--7.6032,22.71456,27.46656,25.85088,72.572544,44.5896
--7.41,22.04,26.695,25.65,72.542,42.617
--7.128,21.57408,26.136,25.28064,72.572544,44.0055
--6.86565,20.691,25.11135,24.6411,71.81658,42.332
--6.6101,19.9234,24.206,23.9267,71.08185,43.6688
--6.69438,20.27718,24.64308,24.35202,74.181492,44.247
--6.30135,19.1862,23.3244,23.23035,71.91063,42.9875
--6.5,19.9,24.1,24.1,76.46,45.15
--5.68575,17.59875,21.20875,21.38925,69.00515,43.662
--5.73705,17.77545,21.6315,21.8196,71.91063,44.5896
--5.55072,17.31072,21.168,21.35616,71.92416,44.5312
--5.1984,16.416,19.9728,20.3376,69.7224,43.2725
--5.1216,16.38912,19.92768,20.57952,71.19024,43.344
--5.141,16.587,20.273,20.758,74.1662,44.0768
--4.6512,15.1392,18.6048,19.3344,69.73152,42.123
--4.4688,14.7744,18.24,18.9696,69.73152,42.332
--4.559,15.423,18.915,19.691,74.1662,43.3008
--4.32,14.88,18.336,19.104,73.4016,43.0656
--4.13952,14.01792,17.49888,18.3456,71.933568,43.561
--3.8703,13.36175,16.7713,17.60065,70.45789,43.2232
--3.762,13.3551,16.7409,17.6814,71.91063,42.408
--3.724,13.622,17.052,18.13,74.9308,44.46
--3.42144,12.8304,16.1568,17.1072,72.667584,43.0656
--3.325,12.35,15.77,16.815,72.637,41.667
--3.13698,12.07262,15.39972,16.54044,72.682876,42.9128
--3.00762,12.03048,15.32916,16.4934,74.17179,44.1936
--2.842,11.858,15.19,16.366,74.9406,44.0412
--2.68884,11.23551,14.50053,15.55686,73.424538,43.0195
--2.47156,10.64672,13.97382,15.01948,72.682876,43.4075
--2.28144,10.36154,13.59358,14.82936,72.682876,43.463
--2.0273,9.7679,12.80885,14.28325,70.45789,43.4075
--1.9152,9.576,12.4944,13.8624,69.7224,42.672
--1.82457,9.69903,12.77199,14.02038,73.424538,42.5442
--1.649,9.312,12.513,14.065,74.1565,44.85
--1.584,9.207,12.474,14.157,75.6954,43.94
--1.33056,8.64864,11.68992,13.3056,72.667584,43.7184
--1.22304,8.4672,11.19552,12.98304,71.933568,44.5312
--1.04566,8.27022,11.02696,12.73804,72.682876,42.4375
--0.9506,7.79492,10.74178,12.45286,72.682876,42.777
--0.7524,7.3359,10.3455,12.0384,71.91063,42.788
--0.67914,7.47054,10.38114,12.22452,74.181492,42.4215
--0.48,7.2,9.984,12.096,73.4016,43.06
--0.38412,7.01019,9.69903,11.71566,73.424538,42.9264
--0.29403,6.8607,9.60498,11.46717,74.938446,43.7976
--0.09405,6.2073,8.8407,10.81575,71.91063,41.287
-0,6.14656,8.83568,10.94856,73.42258,42.5908
-0.096,5.952,8.544,10.848,73.4016,42.1056
-0.28512,5.79744,8.26848,10.4544,72.667584,44.4114
-0.38016,5.60736,7.98336,10.07424,72.667584,42.672
-0.4851,5.3361,7.85862,9.99306,74.181492,44.3548
-0.57618,4.89753,7.49034,9.79506,73.424538,44.1936
-0.672,4.704,7.296,9.504,73.4016,44.05
-0.86427,4.70547,7.01019,9.41094,73.424538,42.7285
-0.98,4.606,6.958,9.408,74.9308,43.3552
-1.0241,4.1895,6.4239,8.5652,71.18426,42.332
-1.176,4.018,6.468,8.722,74.921,44.56
-1.19808,3.50208,5.80608,8.01792,70.465536,42.1824
-1.33,3.42,5.795,8.36,72.7225,42.028
-1.38225,3.22525,5.43685,7.9249,70.45789,43.0195
-1.584,3.366,5.643,8.217,75.7944,43.5006
-1.56655,3.1331,5.06825,7.5563,70.45789,42.408
-1.71072,2.94624,4.94208,7.31808,72.762624,42.4704
-1.7689,2.5137,4.655,6.9825,71.27736,42.332
-1.9206,2.30472,4.51341,7.10622,73.424538,43.1165
-1.93515,2.11945,4.14675,6.8191,70.540825,42.8352
-2.11266,2.20869,4.22532,6.81813,73.520568,43.0098
-2.11266,2.11266,4.03326,6.91416,73.520568,42.6218
-2.18638,1.9012,3.8024,6.55914,72.76843,42.6218
-2.25816,1.59953,3.57542,6.02176,72.025895,42.3308
-2.3275,1.2103,3.2585,5.7722,71.27736,43.855
-2.3275,1.1172,3.0723,5.8653,71.27736,41.952
-2.49678,0.9603,2.97693,5.66577,73.520568,43.7976
-2.646,0.98,2.842,5.88,75.019,43.169
-2.71656,0.77616,2.61954,5.62716,74.26881,44.0412
-2.5536,0.6384,2.3712,5.1072,69.82272,42.5125
-2.84229,0.58806,2.35224,5.19453,75.026655,43.5006
-2.9,0.3,2.2,4.9,76.55,44.34
-2.8215,-0.09405,1.78695,4.7025,71.995275,41.667
-2.88672,-0.27936,1.67616,4.46976,71.28336,42.7285
-3.03831,-0.29403,1.56816,4.70448,75.036456,43.6095
-3.072,-0.384,1.44,4.512,73.4976,44.86
-3.13632,-0.39204,1.27413,4.60647,75.036456,44.1144
-2.888,-0.45125,1.083,4.06125,69.176625,41.667
-3.20166,-0.67914,0.9702,3.8808,74.278512,42.875
-3.10365,-1.03455,0.7524,3.47985,71.995275,43.5006
-3.366,-1.386,0.594,3.564,75.7845,43.2135
-3.1008,-1.2768,0.3648,3.2832,69.8136,42
-3.13344,-1.3824,0.27648,3.2256,70.64064,41.52
-3.192,-1.368,0.1824,3.1008,69.9048,41.667
-3.2585,-1.4896,0,3.0723,71.36115,42.4928
-3.395,-1.552,-0.097,3.104,74.3505,43.46
-3.45708,-1.72854,-0.28809,2.49678,73.606995,42.1562
-3.3516,-2.0482,-0.3724,2.3275,71.36115,42.6692
-3.42216,-2.3765,-0.57036,2.28144,72.86349,42.7285
-3.3858,-2.35125,-0.7524,2.4453,72.089325,41.4675
-3.48096,-2.352,-0.84672,2.44608,72.11232,43.0612
-3.51722,-2.3765,-0.9506,2.18638,72.86349,42.9128
-3.47985,-2.4453,-1.03455,2.2572,72.09873,43.5006
-3.626,-2.646,-1.176,1.862,75.117,42.9828
-3.4447,-2.6999,-1.3034,1.7689,71.36115,43.855
-3.552,-3.072,-1.536,1.536,73.584,42.3936
-3.57504,-3.19872,-1.59936,1.31712,72.11232,42.288
-3.648,-3.36,-1.824,1.44,73.584,42
-3.4656,-3.192,-1.824,1.2768,69.9048,41.743
-3.5378,-3.3516,-1.9551,1.2103,71.37046,41.8475
-3.68676,-3.49272,-2.13444,1.16424,74.36583,43.4214
-3.724,-3.724,-2.254,1.078,75.117,43.169
-3.5378,-3.724,-2.2344,0.931,71.36115,42.2275
-3.686,-3.977,-2.522,0.582,74.3505,43.0195
-3.5378,-3.9102,-2.5137,0.5586,71.36115,41.4675
-3.5739,-4.1382,-2.6334,0.3762,72.089325,43.2135
-3.57504,-4.2336,-2.72832,0.4704,72.11232,41.7984
-3.68676,-4.46292,-3.00762,0.19404,74.36583,43.169
-3.61152,-4.46688,-3.04128,0.09504,72.84816,43.3125
-3.57504,-4.51584,-3.10464,0.18816,72.121728,41.7216
-3.64914,-4.70547,-3.26502,-0.09603,73.606995,42.9128
-3.5378,-4.655,-3.3516,-0.2793,71.36115,42.6692
-3.552,-4.896,-3.456,-0.288,73.5936,42.0096
-3.33925,-4.693,-3.4295,-0.5415,69.176625,41.5625
-3.44544,-4.93536,-3.63168,-0.55872,71.37648,42.3405
-3.55311,-5.28165,-3.93723,-0.57618,73.703025,42.8352
-3.33925,-5.054,-3.70025,-0.45125,69.266875,41.287
-3.7,-5.7,-4.2,-0.6,76.75,43.46
-3.456,-5.568,-4.128,-1.056,73.6896,41.52
-3.38724,-5.45722,-4.13996,-0.9409,72.214075,42.1562
-3.52836,-5.78259,-4.41045,-1.07811,75.222675,43.4214
-3.29175,-5.73705,-4.42035,-1.3167,72.183375,41.287
-3.395,-6.111,-4.753,-1.455,74.4475,41.7682
-3.325,-6.08,-4.655,-1.52,72.9125,41.5625
-3.15875,-5.776,-4.5125,-1.35375,69.266875,41.667
-3.2592,-5.86656,-4.74912,-1.58304,71.4696,41.9525
-3.16608,-6.14592,-4.84224,-2.42112,71.4696,41.52
-3.1008,-6.2928,-4.9248,-2.1888,69.996,41.3472
-3.23,-6.555,-5.225,-2.09,72.9125,43.94
-3.0723,-6.3308,-5.1205,-1.4896,71.45425,41.192
-3.10365,-6.30135,-5.17275,-1.6929,72.17397,41.743
-3.234,-6.566,-5.488,-1.862,75.215,42.6692
-3.0096,-6.3954,-5.36085,-2.16315,72.183375,41.5625
-3.04128,-6.74784,-5.60736,-2.47104,72.9432,42.288
-3.168,-7.326,-5.94,-2.772,75.9825,43.0254
-3.00762,-7.17948,-5.8212,-2.4255,74.46285,43.2036
-3.069,-7.227,-6.039,-2.376,75.9924,43.76
-2.97693,-6.91416,-5.85783,-2.40075,73.703025,43.3125
-2.88,-6.912,-5.856,-2.304,73.68,42.288
-2.736,-6.6576,-5.6544,-2.4624,69.996,41.458
-2.793,-6.9825,-5.8653,-2.6999,71.45425,42.5908
-2.75674,-7.22456,-6.08384,-2.94686,72.95855,42.4472
-2.70048,-7.26336,-6.0528,-2.88672,71.460288,41.6256
-2.716,-7.663,-6.402,-3.104,74.4475,43.54
-2.63424,-7.43232,-6.30336,-2.72832,72.2064,42.385
-2.53935,-7.524,-6.3954,-3.10365,72.183375,43.3224
-2.54043,-7.5272,-6.39812,-3.10497,72.214075,42.2338
-2.592,-7.776,-6.624,-3.456,73.68,43.36
-2.4453,-7.80615,-6.5835,-3.47985,72.183375,40.983
-2.3275,-7.8204,-6.6101,-3.4447,71.45425,41.993
-2.45025,-8.42886,-7.15473,-3.72438,75.222675,43.1046
-2.3275,-8.0997,-6.7963,-3.6309,71.45425,42.7672
-2.376,-8.514,-7.326,-3.96,75.9825,43.64
-2.25792,-8.18496,-7.056,-3.7632,72.2064,41.4144
-2.0976,-7.9344,-6.84,-3.648,69.996,40.812
-2.185,-8.455,-7.22,-3.99,72.9125,41.192
-2.0064,-8.2992,-7.1136,-3.9216,69.996,41.363
-2.11266,-8.83476,-7.49034,-4.41738,73.703025,42.4375
-1.99584,-8.74368,-7.50816,-4.18176,72.9432,42.1056
-1.995,-8.74,-7.505,-3.895,72.9125,44.05
-1.9008,-8.64864,-7.6032,-4.18176,72.9432,41.7984
-1.98,-9.207,-8.019,-4.752,75.9825,43.0254
-1.82476,-9.21984,-7.97132,-5.09012,73.720304,43.2768
-1.78695,-9.2169,-7.9002,-4.8906,72.183375,43.7976
-1.764,-9.506,-8.232,-4.606,75.215,43.561
-1.6929,-8.93475,-7.99425,-4.23225,72.183375,42.028
-1.59885,-8.93475,-7.99425,-4.5144,72.183375,44.0055
-1.66617,-9.31095,-8.33085,-4.70448,75.222675,43.8966
-1.52096,-9.0307,-8.0801,-4.46782,72.95855,43.0612
-1.485,-9.504,-8.514,-4.95,75.9825,43.64
-1.38225,-9.12285,-8.01705,-5.06825,70.71591,42.5125
-1.372,-9.898,-8.624,-5.39,75.2248,43.95
-1.35828,-9.89604,-8.53776,-5.23908,74.46285,43.2135
-1.26126,-9.79902,-8.63478,-5.04504,74.46285,42.9828
-1.24852,-9.604,-8.6436,-5.09012,73.7107,42.9828
-1.14,-9.5,-8.55,-5.035,72.9125,41.5625
-1.056,-9.6,-8.64,-5.184,73.68,42.95
-1.05633,-9.603,-8.6427,-5.18562,73.703025,43.2036
-0.931,-9.4962,-8.4721,-5.3067,71.45425,41.0875
-0.97,-10.088,-8.924,-5.723,74.4475,42.0592
-0.8208,-9.576,-8.4816,-5.2896,69.996,40.7075
-0.77616,-10.1871,-9.02286,-5.72418,74.46285,42.9828
-0.75272,-9.97354,-8.84446,-5.45722,72.214075,41.5645
-0.67914,-10.28412,-9.2169,-5.91822,74.46285,42.7086
-0.67914,-10.28412,-9.2169,-5.53014,74.472552,42.091
-0.57036,-10.17142,-9.0307,-5.7036,72.95855,41.3705
-0.48,-10.272,-9.216,-5.952,73.68,41.3376
-0.4753,-10.36154,-9.22082,-5.98878,72.95855,42.091
-0.3648,-9.9408,-8.9376,-5.5632,69.996,41.0875
-0.384,-10.56,-9.408,-6.144,73.68,41.52
-0.291,-10.767,-9.603,-6.111,74.4475,43.36
-0.19602,-10.87911,-9.70299,-6.27264,75.222675,42.4116
-0.18816,-10.53696,-9.408,-6.20928,72.2064,41.0592
-0.09405,-10.62765,-9.49905,-6.11325,72.17397,41.5625
-0,-10.5203,-9.4031,-6.3308,71.45425,42.5908
-0,-10.5051,-9.3993,-6.35835,70.725125,41.363
--0.09702,-11.06028,-9.89604,-6.50034,74.46285,43.7976
--0.0912,-10.488,-9.3936,-6.2928,69.996,41.7216
--0.19206,-11.13948,-9.98712,-6.53004,73.712628,41.3802
--0.2793,-10.7996,-9.6824,-6.6101,71.45425,40.907
--0.3686,-10.78155,-9.67575,-6.35835,70.725125,41.7682
--0.38016,-11.11968,-9.9792,-6.55776,72.9432,41.232
--0.45125,-10.55925,-9.5665,-6.3175,69.266875,40.622
--0.48015,-11.33154,-10.27521,-6.81813,73.799055,41.6615
--0.56448,-11.38368,-10.16064,-7.15008,72.2064,41.9048
--0.576,-11.712,-10.464,-7.296,73.776,42.84
--0.66542,-11.4072,-10.36154,-6.93938,73.044104,40.9825
--0.776,-11.64,-10.573,-7.081,74.4475,41.1668
--0.7524,-11.286,-10.25145,-6.9597,72.277425,42.3423
--0.85554,-11.69238,-10.55166,-7.50974,73.05361,41.3802
--0.9408,-11.76,-10.53696,-7.62048,72.30048,42.091
--0.912,-11.3088,-10.2144,-7.2048,70.07808,40.7424
--1.02432,-11.45376,-10.42944,-6.89088,71.553408,41.2735
--0.99275,-11.0105,-10.108,-6.58825,69.357125,40.527
--1.14,-11.495,-10.64,-7.03,73.0075,42.85
--1.24839,-11.61963,-10.75536,-7.29828,73.799055,42.2235
--1.23552,-11.49984,-10.73952,-7.50816,73.028736,41.4144
--1.33,-11.78,-10.83,-7.885,72.998,42.55
--1.38225,-11.70305,-10.5051,-7.5563,70.817275,40.622
--1.368,-11.5824,-10.488,-7.3872,70.07808,40.242
--1.48992,-11.82624,-10.7088,-7.35648,71.56272,40.56
--1.7,-12.5,-11.5,-7.7,76.85,42.66
--1.59885,-11.75625,-10.81575,-7.24185,72.277425,42.3324
--1.746,-12.125,-11.252,-7.566,74.5445,43.54
--1.71072,-11.88,-10.9296,-7.41312,73.047744,42.5304
--1.80614,-11.97756,-11.02696,-7.6048,73.05361,41.5128
--1.824,-11.4912,-10.5792,-7.2048,70.0872,41.6256
--1.99584,-12.07008,-11.02464,-7.69824,73.03824,43.0254
--2.058,-12.544,-11.466,-7.84,75.313,43.06
--2.134,-12.416,-11.349,-8.051,74.5348,42.55
--2.20892,-12.29312,-11.33272,-7.87528,73.80674,41.797
--2.18592,-12.3552,-11.21472,-7.98336,73.03824,42.2334
--2.23488,-12.1056,-11.08128,-7.72896,71.56272,40.9825
--2.2344,-12.103,-11.0789,-7.7273,71.55666,40.2515
--2.28,-11.856,-10.944,-7.752,70.0872,41.136
--2.4206,-12.1961,-11.172,-8.0997,71.63114,41.5912
--2.3959,-12.1638,-11.15015,-7.9249,70.817275,41.9525
--2.54016,-12.41856,-11.38368,-8.09088,72.30048,42.091
--2.48805,-12.1638,-11.15015,-8.20135,70.817275,41.4869
--2.66,-12.635,-11.59,-8.17,73.0075,42.66
--2.75674,-12.64298,-11.59732,-8.36528,73.044104,41.3802
--2.842,-13.132,-12.054,-8.526,75.313,42.2772
--2.94,-13.132,-12.054,-8.624,75.3228,42.77
--2.8227,-12.70215,-11.66716,-8.09174,72.392846,41.5548
--2.91648,-12.7008,-11.66592,-8.37312,72.30048,41.3376
--3.10464,-13.19472,-12.1275,-8.53776,74.65689,42.0156
--2.9488,-12.5324,-11.51875,-8.20135,70.817275,40.698
--2.97825,-12.274,-11.28125,-8.03225,69.357125,40.527
--3.1977,-12.7908,-11.75625,-8.6526,72.371475,40.4225
--3.43,-13.524,-12.446,-9.604,75.411,41.8068
--3.43035,-13.81941,-12.54528,-9.60498,75.408894,42.6294
--3.492,-13.58,-12.416,-9.021,74.6415,43.54
--3.528,-13.622,-12.544,-9.016,75.4012,43.25
--3.40992,-12.71808,-11.79648,-8.47872,70.907904,41.4144
--3.686,-13.386,-12.416,-9.021,74.6415,42.2338
--3.724,-13.622,-12.544,-9.408,75.411,43.54
--3.5017,-13.0853,-11.9795,-9.3993,70.909425,41.7682
--3.5568,-13.0416,-11.9472,-8.9376,70.1784,41.4675
--3.7248,-13.22304,-12.19872,-8.93952,71.646528,41.6256
--3.96,-13.959,-12.969,-9.603,76.1706,42.2334
--4.01841,-13.7214,-12.7413,-9.40896,75.418695,42.1245
--4.116,-13.622,-12.74,-9.114,75.411,43.36
--4.158,-13.761,-12.87,-9.306,76.1706,42.3324
--4.21443,-13.62339,-12.7413,-9.21294,75.408894,42.7086
--4.18264,-13.3084,-12.45286,-9.22082,73.14867,41.405
--4.09728,-13.31616,-12.29184,-9.312,71.65584,41.2735
--4.275,-13.775,-12.54,-9.595,73.093,43.14
--4.365,-14.065,-12.901,-9.603,74.6415,41.7682
--4.462,-14.065,-12.901,-9.409,74.6415,42.1562
--4.462,-13.871,-12.901,-9.312,74.6415,41.8458
--4.24175,-12.90575,-12.00325,-8.664,69.43835,41.287
--4.752,-14.157,-13.167,-9.603,76.1805,43.9065
--4.51632,-13.45487,-12.60806,-8.84446,72.392846,41.6615
--4.753,-13.968,-12.998,-9.312,74.6415,41.2735
--4.656,-13.40928,-12.47808,-9.12576,71.646528,42.3936
--4.753,-13.68864,-12.73804,-9.31588,73.14867,42.385
--4.84806,-13.7837,-12.8331,-9.506,73.14867,42.9128
--4.84806,-13.87876,-12.8331,-9.506,73.14867,41.8068
--4.992,-14.016,-12.96,-9.696,73.8624,42.44
--4.8412,-13.6857,-12.6616,-9.4031,71.63114,41.993
--5.194,-14.406,-13.328,-9.996,75.411,41.993
--5.13324,-14.06888,-13.02322,-9.69612,73.14867,41.1668
--4.9248,-13.4976,-12.4944,-9.3024,70.1784,40.7424
--5.28165,-14.21244,-13.15611,-9.98712,73.885482,42.4215
--5.39,-14.602,-13.426,-10.192,75.4012,42.4928
--5.432,-14.453,-13.386,-10.088,74.6318,41.4772
--5.1984,-13.5888,-12.6768,-9.3936,70.1784,40.6315
--5.47371,-14.4045,-13.34817,-10.08315,73.895085,42.5205
--5.62716,-14.65002,-13.48578,-10.09008,74.65689,42.1988
--5.626,-14.744,-13.58,-10.379,74.6318,41.7682
--5.43685,-14.0068,-12.901,-9.49145,70.909425,41.192
--5.8212,-14.65002,-13.5828,-10.09008,74.65689,42.5205
--5.415,-13.718,-12.72525,-10.01775,69.447375,40.7075
--5.62176,-14.2848,-13.08672,-10.41408,70.907904,41.52
--5.79744,-14.7312,-13.49568,-10.16928,73.13328,42.6393
--5.7133,-14.09895,-13.17745,-9.7679,70.91864,42.0592
--5.89372,-14.44912,-13.49852,-9.9813,73.234224,41.5645
--5.8653,-14.0581,-13.2202,-9.6824,71.72424,41.4675
--6.11226,-14.553,-13.77684,-9.89604,74.744208,42.5908
--5.776,-13.5375,-12.72525,-9.47625,69.5286,41.363
--6.5,-15.2,-14.2,-11.2,76.95,43.36
--6.0515,-14.4305,-13.3133,-10.4272,71.64045,42.028
--6.20928,-14.5824,-13.45344,-10.44288,72.479232,42.385
--6.468,-15.092,-14.014,-10.682,75.4992,42.4928
--6.432,-14.688,-13.728,-10.176,73.968,43.15
--6.43468,-14.59808,-13.73372,-10.0842,73.989216,42.875
--6.59736,-14.65002,-13.87386,-10.38114,74.744208,43.7472
--6.49152,-14.20608,-13.45344,-9.8784,72.479232,42.6692
--6.35835,-14.0068,-13.17745,-9.86005,70.99236,42.4375
--6.5184,-14.24736,-13.31616,-10.15008,71.739648,43.5142
--6.3175,-13.8985,-12.90575,-9.747,69.5286,41.5625
--6.54336,-14.19264,-13.17888,-9.86112,71.00928,41.4144
--6.67755,-14.4837,-13.5432,-10.25145,72.45612,41.3535
--6.7716,-14.57775,-13.5432,-10.06335,72.371475,41.4675
--6.6348,-14.28325,-13.2696,-9.86005,70.99236,41.743
--6.86784,-14.5824,-13.54752,-10.16064,72.48864,42.2772
--7.326,-15.345,-14.256,-10.791,76.2696,43.7184
--7.252,-15.288,-14.21,-10.878,75.4992,42.777
--6.9597,-14.76585,-13.7313,-10.43955,72.45612,43.2135
--6.84,-14.3184,-13.224,-10.032,70.2696,42.617
--7.0034,-14.3754,-13.4539,-10.04435,70.99236,42.9128
--6.9312,-14.2272,-13.3152,-10.1232,70.26048,41.8475
--7.17024,-14.61984,-13.59552,-10.33632,71.739648,42.6218
--7.1687,-14.7098,-13.6857,-10.3341,71.73355,41.743
--7.0224,-14.5008,-13.4064,-10.1232,70.1784,41.952
--7.722,-15.642,-14.652,-10.989,76.1805,43.9065
--7.663,-15.326,-14.259,-10.864,74.7288,44.05
--7.2048,-14.4096,-13.4064,-9.9408,70.2696,41.743
--7.742,-15.484,-14.504,-10.976,75.4992,43.169
--7.4496,-14.80608,-13.78176,-10.33632,71.739648,42.2338
--7.46496,-14.65344,-13.63968,-10.32192,71.00928,41.6256
--7.69824,-15.11136,-14.06592,-10.64448,73.218816,43.2135
--7.95564,-15.42618,-14.45598,-10.76922,74.744208,43.3125
--7.71456,-14.95872,-14.01792,-10.44288,72.479232,42.6692
--7.64928,-14.65344,-13.73184,-10.41408,71.000064,42.4704
--8.217,-15.84,-14.751,-11.286,76.2696,43.0254
--8.316,-15.84,-14.751,-11.187,76.2696,42.7185
--8.23284,-15.77961,-14.7015,-11.17314,75.516705,43.2135
--8.4,-16,-15,-11.4,77.04,43.25
--7.8336,-14.7456,-13.824,-10.32192,71.00928,41.7984
--8.25944,-15.27036,-14.406,-10.75648,73.99882,42.4928
--8.428,-15.68,-14.7,-11.368,75.4992,43.36
--8.27022,-15.39972,-14.35406,-11.12202,73.234224,42.777
--8.439,-15.811,-14.647,-11.155,74.7288,42.95
--8.45064,-15.55686,-14.50053,-10.94742,73.981512,42.5442
--8.36,-15.295,-14.345,-10.83,73.188,42.408
--8.811,-15.939,-14.85,-11.088,76.2696,42.8175
--8.2859,-14.896,-13.965,-10.6134,71.72424,41.4675
--8.2859,-14.9891,-14.0581,-10.6134,71.73355,42.617
--8.379,-15.0822,-14.0581,-10.7996,71.72424,42.4928
--8.918,-15.974,-14.896,-11.27,75.4992,42.85
--8.736,-15.648,-14.592,-11.328,73.9584,41.7216
--8.73873,-15.65289,-14.59656,-10.94742,73.981512,42.4215
--8.74552,-15.39972,-14.44912,-10.9319,73.234224,42.1988
--9.016,-15.876,-14.896,-11.172,75.4992,41.9146
--9.207,-16.038,-15.048,-11.286,76.2696,43.2135
--8.928,-15.648,-14.688,-11.328,73.9584,42.7776
--8.6621,-15.1126,-14.09895,-10.78155,71.001575,42.0592
--8.75328,-15.27168,-14.24736,-10.89504,71.739648,41.232
--9.21294,-16.07364,-14.99553,-11.36916,75.506904,43.3125
--9.0307,-15.49478,-14.54418,-11.12202,73.234224,42.2338
--9.12,-15.58,-14.535,-11.02,73.188,40.907
--8.9376,-15.2684,-14.2443,-11.0789,71.72424,40.812
--9.216,-15.84,-14.784,-11.424,73.9584,41.3376
--9.312,-15.84,-14.784,-11.424,73.9584,41.232
--9.603,-16.335,-15.246,-11.781,76.2696,43.1838
--9.21984,-15.61728,-14.5824,-11.19552,72.48864,41.7216
--9.31588,-15.77996,-14.7343,-11.21708,73.234224,41.8068
--9.41094,-15.6849,-14.7343,-11.31214,73.234224,41.5645
--9.50796,-15.8466,-14.8862,-11.42876,73.989216,42.2772
--9.40896,-15.58656,-14.7312,-11.30976,73.218816,42.3324
--9.312,-15.3648,-14.4336,-10.98816,71.739648,42.1562
--9.603,-15.94098,-14.88465,-11.5236,73.971909,42.5205
--9.59904,-15.77664,-14.82624,-11.4048,73.218816,42.5304
--9.30715,-15.2969,-14.28325,-10.8737,71.08451,41.7682
--9.792,-15.936,-14.88,-11.232,73.9584,41.0496
--9.69,-15.77,-14.82,-11.115,73.188,40.983
--9.996,-16.366,-15.288,-11.76,75.4992,42.76
--9.991,-16.199,-15.132,-11.64,74.7288,42.85
--9.49145,-15.38905,-14.3754,-10.8737,70.99236,40.527
--9.88,-15.865,-14.82,-11.305,73.283,40.7075
--9.5836,-15.2969,-14.3754,-10.96585,71.08451,41.5645
--9.98712,-15.94098,-14.98068,-11.5236,73.981512,41.9525
--9.8784,-15.71136,-14.77056,-11.38368,72.48864,42.2086
--9.7776,-15.64416,-14.61984,-11.1744,71.739648,41.4869
--10.07636,-15.87502,-14.92442,-11.4072,73.329284,41.699
--9.76896,-15.39072,-14.46912,-11.15136,71.000064,40.9536
--10.07,-15.865,-14.915,-11.305,73.188,42.77
--10.379,-16.199,-15.229,-11.543,74.7288,43.25
--10.16928,-15.96672,-14.92128,-11.59488,73.218816,41.136
--10.584,-16.464,-15.386,-11.858,75.4992,42.1988
--10.26432,-16.06176,-15.01632,-11.59488,73.218816,41.4144
--10.37124,-16.22907,-15.17274,-11.42757,73.991115,41.2735
--9.9408,-15.3216,-14.4096,-10.944,70.35168,40.527
--10.355,-15.96,-15.01,-11.4,73.283,42.77
--10.241,-15.6408,-14.7098,-11.3582,71.73355,42.4928
--9.9275,-15.162,-14.2595,-11.10075,69.5286,40.7075
--10.1376,-12.4416,-11.61216,-5.25312,71.000064,41.136
--10.878,-12.544,-10.584,-5.488,75.4992,42.66
--10.33632,-13.22304,-11.82624,-8.75328,71.739648,41.8458
--10.989,-14.454,-13.167,-9.702,76.2696,42.2334
--10.42944,-13.68864,-12.47808,-9.49824,71.74896,41.0592
--10.864,-14.453,-13.192,-10.379,74.7288,42.85
--11.187,-15.147,-13.563,-11.187,76.2696,42.4215
--10.41295,-14.1911,-12.7167,-10.04435,70.99236,41.1668
--11.074,-14.994,-13.524,-10.682,75.5972,42.04
--10.3056,-13.8624,-12.6768,-9.6672,70.35168,41.3376
--11.058,-14.647,-13.483,-10.185,74.8258,44.56
--10.6134,-13.965,-12.9409,-9.8686,71.72424,40.622
--11.286,-14.85,-13.86,-10.494,76.2696,42.14
--10.59725,-14.09895,-12.99315,-10.5051,70.99236,40.9922
--10.7088,-14.52672,-13.22304,-10.89504,71.739648,40.6656
--10.7088,-14.52672,-13.31616,-10.52256,71.832768,41.7682
--10.80192,-14.52672,-13.31616,-10.2432,71.832768,40.9536
--10.6894,-14.28325,-13.17745,-10.1365,70.99236,40.7788
--11.13948,-14.69259,-13.73229,-10.46727,74.077542,43.3125
--10.69056,-14.10048,-13.17888,-9.95328,71.000064,40.7424
--11.115,-14.535,-13.585,-10.165,73.1975,40.983
--11.466,-14.994,-14.014,-10.682,75.509,41.5912
--10.9858,-14.3374,-13.4064,-10.4272,71.73355,39.862
--10.9858,-14.5236,-13.4995,-10.4272,71.72424,42.1008
--10.87488,-14.56128,-13.45536,-10.41408,71.000064,41.6256
--10.7616,-14.4096,-13.3152,-10.3056,70.26048,40.6656
--10.96585,-14.5597,-13.4539,-10.5051,70.99236,41.5645
--11.662,-15.484,-14.308,-10.976,75.4992,44.45
--11.42757,-15.17274,-14.11641,-10.65933,73.981512,41.8275
--11.08128,-10.52256,-10.89504,3.2592,71.74896,41.0892
--11.172,-11.2651,-11.4513,-7.1687,71.72424,40.318
--11.88,-13.662,-12.969,-9.306,76.3785,44.56
--11.172,-13.2202,-12.3823,-9.1238,71.72424,40.242
--11.38368,-13.54752,-12.60672,-9.408,72.479232,41.4144
--11.737,-14.065,-12.998,-9.797,74.7288,41.1668
--11.616,-14.016,-12.96,-9.696,73.9584,40.9536
--11.2651,-13.5926,-12.5685,-9.4962,71.72424,40.7075
--11.979,-14.652,-13.464,-10.692,76.2696,44.16
--11.1264,-13.5888,-12.4944,-9.7584,70.26048,41.192
--12.078,-14.949,-13.662,-10.692,76.3686,41.9364
--11.47776,-14.30016,-13.07712,-10.06656,72.48864,40.8366
--11.4741,-14.38965,-13.167,-9.9693,72.55017,40.0425
--11.931,-14.744,-13.58,-10.282,74.8258,40.5945
--12.054,-14.896,-13.72,-10.584,75.5972,42.85
--12.177,-15.147,-13.959,-10.989,76.3686,42.4215
--11.57307,-14.67804,-13.36078,-10.63217,72.486936,41.2735
--11.69238,-14.92442,-13.59358,-10.74178,73.329284,42.2772
--11.6622,-14.76585,-13.44915,-10.25145,72.465525,42.4215
--11.78744,-14.82936,-13.68864,-10.36154,73.33879,40.9922
--11.66716,-14.58395,-13.54896,-10.25581,72.581026,40.7788
--12.00375,-14.88465,-13.82832,-10.37124,73.981512,40.5945
--11.76,-14.5824,-13.54752,-10.16064,72.48864,41.307
--11.6375,-14.4305,-13.4064,-10.0548,71.81734,39.7575
--12.005,-14.8862,-13.82976,-10.46836,74.085256,41.1208
--12.1275,-15.23214,-14.0679,-10.86624,74.841228,41.405
--12.474,-15.642,-14.454,-11.286,76.3686,42.2334
--12.125,-15.52,-14.259,-10.961,74.8258,40.7788
--11.8503,-15.048,-13.82535,-10.62765,72.559575,40.9925
--11.85534,-15.0544,-13.83123,-10.72626,72.486936,40.5945
--11.73312,-14.80608,-13.68864,-10.52256,71.739648,40.56
--12.09978,-15.3648,-14.21244,-10.85139,74.077542,41.8275
--12.07008,-15.30144,-14.16096,-10.9296,73.313856,41.6196
--12.065,-15.39,-14.155,-11.02,73.283,42.04
--12.192,-15.552,-14.4,-11.04,73.9584,40.3584
--11.5824,-14.8656,-13.68,-10.5792,70.26048,40.848
--12.192,-15.648,-14.4,-11.04,74.0544,42.04
--12.544,-15.876,-14.7,-11.27,75.607,42.77
--12.16512,-15.49152,-14.35104,-10.9296,73.218816,41.4315
--11.6736,-14.8656,-13.7712,-10.6704,70.26048,40.56
--12.04224,-15.5232,-14.30016,-11.00736,72.479232,41.5912
--11.91936,-15.3648,-14.24736,-11.08128,71.832768,41.136
--11.79648,-15.29856,-14.10048,-10.87488,71.092224,40.848
--12.01248,-15.45792,-14.24736,-11.1744,71.832768,40.9825
--12.26274,-15.6849,-14.54418,-11.21708,73.329284,41.5912
--12.13632,-15.5232,-14.39424,-11.19552,72.573312,41.405
--11.7648,-15.1392,-14.0448,-10.944,70.35168,40.3275
--12.2304,-15.71136,-14.48832,-11.2896,72.573312,41.307
--12.3578,-15.87502,-14.7343,-11.4072,73.33879,41.1208
--12.3552,-15.87168,-14.7312,-11.30976,73.313856,40.56
--12.3552,-15.87168,-14.7312,-11.4048,73.313856,41.4315
--11.9808,-15.39072,-14.2848,-11.15136,71.092224,40.5696
--12.87,-16.632,-15.444,-12.078,76.3686,41.96
--12.70962,-16.39638,-15.13512,-11.83644,74.841228,41.1992
--12.838,-16.562,-15.288,-11.956,75.5972,42.25
--12.07165,-15.4812,-14.46755,-11.2423,71.08451,40.4878
--12.1961,-15.6408,-14.5236,-11.3582,71.82665,40.0425
--12.07296,-15.57504,-14.46912,-11.33568,71.092224,40.2816
--12.1638,-15.57335,-14.46755,-11.33445,71.08451,40.7012
--12.54528,-16.1568,-14.92128,-11.88,73.32336,41.1543
--12.16512,-15.6672,-14.56128,-11.33568,71.092224,40.3584
--12.41856,-16.08768,-14.86464,-11.66592,72.573312,41.013
--12.16512,-15.75936,-14.56128,-11.33568,71.092224,40.464
--12.901,-16.587,-15.326,-12.028,74.8355,40.9922
--12.64298,-16.25526,-15.01948,-11.59732,73.329284,40.4878
--12.1296,-15.5952,-14.5008,-11.5824,70.35168,40.176
--12.90366,-16.68744,-15.42618,-12.22452,74.841228,41.5404
--12.6027,-16.1766,-15.048,-11.75625,72.55017,39.653
--12.768,-16.512,-15.36,-11.808,74.0544,41.56
--12.3481,-15.8498,-14.744,-11.70305,71.08451,40.5945
--12.4754,-16.0132,-14.896,-11.6375,71.81734,40.147
--13.132,-16.856,-15.68,-12.446,75.5972,41.2972
--12.4754,-16.1063,-14.9891,-11.9168,71.82665,39.938
--12.7008,-16.36992,-15.14688,-12.2304,72.573312,40.176
--12.18375,-15.7035,-14.53025,-11.46175,69.61885,39.938
--13.095,-16.878,-15.714,-12.319,74.8258,40.5945
--12.5685,-16.1994,-15.0822,-11.7306,71.81734,39.938
--12.96,-16.704,-15.552,-12,74.0544,41.4144
--13.23,-17.052,-15.876,-12.25,75.5972,42.1988
--13.056,-16.704,-15.552,-12.192,74.0544,43.94
--13.328,-17.052,-15.876,-12.642,75.5972,44.247
--12.92544,-16.632,-15.49152,-12.3552,73.32336,42.7872
--12.6616,-16.2925,-15.1753,-12.103,71.81734,43.2725
--13.464,-17.424,-16.137,-12.771,76.3686,44.9856
--13.06144,-16.90304,-15.65452,-12.38916,74.085256,44.8252
--13.015,-16.72,-15.485,-12.255,73.283,43.2725
--12.88485,-16.5528,-15.4242,-12.32055,72.55017,43.9375
--13.563,-17.424,-16.236,-12.87,76.3686,48.05
--13.02048,-16.72704,-15.58656,-12.26016,73.313856,44.5824
--13.248,-16.896,-15.744,-12.384,74.0544,44.112
--13.11552,-16.82208,-15.6816,-12.3552,73.32336,45.2826
--12.7167,-16.31055,-15.1126,-11.9795,71.08451,45.0468
--12.98304,-16.65216,-15.5232,-12.13632,72.573312,44.5824
--12.85056,-16.57536,-15.3648,-12.19872,71.832768,44.5056
--13.62339,-17.44578,-16.17165,-12.83931,75.604914,45.6786
--13.07712,-16.74624,-15.5232,-12.2304,72.573312,45.0408
--13.48578,-17.26956,-16.10532,-12.80664,74.841228,45.0945
--12.81024,-16.40448,-15.29856,-12.16512,71.092224,43.9104
--13.21334,-16.92068,-15.77996,-12.64298,73.329284,43.9798
--13.62339,-17.44578,-16.26966,-12.93732,75.604914,44.7084
--13.48578,-17.36658,-16.10532,-12.90366,74.841228,43.7472
--13.034,-16.6649,-15.5477,-12.4754,71.80803,42.693
--13.167,-16.83495,-15.70635,-12.50865,72.64422,44.3025
--13.0368,-16.66848,-15.55104,-12.47808,71.925888,46.128
--13.86,-17.721,-16.533,-13.167,76.3686,47.35
--13.54023,-17.18937,-16.03701,-12.86802,74.077542,46.2924
--12.99456,-16.5888,-15.39072,-12.25728,71.175168,44.1888
--13.81941,-17.6418,-16.36767,-13.03533,75.604914,45.5004
--12.99315,-16.587,-15.38905,-12.3481,71.093725,44.9692
--13.536,-17.28,-16.128,-12.864,74.0544,46.44
--13.35936,-17.02848,-15.80544,-12.7008,72.657984,44.4
--13.49,-17.195,-15.96,-12.92,73.3685,45.66
--13.63626,-17.38143,-16.13304,-13.06008,74.173572,44.3678
--13.49568,-17.20224,-15.96672,-12.92544,73.408896,45.3915
--12.9504,-16.5072,-15.4128,-12.4944,70.44288,44.2944
--13.49,-17.195,-16.055,-12.92,73.3685,42.693
--13.0416,-16.5984,-15.4128,-12.4032,70.44288,42.96
--13.73372,-17.47928,-16.23076,-13.06144,74.181296,45.0408
--13.585,-17.29,-16.15,-12.73,73.378,45.4385
--13.59358,-17.30092,-16.1602,-12.92816,73.424344,45.227
--13.2696,-16.7713,-15.6655,-12.44025,71.17666,44.593
--13.5432,-17.21115,-15.9885,-12.9789,72.64422,44.422
--14.256,-18.117,-16.83,-13.662,76.4676,46.0845
--13.68576,-17.39232,-16.25184,-13.11552,73.408896,44.8896
--14.4,-18.3,-17,-13.6,77.24,46.76
--13.7808,-17.39232,-16.25184,-12.92544,73.4184,45.6885
--14.355,-18.117,-16.929,-13.662,76.4676,45.5004
--14.21145,-18.03384,-16.75971,-13.52538,75.702924,45.8964
--14.0679,-17.9487,-16.68744,-13.29174,74.938248,45.5004
--13.7808,-17.48736,-16.34688,-12.8304,73.408896,44.016
--13.87584,-17.39232,-16.25184,-13.02048,73.408896,43.44
--13.3152,-16.6896,-15.5952,-12.4944,70.44288,42.7975
--14.162,-17.848,-16.684,-13.58,74.9228,44.1835
--13.7313,-17.4933,-16.1766,-13.167,72.64422,44.4114
--13.87876,-17.68116,-16.44538,-13.11828,73.566934,43.9798
--13.73714,-17.40665,-16.18348,-12.98442,72.665707,43.1165
--13.97382,-17.49104,-16.35032,-13.02322,73.424344,42.9128
--14.553,-18.216,-17.028,-13.662,76.6062,44.24
--13.54605,-16.9556,-15.8498,-12.7167,71.314885,42.237
--13.97382,-17.5861,-16.44538,-13.40346,73.557428,43.4075
--14.26194,-17.9487,-16.78446,-13.5828,74.938248,43.7184
--14.35896,-18.04572,-16.78446,-13.38876,74.938248,43.7472
--13.6382,-17.04775,-15.94195,-12.7167,71.17666,41.667
--14.504,-18.13,-16.954,-13.524,75.6952,43.3552
--13.357,-16.606,-15.61325,-12.4545,69.700075,41.667
--13.92384,-17.4048,-16.27584,-12.98304,72.667392,42.96
--14.304,-17.856,-16.704,-13.44,74.1504,44.86
--14.01792,-17.49888,-16.36992,-13.1712,72.667392,43.5264
--13.87488,-17.32032,-16.20288,-13.0368,71.916576,44.7936
--14.16096,-17.67744,-16.53696,-13.21056,73.399392,46.8765
--14.85,-18.414,-17.226,-13.761,76.4577,45.8964
--14.55,-17.945,-16.878,-13.677,74.9228,46.36
--14.7,-18.228,-17.052,-14.014,75.6952,45.4328
--13.8225,-17.23205,-16.0341,-13.17745,71.17666,45.3669
--14.406,-17.95948,-16.807,-13.63768,74.181296,46.109
--13.68,-17.0544,-15.96,-12.6768,70.44288,46.512
--15,-18.6,-17.4,-14,77.24,48.05
--13.7712,-16.872,-15.8688,-12.768,70.44288,45.7344
--14.79951,-18.13185,-17.15175,-13.91742,75.702924,46.5795
--14.20155,-17.4933,-16.45875,-13.5432,72.634815,45.0775
--13.91465,-17.23205,-16.12625,-13.0853,71.17666,45.087
--14.74704,-18.04572,-16.9785,-13.5828,74.938248,47.089
--14.592,-17.856,-16.8,-13.44,74.1504,47.94
--14.59656,-17.76555,-16.80525,-13.4442,74.173572,46.3175
--14.744,-17.945,-16.975,-13.774,74.9228,47.13
--15.2,-18.7,-17.5,-14.3,77.24,47.05
--14.59656,-17.95761,-16.80525,-13.73229,74.173572,45.6385
--14.38965,-17.58735,-16.45875,-13.5432,72.64422,44.6025
--14.2443,-17.4097,-16.2925,-12.9409,72.04078,46.0012
--14.54112,-17.67744,-16.632,-13.21056,73.551456,46.3023
--14.24736,-17.32032,-16.296,-13.12992,72.056256,44.9664
--14.09895,-17.23205,-16.2184,-13.17745,71.30567,44.8625
--14.63924,-17.87128,-16.73056,-13.40346,73.566934,44.7558
--14.4837,-17.6814,-16.5528,-13.26105,72.64422,43.738
--14.78862,-18.05364,-16.90128,-13.63626,74.173572,45.8964
--15.246,-18.513,-17.424,-13.959,76.3686,46.04
--15.246,-18.513,-17.424,-13.86,76.3686,45.74
--15.5,-18.7,-17.6,-14,77.14,45.85
--14.136,-17.1456,-16.0512,-12.9504,70.26048,44.2944
--14.4336,-17.59968,-16.38912,-13.22304,71.739648,44.3678
--15.0381,-18.33678,-17.07552,-13.87386,74.65689,44.639
--14.88,-18.144,-16.896,-13.344,73.872,45.74
--14.67648,-17.68704,-16.55808,-13.26528,72.30048,45.1094
--14.98068,-17.95761,-16.90128,-13.54023,73.703025,44.6588
--14.5236,-17.5028,-16.3856,-13.2202,71.45425,43.9375
--15.132,-18.333,-17.169,-14.065,74.3505,46.04
--15.288,-18.522,-17.346,-14.112,75.1268,46.44
--14.16925,-17.05725,-15.97425,-12.996,69.176625,44.327
--14.92442,-17.87128,-16.82562,-13.40346,72.777936,46.1874
--15.229,-18.236,-17.169,-13.677,74.2632,47.65
--14.6167,-17.5028,-16.3856,-13.3133,71.18426,46.9812
--15.07671,-18.14967,-16.99731,-13.63626,73.424538,46.5018
--14.92442,-17.96634,-16.82562,-13.59358,72.67337,46.0362
--14.86464,-17.8752,-16.65216,-13.45344,71.92416,47.481
--15.642,-18.711,-17.523,-14.058,75.5964,48.9456
--14.8599,-17.77545,-16.64685,-13.26105,71.825985,47.462
--15.326,-18.236,-17.169,-13.774,73.9819,49.95
--15.484,-18.522,-17.346,-14.21,74.7446,50.14
--14.7098,-17.689,-16.5718,-13.3133,71.00737,47.633
--14.65185,-17.5085,-16.4027,-13.17745,70.27359,48.4515
--14.65185,-17.5085,-16.4027,-13.17745,70.27359,48.4515
--15.11136,-18.0576,-16.91712,-13.40064,72.477504,47.7504
--15.11136,-17.96256,-16.82208,-13.59072,72.382464,49.2426
--14.8029,-17.5959,-16.5718,-13.4995,70.91427,48.6668
--15.68,-18.62,-17.444,-14.112,74.7446,48.559
--15.36,-18.336,-17.088,-13.728,73.2096,47.568
--15.52,-18.43,-17.266,-13.968,73.9722,47.9568
--14.8992,-17.59968,-16.57536,-13.31616,71.013312,47.8501
--15.2064,-17.96256,-16.91712,-13.49568,72.487008,47.28
--15.52,-18.333,-17.266,-14.162,73.9722,47.6658
--14.6832,-17.4192,-16.3248,-13.4976,69.54912,46.4835
--15.295,-18.24,-17.005,-13.87,72.4565,48.93
--15.14849,-17.97119,-16.84211,-13.45487,71.753034,47.2778
--15.46083,-18.2457,-17.18937,-13.82832,73.242081,47.2778
--14.6832,-17.328,-16.3248,-13.224,69.54912,46.7904
--15.617,-18.333,-17.266,-13.968,73.9722,47.1711
--14.7744,-17.2368,-16.2336,-13.3152,69.54912,46.4075
--16.038,-18.81,-17.622,-14.256,75.4974,48.45
--15.39648,-18.0576,-17.01216,-13.7808,72.572544,46.6848
--15.55686,-18.34173,-17.18937,-13.92435,73.328508,46.7928
--15.2361,-17.96355,-16.83495,-13.7313,71.81658,47.9655
--15.876,-18.62,-17.542,-14.014,74.8328,48.37
--15.811,-18.43,-17.363,-13.968,74.0789,48.46
--15.0822,-17.689,-16.5718,-13.5926,71.09116,45.752
--14.8656,-17.4192,-16.3248,-13.224,69.64032,45.752
--15.49152,-18.24768,-17.01216,-13.7808,72.572544,47.1636
--15.33504,-18.06336,-16.84032,-13.82976,71.933568,45.552
--15.97563,-18.71991,-17.54379,-14.30946,74.938446,47.1636
--16.072,-18.718,-17.542,-14.21,74.9308,48.16
--15.58984,-18.0614,-17.01574,-13.68864,72.682876,46.2108
--14.9568,-17.4192,-16.3248,-13.4064,69.73152,44.7735
--16.236,-19.008,-17.721,-14.553,75.6954,47.2725
--15.58656,-18.24768,-17.1072,-13.87584,72.667584,46.9854
--15.91128,-18.62784,-17.4636,-14.0679,74.181492,46.1874
--15.74892,-18.43776,-17.2854,-13.92435,73.424538,45.8228
--15.74892,-18.34173,-17.2854,-14.02038,73.520568,46.6587
--15.908,-18.527,-17.46,-13.968,74.2632,47.24
--15.20475,-17.60065,-16.49485,-13.54605,70.540825,45.2505
--16.5,-19.2,-18,-14.8,76.55,46.55
--16.335,-19.107,-17.82,-14.652,75.7944,46.77
--16.005,-18.721,-17.46,-14.259,74.2535,45.4445
--15.84495,-18.43776,-17.2854,-13.92435,73.510965,46.5795
--16.268,-18.816,-17.64,-14.21,75.0288,46.0012
--15.77664,-18.15264,-17.1072,-14.06592,72.75312,46.3023
--15.936,-18.432,-17.28,-14.304,73.4976,46.95
--15.29856,-17.78688,-16.68096,-13.63968,70.54848,44.5824
--15.77664,-18.43776,-17.20224,-13.97088,72.762624,44.1984
--15.6123,-18.15165,-17.02305,-13.7313,72.00468,46.0845
--15.87168,-18.24768,-17.20224,-13.87584,72.762624,44.7936
--15.94098,-18.43776,-17.38143,-14.02038,73.616598,45.9756
--15.70635,-18.0576,-16.929,-13.7313,72.089325,44.593
--16.199,-18.624,-17.557,-14.259,74.3505,46.44
--15.71136,-18.15744,-17.02848,-13.82976,72.11232,44.7936
--15.87502,-18.34658,-17.20586,-13.97382,72.86349,45.2172
--15.38905,-17.8771,-16.67915,-13.6382,70.64219,45.8228
--15.5477,-17.9683,-16.8511,-13.6857,71.36115,43.833
--16.533,-19.107,-17.919,-14.256,75.8835,45.96
--16.8,-19.3,-18.1,-14.8,76.66,46.66
--15.64416,-18.06528,-16.85472,-13.78176,71.37648,44.7558
--15.80712,-18.25346,-17.12438,-13.92532,72.119985,44.7558
--15.6408,-18.1545,-16.9442,-13.5926,71.36115,43.7285
--16.296,-18.915,-17.654,-14.259,74.3505,45.66
--16.22907,-18.62982,-17.47746,-14.21244,73.606995,45.4905
--16.393,-18.721,-17.654,-14.356,74.3602,45.55
--15.25225,-17.41825,-16.33525,-13.1765,69.18565,44.2225
--16.22907,-18.53379,-17.47746,-14.4045,73.616598,45.2034
--16.393,-18.915,-17.751,-14.647,74.3602,45.66
--16.055,-18.62,-17.385,-14.345,72.9125,43.2725
--15.90121,-18.34755,-17.21847,-14.01941,72.129394,44.6588
--15.7339,-18.1545,-16.9442,-13.8719,71.45425,43.377
--15.827,-18.1545,-16.9442,-13.7788,71.45425,44.7468
--16.1568,-18.43776,-17.29728,-13.87584,72.9432,43.5264
--15.9885,-18.15165,-17.1171,-13.82535,72.19278,43.9375
--15.8304,-18.06528,-16.94784,-13.87488,71.4696,43.9104
--15.6655,-17.8771,-16.86345,-13.91465,70.725125,44.7752
--16.3251,-18.72585,-17.57349,-14.50053,73.703025,45.2826
--16.6617,-19.11195,-17.93583,-14.50548,75.222675,44.9955
--15.9953,-18.34755,-17.21847,-14.1135,72.214075,44.0768
--15.9936,-18.25152,-17.12256,-13.92384,72.2064,44.8252
--15.92352,-18.06528,-17.04096,-13.78176,71.4696,43.344
--16.929,-19.305,-18.117,-14.652,75.9825,44.8767
--16.929,-19.305,-18.117,-14.85,75.9825,45.2826
--16.929,-19.404,-18.117,-14.85,75.9825,45.2034
--16.42113,-18.82188,-17.57349,-14.50053,73.703025,45.5796
--16.929,-19.404,-18.216,-14.751,75.9924,44.9955
--15.75936,-17.9712,-16.86528,-13.54752,70.7328,43.728
--15.92352,-18.1584,-17.04096,-13.68864,71.4696,43.344
--15.85152,-17.9712,-16.86528,-13.73184,70.742016,43.9104
--16.684,-19.012,-17.751,-14.647,74.4572,44.75
--16.01664,-18.25152,-17.04096,-13.968,71.4696,43.248
--16.34,-18.62,-17.48,-14.345,72.9125,45.85
--15.8498,-18.0614,-16.9556,-13.6382,70.725125,43.0635
--16.34,-18.62,-17.48,-14.06,72.9125,45.56
--16.85772,-19.20996,-18.03384,-14.7015,75.222675,45.2034
--16.1063,-18.1545,-17.1304,-13.7788,71.45425,44.7468
--16.61492,-18.82384,-17.67136,-14.59808,73.7107,44.4332
--16.95573,-19.30797,-18.03384,-14.60349,75.222675,44.6985
--16.435,-18.715,-17.48,-13.87,72.9125,45.05
--16.435,-18.715,-17.575,-13.965,72.9125,45.74
--16.44538,-18.72682,-17.49104,-14.35406,72.95855,44.639
--17.127,-19.404,-18.216,-15.246,75.9825,44.7975
--17.127,-19.305,-18.216,-14.751,75.9924,44.8074
--16.44538,-18.63176,-17.49104,-14.44912,72.95855,44.639
--16.36992,-18.53376,-17.4048,-14.48832,72.196992,44.247
--15.8688,-18.0576,-16.872,-13.8624,69.996,43.5168
--16.71096,-18.91988,-17.7674,-14.69412,73.7107,44.7468
--16.70922,-19.01394,-17.76555,-14.69259,73.703025,43.9798
--17.052,-19.404,-18.13,-14.798,75.215,43.855
--16.704,-19.008,-17.856,-14.496,73.68,43.6224
--15.96,-18.0576,-16.872,-13.7712,70.00512,43.453
--16.807,-18.91988,-17.7674,-14.59808,73.720304,43.9628
--16.88148,-19.20996,-18.04572,-14.84406,74.46285,44.4906
--16.128,-18.33984,-17.14176,-14.19264,70.7328,43.44
--16.625,-18.905,-17.67,-14.725,72.9125,43.073
--15.96,-18.1488,-16.9632,-13.9536,70.07808,42.8544
--16.975,-19.303,-18.042,-14.841,74.5445,43.5918
--16.296,-18.53088,-17.41344,-14.24736,71.56272,43.8052
--16.8,-19.104,-17.856,-14.88,73.68,42.8544
--16.2925,-18.62,-17.4097,-14.4305,71.45425,43.9628
--16.38912,-18.624,-17.41344,-14.24736,71.478912,43.248
--16.73056,-19.012,-17.77622,-14.7343,73.05361,43.4075
--16.73056,-19.012,-17.77622,-14.54418,73.05361,43.7472
--17.07552,-19.404,-18.23976,-14.94108,74.55987,44.4234
--16.72,-19.095,-17.86,-14.725,72.9125,42.693
--16.72704,-19.008,-17.86752,-14.63616,73.03824,43.728
--16.896,-19.2,-18.048,-14.784,73.776,42.4704
--16.73056,-19.012,-17.87128,-14.7343,72.95855,44.0412
--16.3856,-18.7131,-17.5028,-14.5236,71.54735,44.4234
--16.90304,-19.30404,-18.05552,-15.07828,73.816344,44.051
--17.523,-19.899,-18.711,-15.444,75.9924,44.4114
--16.82562,-19.10706,-17.96634,-14.7343,72.95855,44.149
--16.99731,-19.30203,-18.14967,-14.88465,73.703025,44.6985
--17.169,-19.594,-18.333,-14.938,74.5445,45.34
--17.17254,-19.50102,-18.33678,-15.0381,74.55987,44.1144
--16.82208,-19.10304,-17.96256,-14.7312,73.03824,43.1424
--16.99731,-19.206,-18.14967,-14.88465,73.789452,44.4906
--16.1424,-18.24,-17.2368,-14.136,70.0872,43.8336
--16.99731,-19.30203,-18.14967,-14.88465,73.799055,44.3025
--17.266,-19.594,-18.333,-15.132,74.5445,44.4745
--17.266,-19.594,-18.43,-15.229,74.5445,44.94
--16.92068,-19.20212,-18.0614,-14.92442,73.05361,44.247
--17.444,-19.796,-18.522,-15.288,75.313,45.227
--16.5718,-18.8062,-17.689,-14.4305,71.54735,42.902
--16.7409,-18.9981,-17.8695,-14.76585,72.26802,45.0945
--17.09334,-19.30203,-18.2457,-14.98068,73.799055,44.5715
--17.266,-19.594,-18.43,-15.326,74.5542,45.26
--17.01216,-19.29312,-18.0576,-14.92128,73.03824,43.5168
--17.005,-19.285,-18.05,-14.82,72.998,45.85
--16.74624,-19.09824,-17.96928,-14.86464,72.291072,43.248
--17.36658,-19.69506,-18.53082,-15.13512,74.55987,45.7268
--16.49485,-18.70645,-17.60065,-14.46755,70.725125,43.168
--17.19116,-19.49612,-18.34364,-15.17432,73.7107,43.855
--17.363,-19.691,-18.527,-15.326,74.4475,43.9701
--17.01574,-19.29718,-18.15646,-14.82936,73.05361,44.933
--17.28,-19.488,-18.336,-15.36,73.6896,43.8336
--17.64,-19.894,-18.718,-15.386,75.215,44.7468
--16.9362,-19.10027,-17.97119,-14.96031,72.214075,43.7955
--17.2854,-19.59012,-18.34173,-15.3648,73.799055,43.5142
--16.245,-18.411,-17.328,-14.2595,69.357125,42.7975
--17.6418,-19.99404,-18.81792,-15.38757,75.320685,44.4906
--16.758,-18.9924,-17.8752,-14.6167,71.54735,44.0412
--17.2854,-19.49409,-18.43776,-15.07671,73.799055,43.8925
--16.7616,-18.90336,-17.87904,-14.8992,71.4696,43.8052
--17.919,-20.097,-19.008,-15.543,76.0815,45.74
--17.195,-19.38,-18.24,-15.01,72.998,43.073
--17.20224,-19.38816,-18.24768,-15.2064,73.028736,44.7975
--17.557,-19.788,-18.624,-15.229,74.5445,44.3678
--17.38143,-19.59012,-18.43776,-15.07671,73.799055,43.4075
--17.38143,-19.59012,-18.43776,-15.17274,73.799055,44.8074
--16.68096,-18.80064,-17.69472,-14.7456,70.7328,43.248
--16.67915,-18.7986,-17.6928,-14.46755,70.817275,43.2725
--18.1,-20.4,-19.2,-15.7,76.75,45.15
--17.1171,-19.1862,-18.0576,-14.8599,72.183375,43.738
--17.47746,-19.59012,-18.43776,-15.17274,73.703025,43.6985
--17.30092,-19.39224,-18.25152,-15.2096,72.95855,44.149
--17.29,-19.38,-18.24,-14.915,72.998,42.7975
--18.018,-20.196,-19.008,-15.642,76.0815,45.85
--17.30092,-19.39224,-18.25152,-14.92442,73.05361,44.345
--17.12256,-19.19232,-18.06336,-14.95872,72.30048,44.016
--16.94784,-18.99648,-17.87904,-14.61984,71.56272,43.7955
--17.29728,-19.38816,-18.24768,-15.01632,73.028736,43.2576
--17.47928,-19.59216,-18.43968,-15.17432,73.80674,44.2568
--16.7713,-18.7986,-17.6928,-14.5597,70.80806,42.2275
--17.385,-19.38,-18.24,-15.105,73.0075,45.44
--17.75466,-19.79208,-18.62784,-15.23214,74.46285,44.345
--17.93583,-19.99404,-18.81792,-15.28956,75.222675,44.7975
--16.86345,-18.7986,-17.78495,-14.65185,70.80806,43.377
--17.75466,-19.79208,-18.62784,-15.13512,74.46285,44.639
--17.385,-19.38,-18.24,-15.105,72.9125,45.55
--17.934,-19.992,-18.816,-15.386,75.313,44.639
--17.57349,-19.59012,-18.53379,-15.26877,73.703025,44.7975
--17.57349,-19.59012,-18.43776,-15.17274,73.703025,44.2902
--18.216,-20.295,-19.107,-15.642,75.9825,45.25
--17.3052,-19.1862,-18.0576,-14.76585,72.183375,43.0635
--17.48,-19.38,-18.335,-15.105,72.9125,45.55
--16.9556,-18.89075,-17.78495,-14.5597,70.725125,44.0768
--17.31072,-19.2864,-18.15744,-14.86464,72.2064,44.541
--18.4,-20.5,-19.3,-15.8,76.75,45.16
--17.85168,-19.8891,-18.72486,-15.32916,74.55987,43.9628
--17.48,-19.475,-18.335,-15.105,72.9125,42.8925
--17.48736,-19.38816,-18.34272,-14.82624,72.933696,43.6224
--17.1304,-18.9924,-17.9683,-14.6167,71.45425,44.3548
--17.48,-19.38,-18.24,-15.105,72.9125,43.073
--16.872,-18.6048,-17.5104,-14.4096,69.996,43.9104
--18.315,-20.196,-19.008,-15.642,75.9825,44.8866
--17.4048,-19.19232,-18.06336,-14.86464,72.2064,43.0656
--17.5824,-19.4832,-18.24768,-15.01632,72.9432,42.8544
--17.575,-19.475,-18.24,-15.105,72.922,44.94
--17.945,-19.885,-18.721,-15.423,74.4475,43.4075
--16.872,-18.696,-17.6016,-14.5008,69.996,42.028
--18.13,-20.09,-18.914,-15.582,75.215,44.86
--18.04572,-19.8891,-18.72486,-15.5232,74.46285,44.345
--17.86158,-19.68615,-18.53379,-15.17274,73.703025,44.7975
--17.3166,-19.0855,-17.9683,-14.6167,71.45425,44.639
--18.414,-20.295,-19.107,-15.543,75.9825,44.4114
--17.3166,-19.0855,-17.9683,-14.896,71.45425,42.9875
--17.86158,-19.68615,-18.53379,-15.17274,73.712628,43.2329
--16.7865,-18.411,-17.41825,-14.2595,69.266875,41.743
--17.4933,-19.1862,-18.15165,-14.95395,72.183375,44.1144
--17.32032,-18.99648,-17.97216,-14.71296,71.4696,42.9128
--17.0544,-18.6048,-17.6016,-14.592,69.996,43.248
--17.32032,-18.99648,-17.97216,-14.80608,71.4696,43.5918
--17.952,-19.68,-18.528,-15.36,73.68,43.3536
--17.0544,-18.696,-17.6016,-14.5008,69.996,43.0656
--17.4097,-19.0855,-17.9683,-14.896,71.45425,44.345
--17.952,-19.68,-18.528,-15.264,73.6896,43.4496
--17.59483,-19.28845,-18.15937,-14.96031,72.214075,43.6985
--17.0544,-18.6048,-17.6016,-14.5008,69.996,42.693
--17.765,-19.38,-18.335,-15.105,72.9125,42.5125
--18.32787,-19.99404,-18.81792,-15.58359,75.232476,44.1936
--17.58735,-19.1862,-18.15165,-14.8599,72.183375,44.8767
--17.5028,-18.9924,-17.8752,-14.8029,71.45425,42.7975
--18.14274,-19.8891,-18.72486,-15.5232,74.46285,44.0154
--17.4097,-19.0855,-17.9683,-14.896,71.45425,42.7785
--17.6814,-19.28025,-18.15165,-14.95395,72.19278,43.947
--17.86,-19.475,-18.335,-15.2,72.9125,42.5125
--18.048,-19.68,-18.528,-15.264,73.68,42.288
--17.50656,-19.0896,-17.97216,-14.71296,71.4696,43.1165
--17.86,-19.475,-18.335,-15.01,72.9125,42.2275
--17.3242,-18.89075,-17.78495,-14.744,70.725125,42.617
--17.1456,-18.696,-17.6016,-14.592,69.9048,42.408
--17.1456,-18.696,-17.6016,-14.5008,69.91392,43.3536
--17.86,-19.475,-18.335,-15.2,72.8175,44.45
--17.68704,-19.2864,-18.15744,-15.0528,72.11232,44.149
--17.59968,-19.0896,-17.97216,-14.99232,71.37648,43.0098
--17.77545,-19.3743,-18.15165,-15.048,72.089325,43.8966
--18.14967,-19.78218,-18.53379,-15.46083,73.616598,44.4114
--17.96634,-19.58236,-18.34658,-15.30466,72.86349,43.561
--18.333,-19.885,-18.721,-15.52,74.3505,43.1165
--18.522,-20.188,-18.914,-15.582,75.1268,44.64
--17.05725,-18.50125,-17.41825,-14.44,69.176625,42.5125
--17.41824,-18.98496,-17.87904,-14.7456,70.649856,43.0656
--17.96256,-19.57824,-18.43776,-15.11136,72.84816,44.1144
--17.78112,-19.38048,-18.25152,-14.86464,72.11232,43.3552
--17.955,-19.57,-18.43,-15.2,72.8175,44.45
--17.2368,-18.7872,-17.6928,-14.5008,69.9048,42.3936
--17.689,-19.1786,-17.9683,-14.896,71.37046,41.287
--17.689,-19.0855,-18.0614,-14.7098,71.36115,41.5625
--18.9,-20.5,-19.3,-16.1,76.65,43.46
--17.6928,-19.0896,-17.97216,-14.8992,71.385792,42.1562
--17.6928,-19.18272,-18.06528,-14.8992,71.385792,42.3405
--17.8695,-19.3743,-18.2457,-14.95395,72.09873,41.8475
--18.05,-19.57,-18.43,-15.39,72.8175,43.94
--18.2476,-19.78424,-18.63176,-15.46244,73.61466,42.5908
--17.5104,-18.98496,-17.87904,-14.7456,70.64064,42
--18.0576,-19.57824,-18.43776,-15.30144,72.84816,43.3125
--18.2457,-19.78218,-18.62982,-15.3648,73.606995,43.2232
--17.8695,-19.3743,-18.2457,-15.2361,72.089325,44.1936
--18.81,-20.394,-19.206,-15.84,75.8835,44.3025
--18.43,-19.982,-18.818,-15.52,74.4572,44.1835
--18.15264,-19.57824,-18.43776,-15.30144,72.84816,44.3025
--17.328,-18.7872,-17.6928,-14.6832,69.996,42.288
--17.96355,-19.3743,-18.2457,-14.95395,72.09873,41.8475
--18.71991,-20.28807,-19.01394,-15.6816,75.134466,44.4114
--17.4192,-18.7872,-17.6928,-14.6832,69.996,42.5125
--18.527,-20.079,-18.915,-15.52,74.4475,43.76
--17.96355,-19.46835,-18.33975,-15.14205,72.183375,41.572
--18.145,-19.57,-18.43,-15.295,72.9125,43.86
--17.96928,-19.38048,-18.25152,-15.14688,72.2064,42.0096
--17.78592,-19.18272,-18.06528,-14.8992,71.4696,42
--19.1,-20.6,-19.4,-16.1,76.75,43.25
--18.145,-19.57,-18.43,-15.295,72.9125,43.94
--17.60256,-18.98496,-17.9712,-14.92992,70.7328,42
--18.15646,-19.67742,-18.5367,-15.30466,72.95855,42.3308
--18.34364,-19.88028,-18.7278,-15.46244,73.7107,42.6692
--18.24768,-19.67328,-18.5328,-15.2064,73.03824,43.4214
--17.96355,-19.46835,-18.33975,-14.95395,72.277425,41.42
--18.624,-19.982,-18.915,-15.52,74.5445,43.86
--18.816,-20.286,-19.11,-15.876,75.313,42.9828
--18.432,-19.872,-18.624,-15.36,73.776,42.8544
--18.43776,-19.87821,-18.72585,-15.3648,73.799055,43.7184
--18.25152,-19.67742,-18.5367,-15.30466,73.05361,43.6688
--18.816,-20.286,-19.11,-15.778,75.313,43.561
--18.06528,-19.47663,-18.34755,-15.24258,72.308165,42.4472
--18.816,-20.286,-19.11,-15.876,75.313,42.9828
--18.43776,-19.87821,-18.72585,-15.55686,73.895085,43.3125
--17.6928,-19.07505,-17.96925,-14.83615,70.90021,42.408
--18.624,-20.079,-18.915,-15.52,74.6415,43.54
--19.008,-20.493,-19.305,-15.84,76.1706,43.9065
--18.43776,-19.78218,-18.72585,-15.46083,73.895085,42.3405
--18.62784,-20.08314,-18.9189,-15.81426,74.65689,43.3224
--18.72486,-20.08314,-18.9189,-15.5232,74.65689,42.9264
--18.914,-20.286,-19.11,-15.876,75.411,43.75
--18.721,-20.079,-18.915,-15.52,74.6415,43.65
--18.53379,-19.87821,-18.72585,-15.46083,73.904688,42.1562
--17.78495,-19.07505,-17.96925,-14.83615,70.909425,42.7285
--17.78495,-19.07505,-17.96925,-14.9283,70.909425,42.6218
--17.9683,-19.2717,-18.1545,-14.896,71.72424,43.071
--17.78688,-19.07712,-17.9712,-14.83776,71.000064,42.1152
--17.97216,-19.27584,-18.1584,-14.8992,71.739648,42.3936
--18.72486,-20.08314,-18.9189,-15.5232,74.744208,43.7976
--19.3,-20.7,-19.5,-16.2,77.04,43.76
--18.914,-20.384,-19.11,-15.582,75.509,43.54
--18.914,-20.286,-19.11,-15.778,75.509,44.06
--18.335,-19.665,-18.525,-15.485,73.188,43.54
--19.012,-20.286,-19.11,-15.778,75.4992,43.6688
--18.44164,-19.77248,-18.5367,-15.30466,73.234224,42.8352
--18.25152,-19.56864,-18.3456,-14.95872,72.48864,41.993
--18.624,-19.968,-18.816,-15.36,73.9584,41.136
--18.25152,-19.47456,-18.3456,-15.14688,72.48864,41.993
--18.25152,-19.47456,-18.3456,-15.14688,72.573312,42.2086
--18.63176,-19.97632,-18.82384,-15.65452,74.085256,41.9146
--19.206,-20.592,-19.404,-16.038,76.3785,42.96
--18.62982,-19.87821,-18.82188,-15.3648,74.077542,43.4214
--18.43776,-19.67328,-18.5328,-15.30144,73.313856,44.1144
--17.6928,-18.9696,-17.784,-14.7744,70.35168,42.4704
--17.5085,-18.772,-17.59875,-14.53025,69.61885,41.4675
--18.43776,-19.76832,-18.62784,-15.39648,73.313856,42.288
--18.43,-19.76,-18.62,-15.295,73.283,41.667
--18.0614,-19.3648,-18.2476,-14.896,71.81734,41.363
--18.43776,-19.76832,-18.62784,-15.49152,73.313856,41.7216
--17.96925,-19.1672,-18.0614,-14.83615,71.093725,41.192
--18.72,-19.968,-18.816,-15.456,74.0544,43.36
--17.8771,-19.1672,-18.0614,-14.9283,71.075295,42.0592
--18.72,-19.968,-18.816,-15.552,74.064,43.36
--18.5328,-19.76832,-18.62784,-15.39648,73.313856,41.7216
--18.9189,-20.18016,-19.01592,-15.71724,74.841228,42.1988
--18.5367,-19.77248,-18.63176,-15.39972,73.329284,42.3405
--19.305,-20.592,-19.404,-16.038,76.3587,43.06
--17.784,-18.9696,-17.8752,-14.8656,70.35168,40.7075
--17.96925,-19.1672,-18.0614,-15.02045,71.08451,41.7682
--19.5,-20.8,-19.6,-16.2,77.24,43.25
--17.9712,-19.16928,-18.06336,-14.92992,71.092224,41.136
--19.305,-20.691,-19.404,-16.038,76.4577,42.8175
--17.784,-19.0608,-17.8752,-14.7744,70.35168,41.2416
--18.1584,-19.36896,-18.25152,-15.27168,71.925888,41.136
--19.11,-20.384,-19.208,-15.876,75.6854,42.1988
--18.72585,-20.07027,-18.82188,-15.65289,74.173572,42.3423
--17.784,-18.9696,-17.8752,-14.8656,70.452,41.136
--18.62,-19.76,-18.62,-15.485,73.378,40.527
--17.784,-18.9696,-17.8752,-14.9568,70.44288,40.6752
--17.8752,-18.9696,-17.8752,-14.7744,70.43376,40.318
--18.4338,-19.5624,-18.4338,-15.2361,72.64422,42.0255
--18.63176,-19.86754,-18.63176,-15.49478,73.329284,41.013
--18.62784,-19.76832,-18.72288,-15.58656,73.399392,43.9065
--18.0614,-19.25935,-18.15355,-14.9283,71.08451,41.7682
--19.01592,-20.27718,-19.01592,-15.71724,74.841228,42.1988
--19.404,-20.592,-19.404,-16.038,76.2795,43.55
--18.06336,-19.16928,-18.15552,-15.2064,71.000064,43.632
--18.62,-19.855,-18.715,-15.39,73.1975,42.26
--19.404,-20.592,-19.503,-16.038,76.2696,45.74
--18.63176,-19.86754,-18.72682,-15.49478,73.14867,41.4869
--18.25152,-19.46208,-18.34464,-15.27168,71.65584,42.3936
--18.25152,-19.46208,-18.34464,-15.17856,71.65584,41.904
--18.0614,-19.25935,-18.15355,-14.9283,70.909425,42.0592
--18.25152,-19.46208,-18.34464,-15.27168,71.65584,41.6256
--18.62,-19.855,-18.715,-15.77,73.1025,41.0875
--18.0614,-19.25935,-18.15355,-15.02045,70.909425,44.4745
--19.01592,-20.27718,-19.11294,-15.91128,74.65689,47.2824
--18.912,-20.064,-18.912,-15.648,73.872,42.3936
--18.4338,-19.65645,-18.52785,-15.4242,72.36207,44.4906
--18.91791,-20.07027,-18.91791,-15.65289,73.895085,43.2232
--18.34464,-19.46208,-18.34464,-15.08544,71.65584,51.024
--19.503,-20.691,-19.503,-16.335,76.1805,53.14
--18.912,-20.064,-18.912,-15.744,73.872,52.85
--19.11294,-20.27718,-19.11294,-15.91128,74.666592,49.8564
--18.91988,-20.07236,-18.91988,-15.75056,73.80674,45.913
--18.91791,-20.07027,-18.91791,-15.74892,73.895085,48.4407
--18.72682,-19.86754,-18.72682,-15.58984,73.139164,50.323
--18.15355,-19.25935,-18.15355,-14.9283,70.909425,44.327
--18.15355,-19.25935,-18.15355,-15.02045,70.909425,46.132
--18.52785,-19.65645,-18.52785,-15.4242,72.371475,51.5196
--19.30797,-20.48409,-19.30797,-15.87762,75.418695,45.9756
--17.77925,-18.86225,-17.77925,-14.89125,69.447375,43.073
--18.15552,-19.26144,-18.15552,-15.02208,70.907904,49.584
--18.3407,-19.551,-18.3407,-15.4546,71.64045,51.107
--18.34464,-19.46208,-18.34464,-15.27168,71.65584,47.3664
--19.306,-20.482,-19.306,-16.17,75.4012,45.717
--18.34464,-19.5552,-18.34464,-15.27168,71.65584,50.3818
--19.11294,-20.27718,-19.11294,-15.91128,74.647188,54.7134
--18.52785,-19.65645,-18.52785,-15.2361,72.371475,53.618
--18.15355,-19.25935,-18.15355,-15.02045,70.909425,52.858
--18.43776,-19.46208,-18.34464,-15.17856,71.65584,52.7971
--18.6219,-19.65645,-18.52785,-15.33015,72.36207,46.132
--19.01394,-20.07027,-18.91791,-15.65289,73.895085,53.2026
--18.62784,-19.66272,-18.53376,-15.42912,72.39456,54.8212
--19.01394,-20.07027,-18.91791,-15.74892,73.895085,53.8641
--19.01592,-20.07236,-18.91988,-15.8466,73.90278,53.8412
--18.6219,-19.65645,-18.52785,-15.33015,72.371475,54.5787
--19.404,-20.58,-19.306,-15.974,75.411,54.84
--18.24768,-19.3536,-18.15552,-15.02208,70.91712,51.3024
--19.20996,-20.27718,-19.11294,-16.0083,74.75391,51.401
--19.008,-20.064,-18.912,-15.744,73.9584,51.024
--18.82188,-19.86754,-18.72682,-15.6849,73.234224,51.2645
--18.82188,-19.9626,-18.72682,-15.49478,73.329284,51.3912
--18.82188,-19.86754,-18.82188,-15.58984,73.234224,49.9162
--19.01394,-20.07027,-18.91791,-15.74892,74.077542,48.2526
--19.602,-20.691,-19.503,-16.335,76.2696,48.56
--19.602,-20.691,-19.602,-16.335,76.3686,48.2526
--18.0576,-19.152,-18.0576,-14.7744,70.35168,46.6944
--18.82188,-19.86754,-18.72682,-15.58984,73.33879,46.4048
--19.01592,-20.1684,-18.91988,-15.75056,73.989216,45.913
--18.62784,-19.7568,-18.53376,-15.33504,72.48864,45.168
--18.62784,-19.7568,-18.53376,-15.24096,72.48864,44.5824
--19.01592,-20.07236,-18.91988,-15.65452,74.085256,45.2172
--18.72192,-19.66272,-18.53376,-15.42912,72.573312,45.0408
--18.91296,-19.86336,-18.72288,-15.6816,73.313856,43.728
--17.95975,-18.86225,-17.77925,-14.71075,69.61885,43.2725
--18.91694,-19.86754,-18.72682,-15.49478,73.329284,43.9701
--19.50399,-20.48409,-19.30797,-16.07364,75.506904,44.5995
--19.303,-20.37,-19.109,-15.908,74.8258,44.94
--18.72192,-19.66272,-18.53376,-15.5232,72.573312,43.5264
--19.10997,-20.1663,-18.91791,-15.74892,74.077542,44.6985
--19.303,-20.37,-19.109,-15.811,74.8258,43.8925
--17.95975,-18.9525,-17.77925,-14.89125,69.61885,43.377
--18.72391,-19.7589,-18.62982,-15.33667,72.581026,43.6985
--18.71595,-19.7505,-18.52785,-15.70635,72.55017,42.693
--18.5269,-19.4579,-18.3407,-15.2684,71.91044,42.902
--19.10997,-20.1663,-18.91791,-15.84495,74.173572,43.5142
--18.71595,-19.7505,-18.52785,-15.2361,72.634815,42.028
--18.33984,-19.3536,-18.15552,-15.11424,71.184384,42.7776
--19.30698,-20.3742,-19.20996,-16.0083,74.938248,44.0055
--18.91296,-19.9584,-18.72288,-15.58656,73.399392,42.7776
--18.53088,-19.5552,-18.43776,-15.17856,71.925888,43.1262
--19.303,-20.37,-19.206,-15.908,75.0586,44.35
--19.10997,-20.1663,-19.01394,-15.74892,74.308014,44.0055
--18.91694,-19.9626,-18.72682,-15.58984,73.566934,43.2232
--19.502,-20.58,-19.404,-16.17,75.8324,44.05
--19.30698,-20.3742,-19.11294,-16.0083,75.074076,43.7184
--18.53088,-19.5552,-18.43776,-15.27168,72.056256,42.9128
--19.50399,-20.5821,-19.40598,-16.17165,75.849939,43.7184
--18.91694,-19.9626,-18.82188,-15.58984,73.557428,43.2768
--19.8,-20.79,-19.602,-16.434,76.7052,44.24
--18.624,-19.5552,-18.43776,-15.27168,72.149376,42.1152
--19.012,-19.9626,-18.82188,-15.58984,73.652488,43.3552
--19.502,-20.58,-19.404,-16.072,75.9304,43.2768
--18.62,-19.551,-18.4338,-15.2684,72.13388,41.8475
--19.6,-20.58,-19.404,-16.072,75.9304,42.9926
--18.81,-19.7505,-18.6219,-15.51825,72.86994,41.572
--19.6,-20.58,-19.404,-16.17,75.9304,42.4928
--19.012,-19.9626,-18.82188,-15.58984,73.652488,42.2338
--18.24,-19.152,-18.0576,-14.9568,70.66176,41.7216
--19.404,-20.3742,-19.20996,-16.10532,75.171096,43.0254
--18.62,-19.551,-18.4338,-15.2684,72.13388,41.4675
--19,-19.95,-18.81,-15.675,73.6155,43.95
--18.81,-19.7505,-18.6219,-15.6123,72.86994,43.5006
--18.05,-19.04275,-17.8695,-14.89125,69.9257,41.952
--18.62,-19.551,-18.4338,-15.3615,72.22698,42.777
--19.404,-20.47122,-19.20996,-16.0083,75.171096,43.5006
--19.4,-20.467,-19.206,-16.005,75.2526,42.5539
--19.8,-20.79,-19.602,-16.137,76.8042,43.94
--19.6,-20.58,-19.404,-15.974,76.0186,42.9828
--20,-21,-19.8,-16.2,77.57,44.05
--18.62,-19.551,-18.4338,-15.2684,72.22698,41.6765
--19.404,-20.3742,-19.20996,-15.91128,75.268116,43.3125
--19,-20.045,-18.81,-15.675,73.701,43.25
--18.81,-19.84455,-18.6219,-15.4242,72.954585,41.363
--18.816,-19.7568,-18.62784,-15.5232,72.987264,42.8848
--18.24,-19.152,-18.0576,-14.8656,70.75296,41.287
--18.816,-19.85088,-18.62784,-15.42912,72.987264,42.8848
--18.7131,-19.6441,-18.4338,-15.3615,72.21767,41.4675
--18.432,-19.3536,-18.24768,-15.11424,71.497728,41.424
--19.899,-20.889,-19.602,-16.236,76.7943,43.3224
--18.14025,-18.9525,-17.8695,-14.801,70.01595,41.7525
--19.10706,-19.9626,-18.82188,-15.58984,73.747548,42.5442
--18.62,-19.6441,-18.4338,-15.2684,72.22698,42.9926
--18.3312,-19.152,-18.0576,-15.048,70.75296,41.5625
--18.52215,-19.3515,-18.2457,-15.20475,71.48997,42.5125
--18.91209,-19.7589,-18.62982,-15.52485,72.995022,42.8352
--19.698,-20.58,-19.404,-16.072,76.0186,43.3552
--18.71712,-19.5552,-18.43776,-15.55104,72.242496,42.192
--19.095,-19.95,-18.81,-15.675,73.701,41.572
--19.10304,-19.9584,-18.81792,-15.6816,73.732032,41.7984
--19.30203,-20.26233,-19.01394,-15.84495,74.500074,43.0254
--18.91008,-19.7568,-18.62784,-15.42912,72.977856,43.169
--18.90405,-19.84455,-18.6219,-15.6123,72.96399,43.7976
--19.296,-20.256,-19.008,-15.936,74.4768,42.3936
--19.50102,-20.47122,-19.30698,-16.0083,75.258414,43.071
--19.50102,-20.3742,-19.20996,-16.0083,75.268116,42.9828
--18.71712,-19.5552,-18.43776,-15.27168,72.242496,42.4704
--18.52215,-19.44365,-18.2457,-15.20475,71.48997,41.192
--19.095,-20.045,-18.81,-15.675,73.701,43.14
--18.52215,-19.44365,-18.2457,-15.20475,71.48997,40.4225
--19.296,-20.16,-19.008,-15.744,74.4672,42.55
--19.296,-20.16,-19.008,-15.84,74.4768,41.904
--19.30203,-20.1663,-19.01394,-15.94098,74.500074,42.5442
--19.10304,-19.9584,-18.81792,-15.6816,73.732032,42.1245
--20.1,-21,-19.8,-16.6,77.58,42.45
--18.52416,-19.26144,-18.24768,-15.11424,71.506944,40.9536
--19.10304,-19.9584,-18.81792,-15.6816,73.732032,41.6196
--19.899,-20.691,-19.602,-16.335,76.8042,42.85
--18.14025,-18.86225,-17.8695,-14.9815,70.01595,41.0875
--19.497,-20.273,-19.206,-15.908,75.2526,41.5645
--19.10304,-19.86336,-18.81792,-15.58656,73.732032,42.576
--19.095,-19.855,-18.81,-15.58,73.701,40.9165
--19.30404,-20.07236,-19.01592,-15.8466,74.507832,42.5908
--19.095,-19.855,-18.715,-15.58,73.701,44.46
--19.39806,-20.1663,-19.01394,-15.74892,74.500074,41.5742
--19.39806,-20.1663,-19.01394,-15.74892,74.490471,42.2334
--18.14025,-18.9525,-17.8695,-14.801,70.01595,40.9925
--18.4224,-19.152,-18.0576,-15.048,70.74384,40.848
--18.4224,-19.152,-18.0576,-14.9568,70.75296,41.52
--19.392,-20.16,-19.008,-16.032,74.4768,41.424
--19.59804,-20.47122,-19.20996,-15.91128,75.268116,42.2772
--19.39806,-20.26233,-19.01394,-15.84495,74.500074,41.9525
--18.2305,-19.04275,-17.8695,-14.89125,70.01595,41.667
--18.61632,-19.44576,-18.24768,-15.2064,71.497728,42.0096
--19.59804,-20.3742,-19.20996,-15.81426,75.258414,43.9065
--19.392,-20.256,-19.008,-15.84,74.4768,41.904
--18.4224,-19.152,-18.1488,-15.048,70.75296,41.6256
--19.39806,-20.26233,-19.10997,-15.74892,74.500074,43.7976
--19.594,-20.467,-19.206,-16.005,75.2526,44.24
--19.796,-20.678,-19.404,-16.366,76.0284,43.2768
--18.8062,-19.6441,-18.5269,-15.5477,72.22698,41.363
--19.39806,-20.26233,-19.01394,-15.74892,74.413647,44.4906
--19.79802,-20.68011,-19.50399,-16.07364,76.036158,43.9065
--19.19808,-20.05344,-18.91296,-15.77664,73.732032,43.7184
--18.8062,-19.6441,-18.5269,-15.3615,72.13388,43.855
--18.6143,-19.44365,-18.33785,-15.2969,71.39782,41.743
--19.796,-20.678,-19.502,-16.17,76.0186,43.855
--19.00416,-19.85088,-18.72192,-15.33504,72.987264,43.463
--19.39806,-20.26233,-19.10997,-15.84495,74.413647,43.7184
--18.8062,-19.6441,-18.5269,-15.5477,72.13388,42.9828
--18.81024,-19.64832,-18.53088,-15.3648,72.242496,43.3536
--19.19,-19.95,-18.905,-15.77,73.606,41.952
--19.39806,-20.26233,-19.10997,-15.84495,74.404044,42.9128
--19.796,-20.58,-19.502,-15.974,75.9304,43.94
--19.998,-20.79,-19.701,-16.335,76.7052,44.75
--19.19,-20.045,-18.905,-15.77,73.606,41.667
--19.392,-20.256,-19.104,-16.032,74.3808,44.64
--19.00416,-19.85088,-18.72192,-15.61728,72.893184,44.0412
--19.19,-20.045,-18.905,-15.675,73.606,42.2275
--19.79802,-20.68011,-19.50399,-16.17165,75.947949,43.7184
--19.998,-20.889,-19.701,-16.335,76.7151,43.9065
--19.20212,-20.05766,-18.91694,-15.6849,73.652488,43.4075
--18.61632,-19.44576,-18.33984,-15.29856,71.405568,42.3936
--19.19808,-20.05344,-18.91296,-15.58656,73.636992,43.9065
--18.8993,-19.6441,-18.5269,-15.2684,72.13388,42.1325
--19.19808,-20.05344,-18.91296,-15.6816,73.636992,42
--19.29718,-20.05766,-18.91694,-15.97008,73.652488,42.8352
--19.691,-20.467,-19.4,-16.102,75.1556,43.65
--19.89603,-20.68011,-19.50399,-16.26966,75.938148,43.7976
--20.097,-20.889,-19.8,-16.434,76.7052,43.9065
--20.097,-20.889,-19.701,-16.236,76.7052,43.94
--19.89603,-20.77812,-19.602,-16.26966,75.947949,44.1144
--19.09824,-19.94496,-18.72192,-15.61728,72.893184,42.288
--19.29312,-20.05344,-19.008,-15.6816,73.636992,42.96
--19.69506,-20.56824,-19.30698,-16.10532,75.171096,43.5006
--18.5136,-19.3344,-18.1488,-15.1392,70.66176,42.3936
--18.5136,-19.3344,-18.24,-15.1392,70.66176,42.4704
--19.894,-20.776,-19.6,-16.17,75.9304,44.56
--19.691,-20.564,-19.4,-16.102,75.1556,42.8352
--19.09215,-19.9386,-18.81,-15.6123,72.86994,43.4214
--19.69506,-20.56824,-19.404,-16.0083,75.171096,43.2036
--19.09824,-19.85088,-18.816,-15.80544,72.893184,42.777
--19.09824,-19.85088,-18.72192,-15.42912,72.893184,41.904
--19.89603,-20.77812,-19.602,-16.07364,75.938148,43.5105
--18.8993,-19.7372,-18.62,-15.4546,72.13388,40.812
--19.09824,-19.85088,-18.816,-15.5232,72.902592,42.6692
--20.097,-20.889,-19.8,-16.335,76.7052,43.76
--19.29312,-20.05344,-19.008,-15.6816,73.636992,43.5006
--19.894,-20.678,-19.502,-16.072,75.9304,42.777
--18.5136,-18.6048,-16.6896,-15.504,70.66176,42.3936
--18.90336,-18.06528,-15.8304,-16.38912,72.149376,42.1056
--20.097,-18.216,-15.741,-17.028,76.7052,43.9065
--19.09824,-16.74624,-14.39424,-16.464,72.893184,42.385
--19.691,-16.781,-14.162,-16.587,75.1556,42.3405
--19.691,-18.236,-15.035,-14.938,75.1556,41.4869
--19.285,-18.715,-15.77,-15.105,73.606,43.54
--18.8993,-18.5269,-15.827,-14.5236,72.13388,41.952
--19.488,-19.104,-16.416,-14.88,74.3808,41.904
--18.5136,-18.1488,-15.7776,-13.8624,70.66176,41.4675
--19.285,-18.81,-16.625,-14.345,73.5205,41.287
--20.097,-19.503,-17.424,-15.147,76.6062,43.25
--19.69506,-19.11294,-17.17254,-14.84406,75.074076,42.7086
--19.894,-19.306,-17.444,-14.994,75.8324,42.2184
--18.32075,-17.77925,-16.0645,-13.718,69.844475,40.242
--19.29718,-18.82188,-17.01574,-14.44912,73.566934,41.699
--19.69506,-19.20996,-17.4636,-15.0381,75.074076,42.4928
--19.09824,-18.72192,-17.02848,-14.5824,72.799104,41.7984
--19.10027,-18.91209,-17.21847,-14.67804,72.806842,42.0592
--19.69506,-19.50102,-17.75466,-15.23214,75.074076,42.4215
--19.29718,-19.20212,-17.49104,-14.82936,73.566934,42.5908
--19.691,-19.594,-17.848,-15.229,75.0683,42.0592
--19.29312,-19.19808,-17.5824,-15.01632,73.541952,41.52
--19.285,-19.19,-17.67,-14.82,73.5205,42.2275
--18.32075,-18.32075,-16.87675,-14.2595,69.844475,41.743
--19.09824,-19.09824,-17.59296,-14.86464,72.808512,42.8848
--19.691,-19.788,-18.236,-15.229,74.9228,41.8555
--20.3,-20.4,-18.9,-16,77.24,43.86
--19.09824,-19.19232,-17.78112,-15.14688,72.667392,42.1988
--19.29718,-19.39224,-17.96634,-15.11454,73.414838,43.2768
--19.09824,-19.19232,-17.8752,-14.95872,72.667392,41.7216
--19.69506,-19.79208,-18.4338,-15.5232,74.94795,43.1046
--19.49409,-19.68615,-18.2457,-15.55686,74.163969,42.8175
--19.488,-19.68,-18.336,-15.36,74.1504,44.16
--20.097,-20.295,-18.909,-15.84,76.4676,43.9065
--19.29718,-19.4873,-18.15646,-15.30466,73.424344,43.561
--19.894,-20.09,-18.718,-15.778,75.6952,43.561
--20.097,-20.394,-19.008,-15.939,76.3686,44.86
--19.69506,-20.08314,-18.72486,-15.62022,74.938248,43.2768
--18.70645,-19.07505,-17.78495,-14.9283,71.17666,42.6218
--19.49612,-19.78424,-18.53572,-15.46244,74.09486,43.9628
--19.691,-20.079,-18.721,-15.617,74.8258,43.0195
--20.3,-20.7,-19.3,-16.1,77.14,43.86
--20.3,-20.7,-19.4,-16.4,77.14,45.25
--19.09215,-19.46835,-18.2457,-15.048,72.55017,44.8866
--19.09824,-19.47456,-18.25152,-15.42912,72.573312,43.2768
--20.097,-20.493,-19.206,-16.038,76.3686,44.4906
--19.285,-19.665,-18.43,-15.39,73.283,42.028
--18.8993,-19.1786,-18.0614,-15.2684,71.81734,42.028
--18.8993,-19.2717,-18.1545,-15.0822,71.81734,42.3415
--19.20212,-19.67742,-18.5367,-15.49478,73.329284,43.463
--19.20212,-19.67742,-18.5367,-15.39972,73.329284,44.3548
--19.49612,-19.88028,-18.7278,-15.55848,74.085256,44.0412
--18.61632,-19.07712,-17.9712,-14.83776,71.092224,42.7776
--19.488,-19.872,-18.72,-15.552,74.0544,43.75
--18.5136,-18.8784,-17.784,-14.7744,70.35168,42.408
--19.79802,-20.28807,-19.20996,-16.07364,75.604914,43.3125
--19.392,-19.872,-18.72,-15.648,74.0544,44.05
--19.29718,-19.67742,-18.5367,-15.30466,73.329284,42.9128
--19.594,-20.079,-19.012,-15.908,74.7288,45.44
--18.70645,-19.1672,-18.0614,-14.83615,71.093725,42.617
--19.392,-20.064,-18.816,-15.744,74.0544,42.672
--20.097,-20.691,-19.404,-16.236,76.2696,44.7975
--18.81024,-19.46208,-18.34464,-15.45792,71.832768,43.5918
--18.8062,-19.4579,-18.3407,-15.3615,71.73355,43.073
--18.2305,-18.86225,-17.77925,-14.801,69.61885,42.788
--18.8062,-19.4579,-18.3407,-15.2684,71.72424,44.149
--19.00416,-19.66272,-18.53376,-15.33504,72.573312,43.44
--19.594,-20.273,-19.109,-15.908,74.7288,44.1835
--19.59804,-20.3742,-19.11294,-15.91128,74.75391,44.541
--19.594,-20.273,-19.109,-15.908,74.7385,44.0768
--18.81024,-19.5552,-18.34464,-15.27168,71.739648,43.248
--19.59804,-20.3742,-19.11294,-15.71724,74.744208,44.8767
--19.19808,-19.9584,-18.72288,-15.49152,73.218816,43.9104
--18.6143,-19.3515,-18.2457,-15.02045,71.08451,42.902
--19.00416,-19.7568,-18.53376,-15.42912,72.479232,44.149
--19.00416,-19.7568,-18.62784,-15.33504,72.479232,44.345
--19.79802,-20.5821,-19.40598,-16.07364,75.506904,44.4906
--18.81024,-19.5552,-18.43776,-15.17856,71.74896,43.4496
--19.59804,-20.3742,-19.20996,-15.81426,74.744208,44.7975
--18.32075,-18.9525,-17.8695,-14.71075,69.5286,42.408
--19.594,-20.37,-19.206,-15.908,74.7288,44.64
--19.39806,-20.1663,-19.01394,-15.55686,73.981512,43.6985
--18.6143,-19.3515,-18.2457,-15.02045,70.99236,44.1835
--18.8062,-19.551,-18.4338,-15.1753,71.72424,43.9375
--18.8993,-19.551,-18.4338,-15.0822,71.72424,45.4328
--19.998,-20.79,-19.602,-16.335,76.2696,45.55
--18.8062,-19.551,-18.4338,-15.4546,71.72424,42.7975
--19.19,-19.95,-18.81,-15.58,73.188,42.9875
--19.39806,-20.1663,-19.01394,-15.65289,73.981512,44.6985
--19.19808,-19.9584,-18.81792,-15.58656,73.13328,44.7975
--19.19,-19.95,-18.81,-15.485,73.188,43.5575
--19.392,-20.16,-19.008,-15.744,73.9584,45.44
--19.594,-20.37,-19.206,-15.908,74.7288,44.0768
--19.392,-20.16,-19.008,-15.84,73.9584,43.2384
--19.594,-20.37,-19.206,-15.908,74.6318,44.6588
--19.19,-19.95,-18.81,-15.77,73.1025,42.693
--18.2305,-19.04275,-17.8695,-14.801,69.447375,42.408
--19.392,-20.256,-19.008,-15.744,73.8624,45.66
--19.392,-20.16,-19.008,-15.648,73.8624,44.45
--18.9981,-19.7505,-18.6219,-15.33015,72.36207,42.5125
--19.00416,-19.7568,-18.62784,-15.5232,72.39456,44.0412
--19.998,-20.79,-19.602,-16.236,76.1706,44.86
--18.6143,-19.44365,-18.2457,-15.1126,70.90021,43.5918
--19.392,-20.256,-19.008,-15.744,73.8624,43.728
--19.19808,-20.05344,-18.81792,-15.6816,73.123776,43.44
--18.4224,-19.2432,-18.1488,-14.9568,70.16928,43.344
--19.594,-20.467,-19.303,-16.005,74.6318,43.1165
--19.796,-20.58,-19.502,-16.17,75.4012,45.26
--18.4224,-19.152,-18.1488,-15.048,70.1784,42.96
--18.61632,-19.3536,-18.33984,-15.2064,70.907904,43.728
--20.2,-21.1,-19.9,-16.4,76.94,44.56
--19.00416,-19.85088,-18.72192,-15.5232,72.385152,43.561
--18.9981,-19.84455,-18.71595,-15.4242,72.36207,44.4906
--19.594,-20.467,-19.303,-16.005,74.6318,43.5142
--18.8993,-19.6441,-18.5269,-15.4546,71.63114,42.408
--19.392,-20.256,-19.104,-15.936,73.8624,44.56
--18.81024,-19.64832,-18.53088,-15.45792,71.646528,42.4704
--19.796,-20.678,-19.502,-16.268,75.411,43.0612
--19.20212,-20.05766,-18.91694,-15.49478,73.14867,43.4075
--18.8062,-19.6441,-18.5269,-15.3615,71.63114,41.8475
--19.998,-20.889,-19.701,-16.434,76.1706,44.86
--19.488,-20.256,-19.104,-15.84,73.8624,42.8544
--19.39806,-19.97424,-18.2457,-15.26877,73.885482,44.3025
--19.00618,-18.62982,-16.55984,-13.64305,72.392846,42.6218
--19.594,-18.43,-16.005,-12.804,74.6415,43.1262
--18.9981,-17.1171,-14.76585,-11.75625,72.36207,43.3125
--19.594,-17.072,-14.453,-11.252,74.6415,44.16
--19.89603,-16.6617,-13.91742,-10.29105,75.408894,43.7184
--18.90336,-15.3648,-12.66432,-8.93952,71.646528,42.96
--19.29312,-15.2064,-12.26016,-8.17344,73.03824,42.672
--19.691,-15.132,-11.931,-7.663,74.6318,44.45
--19.09824,-14.20608,-10.8192,-6.67968,72.30048,43.0656
--18.5136,-13.4064,-9.9408,-6.2016,70.0872,42.8544
--19.19,-13.395,-9.785,-6.555,73.0075,44.75
--20.097,-13.365,-9.504,-7.326,76.0815,44.1144
--19.79802,-12.64329,-9.11493,-7.35075,75.310884,43.9065
--18.8993,-11.2651,-8.1928,-7.0756,71.53804,43.463
--19.796,-11.368,-8.232,-6.958,75.313,43.9628
--19.00618,-10.06763,-7.33902,-6.02176,72.308165,43.9701
--19.39806,-9.41094,-6.62607,-5.47371,73.799055,43.3008
--19.39806,-8.93079,-5.85783,-5.28165,73.799055,44.8074
--19.392,-7.968,-5.088,-5.088,73.7664,45.15
--19.19,-7.03,-3.895,-4.655,72.998,45.25
--20.2,-6.6,-3,-4.1,76.75,44.75
--19.39806,-5.7618,-1.9206,-3.45708,73.789452,44.4906
--19.19808,-4.752,-0.4752,-2.8512,72.9432,44.5896
--19.59804,-4.07484,0.4851,-2.52252,74.46285,43.561
--19.392,-3.36,1.632,-2.112,73.68,42.288
--18.52416,-2.48832,2.67264,-1.47456,70.7328,42.96
--19.899,-2.178,3.96,-1.287,75.9825,44.4114
--19.899,-1.386,4.95,-1.089,75.9825,44.3025
--18.52416,-0.64512,5.71392,-0.55296,70.7328,42.8544
--19.698,-0.098,7.252,-0.098,75.215,45.33
--18.62,0.6517,7.8204,0.1862,71.45425,44.0412
--19.206,1.24839,9.21888,0.48015,73.703025,43.7976
--18.43,1.6587,9.9522,0.9215,70.725125,42.6218
--19.012,2.18638,11.31214,1.71108,72.95855,44.0412
--19.008,2.94624,12.3552,2.09088,72.9432,42.7776
--18.91296,3.42144,13.40064,2.376,72.9432,44.3025
--19.303,4.365,14.744,3.201,74.3602,44.75
--19.602,5.049,16.335,3.861,75.9825,45.05
--19.20996,5.62716,17.07552,4.3659,74.36583,45.2034
--18.0576,6.0192,16.872,4.3776,69.9048,43.1424
--18.0576,6.5664,17.8752,4.9248,69.89568,42.408
--18.34464,7.17024,18.99648,5.30784,71.37648,43.7955
--18.72682,8.36528,20.53296,5.79866,72.86349,44.0768
--18.4338,8.93475,21.16125,6.30135,72.089325,42.028
--18.2476,9.4962,21.8785,6.517,71.36115,42.9875
--18.816,10.752,23.616,7.296,73.5936,44.57
--18.9189,11.35134,24.83712,7.85862,74.36583,44.7084
--19.11195,12.05523,25.97265,8.52687,75.124665,43.7976
--18.25152,12.51264,25.68384,8.65536,72.11232,42.576
--17.8771,13.0853,26.07845,8.8464,70.632975,43.3008
--18.15165,13.82535,27.2745,9.5931,71.995275,42.617
--17.5104,13.9536,27.36,9.7584,69.8136,43.833
--18.06336,15.24096,28.88256,10.72512,72.01824,42.8544
--17.96928,15.89952,29.54112,10.91328,72.01824,44.5312
--18.2457,16.70922,30.63357,11.5236,73.520568,43.1262
--18.6219,17.83782,32.04927,12.34926,75.026655,44.9856
--17.77545,17.58735,31.13055,12.50865,71.995275,45.8964
--17.41824,17.69472,31.05792,12.71808,70.45632,44.784
--16.967,17.8695,31.31675,12.635,69.00515,43.0635
--17.58735,19.3743,33.38775,13.63725,71.901225,43.5575
--17.86158,20.45439,34.76286,14.69259,73.414935,42.9031
--16.872,19.8816,33.744,14.5008,69.73152,42.8544
--17.5861,21.29344,35.93268,15.49478,72.67337,43.8648
--18.4,23.2,38.6,16.7,76.45,45.55
--16.86528,21.6576,36.31104,15.85152,70.465536,42.8544
--17.12256,22.5792,37.53792,16.55808,71.933568,43.6224
--17.02305,23.41845,38.1843,17.1171,71.901225,42.788
--16.758,23.6474,38.2641,17.3166,71.18426,43.855
--16.83495,24.6411,39.3129,18.15165,71.901225,41.952
--17.09512,25.73872,40.817,19.01592,73.42258,44.345
--16.1424,24.9888,39.216,18.6048,69.73152,41.743
--16.90128,26.79237,41.67702,19.78218,73.424538,44.2902
--16.2925,26.5335,41.0571,19.9234,71.09116,42.2275
--17.052,28.616,43.708,21.364,74.8328,44.345
--15.7776,27.0864,41.4048,20.52,69.7224,42.9875
--16.01664,28.21536,42.55584,21.4176,71.106432,43.9104
--16.66,29.89,45.374,23.03,74.8328,44.5312
--15.4128,28.1808,42.7728,21.5232,69.64032,43.168
--15.80544,29.44704,44.49984,22.76736,71.839488,43.9104
--15.5477,29.5127,44.5018,22.9026,71.09116,44.5312
--15.5232,30.19968,45.53472,23.52,71.839488,42.288
--15.58656,31.17312,46.47456,24.33024,72.56304,42.96
--15.49152,31.45824,47.0448,24.80544,72.572544,44.9856
--15.14849,31.33197,46.85682,24.83976,71.847124,42.6218
--15.2064,31.93344,47.80512,25.37568,72.477504,44.4
--15.42618,32.9868,49.28616,26.48646,73.987452,45.7875
--14.92128,32.7888,48.75552,26.42112,72.477504,44.5995
--14.52672,32.592,48.32928,26.16672,71.013312,43.728
--15.092,34.888,51.156,27.832,74.7348,44.34
--14.39424,33.8688,49.58016,27.37728,71.745408,43.9104
--14.0581,33.7953,49.343,26.999,70.99806,41.9425
--14.45598,35.4123,50.9355,29.97918,73.987452,45.0945
--13.357,32.851,46.7495,29.241,68.82465,42.788
--13.59552,33.80256,47.58432,30.7296,71.013312,43.6888
--14.21,35.476,49.294,31.654,74.7348,44.86
--13.87386,35.02422,48.12192,31.24044,73.987452,43.5006
--13.677,34.629,46.754,34.338,73.9722,45.04
--13.72,33.026,44.982,34.496,74.7348,43.94
--12.5856,29.64,39.9456,31.464,69.55824,42.672
--12.7908,29.62575,39.3129,31.6008,71.72253,43.4214
--13.266,30.195,39.699,32.076,75.4974,44.75
--12.64032,27.75168,36.49536,30.22272,72.477504,43.7976
--12.707,27.451,35.793,30.167,73.9819,44.64
--12.26274,25.85632,33.84136,28.70812,72.492756,43.7472
--11.5824,23.8944,31.1904,26.9952,69.55824,42.672
--11.6375,23.6474,30.723,26.999,70.99806,43.6688
--11.45376,23.00064,29.70528,25.88736,71.013312,42.5664
--11.15136,22.02624,28.47744,25.25184,70.281216,42.4704
--11.30976,21.8592,28.41696,25.47072,72.477504,42.4704
--11.232,21.312,27.744,25.152,73.2096,43.344
--11.04,20.64,26.976,24.576,73.2096,44.112
--10.848,20.064,26.112,23.904,73.2096,45.33
--10.5633,19.49409,25.35192,23.43132,73.232478,43.7955
--10.05696,18.25152,23.93184,22.16256,71.013312,43.3008
--10.494,18.81,24.651,22.968,75.4974,44.4015
--9.88624,17.5861,23.00452,21.67368,72.492756,43.2232
--9.996,17.64,23.128,21.756,74.7348,43.561
--9.702,16.88148,22.21758,20.95632,73.987452,43.561
--9.408,16.128,21.312,20.16,73.2096,42
--9.40896,15.87762,21.26817,20.19006,74.742426,43.5006
--9.11988,15.23214,20.3742,19.59804,73.987452,43.169
--8.832,14.688,19.68,19.008,73.2096,41.7888
--8.3808,13.78176,18.53088,17.87904,71.013312,41.7216
--8.27904,13.54752,18.25152,17.59296,71.745408,43.169
--8.0066,13.034,17.5028,17.0373,71.09116,43.2768
--7.6608,12.312,16.6896,16.1424,69.64032,41.6256
--7.885,12.35,16.815,16.53,72.542,43.94
--7.22,11.3715,15.61325,15.25225,68.9149,41.363
--7.9,12.2,16.8,16.7,76.35,43.86
--7.392,11.328,15.648,15.648,73.3056,41.7216
--7.128,10.83456,15.01632,15.01632,72.56304,43.4214
--6.86784,10.3488,14.39424,14.48832,71.839488,42.1988
--6.4752,9.6672,13.5888,13.68,69.64032,40.983
--6.62607,9.69903,13.82832,14.02038,73.328508,42.7285
--6.04675,8.75425,12.635,12.996,68.9149,41.743
--6.468,9.212,13.328,13.72,74.8328,42.4928
--5.8368,8.2992,12.0384,12.312,69.64032,41.2775
--5.77344,8.19456,11.82624,12.47808,71.106432,42.4375
--5.529,7.64845,11.2423,11.70305,70.36574,40.907
--5.605,7.6,11.21,11.97,72.542,41.0875
--5.643,7.623,11.385,12.078,75.5964,43.36
--5.17495,6.96266,10.44399,11.19671,71.847124,41.6615
--5.292,6.86,10.486,11.27,74.8328,42.77
--4.8412,6.2377,9.5893,10.5203,71.09116,41.1894
--4.752,6.08256,9.40896,10.4544,72.572544,41.8275
--4.802,5.978,9.408,10.584,74.9308,42.55
--4.37664,5.40096,8.66016,9.68448,71.106432,42.0592
--4.37,5.13,8.455,9.5,72.6275,42.95
--3.971,4.5125,7.67125,8.75425,68.996125,40.907
--4.00416,4.37664,7.54272,8.8464,71.19024,40.3584
--3.97782,4.3659,7.56756,8.92584,74.084472,41.5912
--3.8016,4.08672,7.22304,8.64864,72.667584,42.0156
--3.9,4.1,7.2,8.7,76.45,41.96
--3.47985,3.47985,6.3954,7.99425,71.901225,39.938
--3.42,3.23,6.175,7.505,72.637,42.15
--3.29868,3.00762,5.91822,7.56756,74.181492,41.6196
--3.135,2.66,5.51,7.22,72.637,42.44
--3.104,2.522,5.335,7.275,74.0692,43.06
--2.7648,2.304,4.88448,6.72768,70.465536,41.7216
--2.6448,2.0064,4.56,6.2928,69.7224,40.9536
--2.63452,1.78771,4.42223,6.30403,71.941214,41.6712
--2.54016,1.4112,4.2336,6.02112,71.839488,41.1992
--2.47,1.235,3.895,5.89,72.6275,40.983
--2.28144,1.04566,3.70734,5.60854,72.67337,41.9048
--2.1888,0.912,3.2832,5.1984,69.7224,40.242
--2.09,0.76,3.23,5.035,72.6275,39.9285
--2.01663,0.57618,3.07296,5.08959,73.414935,40.7012
--2,0.4,2.9,5.2,76.46,42.36
--1.7328,0.0912,2.3712,4.1952,69.7224,40.1375
--1.764,-0.098,2.352,4.41,74.9308,41.8068
--1.59936,-0.37632,1.97568,3.95136,71.933568,40.848
--1.52064,-0.66528,1.80576,3.99168,72.667584,41.0496
--1.4553,-0.77616,1.55232,3.68676,74.181492,41.699
--1.2768,-0.8208,1.2768,3.5568,69.73152,40.3584
--1.19795,-1.01365,1.1058,3.3174,70.448675,40.9825
--1.164,-1.164,0.97,3.395,74.1565,41.96
--1.176,-1.372,0.784,3.234,74.921,40.8366
--1.01365,-1.56655,0.46075,2.7645,70.45789,39.5865
--0.95,-1.9,0.285,2.47,72.6275,39.862
--0.85554,-2.09132,0,2.28144,72.67337,40.8366
--0.75264,-2.25792,-0.09408,2.352,71.933568,39.6192
--0.7296,-2.28,-0.2736,2.0976,69.73152,40.0032
--0.65856,-2.44608,-0.4704,1.97568,71.92416,40.7288
--0.582,-2.716,-0.679,1.843,74.1662,41.45
--0.55872,-2.70048,-0.83808,1.67616,71.199552,40.0704
--0.48,-2.976,-1.056,1.344,73.392,41.26
--0.4,-3.4,-1.3,1.3,76.46,41.45
--0.361,-3.33925,-1.444,1.083,68.996125,39.273
--0.28512,-3.70656,-1.71072,0.85536,72.667584,39.6864
--0.288,-3.936,-1.92,0.864,73.4016,39.8976
--0.1881,-3.85605,-1.97505,0.84645,71.91063,41.4315
--0.19,-3.99,-2.185,0.475,72.637,39.938
--0.09506,-4.18264,-2.28144,0.38024,72.682876,40.9052
--0.0931,-4.1895,-2.4206,0.2793,71.18426,39.653
-0,-4.2389,-2.48805,0.09215,70.448675,39.938
-0,-4.56288,-2.75674,-0.28518,72.682876,40.5945
-0,-4.802,-2.97724,-0.19208,73.42258,40.7288
-0.09215,-4.7918,-3.04095,-0.5529,70.448675,39.938
-0.09504,-5.03712,-3.23136,-0.57024,72.667584,41.4315
-0.0931,-5.0274,-3.3516,-0.5586,71.18426,40.7288
-0.192,-5.28,-3.552,-0.96,73.4016,42.25
-0.194,-5.529,-3.783,-1.164,74.1565,40.7788
-0.1843,-5.43685,-3.686,-1.2901,70.448675,40.3132
-0.19206,-5.95386,-4.12929,-1.82457,73.424538,41.3226
-0.2793,-6.0515,-4.1895,-1.6758,71.18426,39.653
-0.27648,-5.9904,-4.23936,-1.47456,70.465536,40.176
-0.3,-6.4,-4.7,-1.6,76.45,41.74
-0.27645,-5.8976,-4.4232,-1.56655,70.36574,39.3775
-0.388,-6.208,-4.753,-1.746,74.1662,40.2065
-0.396,-6.534,-4.95,-2.376,75.6954,40.9266
-0.361,-6.22725,-4.693,-2.61725,69.00515,39.273
-0.38412,-6.91416,-5.18562,-2.68884,73.424538,40.1095
-0.39204,-7.15473,-5.39055,-2.54826,74.938446,40.7484
-0.38024,-6.93938,-5.32336,-2.56662,72.692382,40.3368
-0.37636,-6.77448,-5.36313,-2.44634,71.941214,39.8185
-0.38416,-6.91488,-5.57032,-2.401,73.432184,40.4348
-0.37632,-6.86784,-5.55072,-3.19872,71.933568,39.3024
-0.37632,-7.15008,-5.73888,-3.48096,71.933568,40.4348
-0.37248,-7.35648,-5.77344,-3.53856,71.199552,39.7118
-0.388,-7.857,-6.208,-3.298,74.1662,39.8185
-0.3762,-7.61805,-6.11325,-3.1977,71.901225,40.5306
-0.38412,-7.77843,-6.33798,-3.45708,73.414935,40.5306
-0.388,-7.857,-6.499,-3.492,74.1759,41.05
-0.38808,-7.95564,-6.59736,-3.58974,74.181492,40.9266
-0.38016,-7.88832,-6.55776,-3.61152,72.65808,39.408
-0.38808,-8.2467,-6.7914,-3.8808,74.181492,40.229
-0.38016,-8.26848,-6.74784,-4.37184,72.667584,39.6096
-0.3724,-8.379,-6.7963,-4.2826,71.18426,40.3368
-0.2793,-8.4721,-6.8894,-4.0964,71.18426,38.817
-0.28224,-8.65536,-7.15008,-4.13952,71.933568,39.12
-0.27645,-8.4778,-7.0034,-4.2389,70.45789,39.7118
-0.28215,-8.6526,-7.24185,-4.3263,71.91063,40.5405
-0.294,-9.016,-7.644,-4.508,74.9308,40.0428
-0.1824,-8.4816,-7.2048,-4.4688,69.73152,38.893
-0.28227,-8.84446,-7.5272,-4.51632,71.941214,39.6342
-0.19008,-9.0288,-7.69824,-4.94208,72.65808,39.2256
-0.2,-9.6,-8.2,-5.1,76.46,40.75
-0.19,-9.31,-7.885,-4.94,72.637,38.7125
-0.09025,-8.93475,-7.581,-4.8735,69.00515,39.197
-0.0931,-9.2169,-7.9135,-5.2136,71.17495,39.8272
-0.095,-9.595,-8.17,-5.32,72.637,40.57
-0.0912,-9.3936,-7.9344,-5.2896,69.73152,38.437
-0,-10.29,-8.722,-5.782,75.019,40.1212
-0,-9.67575,-8.2935,-5.529,70.45789,38.7125
-0,-9.47625,-8.1225,-5.2345,68.996125,38.893
--0.09504,-9.9792,-8.64864,-5.7024,72.65808,40.5306
--0.095,-10.26,-8.835,-6.365,72.637,40.94
--0.09504,-10.54944,-9.0288,-6.36768,72.65808,39.408
--0.194,-10.767,-9.215,-6.402,74.1662,39.5275
--0.19208,-10.5644,-9.21984,-6.05052,73.42258,40.0428
--0.192,-10.464,-9.216,-6.048,73.4016,39.2256
--0.28224,-10.25472,-9.12576,-6.02112,71.92416,39.408
--0.291,-10.573,-9.409,-6.305,74.1662,39.9252
--0.38808,-10.6722,-9.50796,-6.59736,74.181492,40.1212
--0.38016,-10.73952,-9.40896,-7.03296,72.65808,40.4514
--0.38412,-11.13948,-9.69903,-7.01019,73.414935,40.4514
--0.48015,-11.13948,-9.69903,-6.7221,73.424538,39.6342
--0.4752,-11.02464,-9.69408,-6.6528,72.667584,40.5306
--0.5586,-10.7065,-9.4962,-6.517,71.17495,38.817
--0.576,-11.04,-9.888,-6.72,73.4016,38.9376
--0.5586,-10.7065,-9.5893,-6.517,71.17495,39.935
--0.67914,-11.25432,-10.09008,-6.98544,74.17179,40.3425
--0.76,-11.115,-9.975,-6.745,72.6275,38.7125
--0.76048,-11.31214,-9.9813,-7.03444,72.682876,39.6508
--0.74496,-11.1744,-9.87072,-7.07712,71.199552,39.6342
--0.82935,-11.058,-9.86005,-7.0034,70.448675,39.2462
--0.86427,-11.71566,-10.37124,-7.39431,73.424538,40.0554
--0.9604,-11.71688,-10.46836,-7.49112,73.42258,39.7488
--0.9216,-11.33568,-10.1376,-7.18848,70.465536,39.2256
--0.99275,-11.191,-10.01775,-7.12975,69.00515,38.608
--1.02432,-11.64,-10.42944,-7.63584,71.292672,39.5275
--1.083,-11.3715,-10.19825,-7.581,68.996125,38.4275
--1.152,-12.384,-10.944,-8.256,73.4016,38.736
--1.23552,-12.3552,-10.9296,-8.0784,72.667584,38.9376
--1.26126,-12.6126,-11.25432,-8.05266,74.278512,39.641
--1.358,-12.513,-11.252,-7.954,74.1662,39.2462
--1.30368,-12.01248,-10.89504,-8.00832,71.19024,39.2365
--1.47,-12.838,-11.564,-8.722,74.9308,40.56
--1.41075,-12.6027,-11.19195,-8.74665,71.901225,40.0554
--1.50528,-12.7008,-11.2896,-8.56128,71.933568,38.8416
--1.52096,-12.73804,-11.50226,-8.36528,72.682876,39.935
--1.683,-13.167,-11.979,-8.613,75.6855,40.1544
--1.69344,-12.51264,-11.38368,-8.18496,71.933568,38.9472
--1.728,-12.672,-11.616,-8.352,73.4016,39.12
--1.75085,-12.25595,-11.2423,-7.9249,70.45789,39.5275
--1.78752,-12.60672,-11.47776,-8.4672,71.933568,39.3024
--1.98,-13.464,-12.276,-9.306,75.6855,40.2336
--2.079,-13.662,-12.375,-9.504,75.7944,40.4514
--1.97505,-13.07295,-11.8503,-8.93475,71.91063,38.817
--2.0482,-12.9409,-11.7306,-8.6583,71.17495,40.0428
--2.0064,-12.6768,-11.4912,-8.4816,69.73152,39.3024
--2.23146,-13.48578,-12.22452,-9.02286,74.181492,40.3368
--2.18638,-13.21334,-12.07262,-9.0307,72.682876,40.0222
--2.23488,-12.94368,-11.91936,-8.75328,71.28336,39.408
--2.4,-13.44,-12.288,-9.12,73.4016,41.16
--2.4,-13.44,-12.288,-9.216,73.488,41.16
--2.49678,-13.54023,-12.38787,-9.21888,73.510965,40.5306
--2.522,-13.774,-12.513,-9.603,74.2632,39.8185
--2.619,-13.871,-12.61,-9.603,74.2535,40.94
--2.68884,-13.82832,-12.57993,-9.50697,73.510965,40.4514
--2.5536,-13.224,-12.0384,-9.12,69.7224,39.0144
--2.70048,-13.5024,-12.29184,-9.21888,71.199552,39.4208
--2.78487,-14.02038,-12.77199,-9.79506,73.510965,40.6395
--2.8224,-13.73568,-12.60672,-9.69024,72.01824,39.3024
--2.976,-14.112,-12.864,-9.792,73.4016,40.75
--2.94686,-14.06888,-12.8331,-9.88624,72.76843,39.4208
--3.104,-14.453,-13.095,-10.185,74.2535,39.3432
--3.234,-14.602,-13.328,-10.388,75.019,39.935
--3.0723,-13.965,-12.7547,-9.9617,71.26805,38.608
--3.13344,-13.824,-12.62592,-9.76896,70.557696,38.8416
--3.16608,-13.968,-12.85056,-9.96384,71.292672,39.2462
--3.325,-14.345,-13.205,-10.26,72.7225,38.4275
--3.456,-14.688,-13.44,-10.656,73.488,38.9376
--3.564,-15.345,-13.959,-10.989,75.7845,40.0455
--3.51722,-14.7343,-13.40346,-10.36154,72.76843,39.641
--3.61,-14.63,-13.49,-10.07,72.7225,38.4275
--3.61228,-14.54418,-13.49852,-10.26648,72.76843,39.7488
--3.78378,-14.84406,-13.77684,-10.57518,74.26881,40.0428
--3.705,-14.725,-13.585,-10.925,72.7225,40.45
--3.7248,-14.61984,-13.40928,-10.80192,71.292672,39.2462
--3.895,-15.01,-13.775,-10.83,72.7225,38.608
--3.89664,-14.92128,-13.7808,-10.54944,72.75312,40.2336
--3.9102,-14.6167,-13.4995,-10.3341,71.27736,38.437
--3.9216,-14.2272,-13.224,-10.032,69.8136,38.3325
--3.9216,-14.2272,-13.3152,-10.032,69.8136,38.736
--4.0128,-14.2272,-13.224,-10.3056,69.8136,38.532
--4.2768,-14.82624,-13.87584,-10.73952,72.75312,40.0455
--4.23225,-14.76585,-13.7313,-10.9098,71.995275,38.4275
--4.2826,-14.8029,-13.6857,-10.7065,71.27736,38.152
--4.2864,-14.592,-13.4976,-10.5792,69.82272,38.6304
--4.60647,-15.77961,-14.60349,-11.56518,75.026655,39.9465
--4.704,-15.876,-14.602,-11.466,75.019,40.35
--4.4232,-14.9283,-13.73035,-10.78155,70.540825,39.3432
--4.704,-15.456,-14.304,-11.136,73.488,38.832
--4.8015,-15.55686,-14.4045,-11.33154,73.510965,39.2365
--4.85,-15.714,-14.55,-11.446,74.2535,39.3432
--4.79808,-15.33504,-14.20608,-11.19552,72.027648,40.0428
--4.94,-15.58,-14.44,-11.495,72.7225,38.817
--4.94,-15.675,-14.535,-11.59,72.7225,38.608
--5.14206,-16.10532,-14.84406,-11.6424,74.26881,40.5306
--5.238,-16.102,-14.841,-11.834,74.2632,40.64
--4.9761,-15.20475,-14.1911,-11.15015,70.540825,38.9975
--5.335,-16.102,-14.938,-11.737,74.2535,40.94
--5.376,-16.032,-14.88,-11.616,73.488,39.408
--5.1072,-15.3216,-14.136,-11.4,69.8136,38.7125
--5.586,-16.464,-15.288,-12.25,75.019,40.94
--5.25255,-15.57335,-14.3754,-11.6109,70.55004,38.817
--5.57032,-16.23076,-15.07828,-12.005,73.51862,40.229
--5.60854,-16.06514,-14.92442,-11.78744,72.76843,40.1212
--5.529,-15.6655,-14.5597,-11.6109,70.540825,38.817
--6,-17,-15.8,-12.8,76.55,41.15
--5.91822,-16.59042,-15.42618,-12.41856,74.26881,39.935
--5.85783,-16.42113,-15.26877,-12.29184,73.520568,39.7118
--6.076,-16.856,-15.582,-12.446,75.019,40.86
--5.98878,-16.44538,-15.2096,-12.3578,72.777936,39.7118
--6.04989,-16.61319,-15.46083,-12.38787,73.510965,39.4208
--6.336,-17.127,-15.939,-12.87,75.7845,40.0455
--6.37065,-16.95573,-15.77961,-12.64329,75.026655,40.1544
--6.24195,-16.70922,-15.55686,-12.4839,73.520568,39.4208
--6.468,-17.052,-15.876,-12.838,74.9308,40.16
--6.1104,-15.96,-14.7744,-11.9472,69.73152,39.3775
--6.17405,-16.12625,-15.02045,-11.7952,70.45789,39.197
--6.53004,-16.90128,-15.65289,-12.4839,73.414935,39.3432
--6.831,-17.424,-16.236,-13.167,75.6954,40.56
--6.35904,-16.22016,-15.11424,-12.25728,70.465536,38.9376
--6.86,-17.346,-16.17,-13.034,74.9308,41.699
--6.88842,-17.07552,-16.0083,-12.80664,74.084472,42.1988
--6.6101,-16.4787,-15.3615,-12.3823,71.09116,39.8272
--6.91416,-16.99731,-15.84495,-12.96405,73.328508,40.6915
--6.77448,-16.74802,-15.61894,-12.70215,71.847124,39.7118
--6.86565,-16.7409,-15.6123,-12.69675,71.81658,41.1444
--7.326,-17.721,-16.533,-13.464,75.5964,41.5404
--6.8894,-16.758,-15.5477,-12.9409,71.10047,39.862
--7.35,-17.738,-16.464,-13.524,74.8328,42.54
--7.203,-17.38324,-16.13472,-13.34956,73.249708,42.2772
--7.07712,-16.85472,-15.73728,-12.85056,71.013312,47.1711
--7.39508,-17.38324,-16.23076,-13.34956,73.240104,47.2654
--7.39431,-17.47746,-16.3251,-13.34817,73.242081,46.7055
--7.49112,-17.47928,-16.3268,-13.4456,73.249708,48.8432
--7.584,-17.568,-16.416,-13.44,73.2096,44.1888
--7.42995,-17.3052,-16.08255,-13.167,71.72253,47.1636
--7.3728,-16.95744,-15.85152,-12.9024,70.290432,42.8544
--7.46496,-16.95744,-15.85152,-12.9024,70.281216,43.6224
--7.46496,-16.95744,-15.85152,-12.9024,70.281216,43.9104
--7.71538,-17.31256,-16.18348,-13.54896,71.753034,46.8898
--7.64845,-17.04775,-15.94195,-13.36175,70.282805,45.2505
--7.64845,-17.1399,-16.0341,-13.17745,70.27359,45.9198
--8.4,-18.6,-17.4,-14.1,76.26,47.24
--7.98504,-17.68116,-16.54044,-13.59358,72.587816,46.7928
--8.5,-18.6,-17.5,-14.3,76.36,47.34
--8.245,-18.139,-16.975,-13.968,74.0789,47.35
--8.09088,-17.68704,-16.464,-13.82976,71.839488,45.8248
--8.18235,-17.6814,-16.5528,-13.63725,71.81658,42.5125
--8.613,-18.711,-17.424,-14.256,75.5964,43.64
--8.27904,-17.68704,-16.55808,-13.73568,71.933568,43.169
--8.9,-18.8,-17.6,-14.3,76.45,42.95
--8.03225,-16.967,-15.97425,-13.08625,69.00515,40.8025
--8.91,-18.711,-17.523,-14.454,75.6954,42.84
--8.6436,-18.2476,-17.09512,-14.30996,73.432184,41.7774
--8.56128,-17.96928,-16.84032,-13.92384,71.933568,41.0592
--8.65536,-17.96928,-16.84032,-13.82976,72.01824,41.699
--8.74552,-18.15646,-17.01574,-14.16394,72.777936,41.5645
--9.11493,-18.71991,-17.54379,-14.40747,75.036456,42.1245
--8.74944,-17.8752,-16.84032,-13.92384,72.01824,40.4544
--8.84352,-17.96928,-16.9344,-13.92384,72.027648,40.464
--9.02682,-18.43776,-17.2854,-14.30847,73.520568,41.2735
--8.7552,-17.78688,-16.68096,-13.824,70.557696,40.7424
--9.12384,-18.34272,-17.20224,-14.35104,72.762624,40.848
--9.603,-19.107,-17.919,-14.751,75.8934,42.76
--9.21888,-18.34272,-17.20224,-14.16096,72.84816,42.2334
--8.93855,-17.78495,-16.67915,-13.8225,70.632975,40.622
--9.41192,-18.53572,-17.47928,-14.50204,73.624264,41.8068
--9.9,-19.4,-18.2,-15.1,76.65,42.44
--9.506,-18.5367,-17.39598,-14.259,72.86349,41.2735
--9.8,-19.11,-17.934,-14.896,75.1268,41.699
--9.696,-18.72,-17.664,-14.592,73.5936,40.848
--9.797,-18.915,-17.848,-14.744,74.3602,41.2735
--9.3993,-17.96925,-16.9556,-13.91465,70.632975,40.527
--9.3024,-17.784,-16.7808,-13.9536,69.9048,40.812
--9.68715,-18.33975,-17.3052,-14.38965,72.089325,42.5205
--10.09503,-19.20996,-18.03384,-15.09354,75.124665,42.4215
--9.88416,-18.62784,-17.5824,-14.82624,72.9432,41.0496
--9.9792,-18.72288,-17.5824,-14.63616,72.9432,41.0496
--10.29,-19.404,-18.228,-15.092,75.215,42.091
--9.97248,-18.53376,-17.49888,-14.48832,72.2064,41.4144
--9.87072,-18.34464,-17.32032,-14.34048,71.385792,41.5645
--10.272,-18.912,-17.856,-14.592,73.68,42.96
--9.9617,-18.4338,-17.3166,-14.4305,71.45425,40.983
--10.692,-19.602,-18.513,-15.444,75.9825,42.7086
--10.04435,-18.33785,-17.23205,-14.3754,70.725125,41.0875
--10.1479,-18.5269,-17.4097,-14.6167,71.45425,41.363
--10.5644,-19.11196,-17.95948,-14.79016,73.7107,42.4928
--10.4566,-18.91694,-17.77622,-14.7343,72.95855,42.4928
--10.656,-19.104,-18.048,-14.88,73.68,43.46
--10.44288,-18.72192,-17.68704,-14.5824,72.2064,42.5908
--10.4272,-18.5269,-17.5028,-14.5236,71.45425,41.0875
--10.5203,-18.5269,-17.5028,-14.4305,71.45425,41.0875
--10.73952,-18.91296,-17.86752,-14.7312,72.9432,41.52
--10.50624,-18.33984,-17.32608,-14.2848,70.7328,41.52
--10.83,-18.905,-17.86,-14.63,72.9125,41.0875
--11.0446,-19.208,-18.15156,-15.17432,73.7107,42.4928
--11.04,-19.2,-18.144,-14.976,73.68,43.06
--11.25432,-19.50102,-18.33678,-15.32916,74.46285,42.7086
--10.80192,-18.624,-17.59968,-14.71296,71.4696,41.8458
--11.232,-19.296,-18.144,-14.976,73.68,43.36
--11.115,-19,-17.955,-15.01,72.9125,43.36
--11.8,-20.1,-19,-15.7,76.75,43.25
--10.7616,-18.3312,-17.328,-14.4096,69.996,41.3376
--11.781,-19.899,-18.81,-15.741,75.9825,42.6294
--11.08128,-18.71712,-17.6928,-14.80608,71.4696,41.6615
--11.4072,-19.10706,-18.0614,-14.82936,72.95855,41.5548
--11.76,-19.796,-18.62,-15.68,75.215,42.0714
--11.50226,-19.29718,-18.15646,-15.11454,72.95855,41.5645
--11.50226,-19.29718,-18.15646,-15.11454,72.95855,41.699
--11.2423,-18.70645,-17.60065,-14.5597,70.725125,40.4225
--11.47776,-19.00416,-17.96928,-14.86464,72.2064,40.7424
--11.45376,-18.90336,-17.78592,-14.80608,71.4696,40.848
--11.4266,-18.6143,-17.60065,-14.65185,70.725125,40.527
--11.66592,-19.00416,-17.96928,-14.86464,72.2064,41.699
--11.8825,-19.29718,-18.15646,-15.2096,72.95855,41.699
--12.1275,-19.69506,-18.62784,-15.5232,74.46285,41.5128
--11.6375,-18.8993,-17.8752,-14.9891,71.45425,41.8068
--12.348,-19.992,-18.816,-15.68,75.215,41.5912
--11.82624,-18.99648,-17.87904,-14.80608,71.4696,41.1668
--12.065,-19.38,-18.24,-15.39,72.903,42.15
--11.79648,-18.80064,-17.69472,-14.7456,70.7328,40.56
--11.79648,-18.80064,-17.69472,-14.56128,70.7328,40.4544
--12.51558,-19.79208,-18.72486,-15.5232,74.46285,41.8275
--12.13245,-19.1862,-18.15165,-15.14205,72.183375,40.242
--12.48,-19.68,-18.528,-15.456,73.68,40.3584
--12.4852,-19.6882,-18.53572,-15.3664,73.7107,41.1208
--12.70962,-19.8891,-18.82188,-15.81426,74.46285,41.5128
--12.19872,-19.0896,-18.06528,-14.8992,71.4696,40.752
--12.41856,-19.2864,-18.25152,-15.14688,72.2064,41.1992
--13.068,-20.295,-19.206,-16.137,75.9825,42.14
--12.00325,-18.50125,-17.5085,-14.53025,69.25785,39.938
--12.38496,-19.0896,-18.06528,-14.8992,71.4696,40.7788
--12.50865,-19.3743,-18.2457,-15.048,72.183375,39.7575
--12.3481,-18.9829,-17.8771,-14.9283,70.73434,40.7788
--12.312,-18.7872,-17.6928,-14.8656,69.9048,40.3584
--12.44025,-18.9829,-17.8771,-15.02045,70.725125,40.7788
--13.23,-20.188,-19.11,-16.072,75.215,41.1894
--12.92544,-19.57824,-18.5328,-15.58656,72.857664,41.6097
--13.32936,-20.28807,-19.11195,-15.87762,75.222675,41.8275
--12.75744,-19.27584,-18.1584,-15.17856,71.37648,40.176
--12.88896,-19.47456,-18.3456,-15.42912,72.11232,40.272
--13.38876,-20.08314,-19.01592,-15.91128,74.36583,41.013
--13.662,-20.493,-19.305,-16.137,75.8934,41.5404
--12.85056,-19.27584,-18.25152,-15.17856,71.37648,40.5945
--12.6768,-18.8784,-17.8752,-14.9568,69.91392,39.7575
--13.07295,-19.46835,-18.4338,-15.51825,72.089325,41.2434
--13.3,-19.76,-18.62,-15.485,72.8175,39.862
--12.901,-19.1672,-18.0614,-15.20475,70.632975,39.7575
--13.26105,-19.5624,-18.4338,-15.4242,72.089325,41.2533
--12.99315,-19.1672,-18.0614,-15.1126,70.632975,40.3132
--13.22304,-19.36896,-18.25152,-15.27168,71.37648,40.3132
--13.35936,-19.56864,-18.43968,-15.61728,72.11232,40.7288
--13.3551,-19.5624,-18.52785,-15.33015,72.089325,41.4315
--13.45344,-19.56864,-18.53376,-15.5232,72.11232,40.7288
--13.0416,-19.0608,-17.9664,-14.9568,69.9048,39.7575
--13.1328,-19.0608,-17.9664,-14.8656,69.9048,39.482
--13.824,-20.064,-18.912,-15.744,73.5936,41.67
--14.112,-20.482,-19.404,-16.17,75.117,40.621
--13.6416,-19.66272,-18.62784,-15.61728,72.121728,40.7288
--14.0679,-20.3742,-19.20996,-16.20234,74.36583,41.1444
--14.02038,-20.07027,-19.01394,-16.03701,73.616598,40.2162
--13.3152,-19.0608,-18.0576,-14.9568,69.9048,39.3775
--13.82976,-19.66272,-18.62784,-15.61728,72.11232,40.0032
--14.40747,-20.48409,-19.40598,-16.26966,75.124665,41.0355
--14.112,-20.16,-19.008,-15.936,73.584,41.45
--13.9194,-19.7505,-18.71595,-15.51825,72.00468,39.653
--14.208,-19.776,-18.336,-15.552,73.584,41.56
--14.751,-19.701,-17.325,-17.127,75.8934,41.3226
--14.01345,-17.77545,-15.51825,-16.3647,72.089325,39.653
--14.16394,-17.20586,-14.82936,-16.73056,72.777936,40.7012
--14.406,-16.807,-14.21392,-16.90304,73.61466,41.013
--15,-17.7,-14.7,-13.9,76.56,41.85
--14.50053,-18.43776,-15.55686,-15.26877,73.520568,41.2533
--14.345,-18.62,-15.96,-15.01,72.732,39.653
--13.91465,-18.15355,-15.6655,-14.1911,70.55004,39.653
--14.44912,-18.72682,-16.35032,-14.44912,72.777936,40.9052
--14.0068,-18.15355,-16.0341,-14.0068,70.55004,40.4199
--14.59808,-18.82384,-16.807,-14.50204,73.528224,40.9052
--13.80825,-17.689,-15.884,-13.718,69.0954,39.653
--14.54418,-18.63176,-16.82562,-14.35406,72.777936,40.4975
--15.147,-19.404,-17.622,-15.048,75.7944,41.2533
--15.09354,-19.20996,-17.54379,-15.09354,75.036456,41.5404
--14.34048,-18.34464,-16.7616,-14.71296,71.292672,40.5945
--14.63616,-18.91296,-17.20224,-14.82624,72.762624,41.3226
--14.7312,-18.91296,-17.29728,-14.92128,72.762624,41.5404
--15.035,-19.4,-17.751,-15.035,74.2632,40.4878
--14.37696,-18.432,-16.95744,-14.2848,70.566912,40.0032
--14.82936,-19.012,-17.5861,-15.01948,72.777936,40.4878
--15.6,-20.1,-18.5,-15.6,76.56,41.45
--14.82,-19.095,-17.67,-15.105,72.732,39.482
--14.915,-19.095,-17.765,-15.01,72.732,39.197
--14.77213,-19.00618,-17.59483,-14.86622,72.035304,40.0222
--15.48558,-19.79802,-18.32787,-15.38757,75.036456,40.9266
--14.7098,-18.7131,-17.5028,-14.7098,71.27736,39.2825
--15.168,-19.392,-18.048,-15.264,73.4016,39.6864
--15.01632,-19.19808,-17.96256,-15.2064,72.677088,40.9365
--14.56128,-18.70848,-17.41824,-14.7456,70.557696,39.696
--15.264,-19.584,-18.24,-15.36,73.4976,41.56
--14.5008,-18.6048,-17.328,-14.592,69.82272,39.792
--15.264,-19.488,-18.24,-15.36,73.4976,39.6096
--15.52,-19.788,-18.527,-15.617,74.2632,41.34
--14.44,-18.50125,-17.23775,-14.53025,69.0954,39.482
--16,-20.5,-19.2,-16.2,76.56,41.16
--14.6832,-18.696,-17.5104,-14.6832,69.73152,39.5136
--15.14205,-19.28025,-18.0576,-14.95395,71.91063,40.7484
--15.14688,-19.2864,-18.15744,-15.24096,71.933568,39.6096
--15.46083,-19.68615,-18.53379,-15.46083,73.424538,40.9365
--15.714,-19.982,-18.721,-15.714,74.1662,40.0319
--15.39972,-19.58236,-18.34658,-15.39972,72.682876,40.3368
--14.92992,-18.98496,-17.87904,-14.7456,70.465536,39.6096
--15.485,-19.665,-18.43,-15.58,72.637,39.102
--15.65452,-19.88028,-18.63176,-15.46244,73.432184,40.229
--15.65289,-19.87821,-18.72585,-15.65289,73.424538,40.0222
--15.65289,-19.87821,-18.62982,-15.55686,73.424538,39.9252
--15.42912,-19.47456,-18.25152,-15.42912,71.933568,40.229
--15.2684,-19.2717,-18.1545,-15.0822,71.18426,40.229
--15.3615,-19.2717,-18.1545,-15.0822,71.18426,38.9975
--15.58656,-19.76832,-18.5328,-15.58656,72.667584,39.3024
--16.0083,-20.18016,-19.01592,-15.91128,74.181492,40.3368
--15.3648,-19.36896,-18.25152,-15.17856,71.19024,39.8185
--15.84495,-19.97424,-18.82188,-15.74892,73.424538,39.8185
--16.335,-20.592,-19.404,-16.236,75.6954,41.05
--16.102,-20.176,-19.012,-15.908,74.1662,39.8185
--15.77664,-19.86336,-18.72288,-15.58656,72.667584,40.6395
--15.71136,-19.66272,-18.53376,-15.61728,71.933568,40.5132
--15.2304,-19.0608,-17.9664,-15.048,69.73152,39.408
--15.5477,-19.4579,-18.3407,-15.2684,71.18426,40.229
--15.5477,-19.4579,-18.3407,-15.3615,71.18426,40.1212
--16.366,-20.482,-19.306,-16.268,74.9308,40.229
--16.13304,-20.1663,-19.01394,-15.84495,73.424538,40.5306
--16.632,-20.79,-19.602,-16.533,75.7053,40.5306
--16.296,-20.37,-19.206,-16.102,74.1662,40.94
--16.464,-20.58,-19.404,-16.268,74.9308,40.1212
--16.39638,-20.3742,-19.20996,-16.20234,74.181492,40.5306
--15.73728,-19.64832,-18.53088,-15.45792,71.199552,40.0222
--15.4128,-18.6048,-16.7808,-15.048,69.73152,39.6864
--15.89445,-18.33975,-16.08255,-16.08255,71.81658,38.9975
--15.827,-17.1304,-14.9891,-16.3856,71.09116,38.9975
--16.49,-17.363,-14.841,-16.781,74.0789,41.16
--16.6617,-16.95573,-14.21145,-17.34777,74.850237,40.7484
--16.1568,-17.48736,-14.44608,-14.16096,72.572544,39.6096
--16.929,-19.305,-16.335,-15.741,75.5964,40.7484
--15.9201,-18.4338,-15.7339,-14.5236,71.09116,39.3775
--16.42113,-19.01394,-16.42113,-14.78862,73.328508,41.1444
--16.25526,-18.72682,-16.44538,-14.63924,72.587816,40.0222
--16.01664,-18.34464,-16.20288,-14.24736,71.106432,40.2065
--16.85772,-19.20996,-17.15175,-14.79951,74.840436,40.7385
--16.0132,-18.2476,-16.3856,-14.1512,71.09116,39.197
--16.856,-19.306,-17.346,-15.092,74.8426,40.3368
--15.6864,-17.9664,-16.3248,-14.0448,69.64032,39.408
--17.127,-19.602,-17.82,-15.345,75.5964,41.16
--16.435,-18.905,-17.195,-14.915,72.542,39.197
--17.3,-20,-18.2,-15.8,76.36,41.26
--16.44192,-19.10304,-17.39232,-14.82624,72.572544,40.5306
--15.7776,-18.3312,-16.7808,-14.4096,69.64032,39.653
--16.20288,-18.71712,-17.2272,-14.52672,71.106432,40.464
--17.4,-20.2,-18.5,-15.8,76.36,41.16
--16.70922,-19.39806,-17.86158,-14.98068,73.338111,40.4199
--16.70922,-19.39806,-17.86158,-15.17274,73.328508,41.3226
--16.88148,-19.59804,-18.14274,-15.23214,73.987452,40.4348
--16.88148,-19.69506,-18.23976,-15.62022,73.997154,41.1444
--16.20288,-18.90336,-17.50656,-14.80608,71.022624,40.0704
--16.625,-19.38,-17.955,-15.295,72.4565,41.56
--15.79375,-18.411,-17.1475,-14.53025,68.82465,39.7575
--16.296,-18.99648,-17.6928,-14.99232,71.013312,40.4544
--15.79375,-18.411,-17.1475,-14.34975,68.82465,39.8525
--17.5,-20.5,-19.1,-16,76.27,41.74
--16.3856,-19.0855,-17.7821,-15.0822,70.99806,40.7288
--17.248,-20.09,-18.816,-15.876,74.7348,42.55
--16.55808,-19.2864,-18.06336,-15.0528,71.754816,40.8366
--17.6,-20.6,-19.2,-16.1,76.27,42.55
--16.73056,-19.58236,-18.34658,-15.39972,72.502262,41.699
--16.99731,-19.78218,-18.53379,-15.55686,73.232478,41.9364
--17.34777,-20.19006,-18.91593,-15.87762,74.654217,42.0156
--16.1424,-18.7872,-17.6016,-14.8656,69.46704,40.7075
--16.31055,-19.07505,-17.8771,-14.9283,70.190655,40.527
--16.48224,-19.27584,-18.06528,-15.08544,70.929504,41.0496
--16.82562,-19.67742,-18.5367,-15.58984,72.407202,40.9825
--16.92068,-19.67742,-18.5367,-15.49478,72.407202,41.0892
--17.8,-20.8,-19.5,-16.2,76.17,42.76
--16.4027,-19.1672,-17.96925,-15.02045,70.190655,41.2735
--16.57536,-19.36896,-18.1584,-15.27168,70.929504,41.0892
--17.09512,-19.97632,-18.82384,-15.75056,73.153668,41.5128
--16.7409,-19.5624,-18.4338,-15.4242,71.637885,40.033
--16.6649,-19.3648,-18.2476,-15.2684,70.90496,40.318
--17.01574,-19.86754,-18.63176,-15.58984,72.407202,40.8758
--16.15475,-18.86225,-17.77925,-14.9815,68.743425,40.8025
--17.542,-20.482,-19.306,-16.17,74.5486,41.699
--17.54379,-20.48409,-19.30797,-16.17165,74.654217,42.1245
--16.66848,-19.46208,-18.34464,-15.45792,70.836384,41.2735
--16.6649,-19.4579,-18.3407,-15.4546,70.82117,40.983
--16.929,-19.65645,-18.52785,-15.6123,71.543835,40.318
--16.245,-18.9525,-17.8695,-14.9815,68.6622,40.1375
--16.9344,-19.7568,-18.62784,-15.5232,71.566656,41.699
--17.64,-20.58,-19.404,-16.17,74.5486,43.25
--16.9362,-19.7589,-18.62982,-15.71303,71.574263,41.3802
--17.4636,-20.47122,-19.20996,-15.91128,73.803114,42.4928
--18.1,-21.1,-19.9,-16.5,76.07,43.06
--17.38143,-20.26233,-19.10997,-15.94098,73.050021,42.6294
--17.20224,-19.86336,-18.24768,-15.39648,72.296928,41.9364
--16.68096,-18.432,-16.31232,-15.94368,70.106112,40.56
--17.20224,-17.96256,-15.6816,-17.29728,72.306432,41.2416
--17.376,-17.472,-15.168,-17.568,73.0272,42.04
--17.738,-17.248,-14.602,-17.542,74.5486,43.64
--16.94784,-16.296,-13.59552,-13.5024,70.836384,42.1465
--17.29,-18.24,-15.2,-15.01,72.2665,42.44
--17.30092,-18.72682,-15.97008,-15.01948,72.312142,41.405
--16.94784,-18.43776,-15.8304,-14.52672,70.836384,41.52
--17.472,-19.104,-16.608,-14.88,73.0272,43.14
--17.836,-19.404,-17.052,-15.19,74.5486,42.6594
--16.9442,-18.3407,-16.2925,-14.3374,70.82117,40.6315
--17.0373,-18.3407,-16.3856,-14.2443,70.82117,42.1988
--18.117,-19.503,-17.622,-15.147,75.3093,43.25
--17.934,-19.306,-17.444,-14.994,74.5486,45.04
--17.21847,-18.62982,-16.9362,-14.58395,71.574263,42.1465
--17.751,-19.303,-17.557,-15.035,73.7879,43.06
--18.117,-19.8,-18.018,-15.444,75.3093,43.54
--17.21664,-18.91008,-17.21664,-14.77056,71.566656,42.6594
--17.39232,-19.10304,-17.48736,-15.01632,72.296928,42.4608
--17.568,-19.296,-17.664,-15.168,72.9408,41.3376
--17.934,-19.698,-18.13,-15.386,74.5486,42.25
--17.66952,-19.39806,-17.86158,-15.17274,73.050021,43.4214
--18.03384,-19.79802,-18.32787,-15.58359,74.556207,43.2036
--17.664,-19.392,-17.952,-15.168,72.9312,41.8944
--17.85168,-19.69506,-18.23976,-15.42618,73.706094,43.4214
--17.664,-19.488,-18.144,-15.36,72.9408,43.36
--18.4,-20.4,-18.9,-16,75.82,45.04
--18.032,-19.992,-18.62,-15.68,74.3134,45.23
--18.032,-19.992,-18.62,-15.68,74.3232,47.35
--16.69625,-18.50125,-17.1475,-14.6205,68.436575,44.3175
--17.945,-19.885,-18.527,-15.811,73.5551,43.36
--17.5824,-19.4832,-18.15264,-15.2064,72.059328,42.384
--18.13,-20.09,-18.816,-15.778,74.3036,41.797
--17.9487,-19.8891,-18.62784,-15.81426,73.560564,42.3324
--17.2235,-19.1786,-17.8752,-15.2684,70.50463,41.0875
--17.2235,-19.1786,-17.9683,-15.0822,70.50463,41.2972
--17.0496,-19.07712,-17.78688,-14.92992,69.792768,39.504
--17.76,-19.872,-18.624,-15.648,72.7008,39.792
--16.69625,-18.68175,-17.5085,-14.801,68.346325,39.273
--17.67,-19.665,-18.43,-15.58,71.9435,39.7575
--17.49888,-19.47456,-18.25152,-15.33504,71.246784,42.6594
--17.67744,-19.76832,-18.5328,-15.58656,71.973792,43.8966
--16.7865,-18.772,-17.59875,-14.801,68.346325,42.8925
--18.414,-20.592,-19.305,-16.038,74.9727,43.5006
--18.228,-20.384,-19.11,-16.17,74.2154,42.84
--17.67,-19.76,-18.62,-15.58,71.9435,40.5175
--16.9632,-19.0608,-17.8752,-14.8656,69.06576,41.4144
--18.414,-20.691,-19.404,-16.434,74.9727,44.64
--17.49888,-19.66272,-18.53376,-15.71136,71.246784,43.2384
--17.4097,-19.4579,-18.3407,-15.3615,70.50463,41.2775
--17.77248,-19.9584,-18.72288,-15.6816,72.059328,44.4015
--17.765,-19.95,-18.715,-15.77,72.029,42.8925
--18.513,-20.79,-19.602,-16.434,75.0717,45.7776
--17.59296,-19.7568,-18.62784,-15.61728,71.331456,42.96
--18.326,-20.58,-19.404,-16.366,74.3134,45.6092
--18.14274,-20.47122,-19.20996,-16.20234,73.560564,46.4706
--17.23392,-19.3536,-18.24768,-15.39072,69.884928,44.1888
--18.612,-20.394,-18.315,-16.335,75.0717,45.2034
--17.5028,-18.3407,-16.0132,-16.3856,70.59773,45.9032
--17.68892,-17.59483,-15.24258,-16.65393,71.348447,46.3175
--18.048,-17.28,-14.688,-17.184,72.7968,46.35
--18.8,-17.4,-14.6,-17.7,75.82,48.15
--17.6814,-17.1171,-14.1075,-13.63725,71.318115,48.564
--17.6814,-18.2457,-15.33015,-15.048,71.318115,48.5735
--18.048,-19.008,-16.128,-15.168,72.7872,53.03
--18.424,-19.404,-16.66,-15.19,74.4506,51.53
--18.048,-19.008,-16.512,-14.784,72.9312,52.63
--17.3242,-18.15355,-15.94195,-13.91465,70.006355,49.5185
--17.1456,-17.9664,-15.96,-13.8624,69.29376,49.2385
--18.711,-19.503,-17.424,-15.048,75.2103,52.55
--18.333,-19.109,-17.169,-14.744,73.7879,51.4391
--17.96256,-18.81792,-16.91712,-14.44608,72.211392,49.9488
--17.5959,-18.4338,-16.6649,-14.3374,70.83048,50.3785
--17.78112,-18.72192,-17.02848,-14.67648,71.566656,52.176
--18.711,-19.8,-18.018,-15.642,75.3192,53.5887
--18.711,-19.899,-18.117,-15.543,75.3093,54.24
--18.33678,-19.404,-17.75466,-15.13512,73.803114,53.2532
--17.41635,-18.52215,-16.9556,-14.5597,70.190655,51.8035
--17.96256,-19.10304,-17.5824,-14.82624,72.306432,54.5787
--17.5959,-18.8062,-17.3166,-14.6167,70.91427,55.0172
--18.14967,-19.39806,-17.86158,-15.3648,73.146051,55.6578
--18.333,-19.594,-18.139,-15.423,73.8946,56.2018
--18.43,-19.691,-18.236,-15.423,73.7879,53.9611
--18.522,-19.992,-18.424,-15.582,74.6466,54.6252
--18.81,-20.196,-18.711,-15.642,75.4083,54.0936
--18.4338,-19.79208,-18.33678,-15.42618,73.900134,55.6677
--17.8695,-19.1862,-17.8695,-15.14205,71.62848,54.5688
--17.5104,-18.8928,-17.5104,-14.92992,70.189056,51.6768
--18.43,-19.885,-18.43,-15.714,73.8849,51.8368
--18.43,-19.982,-18.527,-15.617,73.8849,51.0511
--17.6928,-19.18272,-17.87904,-15.08544,70.929504,50.5248
--17.5104,-18.98496,-17.69472,-14.7456,70.198272,49.1904
--17.8771,-19.38254,-18.15937,-15.33667,71.668353,48.7425
--18.6219,-20.19006,-18.91593,-15.87762,74.654217,49.0545
--18.43,-20.079,-18.721,-15.617,73.8849,48.6358
--19,-20.7,-19.3,-16.2,76.17,50.14
--18.0614,-19.67742,-18.44164,-15.58984,72.407202,48.559
--18.145,-19.76,-18.43,-15.485,72.3615,48.184
--17.7821,-19.2717,-18.0614,-15.1753,70.92358,46.683
--18.34173,-19.97424,-18.62982,-15.65289,73.146051,50.2751
--17.328,-18.9696,-17.784,-14.9568,69.46704,49.8624
--18.53082,-20.18016,-18.9189,-15.71724,73.900134,47.9655
--18.71991,-20.38608,-19.11195,-15.97563,74.654217,51.0147
--18.145,-19.855,-18.62,-15.485,72.3615,48.8775
--17.7821,-19.4579,-18.2476,-15.4546,70.91427,49.5292
--17.4192,-19.0608,-17.8752,-14.9568,69.46704,48.1344
--17.96928,-19.66272,-18.43968,-15.5232,71.660736,48.265
--18.145,-19.855,-18.62,-15.675,72.371,46.873
--17.60065,-19.25935,-18.15355,-15.1126,70.190655,48.9171
--17.97119,-19.66481,-18.53573,-15.43076,71.668353,49.9065
--17.96355,-19.7505,-18.52785,-15.33015,71.62848,51.2226
--18.34173,-20.1663,-18.91791,-15.84495,73.146051,47.8501
--18.336,-20.064,-18.912,-15.84,73.1232,47.8464
--17.7821,-19.4579,-18.3407,-15.3615,70.91427,49.4214
--18.624,-20.273,-19.109,-16.005,73.8849,48.23
--18.816,-20.482,-19.306,-16.268,74.6466,49.245
--18.24768,-19.86336,-18.72288,-15.77664,72.391968,50.2368
--18.43776,-20.07027,-19.01394,-16.13304,73.146051,48.4515
--17.69472,-19.3536,-18.24768,-15.29856,70.198272,45.9168
--17.6928,-19.25935,-18.2457,-15.20475,70.190655,48.6358
--19.008,-20.79,-19.602,-16.533,75.4083,46.9755
--18.24,-19.95,-18.81,-15.77,72.3615,46.94
--18.24,-19.76,-18.24,-15.295,72.3615,48.45
--18.624,-19.303,-17.169,-16.975,73.8849,47.13
--17.87904,-17.59968,-15.45792,-16.296,70.929504,46.3175
--18.24768,-17.20224,-15.01632,-16.06176,72.391968,46.8765
--18.34658,-16.54044,-13.97382,-16.1602,72.397696,48.2381
--18.43776,-16.90128,-14.02038,-13.25214,73.146051,46.8898
--19.107,-19.008,-15.939,-15.642,75.4083,50.14
--18.72486,-19.20996,-16.20234,-15.42618,73.900134,49.6386
--18.335,-18.81,-16.15,-14.725,72.3615,50.35
--18.72486,-19.20996,-16.68744,-14.84406,73.803114,49.8134
--18.15937,-18.53573,-16.37166,-14.30168,71.574263,48.5291
--17.9683,-18.3407,-16.2925,-14.0581,70.82117,49.245
--17.9683,-18.3407,-16.3856,-14.1512,70.91427,49.343
--18.34272,-18.72288,-16.82208,-14.35104,72.391968,46.3008
--18.721,-19.109,-17.169,-14.647,73.8849,49.25
--18.15165,-18.52785,-16.83495,-14.4837,71.543835,50.5395
--18.15937,-18.62982,-16.9362,-14.58395,71.574263,48.0635
--18.721,-19.303,-17.557,-15.132,73.7879,48.1702
--18.72486,-19.404,-17.65764,-15.13512,73.803114,49.1372
--17.78495,-18.52215,-16.86345,-14.1911,70.098505,48.5735
--18.34658,-19.012,-17.49104,-14.82936,72.407202,49.0294
--17.78688,-18.52416,-16.95744,-14.56128,70.106112,48.336
--18.335,-19.095,-17.575,-15.01,72.2665,46.303
--19.107,-19.998,-18.315,-15.642,75.3093,49.84
--18.34272,-19.19808,-17.77248,-15.11136,72.296928,48.9456
--19.107,-20.097,-18.513,-15.543,75.3093,49.3416
--18.34272,-19.29312,-17.77248,-15.01632,72.287424,50.4306
--18.53379,-19.49409,-18.05364,-15.3648,73.050021,47.6685
--18.34272,-19.29312,-17.86752,-15.11136,72.296928,48.0744
--18.914,-19.894,-18.522,-15.484,74.5486,48.23
--18.25152,-19.09824,-17.78112,-14.95872,71.566656,48.1572
--19.012,-19.992,-18.62,-15.68,74.5486,48.8432
--17.6016,-18.696,-17.4192,-14.592,69.37584,46.512
--18.335,-19.475,-18.05,-15.39,72.2665,47.4525
--18.0614,-19.0855,-17.7821,-15.0822,70.82117,48.1572
--18.624,-19.68,-18.336,-15.456,73.0272,47.83
--18.62982,-19.68615,-18.43776,-15.46083,73.050021,49.1535
--17.8771,-18.89075,-17.6928,-14.9283,70.098505,47.633
--18.25346,-19.28845,-18.06528,-15.14849,71.583672,48.3545
--19.206,-20.394,-19.008,-16.137,75.3093,49.0545
--19.01394,-20.19006,-18.91593,-15.87762,74.556207,48.0744
--18.25346,-19.47663,-18.15937,-15.52485,71.574263,47.7725
--17.6928,-18.8784,-17.6928,-14.9568,69.37584,46.968
--17.8771,-19.07505,-17.8771,-15.02045,70.098505,46.2108
--18.25152,-19.47456,-18.25152,-15.33504,71.472576,47.6574
--18.44164,-19.67742,-18.44164,-15.58984,72.312142,48.1702
--18.82188,-20.18016,-18.82188,-15.81426,73.803114,49.4214
--18.25152,-19.47456,-18.3456,-15.42912,71.576064,46.7904
--18.0614,-19.3648,-18.1545,-15.3615,70.82117,46.0275
--19.012,-20.384,-19.11,-15.974,74.4506,47.75
--17.5085,-18.772,-17.59875,-14.89125,68.562925,46.303
--18.624,-19.968,-18.816,-15.84,72.9312,48.74
--18.818,-20.176,-19.012,-15.811,73.7879,50.94
--18.82188,-20.18016,-19.01592,-15.91128,73.706094,47.9514
--18.624,-20.064,-18.816,-15.84,72.9312,45.552
--18.25152,-19.66272,-18.43968,-15.5232,71.472576,46.6848
--18.62982,-20.07027,-18.82188,-16.13304,72.963594,47.3517
--17.87904,-19.26144,-18.15552,-15.11424,70.013952,47.0688
--18.44164,-19.86754,-18.72682,-15.6849,72.217082,47.5591
--18.5367,-19.86754,-18.72682,-15.6849,72.217082,48.7354
--18.9189,-20.3742,-19.11294,-16.0083,73.706094,48.8432
--18.1545,-19.551,-18.4338,-15.5477,70.73738,45.4385
--18.72,-20.16,-19.008,-15.84,72.9312,46.0224
--18.5367,-20.05766,-18.82188,-15.6849,72.217082,47.1032
--18.525,-19.95,-18.81,-15.865,72.1715,49.14
--18.3456,-19.85088,-18.62784,-15.61728,71.481984,48.6668
--18.525,-20.045,-18.81,-15.865,72.1715,46.303
--17.96925,-19.25935,-17.78495,-14.9283,70.006355,45.9198
--18.3456,-18.72192,-16.55808,-16.18176,71.472576,45.84
--18.3456,-17.78112,-15.42912,-16.9344,71.472576,46.512
--19.11,-17.738,-15.19,-17.346,74.4506,47.53
--19.305,-17.424,-14.553,-17.721,75.2103,47.4606
--19.11,-17.15,-14.21,-14.112,74.4506,48.4512
--18.1584,-17.78592,-14.8992,-14.80608,70.743264,47.1711
--18.525,-18.715,-15.865,-15.2,72.0385,45.3625
--18.72,-19.008,-16.32,-14.688,72.9312,47.13
--18.1584,-18.43776,-16.01664,-14.4336,70.743264,45.7344
--17.96925,-18.2457,-15.94195,-14.1911,70.006355,45.923
--19.01592,-19.11294,-16.88148,-14.65002,73.706094,47.481
--18.5367,-18.72682,-16.73056,-14.35406,72.083998,45.9198
--17.9712,-18.15552,-16.31232,-14.19264,69.875712,46.8864
--18.9189,-19.11294,-17.26956,-15.0381,73.570266,46.7676
--19.012,-19.109,-17.363,-14.938,73.5551,49.25
--18.5367,-18.72682,-17.1108,-14.63924,72.074492,46.2952
--18.3456,-18.62784,-17.02848,-14.67648,71.331456,46.512
--18.816,-19.104,-17.472,-15.072,72.7872,45.9168
--19.11,-19.6,-17.934,-15.386,74.3036,47.05
--19.20996,-19.602,-18.03384,-15.48558,74.320983,46.8765
--19.01592,-19.404,-17.9487,-15.23214,73.560564,46.501
--18.63176,-19.012,-17.5861,-15.01948,72.074492,46.0265
--17.96925,-18.52215,-17.1399,-14.65185,69.877345,44.213
--18.1545,-18.7131,-17.3166,-14.896,70.59773,44.878
--18.4338,-18.90405,-17.58735,-15.048,71.30871,46.9755
--18.1545,-18.8062,-17.5028,-14.8029,70.59773,46.8734
--18.0614,-18.6143,-17.3242,-14.83615,69.86813,44.6975
--18.1584,-18.90336,-17.59968,-14.8992,70.603584,48.1605
--18.34755,-19.19436,-17.78301,-15.33667,71.348447,45.0371
--18.06336,-18.80064,-17.41824,-14.7456,69.884928,46.512
--18.0614,-18.7986,-17.5085,-14.744,69.877345,46.4075
--18.62,-19.38,-18.05,-15.295,72.029,45.0775
--18.4338,-19.1862,-17.96355,-15.048,71.318115,47.3517
--18.62784,-19.4832,-18.24768,-15.49152,72.059328,48.6486
--18.915,-19.885,-18.624,-15.423,73.5454,49.03
--18.62,-19.475,-18.24,-15.2,72.0385,46.4075
--18.63176,-19.4873,-18.25152,-15.6849,72.074492,47.5888
--18.82188,-19.68615,-18.43776,-15.46083,72.809946,48.3516
--19.01592,-19.8891,-18.72486,-15.71724,73.570266,48.1437
--18.0614,-18.89075,-17.78495,-15.02045,69.86813,46.7055
--18.25152,-19.0896,-17.97216,-15.08544,70.612896,47.28
--18.25152,-19.18272,-17.97216,-15.08544,70.612896,47.3845
--18.62784,-19.67328,-18.43776,-15.2064,72.068832,46.8864
--17.8752,-18.8784,-17.6928,-14.7744,69.14784,45.638
--18.25152,-19.27584,-18.06528,-15.08544,70.612896,47.1744
--18.44164,-19.47663,-18.25346,-15.24258,71.348447,47.4621
--18.62,-19.76,-18.525,-15.58,72.029,47.75
--19.6,-20.8,-19.5,-16.6,75.82,48.56
--19.404,-20.592,-19.305,-16.335,75.0717,49.04
--18.82384,-19.97632,-18.7278,-15.75056,72.817528,48.0494
--19.01592,-20.27718,-19.01592,-16.0083,73.570266,49.1634
--19.208,-20.482,-19.208,-16.072,74.3036,47.7652
--18.43968,-19.66272,-18.43968,-15.42912,71.331456,47.952
--18.44164,-19.66481,-18.44164,-15.43076,71.254357,46.3951
--18.62,-19.855,-18.715,-15.77,71.9435,48.15
--18.816,-20.064,-18.912,-15.84,72.7968,46.3104
--18.43968,-19.66272,-18.53376,-15.71136,71.246784,47.0784
--19.208,-20.482,-19.306,-16.17,74.2154,47.5888
--19.012,-20.273,-19.109,-16.199,73.4484,46.8316
--18.62,-19.855,-18.715,-15.675,71.9435,49.33
--17.689,-18.86225,-17.77925,-14.9815,68.346325,46.303
--19.01592,-20.27718,-19.20996,-16.29936,73.473246,47.187
--18.0614,-19.25935,-18.2457,-15.2969,69.785195,47.348
--18.44164,-19.7589,-18.62982,-15.80712,71.254357,48.0635
--18.62,-19.76,-18.43,-15.295,71.9435,49.33
--18.4338,-18.71595,-16.5528,-16.08255,71.224065,48.3516
--18.82384,-18.15156,-15.8466,-17.2872,72.827132,48.1572
--18.72682,-17.01574,-14.7343,-17.30092,71.988938,48.265
--19.01592,-16.78446,-14.16492,-17.17254,73.473246,48.4407
--18.43968,-16.18176,-13.35936,-14.39424,71.246784,45.9168
--18.715,-17.955,-15.01,-14.725,71.9435,47.1675
--18.53376,-18.43968,-15.5232,-14.86464,71.246784,47.28
--17.9664,-17.8752,-15.3216,-14.3184,69.06576,47.0688
--18.72682,-18.72682,-16.1602,-14.54418,71.988938,48.4515
--17.9664,-17.8752,-15.6864,-13.7712,69.06576,46.5785
--18.34464,-18.1584,-16.10976,-14.06112,70.519776,48.1605
--18.3407,-18.1545,-16.1994,-14.1512,70.50463,46.968
--18.15552,-17.9712,-16.128,-14.10048,69.792768,46.512
--18.91791,-18.72585,-16.90128,-14.50053,72.723519,48.9171
--18.52785,-18.33975,-16.64685,-14.20155,71.224065,48.3516
--19.11294,-18.9189,-17.26956,-14.65002,73.473246,46.8734
--18.53573,-18.44164,-16.84211,-14.30168,71.244948,46.3175
--18.912,-18.912,-17.28,-14.688,72.7008,48.63
--18.912,-19.008,-17.376,-14.784,72.7008,48.63
--18.3407,-18.4338,-16.9442,-14.2443,70.50463,48.8432
--19.503,-19.602,-18.117,-15.345,74.9826,49.95
--19.306,-19.404,-17.934,-15.092,74.2154,49.33
--18.53376,-18.62784,-17.31072,-14.5824,71.246784,46.6848
--19.7,-19.9,-18.4,-15.3,75.73,48.85
--19.503,-19.701,-18.315,-15.444,74.9628,49.84
--19.306,-19.6,-18.13,-15.19,74.2056,47.9416
--18.52785,-18.81,-17.4933,-14.6718,71.21466,46.968
--18.72682,-19.012,-17.68116,-14.7343,71.988938,47.1032
--19.7,-20,-18.6,-15.6,75.73,49.25
--18.3407,-18.7131,-17.4097,-14.5236,70.51394,46.0275
--18.15552,-18.432,-17.23392,-14.46912,69.792768,46.7904
--17.77925,-18.14025,-16.967,-14.079,68.346325,45.8185
--19.30797,-19.70001,-18.42588,-15.28956,74.222973,47.5596
--18.72682,-19.10706,-17.96634,-14.92442,71.979432,46.7055
--18.52785,-18.90405,-17.77545,-14.8599,71.224065,45.4385
--17.9664,-18.4224,-17.2368,-14.5008,69.06576,47.8464
--18.3407,-18.7131,-17.5959,-14.7098,70.50463,47.633
--18.15552,-18.52416,-17.41824,-14.56128,69.792768,47.4624
--18.91791,-19.39806,-18.14967,-15.07671,72.723519,47.2778
--19.306,-19.796,-18.62,-15.582,74.2154,47.9416
--18.72288,-19.19808,-18.0576,-15.01632,71.973792,47.1636
--18.15355,-18.6143,-17.5085,-14.5597,69.77598,47.9568
--19.109,-19.594,-18.43,-15.229,73.4484,47.1711
--18.715,-19.19,-18.05,-15.01,71.9435,46.4835
--17.9664,-18.5136,-17.328,-14.4096,69.06576,47.4525
--19.30797,-19.89603,-18.71991,-15.6816,74.222973,48.3516
--19.7,-20.3,-19.1,-15.9,75.72,49.95
--19.503,-20.097,-18.909,-15.84,74.9727,48.74
--19.503,-20.097,-18.909,-15.741,74.9727,47.2725
--17.9664,-18.5136,-17.4192,-14.5008,69.06576,46.3008
--18.72288,-19.29312,-18.24768,-15.2064,71.964288,47.5695
--18.912,-19.488,-18.432,-15.264,72.6912,45.2448
--17.9664,-18.6048,-17.5104,-14.5008,69.06576,44.118
--17.77925,-18.411,-17.328,-14.44,68.346325,44.1085
--18.15552,-18.80064,-17.69472,-14.7456,69.792768,44.8896
--18.91791,-19.68615,-18.43776,-15.46083,72.723519,46.1041
--19.30797,-19.99404,-18.91593,-15.6816,74.213172,45.9657
--17.77925,-18.411,-17.41825,-14.34975,68.346325,44.1085
--19.503,-20.196,-19.107,-15.84,74.9628,46.2924
--19.11294,-19.79208,-18.72486,-15.5232,73.463544,47.0792
--18.34464,-19.0896,-17.97216,-14.8992,70.519776,44.5824
--19.503,-20.295,-19.107,-15.84,74.9628,47.64
--18.15355,-18.7986,-17.78495,-14.83615,69.785195,45.0775
--18.72682,-19.4873,-18.34658,-15.39972,71.979432,46.7055
--19.109,-19.885,-18.721,-15.423,73.4581,47.53
--19.30797,-20.09205,-18.91593,-15.6816,74.222973,47.7477
--19.503,-20.295,-19.206,-16.038,74.9727,47.93
--19.503,-20.295,-19.206,-15.84,74.9727,47.64
--18.715,-19.475,-18.43,-15.39,71.9435,47.75
--19.503,-20.295,-19.206,-16.137,74.9727,47.9655
--18.912,-19.776,-18.624,-15.36,72.7008,45.9168
--18.72288,-19.57824,-18.43776,-15.2064,71.973792,47.3517
--17.9664,-18.696,-17.6928,-14.6832,69.06576,44.878
--18.72288,-19.57824,-18.43776,-15.30144,71.973792,48.0744
--18.52785,-19.3743,-18.2457,-15.33015,71.224065,46.1985
--19.7,-20.6,-19.4,-16,75.73,49.44
--19.11294,-19.98612,-18.82188,-15.62022,73.473246,49.1535
--18.715,-19.475,-18.525,-15.39,71.934,46.303
--19.30797,-20.19006,-19.11195,-15.77961,74.134764,47.5695
--18.53376,-19.38048,-18.3456,-14.95872,71.17152,47.7554
--19.306,-20.188,-19.11,-15.778,74.1272,48.73
--19.30797,-20.19006,-19.11195,-15.6816,74.213172,46.8666
--18.912,-19.776,-18.72,-15.552,72.624,47.94
--19.109,-19.982,-18.915,-15.714,73.3805,47.45
--19.11294,-19.98612,-18.9189,-15.91128,73.473246,47.5888
--18.912,-19.776,-18.72,-15.552,72.624,47.45
--17.9664,-18.7872,-17.784,-14.6832,69.05664,45.429
--18.34464,-19.27584,-18.1584,-15.08544,70.519776,46.3078
--19.503,-20.394,-19.305,-16.137,74.9727,47.5596
--19.11294,-20.08314,-18.9189,-15.81426,73.473246,47.187
--18.72288,-19.67328,-18.5328,-15.30144,71.935776,45.552
--18.715,-19.665,-18.525,-15.485,71.9435,49.73
--19.109,-20.079,-19.012,-15.617,73.4581,48.45
--19.11294,-20.08314,-18.9189,-15.81426,73.385928,47.9416
--19.109,-20.079,-19.012,-15.714,73.3805,46.3951
--17.9664,-18.8784,-17.8752,-14.7744,68.9928,46.683
--19.306,-20.286,-19.208,-15.876,74.137,49.33
--18.912,-19.872,-18.816,-15.744,72.7008,48.84
--18.715,-19.665,-18.62,-15.295,71.9435,45.7425
--18.3407,-19.2717,-18.2476,-15.1753,70.42084,46.8635
--19.503,-20.493,-19.404,-15.939,74.8935,48.5397
--18.34464,-19.36896,-18.25152,-15.08544,70.44528,47.1744
--19.11294,-20.08314,-19.01592,-15.81426,73.385928,47.9514
--18.912,-19.872,-18.816,-15.744,72.624,46.4064
--17.9664,-18.8784,-17.8752,-14.7744,68.9928,48.0288
--18.82188,-19.67742,-18.63176,-15.30466,71.903384,46.9965
--18.53573,-19.47663,-18.44164,-15.24258,71.169676,46.5018
--18.6219,-19.5624,-18.4338,-15.33015,71.148825,45.638
--17.9664,-18.8784,-17.8752,-14.7744,69.06576,45.3625
--19.503,-20.592,-19.503,-16.137,74.9727,47.6784
--17.9664,-18.9696,-17.8752,-15.048,68.9928,46.4064
--19.11294,-20.18016,-19.11294,-15.81426,73.473246,46.6872
--19.602,-20.592,-19.503,-16.335,74.9727,47.8566
--18.43776,-19.36896,-18.34464,-15.17856,70.44528,44.8896
--19.008,-19.968,-18.912,-15.648,72.7008,46.1184
--18.6219,-19.5624,-18.52785,-15.4242,71.224065,47.6685
--19.30797,-20.38608,-19.30797,-16.07364,74.222973,46.7577
--19.01592,-19.97632,-18.91988,-15.75056,72.731092,47.187
--18.43776,-19.36896,-18.34464,-15.17856,70.519776,47.3845
--19.008,-19.968,-18.912,-15.552,72.624,47.13
--19.602,-20.592,-19.503,-16.236,74.8935,48.7575
--18.81,-19.76,-18.715,-15.58,71.9435,45.8185
--18.6219,-19.5624,-18.52785,-15.51825,71.224065,46.9755
--18.2457,-19.1672,-18.15355,-15.02045,69.711475,46.2108
--19.602,-20.691,-19.503,-16.335,74.9727,46.4706
--19.01394,-20.07027,-18.91791,-15.74892,72.646695,47.2725
--19.40598,-20.48409,-19.40598,-16.07364,74.232774,45.8964
--19.01592,-20.07236,-19.01592,-15.8466,72.65426,46.0992
--18.6219,-19.65645,-18.6219,-15.51825,71.224065,46.8666
--18.6219,-19.5624,-18.52785,-15.4242,71.148825,46.189
--19.8,-20.9,-19.8,-16.4,75.65,48.15
--17.8695,-18.86225,-17.8695,-14.6205,68.274125,45.8185
--18.0576,-19.0608,-18.0576,-14.9568,68.9928,45.4385
--19.206,-20.273,-19.206,-16.005,73.3805,47.3748
--19.01394,-20.07027,-19.01394,-15.65289,72.646695,45.7161
--18.81,-19.855,-18.81,-15.58,71.9435,48.45
--19.404,-20.188,-18.718,-15.68,74.137,47.13
--18.62784,-18.53376,-16.18176,-16.18176,71.17152,45.4464
--19.206,-18.042,-15.423,-17.169,73.4581,47.53
--18.6219,-16.64685,-14.01345,-16.3647,71.224065,47.8566
--18.81792,-16.34688,-13.49568,-16.82208,71.973792,47.1636
--18.62784,-15.61728,-12.51264,-16.65216,71.17152,44.9664
--17.8695,-14.71075,-11.3715,-15.97425,68.274125,46.132
--19.206,-15.52,-11.737,-16.49,73.3805,46.5988
--19.404,-15.484,-11.172,-16.562,74.137,46.36
--19.008,-14.784,-10.272,-15.552,72.7008,47.75
--19.008,-14.4,-9.696,-15.36,72.7008,48.45
--19.01394,-14.11641,-9.21888,-15.26877,72.646695,45.4348
--19.206,-13.968,-8.827,-15.229,73.3805,46.2108
--18.24768,-13.08672,-7.8336,-14.56128,69.71904,45.0624
--18.81,-13.11,-7.6,-14.82,71.8675,46.76
--19.40598,-13.32936,-7.35075,-15.19155,74.144565,47.5596
--18.82188,-12.64298,-6.74926,-14.82936,71.91289,47.187
--19.602,-12.87,-6.633,-15.345,74.8935,46.9854
--19.602,-12.672,-6.138,-15.444,74.8935,47.6685
--19.20996,-12.03048,-5.62716,-14.94108,73.39563,46.6587
--18.24768,-11.24352,-5.0688,-14.19264,69.71904,45.7344
--19.01394,-11.42757,-4.8015,-14.78862,72.646695,44.7558
--19.01592,-11.14064,-4.41784,-14.79016,72.65426,45.6092
--18.24768,-10.50624,-3.87072,-14.19264,69.71904,44.784
--19.20996,-10.57518,-3.68676,-14.65002,73.39563,46.0012
--19.602,-10.791,-3.564,-15.048,74.8935,46.49
--18.0576,-9.7584,-2.9184,-13.8624,68.9928,44.688
--18.0576,-11.0352,-3.4656,-8.8464,68.9928,43.6525
--18.81792,-13.3056,-5.60736,-10.64448,71.888256,45.8865
--18.62982,-14.01941,-6.5863,-10.16172,71.179085,45.9198
--18.912,-14.496,-7.68,-10.272,72.7008,45.0624
--18.53376,-14.20608,-8.18496,-9.97248,71.17152,45.6288
--18.34464,-14.15424,-8.66016,-9.7776,70.44528,44.9595
--18.3407,-14.1512,-9.1238,-9.8686,70.43015,44.3175
--18.72288,-14.44608,-9.78912,-10.26432,71.888256,46.3716
--18.715,-14.63,-10.165,-10.735,71.9435,44.6975
--18.91791,-14.98068,-10.75536,-11.33154,72.723519,46.4706
--19.404,-15.741,-11.583,-11.682,74.9727,45.3816
--19.208,-15.582,-11.858,-11.172,74.137,45.423
--18.4338,-14.95395,-11.6622,-10.62765,71.21466,44.878
--18.4338,-14.8599,-11.8503,-10.62765,71.224065,44.6975
--18.63176,-14.92442,-12.16768,-10.74178,71.988938,45.9032
--18.0614,-14.46755,-11.9795,-10.41295,69.785195,45.0371
--18.3456,-14.86464,-12.51264,-10.8192,71.246784,44.8896
--18.5367,-15.2096,-12.8331,-11.21708,71.91289,46.1874
--18.34755,-15.24258,-12.98442,-11.2908,71.254357,44.7558
--17.9712,-15.11424,-12.9024,-11.15136,69.792768,45.3408
--17.96925,-15.20475,-12.99315,-10.8737,69.785195,43.9375
--18.9189,-16.0083,-13.87386,-11.73942,73.473246,45.5014
--17.784,-14.9568,-13.1328,-10.7616,69.06576,45.3625
--18.5367,-15.58984,-13.7837,-11.31214,71.91289,45.2074
--18.43776,-15.58656,-13.87584,-11.4048,71.973792,43.7184
--18.06528,-15.27168,-13.68864,-11.08128,70.529088,45.0468
--18.43,-15.675,-14.06,-11.495,71.9435,46.14
--17.5085,-14.9815,-13.44725,-10.92025,68.346325,44.498
--19.012,-16.366,-14.7,-11.956,74.137,46.54
--17.78688,-15.48288,-13.91616,-11.42784,69.792768,45.4464
--17.78688,-15.57504,-14.00832,-11.61216,69.71904,43.344
--18.335,-16.15,-14.535,-11.78,71.8675,42.332
--18.72486,-16.39638,-14.84406,-12.03048,73.385928,44.345
--18.721,-16.49,-14.938,-12.125,73.3805,45.95
--18.72486,-16.4934,-15.0381,-12.1275,73.39563,44.0412
--17.87904,-15.92352,-14.52672,-11.73312,70.44528,44.0064
--19.3,-17.2,-15.6,-12.8,75.73,47.34
--18.25152,-16.35032,-14.92442,-12.07262,71.988938,45.717
--18.43968,-16.61492,-15.17432,-12.29312,72.731092,45.6092
--18.06336,-16.27584,-14.95872,-12.04224,71.17152,45.5112
--17.5104,-15.7776,-14.5008,-11.856,69.06576,44.498
--17.5104,-15.8688,-14.592,-11.6736,68.9928,45.0775
--18.527,-16.975,-15.52,-12.61,73.3805,45.0371
--18.718,-17.15,-15.778,-12.642,74.137,45.1192
--17.96355,-16.45875,-15.14205,-12.13245,71.148825,43.7285
--18.145,-16.72,-15.39,-12.445,71.8675,44.0325
--17.96355,-16.5528,-15.2361,-12.4146,71.13942,45.1935
--18.24,-16.896,-15.552,-12.576,72.624,45.65
--17.6928,-16.38912,-15.17856,-12.19872,70.44528,43.7184
--18.24,-16.992,-15.648,-12.672,72.624,44.496
--18.0576,-16.82208,-15.58656,-12.45024,71.89776,45.0624
--17.5085,-16.31055,-15.1126,-12.1638,69.711475,44.593
--18.43,-17.266,-16.005,-12.901,73.3805,47.24
--18.24,-17.184,-15.84,-12.768,72.624,45.3408
--18.05,-17.005,-15.675,-12.73,71.8675,47.13
--17.41635,-16.49485,-15.2969,-12.44025,69.711475,45.8185
--18.14967,-17.18937,-15.94098,-12.86802,72.646695,47.8566
--18.9,-17.9,-16.6,-13.5,75.65,47.13
--18.14967,-17.2854,-16.03701,-13.15611,72.637092,45.6385
--18.522,-17.738,-16.366,-13.132,74.1272,47.23
--16.967,-16.33525,-15.07175,-12.274,68.274125,44.6975
--17.96256,-17.20224,-15.96672,-13.21056,71.89776,46.4706
--17.5028,-16.9442,-15.6408,-12.8478,70.42084,44.1085
--17.86752,-17.20224,-16.06176,-13.02048,71.888256,44.8896
--18.048,-17.376,-16.224,-13.152,72.624,47.34
--18.612,-18.018,-16.83,-13.761,74.8935,46.5795
--18.048,-17.568,-16.224,-13.248,72.624,47.94
--17.68892,-17.31256,-15.9953,-12.98442,71.169676,45.4348
--17.95761,-17.66952,-16.42113,-13.34817,72.646695,45.6786
--17.0544,-16.7808,-15.5952,-12.6768,68.9928,43.168
--17.59296,-17.31072,-16.08768,-13.07712,71.17152,45.2172
--17.23205,-16.9556,-15.75765,-12.80885,69.711475,44.6491
--18.139,-17.848,-16.587,-13.289,73.3805,46.03
--18.326,-18.13,-16.856,-13.622,74.137,44.4234
--17.77622,-17.5861,-16.44538,-13.49852,71.91289,43.7955
--17.95761,-17.86158,-16.61319,-13.34817,72.637092,45.7776
--17.32032,-17.32032,-16.10976,-13.12992,70.44528,42.384
--17.67,-17.67,-16.435,-13.205,71.8675,46.03
--17.67,-17.67,-16.53,-13.395,71.877,48.15
--16.9632,-16.9632,-15.8688,-13.0416,68.9928,45.7344
--17.50074,-17.59483,-16.46575,-13.36078,71.169676,46.7055
--17.67,-17.86,-16.625,-13.49,71.858,46.65
--17.67,-17.86,-16.625,-13.49,71.8675,46.65
--17.32032,-17.50656,-16.296,-13.22304,70.44528,44.496
--17.32032,-17.41344,-16.296,-13.22304,70.435968,45.3572
--18.13,-18.326,-17.15,-14.112,74.137,46.5794
--17.4048,-17.68704,-16.55808,-13.73568,71.17152,45.9168
--17.9487,-18.33678,-17.17254,-14.0679,73.39563,45.7875
--18.13185,-18.6219,-17.34777,-14.01543,74.144565,46.9755
--17.76,-18.144,-16.992,-13.632,72.624,45.9168
--17.04775,-17.3242,-16.31055,-13.0853,69.711475,44.973
--17.4048,-17.68704,-16.65216,-13.35936,71.162112,46.109
--17.4048,-17.68704,-16.65216,-13.73568,71.162112,45.325
--17.7674,-18.15156,-17.09512,-14.02184,72.55822,43.953
--17.76555,-14.02038,-14.78862,0.76824,72.550665,46.0746
--18.315,-13.662,-14.652,-8.415,74.7945,46.43
--17.2272,-14.80608,-14.61984,-10.89504,70.361472,44.7936
--17.13408,-15.3648,-14.80608,-11.45376,70.44528,45.0624
--18.216,-16.533,-15.84,-12.375,74.8836,46.14
--17.66952,-16.22907,-15.3648,-12.67596,72.637092,44.9856
--16.9556,-15.94195,-14.83615,-12.62455,69.711475,44.1085
--17.48736,-16.53696,-15.39648,-12.64032,71.89776,44.4
--17.13408,-16.20288,-15.08544,-12.1056,70.44528,44.9595
--17.48,-16.53,-15.39,-12.35,71.8675,46.54
--16.9556,-15.94195,-14.9283,-12.1638,69.70226,44.213
--17.848,-16.781,-15.714,-12.707,73.3805,45.0468
--17.67136,-16.61492,-15.65452,-12.58124,72.65426,45.8248
--16.7808,-15.7776,-14.7744,-12.1296,68.9928,44.0325
--17.3052,-16.3647,-15.33015,-12.50865,71.13942,45.6786
--17.385,-16.72,-15.58,-12.825,71.8675,46.43
--17.21115,-16.64685,-15.4242,-12.88485,71.148825,45.5697
--17.934,-17.444,-16.17,-13.328,74.137,45.44
--17.0373,-16.5718,-15.3615,-12.8478,70.43015,44.213
--17.21664,-16.74624,-15.61728,-12.79488,71.17152,44.496
--17.57349,-17.18937,-15.94098,-13.06008,72.646695,46.0845
--17.568,-17.184,-16.032,-13.344,72.624,43.9008
--17.75466,-17.4636,-16.20234,-13.48578,73.385928,43.7877
--17.21664,-16.9344,-15.80544,-13.1712,71.17152,45.8248
--16.51575,-16.33525,-15.162,-12.635,68.274125,43.263
--16.94784,-16.85472,-15.73728,-12.94368,70.44528,44.8528
--16.9442,-16.8511,-15.7339,-12.8478,70.43015,44.593
--16.77312,-16.77312,-15.57504,-12.81024,69.709824,44.112
--17.29,-17.29,-16.15,-13.395,71.8675,45.73
--18.2,-18.3,-17,-14,75.65,45.15
--17.30092,-17.39598,-16.1602,-13.49852,71.988938,44.737
--16.7713,-16.86345,-15.75765,-13.0853,69.785195,42.6835
--17.29,-17.48,-16.245,-13.49,71.9435,43.168
--17.30092,-17.49104,-16.25526,-13.40346,71.988938,44.0412
--17.83782,-18.13185,-16.85772,-13.91742,74.222973,44.5896
--18.018,-18.315,-17.028,-14.058,74.9727,44.85
--16.7713,-17.04775,-15.8498,-13.2696,69.785195,43.2232
--16.9442,-17.3166,-16.1063,-13.4064,70.50463,43.168
--16.4255,-16.7865,-15.7035,-12.90575,68.346325,43.0635
--16.67915,-17.23205,-16.0341,-13.0853,69.86813,42.6075
--16.67915,-17.1399,-16.0341,-13.17745,69.877345,43.6985
--17.03029,-17.59483,-16.37166,-13.54896,71.348447,43.0098
--16.33525,-16.967,-15.79375,-13.1765,68.436575,42.5125
--16.33525,-16.967,-15.79375,-12.996,68.436575,41.9425
--17.02305,-17.77545,-16.5528,-13.63725,71.30871,41.9425
--17.919,-18.612,-17.325,-14.157,75.0618,43.7976
--17.557,-18.139,-16.975,-13.871,73.5551,44.56
--16.67915,-17.3242,-16.2184,-13.4539,69.86813,42.408
--17.919,-18.711,-17.523,-14.355,75.0618,43.7085
--17.20224,-17.96256,-16.82208,-13.7808,72.059328,43.0155
--16.8511,-17.5959,-16.4787,-13.4995,70.58842,43.2725
--17.919,-18.711,-17.523,-14.256,75.2103,45.1935
--16.8511,-17.5959,-16.4787,-13.4064,70.58842,43.561
--17.02848,-17.68704,-16.65216,-13.82976,71.340864,42.288
--18.1,-19,-17.8,-14.8,75.82,44.23
--17.56062,-18.53082,-17.26956,-14.35896,73.570266,43.4532
--17.557,-18.527,-17.363,-14.065,73.5454,42.7188
--16.5072,-17.4192,-16.3248,-13.1328,69.14784,42.5664
--16.67915,-17.5085,-16.4027,-13.2696,70.006355,43.1165
--16.85472,-17.59968,-16.57536,-13.31616,70.743264,42.5664
--17.20586,-17.96634,-16.92068,-13.68864,72.217082,43.4075
--16.67915,-17.41635,-16.4027,-13.2696,70.006355,42.8352
--17.38143,-18.2457,-17.18937,-14.02038,72.953991,44.0055
--17.03029,-17.97119,-16.84211,-13.83123,71.480173,43.1165
--17.56062,-18.53082,-17.36658,-14.16492,73.706094,44.4906
--16.7616,-17.87904,-16.7616,-13.5024,70.743264,43.1165
--17.919,-19.008,-17.82,-14.355,75.2103,43.8966
--16.33525,-17.23775,-16.245,-12.996,68.562925,42.028
--17.20586,-18.0614,-17.1108,-13.97382,72.312142,43.3454
--16.8511,-17.689,-16.6649,-13.7788,70.81186,43.169
--17.738,-18.816,-17.64,-14.602,74.5388,44.04
--17.28,-18.528,-17.376,-14.112,73.0272,44.24
--17.2854,-18.53379,-17.2854,-14.02038,73.040418,42.6218
--16.67915,-17.6928,-16.587,-13.36175,70.098505,42.7285
--17.02848,-17.96928,-16.9344,-13.6416,71.566656,42.875
--17.376,-18.336,-17.28,-13.92,73.0272,43.53
--16.68096,-17.69472,-16.68096,-13.63968,70.106112,41.7984
--17.38324,-18.53572,-17.38324,-14.59808,73.057628,42.5908
--16.8511,-17.9683,-16.8511,-13.7788,70.82117,42.2275
--17.38143,-18.53379,-17.38143,-14.02038,73.050021,44.1144
--17.02305,-18.15165,-17.02305,-13.7313,71.62848,43.1046
--17.2872,-18.43968,-17.38324,-14.11788,73.144064,43.0612
--16.5072,-17.5104,-16.5072,-13.3152,69.45792,41.5625
--17.82,-19.107,-18.018,-14.85,75.3984,43.3125
--17.02848,-18.25152,-17.12256,-14.112,71.651328,42.1056
--17.919,-19.305,-18.018,-14.85,75.3984,43.1046
--16.7616,-18.06528,-16.94784,-13.87488,70.920192,42.2338
--17.195,-18.43,-17.29,-14.06,72.352,43.86
--17.73981,-18.91593,-17.83782,-14.60349,74.654217,43.1046
--17.38324,-18.53572,-17.47928,-14.406,73.144064,42.2772
--17.02305,-18.15165,-17.1171,-14.1075,71.637885,42.7086
--16.8511,-18.1545,-17.0373,-13.965,70.91427,40.907
--17.919,-19.305,-18.117,-14.85,75.4974,43.25
--17.20224,-18.5328,-17.39232,-14.16096,72.477504,42.8175
--17.20224,-18.5328,-17.39232,-14.256,72.477504,41.3376
--17.1108,-18.44164,-17.39598,-14.16394,72.492756,42.2772
--17.557,-18.818,-17.751,-14.55,73.9722,43.46
--17.919,-19.206,-18.117,-14.85,75.4974,43.54
--17.738,-19.11,-17.934,-14.994,74.7348,42.483
--17.73981,-19.20996,-17.93583,-14.60349,74.752227,42.5304
--16.67915,-18.0614,-16.9556,-13.8225,70.27359,40.8025
--16.85472,-18.25152,-17.13408,-13.968,71.013312,41.5548
--17.557,-19.012,-17.848,-14.453,73.9819,41.7682
--17.38324,-18.82384,-17.67136,-14.406,73.240104,42.1988
--17.20586,-18.63176,-17.49104,-14.16394,72.492756,41.8458
--16.5072,-17.8752,-16.7808,-13.68,69.54912,41.4144
--16.85472,-18.34464,-17.2272,-14.06112,71.013312,41.8458
--16.8511,-18.3407,-17.2235,-14.0581,70.99806,40.8025
--17.557,-19.109,-17.945,-14.55,73.9819,43.06
--17.38324,-18.91988,-17.7674,-14.406,73.240104,42.385
--17.20586,-18.63176,-17.5861,-14.35406,72.492756,41.9525
--16.5072,-17.8752,-16.872,-13.68,69.55824,41.3376
--17.02305,-18.4338,-17.39925,-14.20155,71.807175,42.8175
--17.56062,-19.11294,-17.9487,-14.74704,74.084472,42.8175
--16.8511,-18.3407,-17.3166,-14.0581,71.09116,40.983
--16.5072,-18.0576,-16.9632,-13.8624,69.6312,41.0875
--17.376,-18.912,-17.76,-14.688,73.3056,43.36
--17.376,-18.912,-17.856,-14.496,73.3056,43.06
--16.5984,-17.9664,-16.9632,-13.8624,69.64032,41.136
--17.738,-19.306,-18.228,-14.798,74.8328,43.06
--16.94784,-18.34464,-17.32032,-14.34048,71.106432,41.136
--16.77312,-18.24768,-17.14176,-14.10048,70.373376,41.4144
--17.1171,-18.6219,-17.4933,-14.2956,71.81658,40.7075
--17.12256,-18.62784,-17.49888,-14.30016,71.839488,42.2772
--17.83782,-19.40598,-18.22986,-14.79951,74.840436,42.6294
--16.9442,-18.4338,-17.3166,-14.2443,71.09116,42.091
--16.9442,-18.3407,-17.3166,-14.0581,71.10047,41.0875
--16.5984,-18.0576,-16.9632,-13.9536,69.64032,41.52
--16.5984,-18.0576,-16.9632,-13.9536,69.64032,40.907
--17.472,-19.008,-17.856,-14.688,73.392,41.232
--16.9442,-18.4338,-17.4097,-14.1512,71.08185,40.907
--16.77312,-18.33984,-17.23392,-14.10048,70.373376,41.4144
--17.654,-19.303,-18.139,-14.841,74.1662,42.85
--16.7713,-18.33785,-17.23205,-14.1911,70.45789,41.4772
--16.7713,-18.33785,-17.23205,-14.09895,70.45789,41.5548
--16.9442,-18.5269,-17.4097,-14.2443,71.18426,42.1008
--17.30092,-18.91694,-17.77622,-14.63924,72.682876,41.7682
--17.29,-18.905,-17.765,-14.725,72.637,40.8025
--16.94784,-18.53088,-17.50656,-14.24736,71.199552,41.2735
--17.654,-19.303,-18.139,-14.841,74.1662,41.5548
--16.4255,-17.95975,-16.967,-13.80825,69.00515,40.622
--17.751,-19.303,-18.236,-15.035,74.1662,42.85
--17.385,-18.905,-17.86,-14.44,72.637,40.907
--17.934,-19.502,-18.424,-15.092,74.9308,43.14
--17.568,-19.104,-18.048,-14.784,73.392,41.52
--17.0373,-18.5269,-17.5028,-14.4305,71.18426,41.699
--17.0373,-18.5269,-17.5028,-14.2443,71.17495,42.091
--17.04096,-18.53088,-17.50656,-14.24736,71.199552,41.7682
--17.0373,-18.5269,-17.5028,-14.3374,71.18426,41.9048
--17.751,-19.4,-18.236,-14.938,74.1662,41.5645
--17.385,-19,-17.86,-14.82,72.637,40.6315
--17.385,-19,-17.86,-14.63,72.637,42.55
--17.75466,-19.404,-18.23976,-14.94108,74.181492,42.091
--17.57349,-19.206,-18.05364,-14.78862,73.424538,42.6294
--17.751,-19.4,-18.333,-14.744,74.1662,42.76
--16.86345,-18.33785,-17.3242,-14.1911,70.448675,41.3705
--17.31256,-18.818,-17.68892,-14.48986,71.941214,41.7682
--17.48,-19,-17.955,-14.725,72.637,43.06
--17.57349,-19.206,-18.14967,-14.88465,73.424538,41.7682
--17.48,-19,-17.955,-14.535,72.637,43.36
--17.66952,-19.10997,-18.05364,-14.69259,73.424538,41.9525
--17.49104,-19.012,-17.87128,-14.7343,72.777936,41.7682
--16.7808,-18.24,-17.1456,-14.2272,69.8136,41.0496
--17.13408,-18.624,-17.59968,-14.24736,71.28336,42.0592
--16.9556,-18.43,-17.41635,-13.91465,70.55004,42.1562
--18.032,-19.6,-18.522,-14.7,75.019,42.2772
--17.66952,-19.206,-18.14967,-14.59656,73.510965,42.5304
--17.848,-19.4,-18.333,-15.035,74.2535,42.2338
--18.03384,-19.50399,-18.52389,-15.19155,75.026655,42.9264
--17.1304,-18.5269,-17.5028,-14.5236,71.26805,41.0875
--17.664,-19.104,-18.048,-14.976,73.4016,43.06
--18.032,-19.502,-18.424,-15.288,74.9308,43.64
--18.13185,-19.602,-18.42588,-15.28956,75.026655,42.9264
--17.76555,-19.206,-18.14967,-14.98068,73.414935,43.4214
--17.9487,-19.59804,-18.33678,-15.32916,74.17179,43.3125
--17.9487,-19.50102,-18.33678,-14.94108,74.181492,41.5128
--17.76,-19.392,-18.24,-14.976,73.4016,44.86
--17.5861,-19.10706,-18.0614,-14.92442,72.682876,43.2768
--17.5861,-19.10706,-17.96634,-14.82936,72.587816,43.5045
--17.945,-19.497,-18.43,-15.132,74.0692,43.1165
--16.872,-18.3312,-17.328,-14.3184,69.64032,42.288
--17.4048,-18.91008,-17.8752,-14.77056,71.848896,42.576
--17.5824,-19.10304,-18.0576,-14.92128,72.572544,42.3936
--17.7674,-19.40008,-18.2476,-15.3664,73.432184,42.9828
--17.5861,-19.20212,-18.0614,-14.82936,72.682876,42.7672
--17.2235,-18.8062,-17.689,-14.8029,71.10047,41.4675
--17.5861,-19.20212,-18.0614,-14.82936,72.587816,42.4375
--17.2272,-18.90336,-17.78592,-14.71296,71.199552,41.8944
--17.40665,-19.10027,-17.97119,-14.67804,71.941214,42.5442
--16.9632,-18.5136,-17.4192,-14.136,69.73152,41.458
--17.575,-19.285,-18.145,-15.01,72.637,43.54
--17.50074,-19.10027,-17.97119,-14.77213,71.941214,42.0592
--17.4933,-19.09215,-17.96355,-15.048,71.91063,43.2036
--17.856,-19.488,-18.336,-15.168,73.4016,42.1824
--17.32032,-18.90336,-17.78592,-14.8992,71.199552,42.4375
--16.7865,-18.32075,-17.23775,-14.34975,69.00515,41.5625
--18.228,-19.894,-18.718,-15.582,74.9308,43.53
--17.856,-19.488,-18.432,-15.168,73.4016,42
--17.49888,-19.09824,-17.96928,-15.0528,71.933568,42.875
--17.67744,-19.29312,-18.24768,-15.01632,72.667584,42.1056
--17.49888,-19.09824,-18.06336,-14.77056,71.933568,42.1056
--18.14274,-19.69506,-18.62784,-15.5232,74.181492,43.4532
--17.49888,-19.09824,-18.06336,-15.14688,71.933568,43.3062
--18.04572,-19.79208,-18.62784,-15.5232,74.181492,43.8966
--18.139,-19.788,-18.624,-15.326,74.1662,43.94
--17.41344,-18.99648,-17.87904,-14.99232,71.199552,42.2338
--17.23205,-18.7986,-17.78495,-14.744,70.448675,42.6218
--17.4097,-18.9924,-17.9683,-14.6167,71.17495,43.168
--18.139,-19.788,-18.721,-15.423,74.1662,43.3008
--18.326,-19.992,-18.914,-15.68,75.019,44.86
--17.952,-19.584,-18.528,-15.36,73.4016,45.44
--17.77248,-19.38816,-18.34272,-15.11136,72.65808,43.8966
--18.326,-19.992,-18.914,-15.68,75.0288,43.3454
--18.326,-19.992,-18.914,-15.68,75.0288,43.3552
--17.4097,-18.9924,-17.9683,-14.896,71.18426,42.028
--18.139,-19.691,-18.721,-15.423,74.2632,43.94
--18.236,-19.788,-18.721,-15.52,74.2535,42.8352
--17.5028,-18.9924,-17.9683,-14.7098,71.27736,43.6688
--17.68704,-19.2864,-18.15744,-15.0528,72.027648,42.672
--17.3242,-18.89075,-17.78495,-14.83615,70.540825,42.9128
--17.32608,-18.8928,-17.78688,-14.7456,70.557696,44.016
--17.86752,-19.4832,-18.34272,-15.2064,72.762624,42.5664
--17.87128,-19.39224,-18.34658,-15.11454,72.76843,43.4075
--16.967,-18.50125,-17.41825,-14.44,69.086375,42.332
--17.1456,-18.6048,-17.6016,-14.6832,69.8136,42.693
--18.8,-20.5,-19.4,-16,76.56,44.16
--17.50656,-19.0896,-18.06528,-14.8992,71.28336,43.3008
--17.86,-19.475,-18.43,-15.2,72.732,44.64
--18.612,-20.295,-19.206,-16.038,75.7845,44.3025
--18.15156,-19.6882,-18.63176,-15.46244,73.528224,44.0412
--17.59968,-19.18272,-18.06528,-14.8992,71.28336,42.8544
--18.333,-19.885,-18.818,-15.423,74.2535,44.4648
--17.41635,-18.89075,-17.8771,-14.744,70.540825,44.7558
--18.33678,-19.8891,-18.82188,-15.5232,74.26881,45.1094
--17.78112,-19.2864,-18.25152,-15.0528,72.01824,44.9232
--18.522,-19.992,-19.012,-15.484,75.019,47.05
--17.41635,-18.7986,-17.8771,-14.65185,70.540825,43.833
--18.144,-19.68,-18.624,-15.456,73.488,44.784
--17.77545,-19.28025,-18.2457,-14.95395,72.00468,44.9856
--17.96634,-19.4873,-18.44164,-15.2096,72.76843,44.5715
--17.96634,-19.4873,-18.44164,-14.92442,72.777936,44.5715
--17.5959,-19.0855,-18.0614,-14.8029,71.27736,44.7468
--17.77545,-19.28025,-18.2457,-15.048,72.00468,44.9856
--17.59968,-18.99648,-18.06528,-14.8992,71.292672,43.6224
--17.8695,-19.28025,-18.2457,-15.048,71.995275,42.788
--17.689,-19.0855,-18.0614,-14.8029,71.26805,44.345
--17.59968,-19.0896,-18.06528,-14.71296,71.28336,44.0064
--18.9,-20.5,-19.4,-16,76.56,45.85
--18.81,-20.295,-19.206,-15.84,75.7845,44.9856
--17.328,-18.696,-17.6928,-14.5008,69.8136,43.1424
--18.0576,-19.4832,-18.43776,-15.11136,72.75312,43.1424
--18.05,-19.38,-18.43,-14.915,72.732,44.75
--18.4338,-19.79208,-18.72486,-15.42618,74.26881,44.4114
--18.2457,-19.59012,-18.53379,-15.26877,73.510965,44.4114
--18.05,-19.38,-18.335,-15.2,72.637,44.64
--18.43,-19.885,-18.818,-15.52,74.2535,45.04
--18.2476,-19.6882,-18.53572,-15.17432,73.441788,43.9628
--18.62,-20.09,-19.012,-15.778,74.9308,44.94
--18.81,-20.295,-19.206,-15.84,75.6954,44.1144
--18.145,-19.475,-18.335,-15.105,72.637,44.86
--17.96928,-19.2864,-18.15744,-14.86464,71.933568,43.561
--17.96928,-19.2864,-18.15744,-14.95872,71.933568,43.0656
--18.718,-20.09,-18.914,-15.68,74.9308,44.247
--18.53082,-19.8891,-18.82188,-15.5232,74.181492,44.345
--18.15264,-19.38816,-18.34272,-15.2064,72.65808,43.1424
--18.718,-20.09,-18.914,-15.484,74.9308,44.2568
--17.60256,-18.8928,-17.78688,-14.46912,70.45632,42.96
--17.60065,-18.89075,-17.8771,-14.5597,70.45789,43.1165
--18.909,-20.295,-19.206,-15.84,75.6954,44.56
--17.78592,-19.0896,-18.06528,-14.80608,71.199552,42.6816
--17.96928,-19.2864,-18.15744,-15.0528,71.933568,43.855
--17.78592,-19.0896,-17.97216,-14.99232,71.199552,42.9128
--17.60256,-18.8928,-17.87904,-14.65344,70.465536,42.7776
--18.15264,-19.4832,-18.43776,-15.2064,72.667584,44.1144
--18.62784,-19.8891,-18.82188,-15.5232,74.17179,43.9628
--17.8752,-19.0855,-18.0614,-14.9891,71.17495,43.6688
--17.60256,-18.8928,-17.87904,-14.7456,70.465536,43.248
--18.62784,-19.98612,-18.82188,-15.42618,74.181492,43.2768
--18.06336,-19.2864,-18.25152,-14.95872,71.933568,42.4704
--17.5104,-18.696,-17.6928,-14.6832,69.73152,42.3936
--17.87904,-19.0896,-18.06528,-14.99232,71.199552,43.0195
--17.6928,-18.9829,-17.8771,-14.83615,70.45789,44.1835
--18.0576,-18.9981,-17.3052,-14.2956,71.920035,44.8074
--18.06528,-18.15937,-15.90121,-13.83123,71.941214,44.0768
--18.24,-17.385,-14.725,-12.92,72.637,42.5125
--18.43968,-16.71096,-13.9258,-11.71688,73.42258,44.4234
--17.8752,-15.6408,-12.7547,-10.1479,71.18426,44.1392
--18.62784,-15.62022,-12.6126,-9.60498,74.181492,44.1936
--17.87904,-14.61984,-11.45376,-8.28768,71.199552,43.7955
--18.25152,-14.44912,-10.9319,-7.41468,72.587816,44.6491
--19.2,-14.9,-10.9,-6.6,76.36,44.86
--19.2,-14.3,-10.1,-6.1,76.37,44.35
--18.0576,-12.9789,-8.8407,-5.0787,71.81658,44.9856
--19.008,-13.167,-8.712,-4.752,75.5964,45.05
--17.8752,-11.8237,-7.5411,-4.4688,71.09116,42.617
--17.87904,-11.08128,-7.07712,-5.02848,71.106432,43.5168
--18.432,-10.656,-7.008,-5.664,73.296,43.1424
--18.62784,-10.09008,-6.7914,-5.53014,74.084472,44.639
--18.25152,-9.31588,-5.98878,-4.94312,72.587816,44.5715
--18.624,-8.827,-5.529,-4.656,74.0304,45.25
--18.721,-7.76,-4.85,-4.656,74.0789,45.05
--18.25152,-6.93938,-3.99252,-3.61228,72.587816,43.8925
--18.432,-6.24,-3.168,-3.36,73.2192,43.8336
--17.5104,-5.1984,-2.0976,-2.736,69.54912,43.833
--17.87904,-4.656,-1.11744,-2.60736,71.013312,43.9104
--17.87904,-3.81792,0,-2.14176,71.013312,44.6491
--17.87904,-3.07296,0.83808,-1.3968,71.013312,44.5056
--18.62784,-2.4255,1.84338,-1.06722,73.997154,45.1935
diff --git a/tests/integration/models/refrig_case_osw/python/lt2_data.csv b/tests/integration/models/refrig_case_osw/python/lt2_data.csv
deleted file mode 100644
index fb786211..00000000
--- a/tests/integration/models/refrig_case_osw/python/lt2_data.csv
+++ /dev/null
@@ -1,8187 +0,0 @@
-1,2,3,4,5,6
-prod,case,supply,return,zone,rh
-degF,degF,degF,degF,degF,pct
--5.79744,-14.7312,-13.97088,-10.64448,68.85648,52.6272
--5.952,-14.88,-14.016,-10.944,69.5616,54.63
--5.80545,-14.28325,-13.4539,-10.5051,66.77189,52.9911
--6.08,-14.82,-13.965,-11.115,68.837,51.984
--6.08,-15.105,-13.965,-11.21,68.837,54.72
--6.37,-15.68,-14.504,-11.662,71.1088,54.72
--5.928,-14.592,-13.5888,-10.7616,66.09264,52.7328
--6.20994,-15.0544,-14.01941,-11.10262,68.177614,53.2821
--6.17405,-14.65185,-13.73035,-10.6894,66.77189,53.2821
--6.499,-15.326,-14.356,-11.252,70.2862,53.0008
--6.53072,-15.17432,-14.21392,-10.85252,69.686624,53.6158
--6.39812,-14.86622,-13.92532,-10.91444,68.271704,53.0687
--6.55914,-15.01948,-14.06888,-10.9319,68.975536,53.1754
--6.42528,-14.80608,-13.87488,-10.98816,67.55856,53.0687
--6.65,-15.105,-14.155,-11.115,68.932,54.64
--6.74784,-15.2064,-14.16096,-11.21472,68.961024,52.7328
--6.816,-15.456,-14.4,-11.328,69.648,52.5312
--6.77376,-15.14688,-14.112,-11.00736,68.264448,52.4448
--6.84432,-15.30466,-14.259,-11.31214,69.051584,53.2532
--7.081,-15.617,-14.647,-11.446,70.4608,54.33
--6.935,-15.295,-14.345,-11.305,68.9985,54.23
--7.17948,-15.62022,-14.65002,-11.54538,70.475328,53.9847
--7.125,-15.295,-14.345,-11.4,69.0935,51.6135
--7.2765,-15.71724,-14.65002,-11.73942,70.572348,52.8514
--7.448,-15.974,-14.896,-11.858,71.2852,53.94
--7.07712,-15.17856,-14.15424,-11.26752,67.726176,52.2151
--7.0224,-14.8656,-13.8624,-10.944,66.42096,51.2928
--7.623,-16.137,-15.048,-11.979,72.1017,53.54
--7.722,-16.137,-15.048,-11.979,72.2007,52.8957
--7.584,-15.648,-14.688,-11.712,70.0128,51.0048
--7.43232,-15.42912,-14.39424,-11.57184,68.612544,50.7168
--7.58716,-15.75056,-14.69412,-11.71688,70.041972,52.3614
--7.5264,-15.5232,-14.48832,-11.47776,68.753664,50.8992
--7.776,-15.744,-14.784,-11.808,70.1472,52.43
--7.857,-15.908,-14.938,-12.125,70.8779,51.5361
--7.5563,-15.20475,-14.1911,-11.33445,67.426155,49.704
--7.5563,-15.20475,-14.1911,-11.4266,67.426155,49.989
--7.80615,-15.6123,-14.57775,-11.6622,68.816385,50.654
--7.98504,-15.77996,-14.7343,-11.8825,69.555402,51.5676
--8.316,-16.434,-15.345,-12.375,72.4383,53.32
--7.98,-15.77,-14.725,-11.97,69.6065,52.62
--8.0801,-15.77996,-14.7343,-11.78744,69.659968,50.8571
--7.9968,-15.5232,-14.5824,-11.66592,68.932416,49.9392
--8.17344,-15.77664,-14.7312,-11.78496,69.721344,49.5648
--8.6,-16.7,-15.6,-12.6,73.37,51.93
--8.26848,-15.96672,-14.82624,-12.07008,69.730848,50.1312
--8.439,-16.199,-15.132,-12.028,71.1689,51.0414
--8.2764,-15.8004,-14.76585,-11.75625,69.08913,52.3116
--8.722,-16.464,-15.386,-12.348,71.9908,51.0874
--8.20135,-15.4812,-14.46755,-11.51875,67.69339,54.2424
--8.208,-15.3216,-14.3184,-11.4,67.00464,53.4048
--8.208,-15.3216,-14.3184,-11.4,66.99552,52.7328
--8.918,-16.464,-15.386,-12.25,71.9908,52.4692
--8.918,-16.464,-15.386,-12.446,72.0888,53.93
--9.016,-16.464,-15.386,-12.25,72.0888,52.6554
--8.3904,-15.3216,-14.3184,-11.5824,67.08672,51.0435
--8.928,-16.224,-15.168,-12.288,70.6176,52.0608
--8.39325,-15.25225,-14.2595,-11.3715,66.47815,52.079
--8.84352,-15.89952,-14.86464,-12.04224,69.299328,52.7328
--8.75328,-15.73728,-14.71296,-11.91936,68.592192,53.2918
--9.215,-16.393,-15.326,-12.222,71.5472,53.1754
--9.31,-16.562,-15.484,-12.348,72.2848,55.23
--8.9376,-15.89952,-14.95872,-12.2304,69.384,53.9392
--8.93952,-15.8304,-14.80608,-12.01248,68.676,52.5312
--9.0288,-15.9885,-14.95395,-12.0384,69.37128,54.3807
--9.0307,-15.827,-14.8029,-11.9168,68.67056,54.1254
--9.604,-16.66,-15.582,-12.544,72.2848,54.42
--9.31392,-16.1568,-15.11136,-12.3552,70.101504,51.7824
--9.1238,-15.827,-14.896,-12.103,68.75435,51.528
--9.31095,-16.08255,-15.048,-12.2265,69.455925,53.6877
--9.50697,-16.42113,-15.3648,-12.38787,70.918155,52.7098
--9.215,-15.75765,-14.744,-11.7952,68.052775,52.573
--9.603,-16.42113,-15.3648,-12.57993,71.014185,54.1728
--9.59904,-16.25184,-15.30144,-12.26016,70.28208,54.0936
--9.69903,-16.42113,-15.46083,-12.38787,71.004582,54.2817
--9.3024,-15.5952,-14.592,-11.7648,67.4424,51.984
--9.69612,-16.35032,-15.30466,-12.16768,70.287364,52.7098
--9.78912,-16.34688,-15.30144,-12.16512,70.28208,51.9648
--9.69024,-16.18176,-15.14688,-12.13632,69.57216,53.4394
--9.68715,-16.1766,-15.14205,-12.13245,69.54057,52.573
--10.19304,-16.85772,-15.77961,-12.7413,72.478395,53.8758
--10.296,-17.028,-15.939,-13.068,73.2996,54.82
--9.7776,-16.01664,-14.99232,-12.19872,68.946048,52.7424
--10.08,-16.608,-15.456,-12.48,71.088,53.94
--10.07636,-16.44538,-15.39972,-12.45286,70.382424,52.6031
--10.6,-17.2,-16.2,-13.1,74.05,54.53
--9.87072,-16.10976,-15.08544,-12.29184,68.95536,52.3994
--10.486,-16.954,-15.876,-12.936,72.569,52.9396
--10.593,-17.127,-16.038,-12.969,73.2996,53.0046
--10.0548,-16.1063,-15.0822,-12.2892,68.94055,51.1385
--10.37124,-16.61319,-15.55686,-12.86802,71.110215,51.8271
--10.25581,-16.27757,-15.24258,-12.2317,69.664236,52.0405
--10.25145,-16.3647,-15.2361,-12.4146,69.63462,53.1927
--10.791,-17.226,-16.137,-13.068,73.3095,53.6877
--10.2432,-16.20288,-15.17856,-12.38496,69.04848,51.7301
--10.1365,-16.12625,-15.02045,-12.25595,68.32001,51.243
--10.44288,-16.36992,-15.33504,-12.51264,69.750912,52.3614
--11.1,-17.4,-16.3,-13.5,74.14,53.25
--10.545,-16.53,-15.58,-12.635,70.433,50.863
--10.75536,-16.70922,-15.74892,-12.86802,71.196642,53.1927
--10.976,-17.15,-16.072,-13.034,72.6572,51.5676
--10.85139,-16.80525,-15.74892,-12.86802,71.196642,52.2027
--11.187,-17.325,-16.236,-13.167,73.4877,51.9057
--11.3,-17.5,-16.4,-13.5,74.25,52.44
--10.61568,-16.296,-15.27168,-12.5712,69.132288,51.2548
--10.3968,-15.96,-14.9568,-12.1296,67.69776,50.6208
--10.59725,-16.2184,-15.1126,-12.3481,68.41216,50.6534
--11.27,-17.248,-16.072,-13.132,72.7552,52.22
--11.1573,-17.07552,-16.0083,-13.00068,72.027648,50.7836
--10.5792,-16.0512,-15.048,-12.1296,67.70688,49.153
--11.6,-17.6,-16.5,-13.5,74.24,51.93
--10.89504,-16.38912,-15.3648,-12.47808,69.132288,50.2368
--11.466,-17.248,-16.17,-13.23,72.7552,50.4994
--11.115,-16.72,-15.675,-12.92,70.623,49.153
--11.21708,-16.73056,-15.6849,-12.73804,70.572544,51.0972
--10.7616,-16.0512,-15.048,-12.1296,67.70688,50.2368
--11.446,-17.072,-16.005,-12.998,72.1098,51.05
--11.54538,-17.07552,-16.0083,-13.29174,72.124668,50.7177
--11.54538,-17.07552,-16.0083,-13.29174,72.124668,51.2325
--11.286,-16.5528,-15.6123,-12.88485,69.91677,50.8266
--11.52,-16.896,-15.936,-13.152,71.3664,49.9488
--11.88,-17.523,-16.434,-13.464,73.5867,51.3018
--11.15015,-16.31055,-15.2969,-12.5324,68.50431,49.4285
--11.49984,-16.91712,-15.77664,-13.02048,70.652736,49.6704
--11.50226,-16.92068,-15.77996,-12.92816,70.667604,49.9065
--11.95722,-17.34777,-16.26966,-13.42737,72.860634,51.4107
--11.83644,-17.26956,-16.20234,-13.0977,72.124668,50.5395
--11.24352,-16.31232,-15.29856,-12.71808,68.640768,49.5648
--11.2176,-16.2336,-15.2304,-12.4032,67.92576,48.108
--11.93346,-17.26956,-16.20234,-13.0977,72.270198,50.7052
--11.191,-16.0645,-15.07175,-12.36425,67.227225,49.3335
--11.54688,-16.57536,-15.55104,-12.75744,69.458208,49.9584
--11.90772,-17.18937,-16.03701,-13.15611,71.619174,52.0146
--11.875,-17.005,-15.865,-13.015,70.851,52.03
--12.1275,-17.36658,-16.20234,-13.29174,72.347814,50.7177
--11.76,-16.74624,-15.71136,-12.88896,70.164864,49.6272
--11.7306,-16.5718,-15.5477,-12.7547,69.42467,48.2885
--11.73312,-16.66848,-15.55104,-12.85056,69.458208,49.2864
--12.222,-17.363,-16.296,-13.289,72.3426,50.94
--12.19708,-17.19116,-16.13472,-13.15748,71.626632,50.8914
--12.07262,-17.01574,-15.97008,-13.02322,70.895748,50.1074
--11.94816,-16.84032,-15.80544,-12.98304,70.164864,50.4994
--12.29312,-17.19116,-16.13472,-13.34956,71.722672,50.421
--11.6736,-16.3248,-15.3216,-12.5856,68.01696,48.4975
--12.16,-17.005,-15.96,-13.015,70.946,51.23
--12.38787,-17.18937,-16.13304,-13.15611,71.715204,48.9171
--11.88735,-16.49485,-15.4812,-12.62455,68.81762,47.2435
--11.88735,-16.49485,-15.4812,-12.62455,68.81762,48.5291
--12.35,-17.005,-15.96,-13.3,70.946,50.43
--12.1056,-16.66848,-15.64416,-12.85056,69.542016,48.7968
--12.61,-17.46,-16.296,-13.386,72.4299,48.7328
--12.57993,-17.2854,-16.13304,-13.06008,71.715204,50.1878
--12.45286,-17.01574,-15.97008,-13.11828,70.981302,49.5194
--11.82275,-16.245,-15.25225,-12.54475,67.389675,47.6235
--13.068,-17.82,-16.632,-13.761,74.0223,49.4505
--12.29184,-16.7616,-15.73728,-12.75744,69.542016,47.8464
--12.54792,-17.1108,-16.06514,-13.02322,70.990808,48.1702
--12.54792,-17.20586,-16.06514,-13.21334,70.990808,48.7354
--12.901,-17.46,-16.393,-13.483,72.5366,49.95
--12.1296,-16.416,-15.4128,-12.4944,68.19936,47.348
--12.25595,-16.587,-15.57335,-12.7167,68.900555,49.4118
--12.86802,-17.2854,-16.22907,-13.25214,71.801631,47.9568
--13.266,-17.82,-16.731,-13.662,74.0322,51.13
--12.73,-17.1,-16.055,-13.3,71.0315,49.153
--12.44025,-16.67915,-15.57335,-12.80885,68.992705,47.633
--12.7008,-16.9344,-15.89952,-12.98304,70.437696,47.28
--12.312,-16.5072,-15.4128,-12.768,68.28144,49.0752
--13.06008,-17.2854,-16.22907,-13.15611,71.897661,49.3416
--12.79488,-17.02848,-15.9936,-13.1712,70.447104,48.5184
--12.4032,-16.5072,-15.504,-12.6768,68.28144,47.28
--12.92816,-17.20586,-16.1602,-13.3084,71.171422,48.0538
--13.15611,-17.38143,-16.3251,-13.4442,71.897661,48.1605
--12.88485,-17.02305,-15.9885,-13.3551,70.415235,47.063
--12.62592,-16.77312,-15.6672,-12.9024,69.000192,47.3568
--13.152,-17.376,-16.32,-13.344,71.8848,48.1344
--13.386,-17.557,-16.49,-13.58,72.6239,48.8298
--12.4545,-16.4255,-15.3425,-12.635,67.570175,47.6235
--13.662,-18.018,-16.83,-13.959,74.1213,49.44
--12.5856,-16.5072,-15.504,-12.768,68.28144,46.5785
--13.205,-17.195,-16.15,-13.49,71.1265,46.303
--12.6768,-16.5984,-15.5952,-12.8592,68.28144,46.7904
--12.94368,-16.94784,-15.92352,-13.0368,69.718944,47.4621
--13.3056,-17.29728,-16.25184,-13.3056,71.156448,49.0446
--13.86,-18.018,-16.929,-13.959,74.2203,47.8566
--13.4456,-17.47928,-16.3268,-13.34956,72.001188,51.6754
--13.034,-16.8511,-15.9201,-13.1271,69.78776,49.153
--13.67982,-17.65764,-16.59042,-13.67982,72.735894,50.7934
--13.40064,-17.29728,-16.25184,-13.3056,71.260992,49.1535
--12.8592,-16.5984,-15.5952,-12.768,68.37264,47.3568
--13.3551,-17.1171,-16.08255,-13.167,70.509285,49.3416
--13.77684,-17.65764,-16.59042,-13.5828,72.735894,47.5888
--13.2202,-17.0373,-15.9201,-13.2202,69.78776,47.6574
--12.9504,-16.6896,-15.5952,-12.8592,68.36352,47.7408
--13.45487,-17.21847,-16.18348,-13.26669,70.548682,47.5591
--13.17888,-16.77312,-15.85152,-12.99456,69.092352,47.5584
--12.90575,-16.4255,-15.43275,-12.72525,67.660425,47.063
--12.90575,-16.51575,-15.523,-12.8155,67.660425,47.5285
--13.59358,-17.39598,-16.35032,-13.49852,71.266482,49.0294
--13.97088,-17.75466,-16.68744,-13.77684,72.735894,49.0446
--14.11344,-17.93583,-16.85772,-13.81941,73.576107,49.2426
--13.1328,-16.6896,-15.6864,-12.8592,68.37264,47.4525
--13.82832,-17.66952,-16.51716,-13.4442,72.089721,53.2917
--13.5024,-17.13408,-16.01664,-13.22304,69.905184,47.4621
--13.63725,-17.3052,-16.1766,-13.3551,70.603335,49.5297
--14.355,-18.216,-17.028,-14.157,74.3193,50.34
--14.02038,-17.66952,-16.51716,-13.63626,72.089721,48.1437
--14.162,-17.848,-16.781,-14.065,72.8082,47.6658
--14.16492,-17.85168,-16.78446,-13.97088,72.823212,49.2352
--13.3152,-16.7808,-15.7776,-12.8592,68.46384,46.6848
--13.4539,-16.86345,-15.94195,-12.99315,69.16779,47.1711
--14.02184,-17.67136,-16.51888,-13.73372,72.087624,47.6574
--13.83123,-17.31256,-16.27757,-13.54896,70.623954,47.4621
--14.26194,-17.85168,-16.78446,-13.87386,72.823212,49.0545
--14.259,-17.945,-16.781,-13.774,72.8179,48.55
--13.54605,-16.9556,-15.94195,-12.99315,69.177005,48.1605
--14.21392,-17.67136,-16.61492,-13.54164,72.183664,48.8432
--14.06,-17.385,-16.435,-13.585,71.3165,49.14
--13.9194,-17.39925,-16.27065,-13.44915,70.68798,48.7575
--14.453,-18.042,-16.878,-13.968,72.9149,47.7725
--14.16394,-17.68116,-16.54044,-13.7837,71.447096,49.3332
--14.751,-18.315,-17.226,-14.157,74.4084,49.84
--14.9,-18.4,-17.4,-14.3,75.16,50.03
--14.01792,-17.31072,-16.27584,-13.45344,70.710528,48.8432
--13.68,-16.872,-15.8688,-13.1328,68.54592,46.8864
--14.7015,-18.13185,-17.05374,-14.11344,73.674117,50.0346
--14.553,-17.9487,-16.88148,-13.87386,72.920232,47.8632
--13.968,-17.2272,-16.20288,-13.31616,69.988992,48.9024
--14.553,-17.9487,-16.88148,-13.97088,72.929934,48.9357
--14.35406,-17.5861,-16.54044,-13.68864,71.447096,46.7055
--14.20608,-17.49888,-16.36992,-13.54752,70.710528,47.7652
--14.949,-18.414,-17.226,-14.157,74.4183,48.63
--14.0581,-17.3166,-16.1994,-13.4064,69.97396,48.7354
--13.91465,-17.04775,-16.0341,-13.2696,69.25994,49.5088
--14.44912,-17.5861,-16.54044,-13.7837,71.447096,47.4524
--14.44912,-17.5861,-16.54044,-13.68864,71.447096,48.1572
--15.2,-18.7,-17.5,-14.7,75.16,48.04
--14.744,-18.139,-16.975,-14.065,72.9052,46.7831
--14.1512,-17.4097,-16.2925,-13.4995,69.97396,47.579
--14.59808,-17.86344,-16.807,-13.9258,72.183664,47.3732
--13.9536,-16.9632,-15.96,-13.1328,68.63712,46.6848
--14.38965,-17.4933,-16.3647,-13.63725,70.78203,48.3516
--14.69259,-17.76555,-16.70922,-13.82832,72.176148,46.7055
--14.38965,-17.4933,-16.45875,-13.7313,70.68798,47.7477
--14.0448,-17.0544,-15.96,-13.224,68.63712,46.968
--14.3374,-17.4097,-16.2925,-13.4064,70.06706,46.398
--15.09354,-18.22986,-17.15175,-14.21145,73.762326,49.3416
--14.0448,-16.9632,-15.96,-13.1328,68.628,46.6848
--14.94108,-18.04572,-16.9785,-13.87386,73.017252,47.7477
--14.725,-17.67,-16.625,-13.775,71.497,45.638
--14.4305,-17.4097,-16.2925,-13.4995,70.06706,47.481
--14.5824,-17.59296,-16.464,-13.54752,70.804608,46.8864
--14.4305,-17.4097,-16.2925,-13.4064,70.06706,47.7554
--14.7312,-17.67744,-16.632,-13.68576,71.527104,47.1744
--15.19,-18.228,-17.15,-14.21,73.7548,46.795
--14.3754,-17.23205,-16.2184,-13.4539,69.35209,46.1985
--14.67804,-17.59483,-16.55984,-13.92532,70.821543,46.6085
--14.6718,-17.6814,-16.5528,-13.82535,70.78203,48.4308
--14.52672,-17.41344,-16.38912,-13.40928,70.082112,46.5018
--14.976,-17.952,-16.896,-13.632,72.3456,47.664
--14.67648,-17.49888,-16.55808,-13.6416,70.898688,46.7808
--14.6167,-17.3166,-16.3856,-13.3133,70.06706,46.1985
--14.77056,-17.59296,-16.55808,-13.6416,70.898688,46.4064
--14.16925,-16.87675,-15.884,-13.08625,68.003375,47.2435
--15.23214,-18.23976,-17.07552,-14.16492,73.10457,47.4606
--15.229,-18.139,-17.072,-13.968,73.0895,48.4515
--14.2595,-16.7865,-15.884,-12.8155,68.0124,46.5785
--14.86464,-17.49888,-16.55808,-13.6416,70.898688,47.8464
--14.56128,-17.14176,-16.22016,-13.27104,69.451776,48.1344
--14.71296,-17.41344,-16.38912,-13.59552,70.16592,48.0538
--15.168,-18.048,-16.896,-14.112,72.3456,50.14
--14.80608,-17.50656,-16.38912,-13.5024,70.16592,46.3008
--14.65344,-17.23392,-16.22016,-13.27104,69.44256,47.28
--15.26877,-17.86158,-16.90128,-13.82832,72.368208,47.9568
--15.11136,-17.67744,-16.72704,-13.68576,71.61264,46.8864
--14.8029,-17.4097,-16.3856,-13.4995,70.16016,46.588
--14.95872,-17.68704,-16.55808,-13.92384,70.88928,48.6144
--14.7456,-17.32608,-16.22016,-13.45536,69.44256,47.5584
--15.3664,-17.95948,-16.90304,-13.9258,72.36614,47.3732
--14.8992,-17.32032,-16.38912,-13.40928,70.16592,47.9568
--15.2064,-17.67744,-16.72704,-13.68576,71.61264,47.4528
--14.896,-17.3166,-16.3856,-13.4064,70.16016,48.7452
--15.2096,-17.77622,-16.73056,-13.87876,71.62771,47.4524
--14.592,-17.1456,-16.0512,-13.224,68.7192,46.7808
--15.295,-17.86,-16.72,-13.68,71.6775,46.683
--14.9891,-17.4097,-16.3856,-13.5926,70.24395,48.8432
--14.83615,-17.1399,-16.2184,-13.2696,69.435025,46.9965
--14.99232,-17.41344,-16.38912,-13.5024,70.268352,46.3175
--15.62022,-18.23976,-17.07552,-14.26194,73.211292,47.9514
--15.617,-18.333,-17.169,-14.162,73.0992,48.84
--15.55686,-18.05364,-16.90128,-13.92435,72.358605,47.9655
--15.71724,-18.14274,-17.07552,-13.97088,73.114272,48.0744
--15.552,-17.952,-16.896,-13.824,72.336,48.92
--15.71724,-18.14274,-17.07552,-13.97088,73.20159,47.3517
--15.0822,-17.5028,-16.3856,-13.5926,70.24395,46.1985
--14.6205,-16.967,-15.884,-13.26675,68.093625,45.638
--15.55848,-18.05552,-16.90304,-14.11788,72.46218,47.2654
--15.97563,-18.32787,-17.24976,-14.30946,73.948545,47.8566
--15.974,-18.326,-17.248,-14.21,73.941,47.8632
--15.49152,-17.86752,-16.82208,-13.97088,71.70768,46.8666
--15.1753,-17.5959,-16.4787,-13.5926,70.24395,47.481
--15.49152,-17.96256,-16.82208,-13.97088,71.70768,45.84
--16.137,-18.612,-17.523,-14.256,74.7054,47.64
--16.137,-18.612,-17.523,-14.355,74.6955,48.15
--15.908,-18.236,-17.169,-14.065,73.1865,47.4524
--15.744,-18.048,-16.992,-14.304,72.4416,47.64
--15.74892,-18.14967,-16.99731,-14.21244,72.464238,48.5397
--15.744,-18.144,-16.992,-14.112,72.432,46.6848
--14.801,-17.05725,-15.97425,-13.1765,68.093625,45.923
--16.07364,-18.42588,-17.34777,-14.30946,73.948545,46.3716
--15.42912,-17.68704,-16.65216,-13.6416,70.98336,46.8636
--15.048,-17.1456,-16.1424,-13.3152,68.91072,46.5785
--15.84,-18.144,-16.992,-14.112,72.432,45.84
--15.6849,-17.96634,-16.92068,-13.97382,71.72277,46.2108
--15.5232,-17.78112,-16.74624,-13.82976,70.98336,46.4064
--15.3648,-17.50656,-16.48224,-13.5024,70.268352,46.8898
--15.84,-18.048,-16.992,-14.112,72.432,48.15
--15.51825,-17.77545,-16.7409,-14.01345,70.960725,45.3625
--15.936,-18.24,-17.088,-14.304,72.432,45.4464
--15.94098,-18.2457,-17.09334,-14.30847,72.454635,45.6385
--15.61894,-17.8771,-16.74802,-13.73714,71.094404,46.3175
--16.102,-18.333,-17.169,-14.162,73.1865,46.1041
--15.77,-17.86,-16.91,-13.775,71.6775,47.05
--15.77664,-17.86752,-16.82208,-13.87584,71.80272,46.6587
--15.94264,-18.05552,-16.99908,-14.11788,72.567824,46.795
--16.6,-18.9,-17.8,-14.7,75.55,47.04
--15.61728,-17.8752,-16.74624,-14.01792,70.98336,48.0494
--15.865,-17.955,-16.91,-13.965,71.7725,44.973
--16.03701,-18.14967,-17.09334,-14.02038,72.454635,46.6587
--15.70635,-17.6814,-16.7409,-13.7313,71.06418,47.4606
--15.55104,-17.50656,-16.57536,-13.68864,70.35216,46.7831
--15.87502,-17.96634,-16.92068,-13.97382,71.81783,45.717
--15.39072,-17.5104,-16.40448,-13.824,69.62688,45.552
--15.71136,-17.8752,-16.74624,-14.01792,71.07744,45.4464
--15.97008,-18.0614,-16.92068,-13.87876,71.81783,46.1874
--15.8004,-17.77545,-16.7409,-13.82535,71.054775,44.498
--15.96,-17.86,-16.91,-14.06,71.7725,47.13
--15.96,-17.86,-16.91,-14.06,71.7725,47.74
--15.80544,-17.78112,-16.74624,-13.82976,71.086848,46.9812
--15.4812,-17.5085,-16.4027,-13.54605,69.619325,44.498
--16.13304,-18.2457,-17.09334,-14.30847,72.550665,46.3716
--16.06514,-18.0614,-16.92068,-13.68864,71.81783,47.4712
--15.25225,-17.05725,-16.0645,-13.08625,68.183875,45.5335
--15.89445,-17.6814,-16.7409,-13.82535,71.054775,47.348
--15.73728,-17.6928,-16.57536,-14.06112,70.35216,45.6288
--16.22907,-18.43776,-17.18937,-14.50053,72.550665,46.2108
--16.39638,-18.53082,-17.36658,-14.45598,73.29861,47.7477
--16.224,-18.24,-17.184,-14.112,72.528,47.05
--15.73728,-17.59968,-16.66848,-13.68864,70.35216,46.9868
--16.393,-18.236,-17.266,-14.065,73.2835,46.7055
--15.73728,-17.50656,-16.57536,-13.68864,70.35216,46.5018
--16.1568,-17.86752,-16.91712,-13.7808,71.80272,46.7676
--16.3251,-18.14967,-17.09334,-14.21244,72.550665,47.5596
--16.66,-18.522,-17.444,-14.504,74.039,46.0012
--16.1602,-17.96634,-16.92068,-14.259,71.81783,46.3175
--15.827,-17.689,-16.5718,-13.7788,70.34636,46.1874
--16.1568,-18.0576,-16.91712,-13.97088,71.793216,46.4706
--16.1568,-18.0576,-16.91712,-14.06592,71.80272,46.0746
--16.6617,-18.52389,-17.44578,-14.40747,74.046555,46.1835
--15.9885,-17.77545,-16.7409,-13.7313,71.054775,46.9755
--16.4934,-18.4338,-17.26956,-14.45598,73.29861,46.4706
--15.9201,-17.7821,-16.5718,-13.5926,70.33705,46.8734
--16.245,-18.05,-16.91,-13.68,71.7725,43.3675
--16.587,-18.43,-17.266,-14.065,73.2835,46.84
--16.08768,-17.78112,-16.74624,-13.82976,71.086848,44.9664
--16.758,-18.522,-17.444,-14.504,74.039,46.795
--16.25526,-17.96634,-16.92068,-14.06888,71.81783,46.109
--16.59042,-18.4338,-17.26956,-14.45598,73.29861,45.0945
--16.25526,-18.15646,-16.92068,-14.16394,71.91289,46.1874
--16.34688,-18.15264,-17.01216,-14.16096,71.80272,45.6786
--15.5952,-17.4192,-16.3248,-13.5888,68.9928,44.422
--15.9201,-17.7821,-16.6649,-13.7788,70.43015,47.0792
--16.856,-18.62,-17.542,-14.7,74.137,47.45
--16.51716,-18.2457,-17.18937,-14.21244,72.560268,45.9198
--16.684,-18.43,-17.363,-14.453,73.2835,46.35
--16.856,-18.718,-17.542,-14.798,74.039,46.24
--16.684,-18.624,-17.363,-14.55,73.3708,46.94
--16.35032,-18.25152,-17.1108,-14.259,71.91289,46.3078
--16.34,-18.24,-17.1,-14.25,71.858,47.45
--15.6864,-17.4192,-16.416,-13.68,68.9928,43.833
--16.51888,-18.34364,-17.2872,-14.21392,72.644656,44.737
--17.028,-18.909,-17.82,-14.85,74.8935,46.84
--15.7776,-17.5104,-16.416,-13.8624,68.9928,44.0064
--17.127,-19.107,-17.919,-15.246,74.8836,45.8865
--15.94195,-17.78495,-16.67915,-13.91465,69.711475,44.593
--16.781,-18.721,-17.557,-14.744,73.3805,45.9198
--16.27065,-18.15165,-17.02305,-14.1075,71.13942,45.543
--16.781,-18.527,-17.557,-14.647,73.3805,46.76
--15.7776,-17.4192,-16.416,-13.8624,68.9928,44.4125
--16.10976,-17.78592,-16.7616,-13.87488,70.44528,44.8896
--16.61492,-18.43968,-17.38324,-14.50204,72.644656,46.5794
--16.95573,-18.91593,-17.73981,-14.99553,74.154366,46.5795
--17.052,-18.914,-17.738,-14.994,74.1272,46.43
--16.88148,-18.82188,-17.56062,-14.74704,73.385928,46.1874
--16.53,-18.335,-17.195,-14.345,71.8675,44.593
--16.3647,-18.15165,-17.02305,-14.20155,71.13942,45.9756
--16.20288,-17.87904,-16.85472,-13.968,70.44528,45.168
--16.0341,-17.6928,-16.67915,-13.91465,69.711475,44.9595
--16.37166,-18.06528,-17.03029,-14.30168,71.179085,44.6491
--16.53696,-18.34272,-17.20224,-14.63616,71.89776,44.496
--15.8688,-17.6928,-16.5984,-13.8624,68.9928,44.2944
--17.052,-19.012,-17.836,-14.896,74.137,44.5312
--17.4,-19.4,-18.2,-15.2,75.55,46.35
--16.704,-18.528,-17.472,-14.496,72.528,44.6784
--16.6355,-18.25152,-17.20586,-14.35406,71.91289,45.0371
--16.464,-18.15744,-17.12256,-14.30016,71.17152,44.9232
--16.296,-18.06528,-16.94784,-14.24736,70.35216,44.496
--16.45875,-18.33975,-17.1171,-14.38965,71.054775,46.3716
--16.128,-17.9712,-16.77312,-14.00832,69.636096,44.5824
--16.8,-18.624,-17.472,-14.784,72.624,47.34
--16.975,-18.818,-17.654,-14.647,73.3805,45.3572
--16.632,-18.34272,-17.29728,-14.256,71.89776,46.4706
--16.632,-18.43776,-17.29728,-14.44608,71.80272,45.552
--16.128,-17.87904,-16.86528,-14.19264,69.636096,45.2448
--16.72704,-18.5328,-17.39232,-14.63616,71.89776,45.84
--16.3856,-18.1545,-17.0373,-14.2443,70.43015,46.1874
--17.424,-19.305,-18.117,-15.048,74.8935,47.24
--16.90128,-18.62982,-17.57349,-14.59656,72.560268,47.1735
--17.072,-18.818,-17.751,-14.841,73.3805,47.75
--17.07552,-18.82188,-17.65764,-14.94108,73.39563,46.7577
--16.72704,-18.5328,-17.39232,-14.7312,71.89776,46.6587
--16.5528,-18.4338,-17.3052,-14.4837,71.148825,47.8566
--15.884,-17.689,-16.606,-13.80825,68.274125,46.0275
--16.38912,-18.25152,-17.13408,-14.24736,70.44528,46.0224
--16.65216,-18.3456,-17.31072,-14.39424,71.17152,47.481
--15.97425,-17.59875,-16.606,-13.80825,68.274125,46.0275
--17.523,-19.305,-18.117,-15.147,74.9034,47.9655
--17.17254,-18.9189,-17.75466,-14.84406,73.39563,48.3615
--16.99731,-18.72585,-17.57349,-14.59656,72.646695,47.9655
--16.1424,-17.784,-16.7808,-14.0448,68.9928,45.3625
--16.1424,-17.784,-16.7808,-14.0448,68.9928,46.512
--17.34777,-19.20996,-18.03384,-14.99553,74.144565,47.6685
--16.64685,-18.33975,-17.3052,-14.38965,71.148825,47.0547
--17.346,-19.11,-18.032,-14.994,74.137,47.64
--16.1424,-17.6928,-16.6896,-13.7712,68.9928,45.258
--16.48224,-18.06528,-17.04096,-13.87488,70.44528,45.3504
--16.31055,-17.96925,-16.86345,-14.09895,69.711475,46.1041
--16.2336,-17.8752,-16.6896,-14.2272,68.9928,45.7344
--16.57536,-18.25152,-17.13408,-14.15424,70.44528,47.1711
--16.74624,-18.3456,-17.21664,-14.20608,71.17152,46.224
--16.4027,-17.96925,-16.86345,-14.09895,69.711475,45.4385
--16.74802,-18.25346,-17.21847,-14.30168,71.084995,46.7055
--17.266,-18.818,-17.751,-14.647,73.3708,48.24
--16.40448,-17.87904,-16.86528,-13.91616,69.71904,47.1744
--16.91,-18.43,-17.385,-14.63,71.8675,49.34
--17.622,-19.305,-18.117,-15.345,74.8935,48.8367
--17.088,-18.72,-17.568,-14.784,72.624,47.1744
--16.2336,-17.784,-16.6896,-14.0448,68.9928,46.1184
--17.622,-19.305,-18.117,-15.048,74.8836,48.15
--16.66848,-18.1584,-17.13408,-14.24736,70.44528,46.3175
--17.184,-18.624,-17.568,-14.688,72.6144,47.45
--16.6649,-18.0614,-17.0373,-14.3374,70.43015,46.683
--17.54379,-19.01394,-17.93583,-14.79951,74.144565,48.2526
--17.01216,-18.5328,-17.39232,-14.54112,71.89776,47.1636
--16.66848,-18.25152,-17.04096,-14.24736,70.44528,46.6085
--17.18937,-18.72585,-17.57349,-14.69259,72.646695,45.8228
--17.184,-18.72,-17.664,-14.688,72.624,45.84
--17.18937,-18.62982,-17.57349,-14.50053,72.637092,47.1636
--17.542,-19.012,-17.934,-14.896,74.137,47.83
--17.005,-18.335,-17.385,-14.345,71.8675,45.8185
--16.6649,-18.0614,-17.0373,-14.2443,70.43015,45.1535
--17.005,-18.525,-17.385,-14.535,71.9435,47.75
--17.363,-19.012,-17.751,-14.744,73.3805,46.5018
--17.363,-18.818,-17.751,-14.841,73.3805,46.7831
--17.1,-18.525,-17.385,-14.345,71.9435,47.94
--17.46,-18.818,-17.751,-14.647,73.4581,46.3951
--17.28,-18.624,-17.568,-14.592,72.7008,47.64
--17.1072,-18.43776,-17.39232,-14.63616,71.973792,46.0128
--16.9362,-18.34755,-17.21847,-14.58395,71.254357,46.3175
--16.7616,-18.25152,-17.04096,-14.24736,70.519776,46.7831
--17.2872,-18.82384,-17.57532,-14.69412,72.740696,46.403
--17.2872,-18.7278,-17.57532,-14.79016,72.731092,47.187
--16.9344,-18.3456,-17.21664,-14.20608,71.246784,46.9812
--16.758,-18.0614,-17.0373,-14.0581,70.50463,46.5794
--17.2872,-18.53572,-17.57532,-14.69412,72.731092,46.109
--17.2854,-18.62982,-17.57349,-14.98068,72.723519,46.1041
--16.67915,-18.0614,-16.9556,-14.1911,69.785195,45.8228
--17.64,-19.208,-18.032,-14.896,74.2154,46.5794
--17.376,-18.72,-17.664,-14.688,72.7008,45.552
--17.919,-19.305,-18.117,-15.147,74.9826,46.4805
--17.195,-18.43,-17.385,-14.44,71.9435,47.83
--17.738,-18.914,-17.934,-14.798,74.2154,48.23
--17.56062,-18.82188,-17.75466,-14.74704,73.473246,46.0012
--17.38143,-18.72585,-17.57349,-14.98068,72.723519,45.5318
--17.02305,-18.4338,-17.3052,-14.4837,71.224065,45.1535
--16.67915,-18.0614,-16.86345,-14.1911,69.785195,46.7928
--17.02848,-18.3456,-17.21664,-14.48832,71.340864,47.187
--17.20224,-18.43776,-17.39232,-14.54112,71.973792,46.7676
--17.20224,-18.43776,-17.39232,-14.44608,72.068832,45.456
--17.738,-19.012,-17.934,-14.896,74.3134,48.05
--17.38143,-18.62982,-17.57349,-14.4045,72.809946,47.1636
--17.20586,-18.5367,-17.39598,-14.7343,72.083998,46.8734
--16.67915,-18.0614,-16.86345,-14.1911,69.877345,44.973
--16.94784,-18.1584,-17.04096,-14.4336,70.612896,46.1184
--17.30092,-18.5367,-17.49104,-14.63924,71.988938,46.501
--17.47746,-18.72585,-17.57349,-14.69259,72.819549,47.0547
--17.29,-18.43,-17.385,-14.44,72.0385,45.923
--16.4255,-17.5085,-16.51575,-13.62775,68.436575,44.498
--16.7713,-17.8771,-16.86345,-14.0068,69.877345,46.0265
--17.65764,-18.82188,-17.75466,-15.0381,73.570266,46.4706
--17.29728,-18.5328,-17.39232,-14.7312,72.068832,44.9664
--17.12256,-18.43968,-17.21664,-14.39424,71.340864,45.2448
--17.654,-19.012,-17.848,-14.744,73.5454,45.3572
--18.2,-19.5,-18.3,-15.3,75.82,47.64
--17.83782,-19.11195,-17.93583,-14.79951,74.320983,47.3517
--17.65764,-18.82188,-17.75466,-14.94108,73.570266,47.285
--16.4255,-17.59875,-16.51575,-13.8985,68.436575,45.2675
--16.9442,-18.1545,-17.1304,-14.4305,70.59773,45.4385
--17.654,-18.915,-17.848,-14.938,73.5454,46.5988
--16.9442,-18.1545,-17.0373,-14.1512,70.59773,45.543
--16.5984,-17.8752,-16.7808,-14.136,69.15696,45.3625
--17.04096,-18.1584,-17.13408,-14.15424,70.612896,46.6848
--17.93583,-19.11195,-17.93583,-14.79951,74.311182,48.4407
--17.57349,-18.72585,-17.66952,-14.69259,72.819549,47.1711
--17.57349,-18.72585,-17.66952,-14.78862,72.819549,46.3951
--17.39598,-18.63176,-17.49104,-14.44912,72.074492,47.481
--17.04096,-18.34464,-17.13408,-14.52672,70.612896,46.5018
--17.568,-18.816,-17.664,-14.688,72.7968,45.6288
--18.117,-19.404,-18.216,-15.147,75.0717,47.53
--16.86345,-18.0614,-16.9556,-14.1911,70.006355,44.878
--17.385,-18.525,-17.48,-14.25,72.0385,48.45
--17.385,-18.525,-17.48,-14.63,72.029,45.087
--17.57349,-18.72585,-17.66952,-14.59656,72.819549,46.2108
--17.57349,-18.72585,-17.66952,-14.69259,72.829152,46.2108
--17.751,-19.109,-17.848,-15.035,73.5551,45.7161
--17.21115,-18.52785,-17.3052,-14.38965,71.30871,45.163
--17.57349,-18.82188,-17.66952,-14.78862,72.819549,45.6786
--16.86528,-18.06336,-16.95744,-14.10048,70.013952,45.7344
--17.93583,-19.20996,-18.03384,-15.19155,74.467998,47.7477
--18.032,-19.208,-18.032,-15.092,74.4604,48.63
--17.664,-18.72,-17.664,-14.88,72.9312,45.9168
--17.39598,-18.5367,-17.49104,-14.7343,72.083998,46.0012
--17.85168,-18.9189,-17.85168,-14.94108,73.570266,46.109
--17.1304,-18.2476,-17.1304,-14.2443,70.72807,45.258
--17.13408,-18.25152,-17.13408,-14.4336,70.612896,46.1138
--16.606,-17.689,-16.606,-14.079,68.562925,45.4385
--17.85168,-19.01592,-17.85168,-14.94108,73.570266,46.9854
--17.67136,-18.91988,-17.7674,-14.98224,72.827132,46.109
--16.95744,-18.15552,-17.0496,-14.19264,70.013952,45.4464
--17.66952,-18.82188,-17.76555,-14.78862,72.953991,45.8228
--17.49104,-18.63176,-17.5861,-14.54418,72.217082,45.6385
--18.032,-19.208,-18.13,-15.092,74.3232,46.36
--16.7808,-17.8752,-16.872,-14.136,69.29376,45.0775
--16.7808,-17.8752,-16.872,-14.136,69.28464,46.1985
--16.9556,-18.15355,-17.04775,-14.28325,70.006355,46.2108
--17.67136,-18.91988,-17.7674,-14.69412,72.961588,46.2952
--17.848,-19.109,-17.945,-15.035,73.6909,47.05
--17.848,-19.012,-17.945,-14.841,73.6909,49.14
--16.9556,-18.0614,-17.04775,-14.28325,70.006355,47.633
--17.66952,-18.82188,-17.76555,-14.59656,72.953991,46.8898
--16.7808,-17.9664,-16.872,-14.0448,69.29376,45.9168
--17.76555,-18.91791,-17.76555,-14.78862,72.953991,49.2327
--17.945,-19.109,-17.945,-15.035,73.6909,47.2778
--17.39925,-18.4338,-17.39925,-14.57775,71.318115,47.2725
--17.2272,-18.25152,-17.2272,-14.24736,70.743264,46.5988
--17.9487,-19.01592,-17.9487,-14.84406,73.706094,47.6685
--17.39925,-18.4338,-17.39925,-14.57775,71.318115,47.6685
--16.69625,-17.689,-16.69625,-14.079,68.562925,45.543
--17.40665,-18.53573,-17.40665,-14.67804,71.348447,46.0944
--17.39925,-18.52785,-17.39925,-14.38965,71.45919,47.0646
--17.4048,-18.62784,-17.4048,-14.5824,71.331456,46.5794
--17.2235,-18.3407,-17.2235,-14.5236,70.72807,45.8248
--18.13,-19.306,-18.13,-15.288,74.4506,47.53
--18.13,-19.306,-18.13,-15.092,74.4604,46.501
--17.40665,-18.44164,-17.40665,-14.58395,71.489582,46.2108
--18.13185,-19.30797,-18.13185,-14.99553,74.458197,47.5596
--17.2272,-18.34464,-17.2272,-14.52672,70.743264,45.9295
--17.40665,-18.53573,-17.40665,-14.77213,71.489582,46.2108
--16.69625,-17.77925,-16.69625,-13.98875,68.562925,45.638
--17.5824,-18.81792,-17.67744,-14.92128,72.201888,48.3615
--16.872,-17.9664,-16.9632,-14.3184,69.28464,46.512
--18.13,-19.306,-18.13,-14.994,74.4506,47.2654
--17.39925,-18.52785,-17.39925,-14.57775,71.449785,46.8765
--17.2235,-18.2476,-17.2235,-14.4305,70.72807,45.923
--17.1399,-18.0614,-17.04775,-14.3754,70.006355,47.348
--16.9632,-17.9664,-16.872,-14.136,69.28464,45.7425
--17.856,-18.912,-17.76,-15.072,72.9408,48.35
--17.3166,-18.4338,-17.3166,-14.6167,70.72807,44.422
--18.6,-19.7,-18.6,-15.6,75.97,48.34
--17.68116,-18.72682,-17.5861,-14.7343,72.217082,48.1572
--17.49888,-18.53376,-17.49888,-14.5824,71.472576,46.4064
--17.67744,-18.72288,-17.67744,-14.63616,72.201888,45.84
--18.414,-19.602,-18.414,-15.345,75.2103,48.93
--17.4933,-18.52785,-17.4933,-14.57775,71.318115,45.923
--17.67744,-18.72288,-17.5824,-14.82624,72.059328,46.6176
--17.1399,-18.15355,-17.1399,-14.3754,69.877345,46.7152
--17.3166,-18.4338,-17.3166,-14.6167,70.59773,45.258
--18.04572,-19.20996,-18.04572,-15.13512,73.570266,47.2725
--18.22986,-19.40598,-18.22986,-15.28956,74.311182,48.3516
--17.86158,-19.01394,-17.86158,-15.07671,72.963594,46.6085
--17.86344,-19.01592,-17.86344,-14.8862,72.961588,47.873
--17.68116,-18.82188,-17.68116,-14.92442,72.074492,46.2952
--17.67744,-18.81792,-17.67744,-14.63616,72.201888,47.7477
--17.856,-19.008,-17.952,-14.976,72.9312,48.85
--17.4933,-18.6219,-17.58735,-14.76585,71.318115,46.4835
--17.23392,-18.24768,-17.23392,-14.46912,70.023168,46.512
--18.04572,-19.20996,-18.14274,-15.0381,73.706094,47.5888
--17.68116,-18.72682,-17.68116,-14.7343,72.217082,47.9514
--17.765,-18.715,-17.67,-14.82,72.029,47.05
--17.765,-18.715,-17.67,-14.63,72.0385,46.4075
--18.139,-19.206,-18.042,-15.035,73.5551,48.63
--17.41344,-18.43776,-17.41344,-14.52672,70.612896,46.0224
--17.58735,-18.71595,-17.58735,-14.57775,71.318115,47.4606
--17.58735,-18.6219,-17.4933,-14.8599,71.318115,48.0744
--17.95948,-19.01592,-17.95948,-15.07828,72.827132,48.0494
--17.0544,-18.0576,-17.0544,-14.136,69.15696,46.0128
--17.952,-19.008,-17.856,-14.976,72.7968,45.7344
--17.95761,-19.01394,-17.86158,-15.07671,72.819549,47.5591
--17.0544,-18.0576,-16.9632,-14.0448,69.15696,46.224
--17.41344,-18.43776,-17.32032,-14.4336,70.612896,47.0688
--18.32787,-19.40598,-18.32787,-15.38757,74.311182,46.8666
--17.952,-19.104,-17.952,-14.88,72.7968,48.91
--17.41344,-18.53088,-17.41344,-14.4336,70.612896,46.3175
--17.0544,-18.1488,-17.0544,-14.3184,69.14784,45.552
--17.77248,-18.91296,-17.77248,-14.7312,72.068832,45.168
--17.58735,-18.6219,-17.58735,-14.6718,71.318115,48.7575
--17.23205,-18.2457,-17.1399,-14.3754,69.877345,46.8898
--18.513,-19.602,-18.513,-15.444,75.0717,47.9655
--17.95761,-19.01394,-17.95761,-14.98068,72.809946,47.6685
--17.95761,-19.01394,-17.95761,-15.07671,72.819549,48.0744
--18.048,-19.104,-17.952,-15.072,72.7968,48.34
--17.4097,-18.5269,-17.4097,-14.6167,70.59773,45.4385
--17.0544,-18.1488,-17.0544,-14.3184,69.14784,47.4624
--17.58735,-18.71595,-17.58735,-14.76585,71.30871,48.0744
--17.50656,-18.43776,-17.41344,-14.61984,70.612896,45.0624
--17.77622,-18.82188,-17.77622,-14.92442,72.074492,46.7055
--18.23976,-19.20996,-18.14274,-15.32916,73.706094,46.795
--18.612,-19.602,-18.513,-15.642,75.0717,48.1437
--18.612,-19.701,-18.513,-15.543,75.0717,47.83
--17.5028,-18.5269,-17.4097,-14.7098,70.60704,45.2675
--17.5028,-18.5269,-17.4097,-14.4305,70.59773,45.543
--17.1456,-18.1488,-17.0544,-14.3184,69.15696,46.683
--17.87128,-18.82188,-17.77622,-15.01948,72.217082,46.5018
--18.8,-19.8,-18.7,-15.7,75.97,47.45
--18.8,-19.8,-18.7,-15.9,75.98,48.15
--18.23976,-19.30698,-18.14274,-15.23214,73.706094,47.8566
--17.3242,-18.33785,-17.23205,-14.5597,70.006355,45.828
--17.5028,-18.5269,-17.4097,-14.6167,70.72807,45.1535
--17.86752,-18.91296,-17.77248,-14.92128,72.068832,45.552
--17.87128,-18.82188,-17.77622,-14.82936,72.217082,46.2952
--17.5028,-18.5269,-17.4097,-14.6167,70.72807,45.8185
--17.5028,-18.5269,-17.4097,-14.6167,70.72807,47.5888
--17.86752,-18.91296,-17.77248,-14.92128,72.201888,46.4064
--18.236,-19.303,-18.139,-15.326,73.7006,47.53
--17.5028,-18.5269,-17.4097,-14.6167,70.72807,45.638
--17.68704,-18.72192,-17.59296,-14.67648,71.472576,45.9032
--17.6814,-18.71595,-17.58735,-14.8599,71.45919,46.2924
--17.2368,-18.1488,-17.1456,-14.2272,69.29376,44.8896
--17.41635,-18.33785,-17.23205,-14.3754,70.006355,46.1138
--17.5959,-18.5269,-17.4097,-14.6167,70.72807,46.6872
--17.78112,-18.72192,-17.59296,-14.77056,71.481984,46.0224
--17.41635,-18.33785,-17.23205,-14.28325,70.006355,46.5785
--18.711,-19.701,-18.612,-15.444,75.2103,48.23
--17.2368,-18.1488,-17.1456,-14.3184,69.28464,45.6475
--18.333,-19.303,-18.139,-15.326,73.6909,47.94
--18.333,-19.303,-18.236,-15.326,73.7006,46.9965
--17.2368,-18.1488,-17.1456,-14.5008,69.29376,45.5616
--17.96256,-18.91296,-17.86752,-14.92128,72.201888,45.552
--17.77545,-18.81,-17.6814,-14.76585,71.449785,45.4385
--17.2368,-18.1488,-17.1456,-14.3184,69.29376,44.6975
--18.711,-19.8,-18.612,-15.444,75.2103,47.4606
--18.144,-19.2,-18.048,-14.976,72.9312,45.0624
--18.144,-19.2,-18.048,-15.168,72.9312,48.63
--17.59968,-18.53088,-17.41344,-14.52672,70.743264,47.7725
--18.522,-19.502,-18.424,-15.288,74.4604,47.81
--18.15156,-19.208,-18.05552,-14.98224,72.961588,46.6872
--18.711,-19.8,-18.612,-15.642,75.2103,48.23
--17.78112,-18.816,-17.68704,-14.86464,71.481984,45.4464
--17.955,-19,-17.86,-15.01,72.1715,44.8685
--17.78301,-18.72391,-17.68892,-14.96031,71.489582,45.5318
--17.41635,-18.33785,-17.3242,-14.46755,70.006355,44.422
--18.522,-19.502,-18.424,-15.582,74.4506,47.24
--17.41635,-18.33785,-17.3242,-14.46755,70.006355,46.132
--18.522,-19.502,-18.424,-15.484,74.4604,47.2654
--17.78301,-18.818,-17.68892,-15.14849,71.480173,47.7725
--18.33678,-19.404,-18.23976,-15.23214,73.706094,47.0792
--18.711,-19.8,-18.612,-15.741,75.2103,48.2526
--18.2457,-19.206,-18.05364,-15.17274,72.953991,47.7477
--17.5104,-18.432,-17.32608,-14.65344,70.013952,46.4064
--17.96256,-19.008,-17.86752,-14.82624,72.211392,45.7344
--18.43,-19.4,-18.236,-15.326,73.7006,46.1138
--18.0614,-19.012,-17.87128,-15.01948,72.217082,45.8248
--18.24,-19.2,-18.048,-15.168,72.9408,47.83
--18.05,-19,-17.86,-14.915,72.1715,47.83
--19,-19.9,-18.8,-15.9,75.97,48.56
--18.81,-19.8,-18.612,-15.84,75.2103,48.05
--18.0576,-19.008,-17.86752,-14.92128,72.201888,46.6587
--17.689,-18.62,-17.5028,-14.6167,70.72807,45.325
--18.0576,-19.008,-17.86752,-15.30144,72.201888,46.9728
--18.0614,-19.012,-17.87128,-15.01948,72.217082,47.2654
--18.05,-19,-17.86,-15.01,72.1715,45.4385
--17.328,-18.24,-17.1456,-14.5008,69.29376,46.8635
--18.05,-19,-17.86,-15.105,72.181,51.05
--17.6928,-18.624,-17.50656,-14.80608,70.612896,48.1344
--18.0614,-19.012,-17.87128,-15.01948,72.083998,46.8734
--18.24,-19.2,-18.048,-15.072,72.9312,48.45
--18.0576,-19.008,-17.86752,-15.01632,72.201888,48.2526
--17.8695,-18.90405,-17.6814,-15.048,71.45919,46.0746
--18.05,-19,-17.86,-15.2,72.0385,44.878
--17.8752,-18.91008,-17.78112,-15.0528,71.40672,46.9728
--18.05,-19.095,-17.955,-15.2,72.048,46.84
--17.8752,-18.91008,-17.78112,-14.86464,71.472576,46.795
--18.0576,-19.10304,-17.96256,-15.11136,72.068832,44.5824
--18.6219,-19.70001,-18.52389,-15.58359,74.320983,46.0746
--18.24,-19.2,-18.144,-15.264,72.7968,48.15
--17.8695,-18.81,-17.77545,-15.048,71.318115,45.7425
--18.15264,-19.008,-17.86752,-15.11136,72.068832,44.2944
--17.328,-18.3312,-17.2368,-14.592,69.15696,44.6975
--17.96928,-18.91008,-17.78112,-14.95872,71.340864,47.0688
--19.1,-20,-18.9,-15.8,75.83,47.94
--19.1,-20.1,-18.9,-16,75.97,45.84
--17.7821,-18.7131,-17.5959,-14.8029,70.59773,46.8734
--19.1,-20.1,-18.9,-15.8,75.83,47.94
--17.78592,-18.71712,-17.59968,-14.80608,70.612896,46.0265
--17.96355,-18.90405,-17.77545,-14.8599,71.318115,46.5785
--18.71991,-19.70001,-18.52389,-15.58359,74.320983,46.6587
--17.78592,-18.71712,-17.59968,-14.8992,70.612896,46.5018
--17.4192,-18.3312,-17.2368,-14.6832,69.15696,45.7344
--18.53082,-19.50102,-18.33678,-15.5232,73.570266,46.7676
--17.60065,-18.52215,-17.41635,-14.744,69.877345,43.7285
--17.78592,-18.71712,-17.59968,-14.80608,70.603584,46.224
--18.145,-19.095,-17.955,-15.2,72.0385,44.422
--18.145,-19.095,-17.955,-15.105,72.0385,47.34
--18.336,-19.296,-18.144,-15.36,72.7968,46.54
--17.78592,-18.71712,-17.59968,-14.99232,70.612896,44.5056
--17.7821,-18.7131,-17.5959,-15.0822,70.59773,44.6975
--17.78592,-18.71712,-17.59968,-14.8992,70.603584,46.2108
--17.60065,-18.52215,-17.5085,-14.65185,69.877345,46.3175
--18.145,-19.095,-17.955,-15.01,72.0385,43.738
--17.96928,-18.91008,-17.78112,-15.0528,71.340864,45.913
--18.718,-19.698,-18.522,-15.68,74.3134,45.85
--18.336,-19.296,-18.144,-15.264,72.7872,45.168
--19.1,-20.1,-18.9,-15.9,75.83,47.35
--17.23775,-18.14025,-17.05725,-14.53025,68.436575,44.7735
--17.78592,-18.71712,-17.59968,-14.99232,70.612896,45.84
--18.34364,-19.30404,-18.15156,-15.46244,72.817528,45.717
--18.53082,-19.59804,-18.33678,-15.42618,73.570266,45.1094
--17.97119,-18.91209,-17.8771,-14.96031,71.348447,44.8625
--17.78592,-18.71712,-17.59968,-14.71296,70.612896,45.5318
--19.008,-19.899,-18.711,-15.939,75.0618,47.05
--18.909,-19.899,-18.711,-15.741,75.0618,46.14
--17.60065,-18.52215,-17.41635,-14.83615,69.877345,43.833
--18.34173,-19.30203,-18.14967,-15.26877,72.819549,45.3816
--19.008,-19.899,-18.711,-15.84,75.0717,46.25
--18.527,-19.594,-18.43,-15.617,73.5551,46.1041
--18.432,-19.392,-18.144,-15.36,72.7968,45.66
--17.6928,-18.6143,-17.41635,-14.65185,69.877345,43.833
--18.15264,-19.19808,-18.0576,-15.11136,72.068832,45.9657
--17.328,-18.14025,-17.1475,-14.44,68.436575,43.738
--18.432,-19.296,-18.144,-15.264,72.7968,43.6224
--17.87904,-18.71712,-17.59968,-14.80608,70.612896,44.1835
--17.87904,-18.71712,-17.6928,-14.8992,70.603584,44.7558
--18.43968,-19.30404,-18.15156,-15.46244,72.817528,45.2172
--17.328,-18.2305,-17.1475,-14.53025,68.436575,44.213
--18.43968,-19.40008,-18.2476,-15.46244,72.827132,46.109
--18.24,-19.19,-18.05,-15.295,72.0385,46.14
--18.43776,-19.30203,-18.2457,-15.26877,72.819549,44.5715
--19.2,-20.1,-19,-16,75.83,47.13
--18.43968,-19.30404,-18.2476,-15.27036,72.731092,45.2172
--17.8752,-18.7131,-17.689,-14.9891,70.51394,44.933
--18.432,-19.296,-18.24,-15.264,72.7968,44.4
--18.06528,-18.91209,-17.8771,-14.96031,71.339038,44.8625
--18.24,-19.095,-18.05,-15.295,71.9435,43.7285
--18.24768,-19.19808,-18.0576,-15.30144,72.068832,43.9008
--18.62784,-19.50102,-18.4338,-15.62022,73.473246,45.5697
--18.624,-19.594,-18.43,-15.714,73.4581,46.54
--17.5104,-18.4224,-17.328,-14.6832,69.15696,45.168
--18.06336,-19.00416,-17.8752,-15.24096,71.246784,45.717
--18.0576,-18.9981,-17.8695,-15.2361,71.23347,45.163
--19.2,-20.2,-19,-16.1,75.83,45.73
--18.43776,-19.39806,-18.2457,-15.46083,72.723519,45.5697
--18.06336,-19.00416,-17.8752,-14.95872,71.246784,44.112
--18.43776,-19.39806,-18.2457,-15.65289,72.723519,45.1935
--18.34272,-19.19808,-18.0576,-15.39648,71.973792,45.5697
--18.0576,-18.90405,-17.8695,-15.14205,71.224065,46.0746
--18.432,-19.296,-18.24,-15.36,72.7008,48.85
--19.008,-19.899,-18.81,-15.84,74.9727,47.75
--17.9683,-18.8062,-17.689,-14.9891,70.50463,46.109
--17.9683,-18.8062,-17.689,-14.896,70.50463,46.5794
--18.432,-19.296,-18.24,-15.264,72.7008,44.112
--18.34272,-19.10304,-18.0576,-15.2064,71.973792,43.9104
--18.72486,-19.50102,-18.4338,-15.5232,73.473246,45.7875
--18.34272,-19.10304,-18.0576,-15.2064,71.973792,44.016
--17.78688,-18.61632,-17.5104,-14.83776,69.792768,44.5824
--18.72486,-19.69506,-18.4338,-15.71724,73.473246,45.8248
--18.72486,-19.69506,-18.4338,-15.62022,73.473246,45.8248
--17.78495,-18.6143,-17.60065,-14.83615,69.785195,43.453
--17.6016,-18.4224,-17.328,-14.592,69.06576,43.548
--18.34658,-19.20212,-18.0614,-15.11454,71.988938,45.6385
--18.528,-19.392,-18.24,-15.36,72.7008,44.688
--17.78688,-18.61632,-17.60256,-14.83776,69.792768,44.4
--18.34272,-19.19808,-18.0576,-15.11136,71.973792,47.1636
--18.53379,-19.39806,-18.2457,-15.26877,72.723519,47.0547
--18.15744,-19.00416,-17.8752,-15.0528,71.246784,44.639
--17.41825,-18.2305,-17.1475,-14.71075,68.346325,43.453
--18.528,-19.392,-18.336,-15.36,72.7008,44.8896
--18.53379,-19.39806,-18.2457,-15.46083,72.723519,45.1438
--17.97216,-18.81024,-17.78592,-15.08544,70.519776,44.8896
--17.41825,-18.2305,-17.1475,-14.53025,68.346325,43.2725
--18.15937,-19.00618,-17.8771,-15.0544,71.254357,44.6491
--17.78688,-18.70848,-17.5104,-14.7456,69.792768,44.8896
--17.97216,-18.90336,-17.78592,-15.08544,70.519776,45.8228
--18.914,-19.894,-18.718,-15.68,74.2154,45.4328
--18.721,-19.691,-18.527,-15.617,73.4678,45.15
--18.335,-19.285,-18.145,-15.295,71.934,43.168
--18.914,-19.796,-18.718,-15.876,74.2056,45.85
--17.9683,-18.8062,-17.7821,-14.9891,70.50463,45.1094
--19.3,-20.3,-19.1,-16,75.73,46.54
--18.34272,-19.19808,-18.15264,-15.30144,71.973792,46.0746
--18.528,-19.392,-18.336,-15.552,72.7008,45.3504
--18.335,-19.19,-18.145,-15.105,71.9435,46.84
--17.97216,-18.81024,-17.78592,-14.99232,70.519776,44.2944
--19.107,-19.998,-18.909,-15.84,74.9727,45.85
--18.34658,-19.29718,-18.15646,-15.2096,71.979432,45.1438
--18.25152,-19.09824,-17.96928,-15.24096,71.246784,45.031
--17.6928,-18.5136,-17.4192,-14.7744,69.06576,44.0325
--18.44164,-19.29718,-18.15646,-15.39972,71.988938,46.795
--19.206,-20.097,-18.909,-16.038,74.9727,46.1835
--19.012,-19.894,-18.718,-15.876,74.2154,46.65
--18.82188,-19.69506,-18.53082,-15.62022,73.473246,45.6786
--19.012,-19.894,-18.718,-15.778,74.2154,46.54
--18.818,-19.691,-18.527,-15.617,73.4678,45.5318
--18.624,-19.488,-18.336,-15.456,72.7008,45.0624
--19.01394,-19.79802,-18.71991,-15.77961,74.222973,46.5795
--18.2457,-19.09215,-17.96355,-15.14205,71.224065,44.593
--18.82188,-19.69506,-18.53082,-15.81426,73.473246,46.8666
--18.43776,-19.29312,-18.15264,-15.39648,71.973792,44.4
--17.8771,-18.70645,-17.60065,-14.83615,69.785195,45.258
--18.43,-19.285,-18.145,-15.39,71.9435,45.66
--18.624,-19.488,-18.336,-15.552,72.7008,46.416
--18.624,-19.584,-18.432,-15.456,72.7104,44.4
--17.6928,-18.6048,-17.4192,-14.7744,69.06576,44.498
--18.0614,-18.9924,-17.8752,-14.9891,70.50463,45.4385
--18.06528,-18.90336,-17.78592,-14.8992,70.519776,45.6288
--18.43776,-19.29312,-18.15264,-15.30144,71.964288,44.5824
--18.0614,-18.9924,-17.8752,-15.0822,70.50463,43.7285
--18.06528,-18.99648,-17.87904,-14.99232,70.519776,45.1438
--18.63176,-19.49612,-18.43968,-15.55848,72.731092,46.3932
--18.2457,-19.09215,-18.0576,-15.33015,71.224065,47.1636
--19.206,-20.097,-19.008,-15.939,74.9727,46.14
--19.4,-20.3,-19.2,-16.3,75.73,47.13
--18.43,-19.285,-18.24,-15.295,71.953,44.973
--18.44164,-19.29718,-18.25152,-15.11454,71.988938,45.7161
--18.2457,-19.09215,-18.0576,-14.8599,71.224065,44.422
--18.43,-19.38,-18.24,-15.295,71.9435,46.76
--17.6928,-18.6048,-17.5104,-14.6832,69.06576,44.6784
--18.62982,-19.49409,-18.43776,-15.46083,72.723519,46.0746
--18.2457,-19.09215,-18.0576,-15.2361,71.224065,46.5795
--19.206,-20.097,-19.008,-16.038,74.9727,46.03
--18.624,-19.488,-18.432,-15.456,72.7008,45.3408
--18.63176,-19.49612,-18.43968,-15.55848,72.731092,46.3932
--18.82188,-19.69506,-18.62784,-15.62022,73.473246,48.5496
--18.818,-19.788,-18.624,-15.811,73.4581,44.8625
--18.43,-19.38,-18.24,-15.58,71.953,47.75
--18.1584,-19.0896,-17.87904,-15.17856,70.519776,44.1888
--19.11,-20.09,-18.816,-16.17,74.2154,47.089
--19.11,-20.09,-18.914,-16.072,74.2154,47.3732
--18.9189,-19.8891,-18.72486,-15.81426,73.473246,45.2034
--17.784,-18.696,-17.6016,-14.6832,69.06576,44.878
--18.525,-19.38,-18.335,-15.485,71.9435,47.45
--18.915,-19.788,-18.721,-15.811,73.4581,45.5318
--18.34755,-19.28845,-18.15937,-15.52485,71.254357,45.1632
--18.525,-19.475,-18.335,-15.58,71.9435,45.163
--18.525,-19.475,-18.335,-15.77,71.9435,44.878
--18.0614,-19.1786,-17.9683,-15.3615,70.50463,44.6975
--18.33975,-19.3743,-18.2457,-15.51825,71.224065,46.9755
--18.9189,-19.98612,-18.72486,-16.10532,73.473246,45.5112
--18.9189,-19.8891,-18.82188,-15.81426,73.473246,45.9756
--18.915,-19.982,-18.721,-15.811,73.4581,45.0468
--18.33975,-19.3743,-18.2457,-15.51825,71.224065,46.9755
--18.5328,-19.57824,-18.43776,-15.77664,71.973792,44.1984
--17.96925,-18.9829,-17.8771,-15.20475,69.785195,45.1535
--17.9712,-18.98496,-17.87904,-15.39072,69.792768,44.4
--18.1584,-19.18272,-18.06528,-15.45792,70.529088,44.304
--17.784,-18.7872,-17.6928,-15.2304,69.06576,43.9375
--18.5367,-19.67742,-18.5367,-15.6849,71.988938,44.7558
--17.784,-18.8784,-17.784,-15.048,69.06576,45.0775
--18.9189,-20.08314,-18.9189,-15.91128,73.473246,46.109
--18.72,-19.776,-18.72,-15.936,72.7008,45.6288
--17.96925,-18.9829,-17.96925,-15.2969,69.785195,45.4348
--17.96925,-18.9829,-17.96925,-15.20475,69.785195,44.6975
--18.33975,-19.46835,-18.33975,-15.70635,71.224065,44.7735
--17.9712,-19.07712,-17.9712,-15.2064,69.792768,45.7344
--17.96925,-19.07505,-17.96925,-15.20475,69.785195,44.8625
--18.9189,-20.08314,-18.9189,-16.0083,73.473246,46.9755
--18.33975,-19.46835,-18.33975,-15.51825,71.224065,46.2924
--18.3456,-19.47456,-18.3456,-15.61728,71.246784,47.2752
--18.525,-19.665,-18.525,-15.865,71.9435,46.5785
--17.8752,-18.8784,-17.784,-15.048,69.06576,45.9168
--18.3456,-19.47456,-18.3456,-15.71136,71.246784,45.7344
--19.404,-20.493,-19.305,-16.434,74.9727,47.83
--18.62,-19.76,-18.525,-15.77,71.9435,45.0775
--18.816,-19.872,-18.816,-15.936,72.7008,47.24
--18.62,-19.665,-18.525,-15.865,71.953,45.258
--18.816,-19.872,-18.816,-15.936,72.7008,46.128
--18.82188,-19.97424,-18.82188,-16.13304,72.723519,46.2924
--18.62,-19.76,-18.62,-15.675,71.9435,44.6975
--18.816,-19.968,-18.816,-16.128,72.7968,46.65
--18.43968,-19.47456,-18.43968,-15.61728,71.340864,45.0624
--19.208,-20.384,-19.208,-16.366,74.3134,45.619
--18.62,-19.665,-18.62,-15.96,72.0385,46.94
--19.208,-20.384,-19.208,-16.366,74.3134,45.5112
--19.20996,-20.28807,-19.20996,-16.26966,74.320983,45.9657
--18.2476,-19.3648,-18.2476,-15.7339,70.59773,44.737
--18.4338,-19.5624,-18.4338,-15.70635,71.30871,46.0746
--18.43968,-19.56864,-18.43968,-15.61728,71.340864,44.5824
--19.6,-20.8,-19.6,-16.5,75.82,46.25
--18.43968,-19.56864,-18.43968,-15.5232,71.331456,44.9232
--19.012,-20.176,-19.012,-16.102,73.5454,44.6491
--17.689,-18.68175,-17.689,-14.89125,68.436575,43.6525
--18.4338,-19.46835,-18.4338,-15.51825,71.30871,46.1835
--18.2476,-19.2717,-18.2476,-15.3615,70.59773,45.9032
--18.2476,-19.3648,-18.2476,-15.3615,70.58842,43.548
--18.82384,-19.88028,-18.82384,-15.75056,72.817528,45.3152
--19.109,-20.079,-19.012,-16.005,73.5551,44.6491
--19.6,-20.7,-19.6,-16.3,75.83,45.95
--18.0614,-19.07505,-18.0614,-15.1126,70.01557,44.7655
--18.25152,-19.18272,-18.1584,-15.3648,70.612896,44.2902
--18.25152,-19.18272,-18.1584,-15.45792,70.743264,44.6588
--19.208,-20.286,-19.11,-16.17,74.3134,45.325
--18.91791,-19.87821,-18.72585,-16.03701,72.953991,44.8625
--18.816,-19.872,-18.816,-15.936,72.9312,44.5824
--19.01592,-20.08314,-19.01592,-16.0083,73.715796,45.2826
--18.72682,-19.67742,-18.5367,-15.49478,72.217082,45.1094
--18.53376,-19.47456,-18.3456,-15.5232,71.472576,44.1888
--18.3407,-19.2717,-18.1545,-15.2684,70.73738,43.662
--19.503,-20.493,-19.305,-16.137,75.2103,46.03
--18.3407,-19.1786,-18.1545,-15.3615,70.72807,43.453
--19.503,-20.493,-19.305,-16.137,75.2103,45.55
--18.91988,-19.88028,-18.7278,-15.94264,72.961588,44.639
--18.52785,-19.46835,-18.33975,-15.51825,71.449785,45.5697
--19.30797,-20.28807,-19.11195,-16.07364,74.458197,45.2034
--18.72288,-19.67328,-18.5328,-15.6816,72.201888,43.5168
--19.306,-20.188,-19.11,-15.974,74.4506,45.25
--18.52785,-19.46835,-18.33975,-15.4242,71.449785,42.8925
--18.15355,-18.9829,-17.96925,-15.02045,70.006355,43.2725
--18.72682,-19.58236,-18.5367,-15.6849,72.217082,43.9701
--17.9664,-18.7872,-17.784,-15.1392,69.28464,43.1424
--19.30797,-20.09205,-19.11195,-16.17165,74.458197,44.7975
--18.53376,-19.38048,-18.3456,-15.42912,71.472576,44.0412
--18.53573,-19.47663,-18.34755,-15.61894,71.480173,43.7955
--19.109,-20.079,-18.915,-16.005,73.6909,43.4075
--18.34464,-19.27584,-18.1584,-15.27168,70.743264,42.96
--19.11294,-19.98612,-18.9189,-15.81426,73.706094,44.4114
--19.503,-20.394,-19.305,-16.236,75.2103,44.56
--18.715,-19.57,-18.525,-15.58,72.1715,44.34
--17.9664,-18.8784,-17.784,-15.048,69.28464,42.2275
--18.53376,-19.47456,-18.3456,-15.61728,71.472576,43.7472
--18.72288,-19.67328,-18.5328,-15.58656,72.211392,44.4906
--18.53376,-19.38048,-18.3456,-15.5232,71.472576,44.0412
--18.91791,-19.87821,-18.72585,-15.74892,72.953991,44.1144
--19.11294,-20.08314,-18.9189,-15.81426,73.706094,44.4114
--18.6219,-19.3743,-18.33975,-15.4242,71.449785,44.1144
--19.11294,-19.98612,-18.9189,-15.91128,73.706094,43.7472
--19.602,-20.394,-19.305,-16.335,75.2103,44.64
--18.4338,-19.1786,-18.1545,-15.3615,70.72807,43.4532
--17.8695,-18.5915,-17.59875,-14.9815,68.562925,42.123
--19.01592,-19.78424,-18.7278,-15.8466,72.971192,43.3552
--18.81,-19.57,-18.525,-15.77,72.181,44.35
--18.0576,-18.7872,-17.784,-15.048,69.28464,42.384
--18.43776,-18.53088,-16.48224,-14.34048,70.743264,42.8544
--18.4338,-17.5959,-15.0822,-13.034,70.72807,42.123
--19.404,-17.64,-14.896,-12.74,74.4506,44.45
--17.8695,-15.61325,-12.90575,-10.55925,68.562925,41.9425
--18.62982,-15.61894,-12.60806,-9.69127,71.480173,42.5442
--18.24768,-14.83776,-11.61216,-8.66304,70.013952,42.4704
--18.43776,-14.61984,-11.08128,-7.9152,70.752576,42.8352
--18.82188,-14.44912,-10.64672,-7.41468,72.217082,43.4532
--18.0576,-13.3152,-9.6672,-6.1104,69.29376,42
--19.20996,-13.67982,-9.60498,-5.91822,73.715796,43.561
--18.4338,-12.6616,-8.4721,-6.1446,70.72807,41.5625
--19.008,-12.384,-8.256,-7.008,72.9312,44.34
--19.20996,-11.83644,-7.7616,-6.7914,73.706094,44.0055
--18.4338,-10.5203,-7.2618,-6.7963,70.72807,43.0612
--18.82188,-10.17142,-7.03444,-6.74926,72.217082,43.0612
--18.6219,-9.2169,-6.3954,-6.3954,71.449785,41.743
--18.81,-8.645,-5.795,-5.605,72.162,43.86
--18.2457,-7.64845,-4.88395,-4.88395,70.01557,42.7285
--19.206,-7.275,-4.171,-4.656,73.6909,44.05
--19.008,-6.432,-3.168,-3.936,72.9312,43.94
--18.715,-5.51,-2.185,-3.515,72.181,43.86
--18.82188,-4.84806,-1.04566,-3.3271,72.217082,42.5442
--18.53573,-3.95178,-0.18818,-2.72861,71.489582,42.8255
--17.9664,-3.192,0.912,-2.0976,69.28464,42.1056
--18.15552,-2.58048,2.11968,-1.75104,70.013952,42.1824
--18.53376,-2.352,3.10464,-1.31712,71.472576,42.9828
--18.34464,-1.3968,4.09728,-1.21056,70.743264,41.8944
--18.53573,-0.9409,5.17495,-0.37636,71.480173,42.1465
--18.53376,-0.37632,6.20928,-0.09408,71.472576,42.63
--18.62,0.285,7.505,0.57,72.1715,43.65
--18.62,1.045,8.455,0.95,72.1715,43.75
--19.404,1.485,9.9,1.386,75.2103,43.64
--19.208,1.96,11.074,2.058,74.4506,42.777
--19.305,2.871,12.177,2.376,75.2103,43.4214
--17.96925,3.5017,12.62455,2.85665,70.006355,41.363
--17.96925,4.0546,13.54605,3.22525,70.006355,41.9425
--18.5328,4.94208,15.30144,3.51648,72.201888,42.1824
--18.63176,5.57032,16.61492,4.22576,72.961588,43.169
--19.206,6.336,18.315,4.851,75.2103,43.7085
--19.012,7.35,19.306,5.194,74.4506,43.463
--18.72486,7.95564,20.08314,5.62716,73.715796,43.5708
--18.72486,8.44074,21.05334,6.40332,73.706094,43.7184
--18.816,9.408,22.246,6.664,74.4506,44.56
--18.06336,9.59616,22.29696,7.15008,71.472576,42.8544
--17.60065,10.04435,22.76105,7.1877,70.006355,41.8475
--18.53082,11.44836,24.93414,7.85862,73.706094,42.9828
--17.5085,11.4266,24.6962,8.1092,70.006355,42.3308
--18.24,12.576,26.4,8.832,72.9312,43.94
--17.77545,13.07295,26.80425,9.31095,71.449785,43.5006
--17.78301,13.83123,27.47428,9.69127,71.489582,42.3405
--17.1456,14.0448,27.36,9.7584,69.29376,41.667
--18.14274,15.5232,29.97918,10.96326,73.706094,42.9828
--17.41344,15.73728,29.51904,11.08128,70.743264,41.7984
--17.67,16.53,30.97,11.59,72.1715,43.86
--18.6,18,33.2,12.7,75.97,43.94
--18.315,18.414,33.462,12.87,75.2103,43.64
--17.49104,18.25152,32.89076,13.3084,72.217082,42.7672
--17.21115,18.71595,33.38775,13.26105,71.449785,41.2775
--17.04096,19.0896,33.70944,13.59552,70.743264,42.4472
--17.38143,20.26233,35.43507,14.30847,72.953991,43.4214
--16.67915,20.0887,34.8327,14.46755,70.006355,41.743
--16.5888,20.64384,35.38944,14.83776,70.013952,42.1824
--17.54379,22.5423,38.41992,16.17165,74.458197,43.0947
--16.2336,21.432,36.48,15.6864,69.28464,41.3535
--16.31232,22.21056,37.50912,16.22016,70.013952,42
--16.5528,23.23035,39.1248,17.1171,71.449785,42.9264
--17.15175,24.79653,41.36022,18.32787,74.458197,42.6294
--16.53,24.7,40.755,18.145,72.1715,43.25
--15.94195,24.5119,39.9931,18.0614,70.006355,41.287
--16.01664,25.23552,40.9728,18.71712,70.743264,41.9525
--16.758,27.244,43.61,19.796,74.4506,43.75
--16.3251,27.17649,43.50159,20.07027,72.963594,42.4375
--16.06514,27.47234,43.53748,20.4379,72.217082,42.875
--16.8,29.4,46.3,22,75.97,43.65
--15.4546,27.93,43.6639,20.9475,70.72807,42.6692
--16.17,29.792,46.55,22.54,74.4506,42.9828
--15.91128,30.0762,46.66662,22.89672,73.706094,42.6692
--15.1753,29.2334,45.1535,22.344,70.72807,40.983
--16.038,31.383,48.411,24.255,75.2103,43.2135
--15.2064,30.69792,46.94976,23.66496,72.201888,43.1046
--15.423,31.913,48.5,24.444,73.6909,43.75
--14.86464,31.42272,47.5104,24.27264,71.472576,41.4144
--14.52672,31.56768,47.39808,24.49056,70.743264,41.0592
--15.0381,33.27786,49.77126,25.90434,73.706094,42.4116
--14.3374,32.4919,48.2258,25.3232,70.73738,40.812
--14.744,34.338,50.828,26.869,73.6909,41.7682
--13.62775,32.3095,47.652,25.4505,68.562925,41.192
--14.9,36.3,53.3,28.7,75.97,43.25
--13.9194,34.6104,50.50485,27.4626,71.449785,42.9264
--14.308,36.554,53.116,29.008,74.4506,43.3552
--13.968,36.666,52.962,29.1,73.6909,43.25
--14.3,38.2,54.5,30.6,75.97,43.06
--13.959,37.818,53.262,32.274,75.2103,43.25
--13.48578,36.8676,51.51762,32.88978,73.706094,42.777
--12.98442,35.7542,49.30316,31.42606,71.470764,42.2241
--13.328,37.142,50.666,32.536,74.4506,43.94
--12.96,36.384,48.96,31.68,72.9312,43.46
--12.77332,35.15064,46.96356,35.63084,72.951984,43.3552
--12.19872,32.49888,43.11456,34.54752,70.743264,42.3405
--12.51558,32.88978,42.78582,35.21826,73.706094,42.581
--12.04224,30.95232,40.36032,32.73984,71.472576,42.2772
--11.85408,29.6352,38.76096,31.89312,71.472576,41.8944
--12.03048,29.20302,38.12886,32.5017,73.706094,43.4214
--11.834,28.421,36.569,31.816,73.6909,43.64
--11.1744,26.5392,33.70944,29.51904,70.743264,42.5442
--11.0979,25.7697,32.82345,29.1555,71.449785,44.0055
--11.36916,25.97265,33.12738,29.89305,74.458197,43.6095
--10.3968,23.4384,29.8224,26.904,69.28464,41.287
--10.864,24.25,30.652,28.033,73.6909,43.14
--10.89,23.958,30.096,28.017,75.2103,42.9264
--10.692,23.265,29.304,27.522,75.2103,42.8175
--10.29,22.344,28.126,26.558,74.5486,42.5908
--9.888,21.216,26.688,25.44,72.9312,41.8944
--9.4031,19.9234,25.137,24.1129,70.72807,41.192
--9.2169,19.3648,24.3922,23.5543,70.71876,41.363
--9.0307,18.8993,23.7405,22.9957,70.72807,41.2775
--9.215,18.915,24.056,23.28,73.6909,42.0495
--8.56995,17.5085,22.20815,21.83955,70.006355,42.1562
--8.56128,17.4048,22.01472,21.73248,71.472576,42.5908
--8.544,17.28,21.888,21.6,73.0272,41.7888
--8.18235,16.45875,20.78505,20.59695,71.543835,42.9264
--8.0784,16.06176,20.52864,20.4336,72.296928,42.6294
--8.134,16.072,20.58,20.58,74.5388,43.25
--7.5272,14.96031,19.19436,19.28845,71.574263,41.9525
--7.644,15.288,19.502,19.698,74.5486,43.46
--7.623,14.949,19.206,19.503,75.3093,44.24
--6.8894,13.5926,17.5959,17.7821,70.82117,42.5908
--6.935,13.3,17.385,17.86,72.257,41.5625
--6.54265,12.5324,16.4027,16.9556,70.098505,41.3705
--6.831,13.068,17.127,17.82,75.2994,42.8175
--6.499,12.513,16.49,17.072,73.7782,41.9525
--6.0515,11.5444,15.2684,16.0132,70.82117,40.907
--5.8653,11.172,14.8029,15.6408,70.82117,40.527
--5.73949,10.82035,14.67804,15.33667,71.574263,41.4772
--5.7024,10.64448,14.35104,15.11136,72.296928,43.0254
--5.51232,10.26432,13.97088,14.82624,72.296928,43.0254
--5.1604,9.5836,13.0853,14.0068,70.08929,40.8025
--5.29254,9.801,13.52538,14.60349,74.566008,42.3324
--4.8906,9.12285,12.6027,13.5432,71.543835,41.192
--4.79808,8.74944,12.2304,13.26528,71.566656,41.8944
--4.4688,8.1168,11.4,12.4032,69.37584,41.7984
--4.42035,7.99425,11.38005,12.69675,71.543835,42.5205
--4.41045,8.13483,11.46717,12.93732,74.556207,42.9165
--4.0128,7.2048,10.3968,11.6736,69.37584,40.7075
--4.158,7.524,10.89,12.375,75.3093,42.5205
--3.8412,6.91416,10.27521,11.42757,73.050021,41.7682
--3.63168,6.33216,9.59136,11.08128,70.845696,40.9536
--3.663,6.435,9.801,11.385,75.3093,42.76
--3.45708,6.14592,9.21888,10.85139,73.050021,41.3802
--3.298,5.917,9.021,10.67,73.7879,41.2735
--3.267,5.742,8.811,10.791,75.3093,42.66
--2.8861,5.1205,8.0066,9.6824,70.82117,40.698
--2.88,4.992,7.872,9.504,73.0272,42.66
--2.744,4.704,7.742,9.506,74.5486,41.699
--2.54016,4.2336,7.056,8.84352,71.566656,42.091
--2.3765,4.18264,6.84432,8.93564,72.321648,41.5912
--2.1888,3.7392,6.384,8.2992,69.37584,40.9536
--2.23146,3.78378,6.50034,8.53776,73.803114,42.091
--2.04864,3.35232,5.95968,8.00832,70.836384,41.6712
--1.96,3.332,5.978,7.938,74.5486,41.9048
--1.80576,2.8512,5.51232,7.31808,72.296928,41.232
--1.764,2.548,5.39,7.35,74.5486,42.1988
--1.64934,2.32848,5.04504,7.2765,73.803114,42.2772
--1.47,2.254,4.9,7.35,74.5486,42.77
--1.37214,2.05821,4.60647,6.95871,74.566008,42.5304
--1.19795,1.843,4.0546,6.2662,70.006355,41.3802
--1.1058,1.6587,3.8703,5.98975,70.098505,41.7682
--1.05644,1.34456,3.74556,5.95448,73.057628,41.5912
--0.95,1.045,3.42,5.7,72.1715,40.907
--0.855,0.76,3.135,5.51,72.1715,40.622
--0.7372,0.64505,2.9488,5.3447,70.098505,41.7682
--0.66528,0.4752,2.75616,5.32224,72.296928,41.7984
--0.576,0.48,2.592,5.184,73.0272,42.76
--0.4704,0.28224,2.352,4.89216,71.576064,41.9146
--0.384,0.096,2.208,4.608,72.9408,42.44
--0.291,-0.194,2.037,4.268,73.6909,41.3705
--0.18816,-0.56448,1.69344,4.13952,71.481984,41.3376
--0.09603,-0.67221,1.53648,4.12929,72.953991,42.4116
--0.09504,-0.76032,1.33056,3.8016,72.201888,41.1264
-0,-0.83808,1.11744,3.7248,70.743264,41.0496
-0.09216,-1.01376,0.9216,3.40992,70.013952,41.4144
-0.19404,-1.26126,0.77616,3.49272,73.706094,42.7086
-0.1862,-1.3965,0.5586,2.9792,70.72807,41.993
-0.285,-1.615,0.38,3.135,72.1715,42.84
-0.3648,-1.7328,0.1824,2.736,69.28464,40.622
-0.4851,-2.03742,-0.09702,2.61954,73.706094,42.3324
-0.4608,-2.11968,-0.27648,2.304,70.013952,40.848
-0.57036,-2.28144,-0.38024,2.3765,72.217082,41.9525
-0.55872,-2.42112,-0.55872,2.04864,70.743264,41.3376
-0.66528,-2.56608,-0.76032,1.99584,72.201888,43.1046
-0.686,-2.842,-0.98,1.96,74.4506,42.091
-0.75264,-2.91648,-1.03488,1.59936,71.472576,41.4144
-0.78408,-3.23433,-1.27413,1.47015,74.458197,43.3125
-0.85554,-3.3271,-1.4259,1.33084,72.217082,42.581
-0.9405,-3.3858,-1.59885,1.22265,71.449785,42.7086
-1,-3.7,-1.9,1,75.97,42.76
-0.9603,-3.74517,-1.9206,0.76824,72.953991,42.2241
-1.0241,-3.8171,-2.0482,0.5586,70.72807,41.0875
-0.99275,-3.88075,-2.166,0.5415,68.562925,41.2775
-1.06722,-4.26888,-2.4255,0.29106,73.570266,42.091
-1.10592,-4.1472,-2.48832,0.27648,69.884928,41.616
-1.15236,-4.51341,-2.78487,0.19206,72.809946,42.6294
-1.15248,-4.60992,-2.8812,-0.38416,72.961588,42.6692
-1.2103,-4.7481,-3.0723,-0.6517,70.72807,42.385
-1.24839,-5.18562,-3.36105,-0.28809,72.809946,42.0495
-1.22304,-4.98624,-3.38688,-0.37632,71.340864,41.6256
-1.274,-5.096,-3.528,-0.49,74.4506,42.1988
-1.248,-4.992,-3.648,-0.384,72.7968,41.3376
-1.30368,-5.02848,-3.53856,-0.65184,70.752576,41.2416
-1.372,-5.39,-3.92,-1.862,74.3134,42.385
-1.33084,-5.60854,-3.99252,-1.61602,72.083998,41.7682
-1.31712,-5.73888,-4.13952,-1.50528,71.472576,41.4144
-1.31712,-5.73888,-4.2336,-1.31712,71.340864,42.1988
-1.386,-6.039,-4.554,-1.386,75.0717,42.7086
-1.37214,-5.97861,-4.60647,-1.37214,74.311182,43.3125
-1.37214,-6.07662,-4.70448,-1.66617,74.311182,42.9264
-1.372,-6.272,-4.802,-2.45,74.3134,42.385
-1.4,-6.8,-5.1,-2.6,75.83,43.25
-1.344,-6.72,-5.088,-2.4,72.7872,42.95
-1.35828,-6.7914,-5.23908,-2.13444,73.570266,42.1988
-1.41075,-6.5835,-5.17275,-2.0691,71.30871,43.0155
-1.386,-6.831,-5.544,-2.079,75.0717,42.8175
-1.33,-6.65,-5.415,-2.185,72.029,43.14
-1.5,-7.1,-5.8,-2.5,75.82,43.14
-1.34442,-7.01019,-5.66577,-2.59281,72.819549,42.5205
-1.372,-7.35,-5.88,-2.744,74.3036,42.2772
-1.37214,-7.44876,-5.97861,-3.03831,74.320983,43.1046
-1.3167,-7.3359,-5.92515,-2.8215,71.30871,43.0155
-1.33084,-7.50974,-6.08384,-3.04192,72.074492,41.9525
-1.19795,-7.27985,-5.98975,-3.04095,69.86813,41.7682
-1.2768,-7.296,-6.0192,-3.192,69.15696,40.907
-1.17325,-7.31025,-6.04675,-3.33925,68.436575,41.1825
-1.23552,-7.88832,-6.46272,-3.70656,72.068832,41.232
-1.21056,-7.9152,-6.5184,-3.7248,70.612896,41.4144
-1.235,-8.265,-6.745,-3.8,72.0385,43.86
-1.1172,-8.0997,-6.7032,-3.724,70.59773,42.385
-1.22304,-8.18496,-6.86784,-3.7632,71.331456,42.091
-1.0944,-8.0256,-6.7488,-3.8304,69.14784,41.232
-1.16424,-8.63478,-7.2765,-4.17186,73.570266,42.5205
-1.2,-9.2,-7.7,-4.7,75.83,43.14
-1.0032,-8.664,-7.2048,-4.2864,69.15696,41.0875
-1.0241,-8.7514,-7.3549,-4.3757,70.59773,40.8025
-1.06722,-9.11988,-7.7616,-4.65696,73.570266,42.2235
-0.9506,-8.93564,-7.69986,-4.37276,72.083998,42.0495
-0.9408,-8.84352,-7.62048,-4.2336,71.340864,41.6256
-0.9405,-8.93475,-7.7121,-4.60845,71.318115,42.4215
-0.87318,-9.31392,-8.05266,-4.94802,73.570266,42.4215
-0.84672,-9.12576,-7.90272,-5.1744,71.331456,41.4144
-0.855,-9.405,-8.17,-5.225,72.0385,40.8025
-0.76032,-9.59904,-8.26848,-5.2272,72.068832,41.3376
-0.76032,-9.59904,-8.26848,-5.13216,72.059328,42.3324
-0.7524,-9.5931,-8.2764,-5.0787,71.318115,42.5205
-0.65856,-9.59616,-8.37312,-5.26848,71.340864,41.9146
-0.6517,-9.5893,-8.379,-5.2136,70.58842,40.242
-0.576,-9.984,-8.736,-5.664,72.7968,41.1264
-0.6,-10.5,-9.2,-5.8,75.83,42.44
-0.45125,-9.5665,-8.39325,-5.5955,68.436575,40.4225
-0.48015,-10.27521,-9.02682,-5.95386,72.809946,41.4772
-0.4802,-10.37232,-9.1238,-6.14656,72.817528,41.5912
-0.3648,-9.8496,-8.7552,-5.5632,69.15696,40.4225
-0.36864,-10.1376,-8.84736,-5.80608,69.884928,40.56
-0.27648,-10.1376,-8.93952,-5.9904,69.894144,41.4144
-0.291,-10.864,-9.603,-6.305,73.5454,41.2638
-0.18818,-10.63217,-9.31491,-6.30403,71.348447,42.2338
-0.18818,-10.72626,-9.409,-6.20994,71.348447,41.8458
-0.2,-11.4,-10.1,-6.9,75.82,43.14
-0.095,-10.83,-9.69,-6.555,72.029,40.622
-0.099,-11.385,-10.197,-7.029,75.0717,42.6294
-0,-11.21708,-9.88624,-6.93938,72.074492,41.4772
-0,-11.305,-9.975,-6.84,72.029,40.4225
--0.1,-11.9,-10.6,-7.2,75.83,42.95
--0.09408,-11.10144,-9.97248,-6.96192,71.331456,42.483
--0.19208,-11.33272,-10.27628,-6.91488,72.817528,41.9048
--0.28224,-11.19552,-10.06656,-6.96192,71.331456,41.797
--0.297,-11.979,-10.791,-7.92,75.0618,42.0156
--0.3648,-11.3088,-10.032,-7.296,69.15696,40.983
--0.36864,-11.52,-10.22976,-7.18848,69.875712,40.9536
--0.4655,-11.4513,-10.3341,-7.1687,70.58842,40.622
--0.4608,-11.24352,-10.22976,-7.00416,69.884928,41.232
--0.5643,-11.4741,-10.43955,-7.24185,71.318115,42.3423
--0.55872,-11.36064,-10.42944,-7.35648,70.603584,41.1668
--0.672,-11.904,-10.752,-7.776,72.7968,42.36
--0.76032,-11.97504,-10.83456,-7.88832,72.068832,42.3324
--0.75272,-12.04352,-10.82035,-7.90356,71.348447,41.2735
--0.83808,-11.91936,-10.7088,-7.54272,70.612896,40.9536
--0.84645,-11.94435,-10.9098,-7.61805,71.30871,42.5205
--0.98,-12.446,-11.368,-8.134,74.3036,42.76
--0.9312,-11.82624,-10.80192,-7.72896,70.612896,40.9825
--1.05644,-12.19708,-11.23668,-7.97132,72.827132,41.8068
--1.1,-12.8,-11.7,-8.4,75.82,42.65
--1.14072,-12.16768,-11.21708,-7.98504,72.083998,41.5912
--1.22265,-12.13245,-11.0979,-8.0883,71.318115,40.1375
--1.235,-12.445,-11.305,-8.36,72.029,42.25
--1.37214,-12.93732,-11.7612,-8.8209,74.311182,42.6294
--1.33,-12.73,-11.495,-8.455,72.029,42.65
--1.4256,-12.73536,-11.49984,-8.26848,72.059328,42.3324
--1.52064,-12.73536,-11.59488,-8.5536,72.068832,40.848
--1.683,-13.266,-12.078,-8.811,75.0618,43.14
--1.5827,-12.5685,-11.4513,-8.1928,70.59773,40.4225
--1.6929,-12.6027,-11.56815,-8.2764,71.318115,42.3324
--1.67616,-12.5712,-11.54688,-8.3808,70.603584,41.2735
--1.78752,-12.7008,-11.66592,-8.56128,71.331456,40.4544
--1.75104,-12.53376,-11.52,-8.47872,69.875712,40.6656
--1.824,-12.4944,-11.4912,-8.4816,69.15696,40.318
--1.95552,-12.94368,-11.82624,-8.8464,70.603584,40.8384
--2.03742,-13.48578,-12.32154,-9.2169,73.570266,41.2972
--2.11266,-13.4442,-12.29184,-9.21888,72.809946,40.8758
--2.18592,-13.3056,-12.26016,-9.21888,72.059328,40.272
--2.0976,-12.8592,-11.7648,-8.8464,69.15696,40.4544
--2.304,-13.536,-12.48,-9.312,72.7872,42.25
--2.4255,-13.77684,-12.6126,-9.50796,73.570266,41.8275
--2.35225,-13.54896,-12.32579,-9.409,71.339038,41.1668
--2.3959,-13.36175,-12.1638,-9.215,69.877345,40.033
--2.51424,-13.40928,-12.29184,-9.312,70.612896,40.7691
--2.48805,-13.36175,-12.25595,-9.12285,69.877345,40.1375
--2.527,-13.08625,-12.00325,-9.2055,68.436575,40.6315
--2.871,-14.553,-13.365,-10.395,75.0618,42.03
--2.70048,-13.87488,-12.66432,-9.7776,70.612896,40.3584
--2.9403,-14.60349,-13.32936,-9.99702,74.311182,41.7186
--2.793,-13.6857,-12.6616,-9.4962,70.58842,41.013
--3.007,-14.162,-13.192,-9.894,73.5454,42.14
--3.04128,-13.7808,-12.92544,-9.59904,72.059328,41.7186
--3.04192,-13.7837,-12.92816,-9.79118,72.074492,40.7788
--3.234,-14.406,-13.426,-10.486,74.3134,40.9052
--3.23136,-14.256,-13.11552,-10.35936,72.059328,40.176
--3.1977,-14.20155,-13.07295,-9.9693,71.318115,41.9364
--3.3264,-14.35104,-13.21056,-9.9792,72.059328,40.3584
--3.2832,-13.68,-12.6768,-9.7584,69.14784,39.862
--3.492,-14.453,-13.483,-10.185,73.5454,41.95
--3.589,-14.453,-13.483,-10.185,73.5551,40.5945
--3.5378,-13.965,-12.9409,-9.6824,70.58842,41.2972
--3.8,-15,-14,-10.6,75.82,42.25
--3.783,-14.55,-13.58,-10.379,73.5551,41.96
--3.762,-14.20155,-13.26105,-10.1574,71.318115,41.2533
--3.7632,-14.30016,-13.26528,-10.3488,71.340864,40.5132
--3.8171,-14.2443,-13.1271,-10.241,70.58842,41.111
--3.8171,-14.3374,-13.2202,-10.1479,70.50463,41.1992
--3.8304,-14.0448,-13.0416,-10.1232,69.15696,40.242
--4.0033,-14.4305,-13.3133,-10.241,70.50463,41.192
--4.08758,-14.82936,-13.68864,-10.74178,72.074492,41.9048
--4.22532,-14.98068,-13.82832,-10.85139,72.723519,40.8758
--4.32,-14.976,-13.92,-10.848,72.7008,44.05
--4.462,-15.229,-14.065,-11.058,73.4581,41.7682
--4.37276,-15.01948,-13.87876,-10.83684,71.988938,41.5128
--4.3757,-14.8029,-13.6857,-10.6134,70.50463,39.7575
--4.33105,-14.65185,-13.54605,-10.59725,69.785195,40.7788
--4.4232,-14.65185,-13.54605,-10.5051,69.785195,39.9285
--4.65696,-15.11136,-14.06592,-11.02464,71.973792,41.3226
--4.56288,-14.80608,-13.78176,-10.89504,70.519776,40.5945
--5,-16.1,-14.9,-11.8,75.73,41.74
--4.74912,-15.08544,-13.87488,-10.98816,70.519776,40.2816
--5.049,-16.038,-14.85,-11.583,74.9727,42.55
--4.8412,-15.0822,-13.965,-11.0789,70.50463,40.4225
--5.141,-15.714,-14.647,-11.737,73.4581,40.2065
--5.03818,-15.39972,-14.35406,-11.4072,71.988938,40.5945
--5.0787,-15.33015,-14.2956,-11.0979,71.224065,41.4315
--5.225,-15.485,-14.44,-11.305,71.934,39.9285
--5.39055,-16.07364,-14.99553,-11.85921,74.222973,42.5205
--5.488,-16.17,-14.994,-11.956,74.2154,43.53
--5.1984,-15.1392,-14.0448,-11.0352,69.06576,41.3376
--5.30784,-15.3648,-14.34048,-11.26752,70.519776,41.712
--5.684,-16.17,-15.092,-11.662,74.2154,41.2972
--5.45722,-15.61894,-14.58395,-11.2908,71.254357,41.4772
--5.55131,-15.61894,-14.58395,-11.57307,71.254357,41.1668
--5.7624,-16.03868,-14.8862,-11.90896,72.731092,41.1992
--5.5872,-15.64416,-14.52672,-11.64,70.519776,40.0032
--5.917,-16.296,-15.229,-11.931,73.4581,40.4878
--5.7722,-15.6408,-14.6167,-11.5444,70.43946,39.653
--5.7722,-15.6408,-14.6167,-11.7306,70.50463,41.405
--5.80545,-15.57335,-14.5597,-11.70305,69.785195,40.9825
--5.95968,-15.73728,-14.71296,-11.91936,70.519776,41.4144
--6.08256,-16.1568,-15.11136,-12.07008,71.89776,42.0156
--6.1152,-15.9936,-14.95872,-12.2304,71.17152,41.232
--6.2426,-16.42284,-15.27036,-12.29312,72.65426,41.9832
--6.534,-17.028,-15.84,-12.87,74.8935,42.5205
--6.23904,-16.01664,-14.8992,-12.1056,70.435968,40.6656
--6.1104,-15.7776,-14.6832,-11.856,69.00192,41.232
--6.46272,-16.44192,-15.30144,-12.3552,71.89776,42.0156
--6.4239,-16.1063,-14.9891,-12.1961,70.43015,41.1894
--6.2928,-15.8688,-14.7744,-11.856,68.9928,40.8025
--6.8607,-17.05374,-15.87762,-12.83931,74.144565,41.7186
--7.029,-17.226,-16.137,-13.068,74.8836,42.44
--6.887,-16.975,-15.811,-13.095,73.3805,43.86
--6.63552,-16.22016,-15.11424,-12.25728,69.62688,42.7776
--6.86565,-16.5528,-15.4242,-12.50865,71.148825,42.4116
--7.01092,-16.90304,-15.8466,-12.86936,72.567824,43.2768
--6.7488,-16.1424,-15.048,-12.1296,68.9016,41.2775
--7.275,-17.169,-16.005,-12.901,73.2835,40.9825
--6.91125,-16.4027,-15.2969,-12.5324,69.619325,41.1825
--7.524,-17.622,-16.434,-13.365,74.7945,42.4116
--7.00416,-16.40448,-15.39072,-12.53376,69.62688,41.232
--7.1687,-16.6649,-15.5477,-12.6616,70.33705,41.9425
--7.17024,-16.66848,-15.55104,-12.5712,70.35216,41.4772
--7.1877,-16.49485,-15.4812,-12.62455,69.619325,40.413
--7.742,-17.64,-16.464,-13.426,74.0488,42.77
--7.9,-18,-16.8,-13.7,75.55,42.95
--7.6824,-17.2854,-16.22907,-13.25214,72.550665,42.8175
--7.77843,-17.2854,-16.22907,-13.34817,72.560268,42.2241
--7.46496,-16.68096,-15.6672,-12.62592,69.62688,41.616
--7.71538,-17.12438,-15.9953,-13.07851,71.084995,42.0495
--7.80615,-17.1171,-15.9885,-13.26105,71.054775,43.5006
--7.80864,-17.21664,-16.08768,-13.07712,71.07744,42.384
--8.14968,-17.75466,-16.59042,-13.48578,73.29861,42.8652
--7.9002,-17.1171,-16.08255,-13.07295,71.054775,42.9264
--7.752,-16.6896,-15.6864,-12.768,68.9016,42.7776
--8.17,-17.48,-16.435,-13.395,71.7725,44.15
--8.25944,-17.67136,-16.61492,-13.4456,72.55822,42.4928
--8.7,-18.4,-17.3,-14.1,75.55,44.56
--7.9344,-16.7808,-15.7776,-12.9504,68.9016,41.8944
--8.36352,-17.39232,-16.44192,-13.40064,71.80272,43.4214
--8.0256,-16.6896,-15.7776,-12.768,68.89248,41.712
--8.37312,-17.31072,-16.36992,-13.45344,71.07744,42.6692
--8.2935,-17.1399,-16.0341,-13.17745,69.619325,41.9525
--8.6427,-17.95761,-16.80525,-13.63626,72.550665,43.4214
--8.82882,-18.14274,-16.9785,-13.97088,73.29861,44.1144
--8.2992,-16.9632,-15.96,-12.9504,68.9016,42
--9.016,-18.228,-17.15,-13.916,74.039,43.6688
--9.207,-18.414,-17.325,-14.157,74.7945,44.93
--8.66016,-17.32032,-16.38912,-13.31616,70.35216,43.6224
--8.75328,-17.32032,-16.38912,-13.5024,70.35216,45.3504
--9.306,-18.612,-17.523,-14.355,74.7054,44.16
--9.025,-17.955,-16.815,-13.965,71.6775,43.75
--9.2169,-18.23976,-17.17254,-14.0679,73.20159,43.4532
--9.12,-17.86,-16.815,-13.68,71.6775,44.74
--9.40896,-18.42588,-17.34777,-14.01543,73.948545,44.6985
--9.22082,-17.87128,-16.82562,-13.59358,71.72277,42.8255
--9.506,-18.333,-17.266,-14.162,73.1865,44.1835
--9.22082,-17.8771,-16.74802,-13.83123,71.000314,45.7161
--9.31491,-17.8771,-16.84211,-13.54896,70.990905,45.2505
--9.7,-18.333,-17.266,-14.162,73.1962,45.55
--9.504,-17.96256,-17.01216,-13.7808,71.70768,42.8544
--9.49905,-17.77545,-16.83495,-13.44915,70.960725,42.332
--9.898,-18.522,-17.542,-14.21,73.843,45.66
--9.3024,-17.2368,-16.3248,-13.3152,68.8104,42.123
--9.3993,-17.60065,-16.49485,-13.36175,69.53639,42.332
--9.29575,-17.23775,-16.15475,-13.26675,68.093625,43.168
--9.49145,-17.60065,-16.587,-13.4539,69.44424,44.2805
--9.7812,-17.96355,-16.929,-13.7313,70.866675,44.3175
--10.192,-18.62,-17.64,-14.308,73.8528,46.109
--9.9792,-17.96256,-17.1072,-13.7808,71.61264,43.344
--9.97248,-17.8752,-16.9344,-13.6416,70.898688,43.2384
--10.388,-18.718,-17.64,-14.7,73.8528,46.76
--10.379,-18.624,-17.557,-14.356,73.0895,45.15
--9.86005,-17.6928,-16.67915,-13.73035,69.435025,43.168
--10.26432,-18.24768,-17.20224,-13.97088,71.61264,45.2727
--9.9522,-17.60065,-16.67915,-13.4539,69.435025,44.2225
--9.9408,-17.4192,-16.5072,-13.224,68.72832,44.498
--10.25581,-17.97119,-17.03029,-13.73714,70.906224,44.5715
--10.3455,-17.8695,-17.02305,-13.7313,70.866675,44.8767
--10.78,-18.62,-17.738,-14.406,73.8528,44.5312
--10.54944,-18.24768,-17.20224,-14.35104,71.61264,43.344
--10.44288,-18.15744,-17.12256,-14.30016,70.88928,43.056
--10.64672,-18.34658,-17.30092,-14.16394,71.637216,43.8925
--10.63217,-18.15937,-17.12438,-14.01941,70.896815,44.0768
--10.85139,-18.53379,-17.47746,-14.21244,72.358605,44.8767
--10.74178,-18.25152,-17.30092,-14.16394,71.637216,43.7472
--10.6134,-17.8752,-16.9442,-13.7788,70.16016,43.6688
--10.7088,-17.87904,-16.94784,-13.968,70.175232,43.44
--11.385,-19.107,-18.018,-14.751,74.5965,46.25
--10.9098,-18.2457,-17.21115,-14.20155,70.87608,44.5896
--10.80192,-18.06528,-17.04096,-14.06112,70.175232,43.3008
--11.00736,-18.25152,-17.21664,-14.01792,70.88928,46.501
--11.232,-18.624,-17.568,-14.496,72.336,46.03
--11.21,-18.43,-17.385,-14.25,71.5825,42.2275
--10.9858,-18.0614,-17.0373,-13.8719,70.16016,43.4435
--11.19195,-18.2457,-17.3052,-14.20155,70.866675,42.6835
--11.08128,-18.06528,-17.13408,-14.06112,70.16592,43.5168
--11.172,-18.1545,-17.1304,-14.0581,70.16016,45.5014
--11.6424,-18.9189,-17.85168,-14.553,73.10457,43.9628
--11.737,-18.915,-17.848,-14.647,73.0992,43.9701
--11.0352,-17.8752,-16.872,-13.7712,68.7192,42.9875
--11.47776,-18.43968,-17.4048,-14.30016,70.88928,42.9504
--11.3582,-18.1545,-17.2235,-14.0581,70.05775,44.8252
--11.4741,-18.33975,-17.39925,-14.1075,70.87608,45.6786
--11.81292,-18.7278,-17.7674,-14.59808,72.36614,44.1392
--11.4266,-17.96925,-17.04775,-13.91465,69.435025,43.3978
--11.90896,-18.91988,-17.7674,-14.79016,72.36614,45.325
--12.028,-19.109,-18.042,-14.744,73.0992,45.25
--12.5,-19.7,-18.6,-15.1,75.26,46.84
--11.51875,-18.15355,-17.1399,-14.0068,69.342875,43.5821
--11.7306,-18.3407,-17.3166,-14.3374,70.06706,43.9628
--12.07008,-18.72288,-17.67744,-14.54112,71.527104,43.728
--12.07262,-18.72682,-17.68116,-14.63924,71.542156,44.3678
--11.94943,-18.53573,-17.59483,-14.48986,70.812134,44.4648
--11.7952,-18.15355,-17.1399,-14.1911,69.35209,43.548
--12.41856,-19.11294,-18.14274,-14.94108,73.017252,44.6985
--12.26016,-18.81792,-17.77248,-14.54112,71.527104,43.2384
--11.88735,-18.2457,-17.23205,-14.1911,69.342875,44.8625
--12.01248,-18.43776,-17.50656,-14.34048,70.082112,43.44
--12.4839,-19.10997,-17.95761,-14.78862,72.262575,44.0055
--12.70962,-19.30698,-18.23976,-15.0381,73.017252,44.247
--12.83931,-19.50399,-18.42588,-15.09354,73.772127,44.6985
--12.707,-19.303,-18.236,-15.132,72.9925,45.54
--12.54792,-18.91694,-17.87128,-14.82936,71.542156,44.737
--12.41856,-18.72192,-17.68704,-14.77056,70.804608,44.1392
--12.41988,-18.72391,-17.68892,-14.48986,70.802725,42.9031
--12.77199,-19.206,-18.05364,-14.98068,72.272178,43.0098
--13.167,-19.8,-18.711,-15.444,74.5074,44.7975
--12.86936,-19.208,-18.15156,-14.8862,72.279704,43.953
--12.2208,-18.24,-17.2368,-14.2272,68.63712,42.408
--12.312,-18.24,-17.2368,-14.2272,68.64624,44.2944
--13.095,-19.303,-18.333,-15.132,73.0022,44.4648
--12.79488,-18.816,-17.78112,-14.5824,70.710528,44.1392
--12.92816,-19.012,-17.96634,-15.01948,71.542156,43.561
--13.32936,-19.70001,-18.6219,-15.48558,73.664316,44.4906
--12.88485,-18.90405,-17.8695,-14.76585,70.78203,42.9875
--13.563,-19.899,-18.81,-15.543,74.5074,45.2727
--13.11552,-19.10304,-18.0576,-14.82624,71.527104,44.1888
--13.662,-19.998,-18.81,-15.444,74.5074,46.3716
--12.80885,-18.52215,-17.5085,-14.46755,69.25994,43.8925
--12.94368,-18.71712,-17.78592,-14.71296,69.988992,42.5664
--13.07712,-18.91008,-17.96928,-14.95872,70.719936,44.1888
--12.9024,-18.52416,-17.60256,-14.65344,69.267456,44.112
--13.58,-19.594,-18.527,-15.326,72.9052,44.3581
--13.54164,-19.40008,-18.34364,-15.17432,72.183664,45.8248
--12.99315,-18.6143,-17.60065,-14.5597,69.25994,44.8625
--13.54023,-19.39806,-18.43776,-15.07671,72.176148,45.6786
--13.08672,-18.61632,-17.69472,-14.46912,69.267456,44.1888
--13.49568,-19.19808,-18.24768,-15.11136,71.432064,44.6784
--13.36078,-19.00618,-18.06528,-14.86622,70.718044,43.5821
--13.3133,-18.8062,-17.8752,-14.8029,69.97396,45.5014
--13.0416,-18.5136,-17.5104,-14.6832,68.54592,43.056
--13.82976,-19.49612,-18.43968,-15.27036,72.097228,43.6688
--13.82832,-19.49409,-18.43776,-15.26877,72.089721,44.1835
--14.355,-20.097,-19.107,-15.84,74.3094,44.55
--14.065,-19.691,-18.624,-15.423,72.8082,45.04
--13.36175,-18.70645,-17.6928,-14.65185,69.177005,43.6888
--13.5926,-18.8993,-17.8752,-14.8029,69.88086,43.3454
--13.73568,-19.09824,-18.06336,-15.0528,70.616448,44.5728
--14.016,-19.488,-18.528,-15.456,72.0672,43.344
--13.26675,-18.411,-17.41825,-14.2595,67.74165,43.3675
--13.26675,-18.411,-17.41825,-14.44,67.74165,42.332
--14.21392,-19.59216,-18.53572,-15.27036,72.087624,43.953
--13.92532,-19.19436,-18.15937,-15.0544,70.623954,43.4075
--13.6382,-18.7986,-17.78495,-14.65185,69.177005,43.5142
--14.155,-19.38,-18.43,-15.105,71.3165,42.617
--14.01792,-19.19232,-18.15744,-15.14688,70.616448,45.2172
--13.5888,-18.6048,-17.6016,-14.6832,68.45472,43.9008
--14.453,-19.788,-18.818,-15.423,72.8082,44.15
--14.4,-19.584,-18.528,-15.456,72.0576,43.5168
--13.824,-18.80064,-17.87904,-14.7456,69.175296,43.5168
--14.647,-19.788,-18.818,-15.714,72.8179,43.0098
--13.91616,-18.8928,-17.87904,-14.92992,69.175296,42.672
--14.35104,-19.4832,-18.43776,-15.30144,71.251488,42.2784
--14.35104,-19.4832,-18.43776,-15.2064,71.251488,43.9104
--14.592,-19.68,-18.72,-15.36,71.9616,43.7184
--14.38965,-19.28025,-18.33975,-15.2361,70.603335,43.548
--14.841,-19.885,-18.818,-15.52,72.7209,44.93
--14.39577,-19.28845,-18.25346,-15.0544,70.529864,43.3978
--14.841,-19.885,-18.915,-15.617,72.7112,45.04
--15.246,-20.295,-19.305,-15.939,74.2104,44.0055
--14.3374,-19.0855,-18.1545,-15.2684,69.78776,42.5125
--15.246,-20.394,-19.305,-16.038,74.2104,45.44
--14.57775,-19.3743,-18.33975,-15.2361,70.509285,43.7184
--14.28325,-18.9829,-17.96925,-14.83615,69.07564,44.1738
--13.98875,-18.5915,-17.59875,-14.53025,67.660425,42.332
--14.82,-19.57,-18.525,-15.39,71.2215,43.94
--14.67648,-19.38048,-18.3456,-15.24096,70.531776,43.344
--15.6,-20.6,-19.5,-16.2,74.97,44.85
--14.77056,-19.38048,-18.43968,-15.42912,70.531776,43.953
--15.07671,-19.78218,-18.72585,-15.65289,71.993691,45.1438
--15.168,-19.872,-18.816,-15.744,71.9712,43.5168
--15.32916,-20.08314,-19.01592,-15.81426,72.745596,44.0154
--15.484,-20.188,-19.208,-15.778,73.4706,43.659
--14.86622,-19.38254,-18.44164,-15.14849,70.539273,43.6985
--14.5008,-18.8784,-17.8752,-14.7744,68.36352,44.0064
--14.5008,-18.8784,-17.8752,-14.8656,68.36352,43.1328
--14.5008,-18.8784,-17.8752,-14.7744,68.28144,42.9875
--15.3648,-19.87821,-18.82188,-15.84495,71.897661,44.4807
--15.6816,-20.28807,-19.20996,-15.87762,73.380087,45.1935
--14.8992,-19.27584,-18.25152,-15.08544,69.718944,42.9312
--15.048,-19.46835,-18.4338,-15.4242,70.415235,44.7975
--15.46083,-19.87821,-18.91791,-15.55686,71.897661,44.1936
--14.83615,-19.07505,-18.15355,-14.83615,68.992705,43.2232
--15.46083,-19.97424,-18.91791,-15.55686,71.897661,43.3008
--16.2,-20.7,-19.7,-16.3,74.87,44.23
--15.24258,-19.57072,-18.53573,-15.14849,70.445183,44.4648
--15.811,-20.079,-19.109,-15.811,72.6239,43.6888
--16.137,-20.592,-19.503,-16.335,74.1213,46.3716
--15.648,-19.872,-18.912,-15.648,71.8752,43.056
--15.81426,-20.08314,-19.11294,-15.81426,72.638874,43.855
--15.17856,-19.27584,-18.34464,-15.17856,69.718944,42.8544
--15.75056,-19.88028,-18.91988,-15.65452,71.905148,43.953
--15.908,-20.079,-19.109,-15.811,72.6239,44.4648
--16.236,-20.592,-19.503,-16.434,74.1213,44.64
--16.335,-20.592,-19.503,-16.236,74.1213,44.93
--15.20475,-19.1672,-18.15355,-15.2969,68.992705,42.123
--15.675,-19.76,-18.715,-15.675,71.1265,42.9875
--16.17,-20.384,-19.306,-15.974,73.3824,44.933
--15.77,-19.76,-18.715,-15.485,71.1265,42.788
--16.434,-20.592,-19.503,-16.335,74.1213,44.4807
--15.6123,-19.5624,-18.52785,-15.4242,70.415235,42.6075
--15.77996,-19.77248,-18.82188,-15.49478,71.161916,42.8255
--15.70635,-19.5624,-18.6219,-15.51825,70.415235,41.9425
--15.87502,-19.77248,-18.82188,-15.49478,71.171422,44.2805
--16.366,-20.384,-19.306,-15.68,73.3726,44.8154
--15.64416,-18.53088,-16.296,-15.55104,69.625824,43.344
--15.4812,-17.41635,-15.02045,-16.0341,69.00192,41.8475
--15.80544,-16.84032,-14.30016,-16.55808,70.343616,44.345
--15.97008,-16.44538,-13.49852,-17.01574,71.171422,44.5312
--15.89952,-16.27584,-13.07712,-13.35936,70.437696,42.4608
--16.055,-18.05,-14.82,-14.63,71.1265,41.2775
--16.06514,-18.5367,-15.58984,-14.92442,71.171422,42.8255
--16.1602,-18.63176,-15.87502,-14.54418,71.171422,42.9031
--15.9885,-18.4338,-15.89445,-14.20155,70.415235,42.788
--16.32,-18.72,-16.416,-14.304,71.8752,42.7776
--15.9953,-18.25346,-16.18348,-14.20759,70.454592,43.6985
--15.827,-18.0614,-16.1994,-13.8719,69.70397,42.2275
--15.504,-17.6928,-15.96,-13.5888,68.28144,41.192
--16.25184,-18.43776,-16.72704,-14.54112,71.156448,42.5664
--16.08768,-18.25152,-16.65216,-14.30016,70.437696,42.8544
--16.245,-18.525,-16.91,-14.44,71.1265,42.503
--16.416,-18.72,-17.184,-14.784,71.8752,42.4608
--16.08768,-18.53376,-16.9344,-14.67648,70.437696,44.345
--16.18176,-18.62784,-17.02848,-14.48832,70.437696,44.4234
--16.1766,-18.6219,-17.1171,-14.4837,70.42464,42.2275
--15.6864,-18.0576,-16.5984,-14.0448,68.19936,44.2944
--16.85772,-19.40598,-17.93583,-15.19155,73.282077,44.3025
--15.85152,-18.24768,-16.95744,-14.2848,68.908032,42.4608
--16.781,-19.206,-17.848,-14.938,72.5269,45.25
--15.61325,-17.8695,-16.69625,-13.98875,67.479925,42.123
--16.781,-19.303,-17.945,-15.035,72.5269,43.2232
--17.127,-19.701,-18.414,-15.246,74.0223,45.15
--16.27584,-18.72192,-17.49888,-14.67648,70.353024,43.0612
--15.94195,-18.43,-17.1399,-14.28325,68.90977,43.0098
--16.88148,-19.404,-18.14274,-15.13512,72.541854,44.4234
--15.7035,-18.05,-16.87675,-14.2595,67.479925,41.743
--16.03584,-18.432,-17.32608,-14.56128,68.908032,44.2944
--15.8688,-18.3312,-17.1456,-14.4096,68.19024,44.6784
--15.79375,-18.14025,-16.967,-14.16925,67.479925,42.5125
--16.632,-19.10304,-17.86752,-15.11136,71.061408,42.9504
--16.6355,-19.20212,-17.96634,-14.82936,71.076362,42.3308
--17.325,-19.998,-18.81,-15.543,74.0223,44.45
--16.80525,-19.39806,-18.2457,-15.17274,71.811234,43.5996
--16.73056,-19.20212,-18.0614,-14.92442,71.076362,43.561
--16.3856,-18.8062,-17.689,-14.7098,69.62018,44.5312
--17.07552,-19.59804,-18.4338,-15.23214,72.541854,44.1936
--16.55808,-19.09824,-17.96928,-14.86464,70.343616,42.7776
--16.3856,-18.8993,-17.7821,-14.7098,69.62018,41.458
--17.24976,-19.89603,-18.71991,-15.38757,73.282077,43.7976
--17.424,-20.097,-18.909,-15.939,74.0223,43.3125
--16.72,-19.285,-18.145,-15.2,71.0315,41.667
--16.65393,-19.10027,-18.06528,-14.86622,70.351093,43.7955
--16.1424,-18.5136,-17.5104,-14.592,68.19024,42.332
--16.65216,-19.19232,-18.06336,-15.14688,70.353024,43.9628
--16.992,-19.584,-18.432,-15.36,71.7792,44.6784
--16.99731,-19.59012,-18.43776,-15.26877,71.801631,43.6888
--16.31232,-18.80064,-17.78688,-14.83776,68.908032,43.344
--17.622,-20.196,-19.107,-15.84,74.0223,43.8966
--17.266,-19.788,-18.721,-15.52,72.5269,44.85
--16.5718,-18.9924,-17.9683,-14.896,69.61087,44.247
--17.444,-19.992,-18.914,-15.68,73.2746,45.15
--16.2336,-18.6048,-17.6016,-14.592,68.19024,42.2275
--16.92068,-19.4873,-18.34658,-15.2096,71.076362,43.5142
--16.3248,-18.696,-17.6016,-14.5008,68.19024,42.788
--17.9,-20.4,-19.4,-16.1,74.77,44.56
--17.36658,-19.8891,-18.72486,-15.5232,72.541854,44.737
--17.19116,-19.6882,-18.63176,-15.46244,71.809108,44.639
--16.84032,-19.2864,-18.25152,-15.14688,70.343616,44.9664
--17.36658,-19.98612,-18.82188,-15.71724,72.541854,46.0746
--17.01216,-19.57824,-18.43776,-15.39648,71.061408,43.1424
--17.1072,-19.57824,-18.43776,-15.39648,71.061408,44.784
--16.929,-19.3743,-18.2457,-15.2361,70.321185,42.332
--17.4636,-19.98612,-18.9189,-15.62022,72.541854,44.0314
--17.64,-20.188,-19.11,-15.876,73.2746,44.1392
--16.929,-19.3743,-18.33975,-15.14205,70.321185,42.6075
--17.64,-20.188,-19.11,-15.876,73.2746,44.34
--16.9344,-19.47456,-18.3456,-15.33504,70.343616,44.0314
--16.67915,-19.07505,-17.96925,-15.02045,68.900555,43.9701
--17.56062,-20.08314,-18.9189,-15.71724,72.541854,43.7472
--17.919,-20.493,-19.404,-16.236,74.0223,45.6786
--17.919,-20.394,-19.305,-15.939,74.0223,45.33
--16.67915,-18.9829,-17.96925,-14.83615,68.900555,43.7955
--16.85472,-19.18272,-18.1584,-14.8992,69.625824,42.7776
--17.29728,-19.67328,-18.62784,-15.39648,71.061408,44.4015
--16.77312,-18.98496,-18.06336,-15.02208,68.908032,42.384
--17.654,-19.982,-19.012,-15.811,72.5269,44.8528
--17.29728,-19.67328,-18.62784,-15.49152,71.061408,43.6128
--16.7713,-19.07505,-18.0614,-15.02045,68.900555,42.788
--16.5984,-18.8784,-17.8752,-14.7744,68.19936,42.503
--16.7713,-19.07505,-18.0614,-15.02045,68.900555,41.9425
--17.654,-20.079,-19.012,-15.811,72.5269,44.15
--17.75466,-20.08314,-19.01592,-15.81426,72.541854,43.561
--17.21847,-19.47663,-18.44164,-15.33667,70.351093,43.5821
--17.39598,-19.77248,-18.63176,-15.58984,71.076362,43.6888
--17.75466,-20.18016,-19.11294,-15.81426,72.541854,44.6292
--17.21847,-19.57072,-18.53573,-15.33667,70.351093,43.1165
--17.21664,-19.56864,-18.53376,-15.33504,70.343616,44.737
--18.216,-20.493,-19.503,-16.137,74.0223,45.1935
--17.75466,-20.18016,-19.11294,-16.0083,72.541854,44.9232
--18.117,-20.592,-19.503,-16.038,74.0223,44.4114
--17.13408,-19.36896,-18.34464,-15.17856,69.625824,42.7776
--17.66952,-19.97424,-18.91791,-15.74892,71.715204,43.7955
--17.48,-19.76,-18.715,-15.485,70.946,46.84
--16.7808,-18.9696,-17.9664,-14.7744,68.10816,42.8925
--16.7808,-18.9696,-17.9664,-15.048,68.09904,43.824
--17.49104,-19.77248,-18.72682,-15.6849,70.981302,43.7955
--17.5861,-19.77248,-18.82188,-15.39972,70.990808,43.4532
--17.0496,-19.26144,-18.15552,-15.11424,68.815872,43.344
--17.7674,-19.97632,-19.01592,-15.8466,71.722672,44.7468
--18.315,-20.691,-19.602,-16.236,73.9332,45.44
--17.945,-20.176,-19.206,-15.908,72.4396,45.25
--17.5824,-19.86336,-18.81792,-15.58656,71.070912,45.3816
--17.39925,-19.65645,-18.6219,-15.4242,70.227135,45.0846
--16.872,-18.8784,-17.2368,-14.5008,68.19024,43.344
--17.3166,-18.3407,-16.0132,-16.1063,69.51777,43.548
--18.13185,-18.22986,-15.6816,-17.54379,73.193868,45.8865
--17.49888,-16.65216,-14.01792,-17.02848,70.343616,44.4234
--17.14176,-15.85152,-12.99456,-16.68096,68.815872,44.5728
--17.67744,-16.632,-13.49568,-13.11552,71.061408,44.1936
--17.68116,-18.25152,-15.01948,-14.7343,71.076362,43.561
--17.4933,-18.4338,-15.51825,-14.57775,70.321185,42.123
--17.856,-18.816,-16.128,-14.688,71.7792,44.24
--18.326,-19.208,-16.562,-14.798,73.2746,43.86
--18.513,-19.305,-16.929,-14.751,74.0223,43.54
--16.87675,-17.59875,-15.61325,-13.62775,67.479925,41.9425
--18.513,-19.305,-17.226,-14.85,74.0223,44.94
--18.14274,-18.82188,-16.9785,-14.45598,72.551556,44.639
--18.139,-18.915,-17.072,-14.647,72.5269,45.9198
--17.41344,-18.1584,-16.48224,-14.15424,69.625824,43.2232
--17.41344,-18.1584,-16.57536,-14.24736,69.625824,42.7285
--18.513,-19.503,-17.721,-15.345,74.0223,43.75
--17.765,-18.81,-17.195,-14.535,71.041,41.287
--17.952,-19.008,-17.472,-14.592,71.7792,43.14
--17.77622,-18.91694,-17.30092,-14.7343,71.076362,42.7672
--18.326,-19.502,-17.934,-15.19,73.2746,43.4532
--17.952,-19.104,-17.664,-14.784,71.7888,43.65
--17.1456,-18.1488,-16.7808,-14.136,68.19024,41.52
--17.87128,-19.012,-17.5861,-14.7343,71.076362,42.2772
--17.68704,-18.816,-17.4048,-14.67648,70.343616,42.9828
--17.3242,-18.43,-17.1399,-14.46755,68.900555,41.0875
--17.68704,-18.816,-17.59296,-14.77056,70.343616,42.581
--18.048,-19.296,-17.952,-15.168,71.7792,43.14
--18.23976,-19.50102,-18.14274,-15.32916,72.629172,42.3324
--17.86752,-19.10304,-17.86752,-14.92128,71.061408,41.232
--17.68704,-18.91008,-17.68704,-14.77056,70.343616,41.1264
--18.048,-19.296,-18.144,-15.168,71.8752,43.14
--18.236,-19.594,-18.333,-15.423,72.6239,42.87
--18.05552,-19.40008,-18.15156,-15.07828,71.914752,42.1988
--18.05364,-19.39806,-18.14967,-15.3648,71.897661,41.6615
--18.612,-20.097,-18.81,-15.741,74.1213,43.0947
--18.15156,-19.49612,-18.2476,-15.27036,71.895544,41.6892
--17.59968,-18.90336,-17.6928,-14.8992,69.718944,41.2638
--18.144,-19.488,-18.336,-15.36,71.8656,42.95
--17.2368,-18.5136,-17.4192,-14.592,68.27232,40.622
--18.14967,-19.49409,-18.34173,-15.26877,71.897661,42.0156
--18.33678,-19.69506,-18.53082,-15.5232,72.638874,42.2772
--17.96256,-19.29312,-18.24768,-15.01632,71.156448,42.0156
--17.77545,-19.1862,-18.0576,-14.95395,70.415235,40.698
--17.5959,-18.9924,-17.8752,-14.896,69.70397,40.907
--17.59968,-18.99648,-17.87904,-14.80608,69.718944,41.232
--17.41635,-18.7986,-17.6928,-14.83615,68.992705,41.8458
--17.689,-18.9924,-17.9683,-14.8029,69.70397,40.318
--17.77545,-19.1862,-18.0576,-15.048,70.415235,40.4225
--18.15156,-19.59216,-18.53572,-15.27036,71.905148,41.797
--17.6928,-19.0896,-17.97216,-14.99232,69.812064,40.56
--17.328,-18.696,-17.6016,-14.6832,68.28144,40.56
--18.0614,-19.4873,-18.44164,-15.30466,71.171422,41.0892
--17.6928,-19.0896,-17.97216,-14.99232,69.718944,40.56
--18.81,-20.295,-19.206,-16.038,74.1213,41.9364
--18.43,-19.885,-18.818,-15.714,72.6239,40.9825
--17.8695,-19.28025,-18.2457,-15.14205,70.415235,40.033
--17.689,-19.1786,-18.0614,-14.9891,69.70397,40.242
--17.328,-18.7872,-17.784,-14.7744,68.28144,40.1375
--18.05,-19.57,-18.525,-15.2,71.136,41.96
--17.689,-19.1786,-18.1545,-15.0822,69.70397,41.5912
--18.62,-20.188,-19.11,-15.778,73.4608,42.35
--18.62,-20.188,-19.11,-15.974,73.4608,42.54
--18.0576,-19.57824,-18.5328,-15.39648,71.251488,41.8275
--17.689,-19.1786,-18.1545,-15.0822,69.78776,41.503
--18.909,-20.394,-19.305,-16.137,74.2203,42.1146
--18.718,-20.286,-19.11,-15.974,73.4706,41.6892
--17.60065,-18.9829,-18.0614,-14.83615,69.084855,40.242
--17.97119,-19.47663,-18.34755,-15.33667,70.539273,40.9825
--18.15264,-19.57824,-18.62784,-15.39648,71.241984,41.6097
--18.53082,-20.08314,-19.01592,-15.81426,72.735894,41.6892
--17.96928,-19.47456,-18.43968,-15.33504,70.522368,41.405
--17.60065,-19.07505,-18.0614,-15.02045,69.07564,39.9285
--18.527,-20.079,-19.012,-15.908,72.7112,40.8758
--18.909,-20.592,-19.404,-16.038,74.2203,41.6196
--17.96928,-19.56864,-18.43968,-15.33504,70.531776,40.6656
--17.78592,-19.36896,-18.34464,-15.08544,69.812064,40.4544
--17.96928,-19.56864,-18.53376,-15.24096,70.531776,41.405
--17.96928,-19.56864,-18.53376,-15.42912,70.522368,41.405
--17.97119,-19.57072,-18.53573,-15.52485,70.529864,40.6915
--17.78592,-19.36896,-18.34464,-15.3648,69.802752,41.1668
--18.624,-20.176,-19.109,-15.908,72.7112,40.7691
--17.5104,-18.9696,-17.9664,-14.8656,68.36352,39.8525
--18.816,-20.384,-19.306,-16.17,73.4706,42.35
--17.4192,-19.0608,-17.9664,-15.048,68.36352,40.4544
--18.06336,-19.66272,-18.62784,-15.5232,70.531776,41.111
--18.43776,-19.87821,-18.72585,-15.3648,71.993691,40.7691
--18.62784,-19.20996,-17.07552,-16.29936,72.726192,41.1894
--18.816,-18.326,-15.778,-17.052,73.4706,41.2972
--17.8752,-16.6649,-14.0581,-16.4787,69.79707,40.033
--18.43968,-16.51888,-13.63768,-16.90304,72.001188,41.0032
--18.24768,-16.632,-13.59072,-13.02048,71.346528,40.1664
--18.53379,-18.2457,-15.26877,-14.88465,71.984088,41.4216
--19.008,-19.305,-16.335,-15.444,74.3094,41.95
--17.87904,-18.25152,-15.64416,-14.34048,69.895872,39.9936
--18.62784,-19.01592,-16.4934,-14.65002,72.726192,41.2533
--18.06528,-18.34755,-16.18348,-14.1135,70.623954,40.6915
--18.53572,-18.7278,-16.61492,-14.50204,72.087624,41.111
--17.6016,-17.6928,-15.8688,-13.5888,68.45472,39.8976
--17.9683,-18.0614,-16.2925,-13.8719,69.78776,39.653
--18.34658,-18.44164,-16.73056,-14.16394,71.352036,40.6915
--17.8752,-18.0614,-16.4787,-14.1512,69.88086,39.748
--18.34658,-18.5367,-16.92068,-14.54418,71.352036,40.7288
--17.41825,-17.689,-16.15475,-13.8985,67.750675,39.577
--17.97216,-18.34464,-16.7616,-14.52672,69.895872,39.888
--18.72486,-19.20996,-17.56062,-15.23214,72.823212,40.621
--17.6016,-18.0576,-16.5984,-14.136,68.45472,39.888
--19.107,-19.602,-18.018,-15.147,74.3094,41.0355
--19.107,-19.602,-18.117,-15.345,74.3193,41.5305
--17.78495,-18.33785,-16.9556,-14.09895,69.16779,40.4102
--17.97216,-18.43776,-17.13408,-14.34048,69.895872,40.2065
--18.335,-18.81,-17.575,-14.725,71.307,39.577
--18.721,-19.303,-17.945,-15.035,72.8179,41.74
--18.34658,-18.91694,-17.68116,-14.63924,71.361542,41.013
--18.914,-19.6,-18.228,-15.092,73.5686,41.56
--17.9683,-18.62,-17.3166,-14.6167,69.88086,39.748
--18.528,-19.2,-17.952,-15.072,72.0672,41.95
--18.34658,-19.012,-17.77622,-14.63924,71.361542,40.8268
--18.914,-19.6,-18.424,-15.288,73.5588,40.8268
--18.721,-19.4,-18.236,-15.035,72.8082,40.3132
--19.107,-19.8,-18.612,-15.642,74.3193,41.74
--18.914,-19.698,-18.424,-15.288,73.5686,41.1992
--18.34272,-19.19808,-17.96256,-14.92128,71.337024,40.3584
--18.15937,-18.91209,-17.78301,-14.96031,70.633363,40.6915
--18.72486,-19.59804,-18.33678,-15.42618,72.832914,41.8275
--18.15937,-18.91209,-17.8771,-14.67804,70.623954,40.0998
--18.335,-19.095,-18.05,-14.915,71.3165,41.85
--18.15744,-19.00416,-17.8752,-14.67648,70.616448,41.405
--18.34272,-19.19808,-18.0576,-14.92128,71.346528,41.3226
--17.9683,-18.8062,-17.689,-14.7098,69.89017,40.9052
--18.44164,-19.20212,-18.0614,-15.11454,71.361542,40.8366
--17.78495,-18.6143,-17.60065,-14.65185,69.177005,39.9285
--17.78495,-18.70645,-17.60065,-14.5597,69.177005,39.748
--17.6016,-18.5136,-17.4192,-14.5008,68.46384,40.3488
--18.914,-19.894,-18.718,-15.582,73.5686,41.111
--17.8771,-18.70645,-17.60065,-14.65185,69.16779,39.9285
--18.0614,-18.8993,-17.7821,-14.4305,69.88086,39.8525
--17.8771,-18.70645,-17.60065,-14.46755,69.177005,39.9285
--18.06528,-18.90336,-17.87904,-14.8992,69.905184,40.56
--18.06528,-18.90336,-17.87904,-15.17856,69.905184,40.4544
--18.06528,-18.99648,-17.87904,-14.71296,69.905184,40.5848
--18.818,-19.788,-18.624,-15.423,72.8179,41.95
--18.44164,-19.39224,-18.25152,-15.2096,71.352036,41.1894
--18.25152,-19.19232,-18.15744,-15.24096,70.625856,40.8268
--18.43776,-19.38816,-18.34272,-15.39648,71.346528,40.176
--18.06528,-18.99648,-17.97216,-14.99232,69.905184,40.0704
--18.25152,-19.2864,-18.15744,-15.14688,70.625856,40.0704
--18.43,-19.475,-18.335,-15.39,71.3165,39.577
--19.206,-20.295,-19.206,-16.137,74.3193,41.2533
--17.6928,-18.696,-17.6928,-14.7744,68.46384,39.653
--18.0614,-19.1786,-18.0614,-15.1753,69.89017,40.8366
--17.8771,-18.9829,-17.8771,-15.02045,69.177005,40.5848
--17.8771,-18.9829,-17.8771,-14.9283,69.177005,39.577
--18.818,-19.982,-18.915,-16.005,72.8179,41.67
--18.06528,-19.18272,-18.1584,-15.17856,69.988992,40.2065
--17.8771,-19.07505,-17.96925,-15.02045,69.177005,39.482
--18.25152,-19.47456,-18.3456,-15.33504,70.625856,40.621
--18.25152,-19.47456,-18.3456,-15.42912,70.719936,41.013
--18.25152,-19.47456,-18.3456,-15.42912,70.625856,40.7288
--18.82188,-20.08314,-19.01592,-15.71724,72.823212,41.1444
--18.44164,-19.77248,-18.63176,-15.49478,71.361542,40.7288
--18.818,-20.176,-19.012,-15.908,72.8179,40.0222
--18.63176,-19.97632,-18.82384,-15.8466,72.097228,40.621
--17.5085,-18.772,-17.689,-14.801,67.8319,39.577
--17.8771,-19.1672,-18.0614,-15.2969,69.177005,39.577
--18.43,-19.76,-18.715,-15.675,71.3165,39.273
--17.6928,-18.9696,-17.9664,-15.048,68.46384,39.5865
--18.62982,-19.97424,-18.91791,-15.84495,72.089721,40.9266
--18.44164,-19.77248,-18.72682,-15.87502,71.447096,40.2065
--19.206,-20.592,-19.503,-16.434,74.4084,41.45
--18.9189,-20.27718,-19.11294,-15.91128,72.920232,40.621
--18.7278,-19.59216,-17.47928,-16.3268,72.097228,40.621
--18.1584,-17.97216,-15.55104,-16.20288,69.895872,40.4878
--19.305,-18.117,-15.246,-16.731,74.4084,41.3226
--18.72,-16.8,-14.016,-16.224,72.0768,41.96
--18.1584,-15.73728,-12.85056,-15.17856,69.988992,40.0704
--18.72585,-17.86158,-14.69259,-14.59656,72.080118,40.4102
--18.525,-18.43,-15.485,-15.01,71.402,39.653
--18.72,-18.816,-16.032,-15.072,72.1536,41.74
--17.9712,-18.06336,-15.57504,-14.00832,69.267456,40.176
--19.5,-19.6,-17.1,-15.1,75.17,41.96
--17.9712,-17.9712,-15.85152,-13.91616,69.267456,40.176
--18.5328,-18.43776,-16.53696,-14.54112,71.432064,40.272
--19.5,-19.5,-17.5,-15,75.17,41.96
--17.59875,-17.59875,-15.884,-13.357,67.8319,40.242
--17.784,-17.784,-16.1424,-13.7712,68.54592,40.1375
--18.5328,-18.5328,-16.91712,-14.35104,71.441568,40.3584
--18.1545,-18.2476,-16.6649,-14.3374,69.97396,41.405
--19.11,-19.306,-17.64,-15.288,73.6666,41.405
--18.72,-19.008,-17.376,-14.784,72.1632,40.6656
--18.525,-18.81,-17.29,-14.63,71.4115,42.25
--18.72,-19.104,-17.568,-14.976,72.1536,40.7424
--18.1545,-18.5269,-17.0373,-14.3374,69.98327,41.8068
--18.5367,-18.91694,-17.49104,-14.82936,71.447096,41.3705
--17.96925,-18.33785,-17.04775,-14.46755,69.25994,40.698
--18.5367,-19.012,-17.5861,-14.82936,71.447096,42.7672
--18.1545,-18.62,-17.3166,-14.5236,69.97396,42.1988
--18.33975,-18.81,-17.4933,-14.8599,70.68798,40.983
--18.9189,-19.404,-18.14274,-15.23214,72.920232,42.6294
--18.1584,-18.71712,-17.41344,-14.52672,69.998304,41.4144
--18.3456,-18.91008,-17.68704,-14.86464,70.710528,41.3376
--19.5,-20.1,-18.8,-15.7,75.16,43.06
--17.784,-18.4224,-17.2368,-14.5008,68.54592,41.1264
--18.525,-19.19,-17.955,-15.01,71.402,40.907
--18.915,-19.594,-18.333,-15.326,72.9052,42.0495
--17.784,-18.4224,-17.328,-14.4096,68.54592,41.3376
--18.72,-19.392,-18.24,-15.168,72.1536,41.232
--18.7278,-19.49612,-18.2476,-15.17432,72.193268,43.1592
--19.5,-20.3,-19,-15.7,75.16,43.75
--19.5,-20.3,-19.1,-15.8,75.16,44.34
--19.5,-20.3,-19.1,-15.8,75.16,43.64
--19.11,-19.894,-18.718,-15.582,73.6568,43.75
--17.96925,-18.70645,-17.60065,-14.5597,69.25994,41.3535
--19.11195,-19.89603,-18.71991,-15.48558,73.664316,42.9165
--18.72,-19.488,-18.336,-15.264,72.1536,43.53
--18.915,-19.691,-18.527,-15.326,72.9052,43.45
--17.9712,-18.70848,-17.69472,-14.7456,69.276672,41.7888
--17.784,-18.5136,-17.5104,-14.592,68.55504,41.3535
--19.5,-20.4,-19.2,-16,75.17,43.75
--18.82384,-19.59216,-18.43968,-15.46244,72.193268,42.9828
--17.96925,-18.7986,-17.78495,-14.65185,69.25994,42.5442
--17.96925,-18.7986,-17.78495,-14.65185,69.25994,41.458
--18.525,-19.38,-18.335,-15.39,71.402,43.64
--18.5367,-19.39224,-18.34658,-15.39972,71.447096,43.267
--17.96925,-18.89075,-17.78495,-14.65185,69.269155,41.743
--18.9189,-19.79208,-18.72486,-15.5232,72.920232,42.581
--18.62784,-19.4832,-18.34272,-15.39648,71.432064,42.4608
--18.72,-19.68,-18.528,-15.552,72.1632,41.4144
--18.44164,-19.28845,-18.25346,-15.33667,70.727453,42.3308
--19.01592,-19.8891,-18.82188,-15.5232,72.920232,42.9828
--18.9189,-19.8891,-18.82188,-15.62022,72.920232,42.7086
--18.62,-19.475,-18.43,-15.39,71.402,43.94
--18.06336,-18.8928,-17.87904,-14.92992,69.276672,43.2384
--18.72,-19.68,-18.624,-15.264,72.1632,42
--18.816,-19.68,-18.624,-15.456,72.1536,42.384
--18.63176,-19.4873,-18.44164,-15.30466,71.447096,42.7672
--18.5367,-19.58236,-18.5367,-15.30466,71.456602,42.1988
--17.9712,-18.98496,-17.9712,-14.7456,69.267456,41.8944
--19.012,-19.982,-18.818,-15.811,72.9149,44.45
--19.012,-19.982,-18.915,-15.617,72.9052,43.75
--18.62784,-19.57824,-18.5328,-15.2064,71.432064,41.712
--19.208,-20.188,-19.11,-16.072,73.6666,42.9828
--18.43968,-19.38048,-18.3456,-15.0528,70.719936,41.7216
--18.2476,-19.1786,-18.1545,-15.0822,69.98327,41.5625
--18.0614,-19.07505,-17.96925,-14.83615,69.25994,41.458
--18.62,-19.665,-18.525,-15.2,71.4115,43.36
--19.012,-19.982,-18.915,-15.811,72.9149,43.24
--18.816,-19.872,-18.816,-15.456,72.1536,43.06
--18.62784,-19.67328,-18.62784,-15.2064,71.441568,41.712
--19.01592,-20.08314,-19.01592,-15.5232,72.929934,42.483
--18.0614,-19.07505,-18.0614,-14.83615,69.25994,41.0875
--18.63176,-19.67742,-18.63176,-15.30466,71.456602,42.2772
--18.816,-19.872,-18.816,-15.552,72.1536,41.52
--19.208,-20.188,-19.208,-15.974,73.6568,42.65
--18.62784,-19.57824,-18.62784,-15.39648,71.441568,44.3025
--18.62,-19.665,-18.62,-15.295,71.402,48.15
--18.62,-19.665,-18.62,-15.485,71.402,42.84
--18.63176,-19.67742,-18.63176,-15.49478,71.447096,42.2772
--17.8752,-18.8784,-17.8752,-14.8656,68.54592,42.788
--18.82384,-19.88028,-18.82384,-15.46244,72.193268,43.3454
--17.8752,-18.8784,-17.8752,-14.7744,68.54592,41.1825
--18.43968,-19.56864,-18.43968,-15.42912,70.710528,42.7672
--19.01592,-20.08314,-19.01592,-15.71724,72.920232,42.6294
--18.43968,-19.47456,-18.53376,-15.24096,70.710528,42.384
--19.404,-20.592,-19.404,-16.137,74.4084,44.1936
--18.62784,-19.67328,-18.72288,-15.49152,71.432064,43.4214
--18.0614,-19.1672,-18.15355,-15.1126,69.269155,42.2241
--18.0614,-19.1672,-18.15355,-14.9283,69.25994,42.6218
--19.6,-20.8,-19.6,-16.3,75.17,44.45
--19.503,-20.592,-19.503,-16.038,74.4183,43.86
--19.503,-20.592,-19.503,-16.038,74.4084,43.0254
--18.72682,-19.77248,-18.72682,-15.39972,71.456602,42.581
--19.503,-20.592,-19.503,-16.137,74.4183,43.0947
--17.77925,-18.772,-17.77925,-14.801,67.840925,41.458
--19.11294,-20.18016,-19.11294,-15.81426,72.920232,42.483
--18.52785,-19.5624,-18.52785,-15.33015,70.68798,40.8025
--18.44164,-19.57072,-18.53573,-15.33667,70.812134,41.8458
--18.3407,-19.3648,-18.3407,-15.1753,70.06706,41.0875
--18.72288,-19.76832,-18.72288,-15.49152,71.527104,42.9165
--19.7,-20.8,-19.7,-16.2,75.26,43.14
--18.53573,-19.57072,-18.53573,-15.43076,70.812134,41.5645
--19.109,-20.176,-19.109,-15.908,73.0022,42.84
--19.109,-20.176,-19.206,-15.714,73.0022,41.7682
--18.52785,-19.5624,-18.6219,-15.51825,70.78203,40.907
--17.9664,-18.9696,-18.0576,-14.8656,68.63712,41.2775
--18.52785,-19.5624,-18.6219,-15.4242,70.791435,42.9165
--18.15355,-19.1672,-18.2457,-15.1126,69.35209,42.0495
--17.77925,-18.772,-17.77925,-14.89125,67.92215,40.907
--19.306,-20.482,-19.404,-16.072,73.7548,43.24
--18.72682,-19.77248,-18.82188,-15.6849,71.551662,42.0592
--18.15355,-19.25935,-18.2457,-15.02045,69.35209,40.907
--18.72682,-19.86754,-18.82188,-15.49478,71.551662,41.5548
--18.91791,-20.07027,-19.01394,-15.65289,72.272178,41.5548
--18.3407,-19.3648,-18.4338,-15.2684,70.06706,40.983
--17.77925,-18.772,-17.8695,-14.89125,67.92215,41.0875
--19.109,-20.176,-19.109,-15.908,73.0022,43.25
--18.715,-19.855,-18.81,-15.675,71.497,42.95
--18.715,-19.855,-18.81,-15.58,71.497,42.76
--18.72682,-19.77248,-18.72682,-15.58984,71.551662,41.9146
--18.91791,-19.97424,-19.01394,-15.74892,72.272178,42.6294
--18.715,-19.855,-18.81,-15.58,71.497,43.06
--18.912,-20.064,-19.008,-15.84,72.2496,41.712
--19.11294,-20.27718,-19.20996,-15.81426,73.017252,42.6294
--19.306,-20.482,-19.404,-16.17,73.7548,43.14
--18.62982,-19.66481,-18.62982,-15.33667,70.812134,41.5548
--19.404,-20.482,-19.404,-16.17,73.7548,42.95
--18.2457,-19.25935,-18.2457,-14.83615,69.35209,40.622
--18.62784,-19.09824,-16.9344,-16.08768,70.814016,41.1264
--18.81792,-18.15264,-15.6816,-16.44192,71.527104,40.8384
--18.62982,-17.03029,-14.48986,-16.46575,70.812134,41.4772
--18.81792,-16.53696,-13.7808,-17.01216,71.527104,40.944
--18.81792,-15.96672,-13.11552,-16.44192,71.527104,42.3324
--19.40598,-18.32787,-14.89752,-14.99553,73.762326,42.8175
--19.008,-18.624,-15.552,-14.976,72.2496,41.1264
--18.4338,-18.2476,-15.4546,-14.1512,70.06706,40.907
--18.62784,-18.43968,-15.89952,-14.30016,70.804608,41.136
--17.8695,-17.59875,-15.43275,-13.5375,67.92215,40.7075
--19.20996,-18.9189,-16.68744,-14.45598,73.017252,42.3324
--19.008,-18.624,-16.608,-14.4,72.2496,41.0496
--18.81792,-18.43776,-16.53696,-14.16096,71.527104,40.9536
--18.81792,-18.43776,-16.632,-14.256,71.536608,40.848
--19.01592,-18.63176,-16.90304,-14.406,72.279704,41.8068
--18.81,-18.525,-16.815,-14.535,71.5065,42.44
--18.4338,-18.2476,-16.5718,-14.2443,70.06706,40.318
--18.6219,-18.52785,-16.83495,-14.4837,70.78203,42.3324
--18.43776,-18.34464,-16.85472,-14.24736,70.082112,41.5548
--19.602,-19.602,-17.919,-15.147,74.5074,42.55
--17.8695,-17.8695,-16.4255,-13.80825,67.92215,40.5175
--19.20996,-19.11294,-17.75466,-15.13512,73.017252,42.5205
--18.2457,-18.2457,-16.86345,-14.28325,69.35209,41.5548
--19.008,-19.008,-17.664,-14.976,72.2496,41.1264
--18.43776,-18.53088,-17.13408,-14.4336,70.082112,41.3705
--18.2457,-18.33785,-17.04775,-14.46755,69.35209,40.318
--18.24768,-18.432,-17.0496,-14.2848,69.368832,41.0496
--18.24768,-18.33984,-17.14176,-14.37696,69.359616,40.944
--18.43776,-18.53088,-17.32032,-14.4336,70.082112,41.1264
--19.206,-19.303,-18.042,-14.938,73.0022,42.95
--19.206,-19.303,-18.139,-15.132,73.0022,41.1668
--18.62982,-18.818,-17.59483,-14.77213,70.812134,41.3802
--18.62784,-18.816,-17.68704,-14.77056,70.804608,40.944
--18.81,-19,-17.86,-14.63,71.497,42.54
--19.8,-20,-18.8,-15.6,75.26,42.66
--19.404,-19.6,-18.424,-15.19,73.7646,41.5128
--19.206,-19.4,-18.236,-15.132,73.0022,41.3705
--18.6219,-18.81,-17.6814,-14.57775,70.78203,40.4225
--19.01394,-19.30203,-18.14967,-15.17274,72.272178,42.2334
--19.008,-19.296,-18.144,-15.072,72.2496,42.95
--19.404,-19.698,-18.522,-15.288,73.7548,42.65
--19.40598,-19.70001,-18.52389,-15.38757,73.762326,42.4116
--18.4338,-18.7131,-17.5959,-14.3374,70.06706,40.5175
--19.01592,-19.30404,-18.2476,-15.17432,72.279704,41.797
--19.008,-19.296,-18.24,-15.072,72.2592,40.848
--18.81792,-19.10304,-18.0576,-15.01632,71.527104,40.848
--19.01394,-19.39806,-18.2457,-14.98068,72.272178,41.4772
--19.01394,-19.39806,-18.2457,-14.88465,72.272178,41.1668
--17.8695,-18.2305,-17.1475,-14.2595,67.92215,40.5175
--18.62784,-18.91008,-17.8752,-14.67648,70.804608,41.0496
--19.602,-19.899,-18.81,-15.543,74.5074,42.4116
--19.008,-19.392,-18.24,-15.264,72.2496,40.944
--18.62784,-19.00416,-17.8752,-14.86464,70.804608,42.091
--18.4338,-18.8062,-17.7821,-14.8029,70.06706,40.907
--18.81792,-19.29312,-18.15264,-15.11136,71.527104,40.944
--19.01394,-19.49409,-18.34173,-15.26877,72.272178,41.5548
--18.0576,-18.5136,-17.4192,-14.5008,68.63712,41.5625
--18.81792,-19.29312,-18.15264,-14.92128,71.527104,41.1264
--17.8695,-18.32075,-17.23775,-14.34975,67.92215,40.8025
--18.4338,-18.8993,-17.8752,-14.7098,70.06706,42.1988
--19.01394,-19.49409,-18.43776,-15.07671,72.272178,42.7086
--18.62784,-19.09824,-18.06336,-14.95872,70.804608,41.9832
--19.206,-19.691,-18.624,-15.229,73.0119,41.9525
--18.6219,-19.09215,-18.0576,-14.76585,70.78203,42.1245
--19.8,-20.3,-19.2,-15.8,75.26,42.55
--18.2457,-18.70645,-17.6928,-14.65185,69.35209,41.5548
--19.008,-19.488,-18.432,-15.36,72.2496,41.232
--18.81,-19.38,-18.24,-15.01,71.497,40.622
--18.43776,-18.99648,-17.87904,-14.80608,70.082112,41.6615
--18.81792,-19.29312,-18.34272,-15.2064,71.527104,41.232
--18.81792,-19.38816,-18.24768,-15.11136,71.527104,41.0496
--18.43776,-18.99648,-17.97216,-14.8992,70.082112,41.1668
--19.404,-19.992,-18.914,-15.582,73.7548,42.76
--18.81792,-19.38816,-18.24768,-15.11136,71.527104,40.944
--19.602,-20.196,-19.008,-15.741,74.5074,42.0156
--18.2457,-18.7986,-17.78495,-14.744,69.35209,40.622
--19.40598,-19.89603,-18.81792,-15.48558,73.762326,42.2235
--19.20996,-19.79208,-18.72486,-15.5232,72.920232,42.4116
--18.43776,-18.99648,-17.97216,-14.8992,70.082112,41.1264
--17.8695,-18.411,-17.41825,-14.34975,67.840925,40.1375
--18.0576,-18.6048,-17.6016,-14.6832,68.55504,40.1375
--19.20996,-19.79208,-18.72486,-15.32916,72.929934,41.503
--18.62982,-19.19436,-18.15937,-14.96031,70.727453,42.1465
--19.008,-19.584,-18.528,-15.168,72.1632,42.35
--19.01394,-19.59012,-18.53379,-15.46083,72.176148,41.6097
--19.20996,-19.79208,-18.72486,-15.42618,72.920232,43.7085
--18.62784,-19.2864,-18.15744,-14.95872,70.710528,43.659
--18.2457,-18.7986,-17.78495,-14.744,69.269155,42.0495
--19.20996,-19.8891,-18.72486,-15.42618,72.929934,42.3324
--18.43776,-19.0896,-17.97216,-14.99232,69.998304,40.7424
--18.62784,-19.2864,-18.25152,-14.95872,70.710528,41.7888
--18.81,-19.475,-18.43,-15.39,71.402,42.84
--18.62982,-19.28845,-18.25346,-14.96031,70.718044,41.4772
--18.2457,-18.89075,-17.8771,-14.65185,69.25994,41.4772
--18.4338,-19.0855,-18.0614,-14.896,69.97396,41.9048
--18.2457,-18.89075,-17.8771,-14.9283,69.25994,40.413
--19.602,-20.295,-19.206,-15.84,74.4084,42.7086
--19.01394,-19.68615,-18.62982,-15.3648,72.185751,41.9525
--18.2457,-18.89075,-17.8771,-14.83615,69.25994,41.6615
--18.4338,-19.0855,-18.0614,-14.896,69.98327,42.3752
--19.404,-20.09,-19.012,-15.68,73.6568,43.53
--19.01394,-19.68615,-18.62982,-15.3648,72.176148,43.5996
--19.008,-19.68,-18.624,-15.264,72.0576,40.3488
--19.404,-20.09,-19.012,-15.582,73.5686,41.9048
--18.62784,-19.2864,-18.25152,-15.0528,70.625856,42.5664
--19.602,-20.295,-19.206,-15.84,74.3193,43.86
--19.20996,-19.8891,-18.82188,-15.62022,72.842616,43.5708
--18.6219,-19.28025,-18.2457,-15.048,70.603335,44.7975
--18.62784,-19.2864,-18.25152,-15.14688,70.625856,41.232
--18.43776,-19.18272,-18.1584,-14.99232,69.812064,44.4648
--19.20996,-19.98612,-18.9189,-15.62022,72.832914,46.1874
--18.62784,-19.2864,-18.3456,-15.14688,70.531776,43.7472
--18.81,-19.57,-18.525,-15.2,71.2215,44.23
--19.602,-20.394,-19.305,-16.137,74.2203,43.2036
--17.8695,-18.5915,-17.59875,-14.34975,67.660425,42.2275
--18.4338,-19.1786,-18.1545,-14.8029,69.80638,42.693
--19.602,-20.295,-19.305,-15.84,74.2203,43.2036
--19.01394,-19.68615,-18.72585,-15.46083,71.993691,42.8255
--17.8695,-18.5915,-17.59875,-14.44,67.660425,42.0185
--19.20996,-19.98612,-18.9189,-15.81426,72.735894,43.5006
--19.008,-19.776,-18.72,-15.552,71.9712,41.7216
--19.20996,-19.98612,-18.9189,-15.71724,72.735894,43.6095
--18.81792,-19.57824,-18.5328,-15.49152,71.251488,43.0947
--18.43776,-19.18272,-18.1584,-14.99232,69.812064,42.384
--18.81,-19.475,-18.43,-15.01,71.2215,44.05
--18.6219,-19.3743,-18.33975,-15.048,70.509285,42.2235
--18.4338,-19.1786,-18.1545,-14.9891,69.79707,44.6292
--18.0576,-18.696,-17.784,-14.6832,68.37264,43.168
--18.0576,-18.7872,-17.784,-14.7744,68.37264,43.1328
--19.20996,-19.98612,-18.9189,-15.71724,72.735894,43.5996
--18.81,-19.57,-18.525,-15.39,71.2215,41.5625
--18.4338,-19.1786,-18.1545,-14.896,69.70397,43.6688
--18.62784,-19.38048,-18.3456,-15.14688,70.531776,42.581
--18.2457,-18.9829,-17.96925,-14.744,69.084855,41.9525
--19.20996,-19.98612,-18.9189,-15.5232,72.735894,42.9165
--19.404,-20.188,-19.11,-15.68,73.4706,43.6688
--19.01394,-19.78218,-18.72585,-15.55686,71.897661,41.5548
--18.4338,-19.1786,-18.1545,-15.0822,69.70397,41.1825
--19.01394,-19.78218,-18.72585,-15.55686,71.897661,42.7285
--18.6219,-19.3743,-18.33975,-15.14205,70.415235,43.548
--19.8,-20.6,-19.5,-16,74.87,45.84
--18.62784,-19.38048,-18.3456,-15.14688,70.447104,44.639
--19.206,-19.982,-18.915,-15.52,72.5366,46.7055
--18.81,-19.57,-18.525,-15.295,71.1265,46.84
--18.2457,-18.9829,-17.96925,-14.83615,68.900555,46.968
--18.2457,-18.9829,-17.96925,-14.83615,68.90977,49.6931
--18.6219,-19.3743,-18.33975,-14.95395,70.33059,53.1927
--19.206,-19.982,-18.915,-15.52,72.5366,52.54
--19.404,-20.188,-19.11,-15.778,73.2844,53.5472
--18.2457,-18.9829,-17.96925,-14.83615,68.900555,55.043
--18.43776,-19.18272,-18.1584,-14.8992,69.635136,57.6568
--19.008,-19.776,-18.72,-15.456,71.7792,52.3488
--18.4338,-19.1786,-18.1545,-15.0822,69.62018,57.209
--19.20996,-19.98612,-18.9189,-15.5232,72.454536,56.2716
--18.62982,-19.38254,-18.34755,-15.24258,70.360502,60.2661
--19.01394,-19.78218,-18.72585,-15.46083,71.811234,66.4488
--18.53088,-19.18272,-18.1584,-15.08544,69.635136,70.2474
--18.2457,-18.9829,-17.96925,-14.744,69.00192,74.746
--18.4338,-19.1786,-18.1545,-15.0822,69.71328,80.6344
--18.1488,-18.7872,-17.784,-14.7744,68.29056,80.4288
--18.905,-19.57,-18.525,-15.295,71.2215,87.38
--18.43776,-19.18272,-18.1584,-14.99232,69.812064,84.384
--18.72192,-19.2864,-18.3456,-15.0528,70.531776,85.6224
--18.72192,-19.2864,-18.3456,-15.24096,70.625856,88.6998
--18.53088,-19.18272,-18.1584,-14.99232,70.082112,89.1624
--18.33984,-18.98496,-17.9712,-14.83776,69.543936,88.7328
--18.72391,-19.28845,-18.34755,-15.14849,71.179085,90.4234
--19.404,-20.188,-19.11,-15.876,74.1468,91.5614
--18.905,-19.57,-18.525,-15.2,72.048,93.74
--18.72391,-19.28845,-18.34755,-15.14849,71.348447,91.0248
--19.30698,-19.98612,-18.9189,-15.62022,73.812816,92.2572
--17.95975,-18.5915,-17.59875,-14.6205,68.653175,89.433
--18.72192,-19.38048,-18.3456,-15.0528,71.576064,90.2688
--19.502,-20.188,-19.11,-15.778,74.7446,92.1494
--18.72391,-19.38254,-18.34755,-15.14849,71.677762,90.0548
--19.104,-19.776,-18.72,-15.264,73.4112,83.8176
--19.9,-20.6,-19.5,-16,76.76,85.18
--19.9,-20.6,-19.5,-16.1,76.95,82.39
--19.30698,-19.8891,-18.9189,-15.5232,74.94795,79.3881
--18.905,-19.475,-18.43,-15.2,73.5205,77.59
--19.303,-19.885,-18.915,-15.52,75.2623,74.1274
--19.30698,-19.98612,-18.9189,-15.42618,75.355434,74.1609
--18.72192,-19.2864,-18.3456,-14.95872,73.260096,72.9218
--19.104,-19.68,-18.624,-15.264,74.8512,73.31
--19.502,-20.09,-19.11,-15.68,76.4106,71.9516
--19.10997,-19.68615,-18.72585,-15.55686,74.788164,70.7227
--18.53088,-19.0896,-18.06528,-14.99232,72.512544,70.1952
--19.10997,-19.59012,-18.62982,-15.3648,74.788164,70.9264
--18.71595,-19.1862,-18.2457,-15.048,73.236735,73.1907
--19.303,-19.885,-18.818,-15.423,75.4466,73.31
--17.95975,-18.50125,-17.5085,-14.34975,70.19645,69.1885
--18.91296,-19.4832,-18.43776,-15.2064,73.922112,71.0919
--19.10997,-19.59012,-18.62982,-15.46083,74.692134,70.6167
--19.701,-20.196,-19.107,-15.741,77.0022,69.8247
--19.50399,-19.99404,-19.01394,-15.58359,76.134168,68.6268
--18.91296,-19.38816,-18.34272,-15.11136,73.827072,67.2192
--19.50399,-19.99404,-18.91593,-15.6816,76.134168,68.9139
--18.72192,-19.19232,-18.15744,-14.95872,73.175424,68.7274
--19.701,-20.196,-19.107,-15.642,76.9032,69.72
--19.502,-19.992,-18.914,-15.582,76.1264,69.94
--18.53088,-18.99648,-17.97216,-14.71296,72.335616,67.3471
--18.53088,-18.99648,-17.97216,-14.61984,72.335616,66.9591
--19.303,-19.788,-18.721,-15.326,75.3496,69.72
--19.10997,-19.59012,-18.53379,-15.17274,74.605707,71.0127
--18.72192,-19.09824,-18.15744,-14.86464,73.081344,70.4816
--19.701,-20.097,-19.008,-15.741,76.9131,72.1017
--18.91296,-19.29312,-18.24768,-15.11136,73.827072,73.557
--18.91296,-19.29312,-18.24768,-15.11136,73.827072,72.9729
--18.33785,-18.70645,-17.6928,-14.5597,71.591335,70.5945
--19.303,-19.691,-18.624,-15.423,75.3496,75.32
--19.30698,-19.69506,-18.62784,-15.23214,75.365136,74.4996
--19.502,-19.894,-18.816,-15.484,76.0382,72.5298
--18.91694,-19.29718,-18.25152,-14.92442,73.747548,75.754
--17.95975,-18.32075,-17.328,-14.16925,70.01595,77.33
--18.53088,-18.90336,-17.87904,-14.61984,72.251808,80.8224
--18.33785,-18.70645,-17.6928,-14.65185,71.48997,83.0223
--18.1488,-18.5136,-17.5104,-14.2272,70.84416,84.8832
--19.303,-19.691,-18.624,-15.326,75.4466,87.9111
--19.11196,-19.40008,-18.34364,-15.07828,74.613476,86.044
--19.502,-19.894,-18.816,-15.484,76.3224,83.3
--18.1488,-18.5136,-17.5104,-14.3184,71.11776,80.2656
--18.1488,-18.5136,-17.4192,-14.2272,71.20896,76.8096
--18.1488,-18.4224,-17.4192,-14.3184,71.38224,74.9645
--19.10997,-19.39806,-18.34173,-14.98068,75.249108,74.5154
--17.95975,-18.2305,-17.23775,-14.079,70.81015,72.979
--19.50399,-19.79802,-18.71991,-15.19155,76.898646,73.5669
--19.50399,-19.70001,-18.6219,-15.28956,76.898646,73.8738
--19.104,-19.296,-18.24,-15.072,75.3216,74.71
--19.50399,-19.70001,-18.6219,-15.28956,76.898646,74.2797
--18.905,-19.095,-18.05,-15.01,74.537,71.2785
--19.701,-19.899,-18.81,-15.345,77.6754,73.8837
--19.502,-19.698,-18.62,-15.19,76.8908,72.2456
--18.53088,-18.71712,-17.6928,-14.34048,73.061952,70.2571
--18.91296,-19.10304,-18.0576,-14.82624,74.568384,71.0919
--18.1488,-18.3312,-17.2368,-14.0448,71.55552,67.3835
--19.104,-19.296,-18.24,-14.88,75.2256,70.72
--19.30698,-19.50102,-18.4338,-14.94108,76.034574,68.5412
--19.104,-19.296,-18.144,-14.784,75.2352,66.096
--18.905,-19,-17.955,-14.82,74.4515,69.94
--18.53088,-18.624,-17.59968,-14.52672,72.978144,67.5314
--18.905,-19,-17.955,-14.915,74.4515,69.73
--18.91694,-19.012,-17.96634,-14.82936,74.489016,68.3354
--19.11196,-19.208,-18.15156,-14.98224,75.266548,68.1492
--18.5269,-18.62,-17.5959,-14.4305,72.95316,68.0414
--19.701,-19.8,-18.711,-15.246,77.5764,68.7357
--19.30698,-19.404,-18.23976,-14.84406,76.024872,67.6494
--19.206,-19.10997,-18.05364,-14.69259,75.258711,67.9536
--19.10997,-19.10997,-18.05364,-14.59656,75.258711,67.7556
--18.33785,-18.33785,-17.3242,-14.1911,72.217955,64.8185
--19.9,-19.9,-18.8,-15.4,78.37,68.04
--18.905,-18.905,-17.86,-14.725,74.442,64.2485
--19.30698,-19.404,-18.23976,-14.84406,76.034574,66.7557
--18.91296,-18.91296,-17.86752,-14.63616,74.473344,66.6666
--18.91694,-18.91694,-17.87128,-14.44912,74.489016,65.1161
--18.5269,-18.5269,-17.4097,-14.1512,72.95316,65.7874
--19.104,-19.008,-17.952,-14.496,75.2352,64.2624
--18.905,-18.81,-17.765,-14.535,74.537,66.64
--18.33984,-18.24768,-17.23392,-13.91616,72.216576,63.696
--19.502,-19.404,-18.326,-14.896,76.7928,64.5134
--19.50399,-19.40598,-18.32787,-14.89752,76.898646,64.9737
--19.104,-19.008,-17.952,-14.688,75.4176,62.7168
--18.53088,-18.43776,-17.41344,-14.24736,73.23888,63.1858
--19.10997,-19.01394,-17.95761,-14.59656,75.662037,64.0926
--18.905,-18.81,-17.67,-14.44,74.936,61.218
--18.5269,-18.3407,-17.3166,-14.0581,73.53038,62.7592
--19.104,-18.912,-17.856,-14.592,75.9168,63.83
--18.72192,-18.53376,-17.49888,-14.20608,74.389056,62.5534
--18.905,-18.62,-17.67,-14.155,75.1165,63.83
--18.91694,-18.63176,-17.5861,-14.35406,75.163942,61.9151
--18.91694,-18.72682,-17.68116,-14.35406,75.173448,61.8375
--18.91694,-18.82188,-17.68116,-14.259,75.173448,62.3672
--18.71595,-18.52785,-17.4933,-14.01345,74.365335,63.0036
--19.502,-19.306,-18.13,-14.7,77.4984,63.35
--19.303,-19.012,-17.945,-14.55,76.6979,62.43
--19.502,-19.208,-18.13,-14.7,77.4984,61.2892
--19.10997,-18.82188,-17.76555,-14.50053,75.940524,62.1027
--18.72192,-18.43968,-17.4048,-14.112,74.398464,61.1814
--18.72192,-18.53376,-17.4048,-14.30016,74.304384,59.9328
--18.33785,-18.0614,-17.04775,-13.8225,72.78007,62.1285
--19.303,-19.012,-17.945,-14.55,76.5233,64.52
--18.91694,-18.63176,-17.49104,-14.259,74.983328,61.8375
--18.53088,-18.25152,-17.13408,-13.78176,73.462368,61.9488
--18.91694,-18.5367,-17.49104,-14.259,74.897774,69.1901
--18.53088,-18.06528,-17.13408,-13.968,73.453056,70.2571
--17.8695,-17.59875,-16.606,-13.62775,71.107975,71.9435
--19.8,-19.6,-18.4,-15,78.78,75.03
--19.303,-19.012,-17.848,-14.55,76.4166,75.3787
--19.20996,-18.9189,-17.85168,-14.65002,76.315932,73.7156
--18.4338,-18.1545,-17.1304,-13.8719,73.22315,75.8618
--18.6219,-18.33975,-17.3052,-14.20155,73.97973,73.8245
--18.0576,-17.6928,-16.6896,-13.4064,71.7288,74.9856
--19.008,-18.528,-17.568,-14.208,75.4176,74.88
--18.62784,-18.25152,-17.21664,-14.112,73.909248,76.2538
--18.62784,-18.3456,-17.21664,-13.92384,73.909248,70.7756
--19.008,-18.72,-17.568,-14.4,75.4176,72.3168
--18.6219,-18.2457,-17.21115,-13.9194,73.876275,72.0195
--18.82188,-18.44164,-17.39598,-14.16394,74.679136,72.9634
--18.4338,-17.9683,-17.0373,-13.6857,73.13936,72.6085
--19.602,-19.107,-18.018,-14.652,77.7843,76.91
--18.4338,-17.9683,-16.9442,-13.8719,73.13936,74.9645
--18.81792,-18.43776,-17.29728,-13.97088,74.663424,78.2496
--18.82188,-18.44164,-17.30092,-14.06888,74.679136,81.144
--19.404,-19.012,-17.836,-14.406,76.9888,84.6
--18.6219,-18.2457,-17.1171,-13.82535,73.88568,78.6695
--18.4338,-17.9683,-16.9442,-13.5926,73.22315,80.2816
--18.81,-18.24,-17.195,-13.775,74.8505,80.6
--19.01592,-18.43968,-17.38324,-14.30996,75.765956,78.5176
--19.20996,-18.82188,-17.65764,-14.553,76.539078,76.0578
--18.81792,-18.5328,-17.29728,-14.06592,74.967552,74.6976
--18.43776,-18.06528,-16.94784,-13.22304,73.462368,72.6048
--18.72682,-18.34658,-17.20586,-13.59358,74.983328,71.7994
--18.0576,-17.5104,-16.5072,-13.3152,71.93856,70.034
--18.52785,-17.96355,-17.02305,-13.44915,74.28069,69.2645
--18.3407,-17.689,-16.758,-13.3133,73.53038,70.4914
--18.53376,-17.78112,-16.9344,-13.54752,74.304384,68.4432
--18.72288,-17.96256,-17.01216,-13.68576,75.062592,67.8447
--18.53573,-17.78301,-16.84211,-13.64305,74.312282,65.7951
--18.3407,-17.689,-16.6649,-13.4064,73.53038,64.353
--18.912,-18.336,-17.184,-14.112,75.8208,64.7328
--17.77925,-17.23775,-16.245,-13.1765,71.27945,64.353
--18.91791,-18.43776,-17.18937,-14.02038,75.844494,65.7078
--19.7,-19.1,-17.9,-14.3,78.98,66.72
--18.53573,-17.8771,-16.84211,-13.73714,74.312282,63.7581
--18.53376,-17.8752,-16.84032,-13.73568,74.304384,66.003
--18.715,-18.145,-17.005,-13.87,75.031,67.63
--19.11294,-18.62784,-17.4636,-14.26194,76.626396,66.787
--19.11294,-18.62784,-17.4636,-14.0679,76.626396,68.2407
--18.52785,-18.0576,-16.929,-13.7313,74.37474,68.1615
--18.53376,-17.96928,-16.84032,-13.54752,74.398464,67.3652
--18.34464,-17.6928,-16.66848,-13.31616,73.639296,66.7845
--18.62,-18.05,-17.005,-13.775,75.126,64.5335
--18.0614,-17.60065,-16.49485,-13.73035,72.87222,64.0585
--18.91988,-18.43968,-17.19116,-14.21392,75.948432,66.4636
--17.9664,-17.5104,-16.416,-13.4064,72.12096,65.0304
--19.012,-18.527,-17.46,-14.065,76.7076,64.6408
--18.25152,-17.78592,-16.66848,-13.59552,73.639296,65.0385
--18.2476,-17.689,-16.6649,-13.4064,73.61417,65.023
--18.4338,-17.8695,-16.83495,-13.7313,74.37474,62.5385
--18.44164,-17.8771,-16.84211,-13.73714,74.406372,63.7678
--18.25152,-17.78592,-16.66848,-13.59552,73.639296,63.4768
--18.25152,-17.87904,-16.66848,-13.59552,73.732416,62.8224
--18.2476,-17.8752,-16.6649,-13.6857,73.71658,64.1312
--18.4338,-17.96355,-16.83495,-13.63725,74.37474,61.9875
--19.208,-18.62,-17.542,-14.112,77.5964,63.6314
--19.208,-18.62,-17.542,-14.21,77.5866,63.3374
--19.01592,-18.4338,-17.36658,-14.35896,76.907754,63.8847
--18.2476,-17.7821,-16.6649,-13.7788,73.89347,60.8475
--18.4338,-18.0576,-16.929,-13.82535,74.741535,63.3105
--18.3456,-18.06336,-16.9344,-13.73568,74.755968,62.6612
--18.5367,-18.15646,-17.01574,-13.68864,75.534676,62.3672
--19.11,-18.62,-17.542,-13.916,77.8806,62.2692
--19.11195,-18.6219,-17.54379,-14.11344,77.888547,63.0036
--18.72,-18.24,-17.184,-13.92,76.2912,61.488
--18.3456,-18.06336,-16.84032,-13.82976,74.765376,63.7728
--19.5,-19.2,-17.9,-14.7,79.47,67.82
--19.5,-19.1,-17.9,-14.5,79.37,69.44
--18.1584,-17.6928,-16.66848,-13.59552,73.909344,64.7281
--18.33975,-17.8695,-16.83495,-13.5432,74.647485,61.6275
--19.11,-18.62,-17.542,-14.21,77.7826,70.65
--18.72585,-18.2457,-17.18937,-14.02038,76.122981,63.5085
--18.72,-18.336,-17.184,-14.112,76.0992,61.74
--18.1584,-17.78592,-16.66848,-13.59552,73.816224,65.3295
--19.11,-18.718,-17.542,-14.21,77.6846,70.3836
--18.525,-18.05,-17.005,-13.965,75.316,72.884
--18.72585,-18.14967,-17.09334,-13.73229,76.036554,66.8621
--18.5328,-17.96256,-16.91712,-13.68576,75.252672,63.1104
--17.5085,-17.1475,-16.15475,-13.26675,71.450925,65.3315
--18.82188,-18.53082,-17.36658,-14.0679,76.810734,64.3174
--18.525,-18.24,-17.005,-13.775,75.2115,59.9735
--17.5085,-17.1475,-16.0645,-12.996,71.450925,59.8025
--18.62982,-18.2457,-17.09334,-13.73229,76.026951,60.1691
--19.012,-18.522,-17.444,-14.014,77.5866,60.8972
--18.82188,-18.4338,-17.26956,-14.0679,76.810734,61.1226
--18.82188,-18.4338,-17.36658,-14.26194,76.810734,60.8256
--18.624,-18.24,-17.088,-13.824,76.0032,59.3664
--18.0614,-17.7821,-16.5718,-13.2202,73.71658,60.5052
--19.012,-18.62,-17.444,-13.916,77.5866,62.04
--18.62982,-18.05364,-17.09334,-13.54023,76.036554,59.7811
--18.63176,-18.05552,-16.99908,-13.73372,76.044472,62.083
--18.44164,-17.87128,-16.92068,-13.59358,75.259002,65.4934
--18.25346,-17.8771,-16.74802,-13.54896,74.500462,64.6505
--18.63176,-18.2476,-17.09512,-13.63768,76.034868,68.3354
--18.624,-18.144,-17.088,-13.728,76.0128,72.63
--18.53379,-18.05364,-16.99731,-13.54023,76.036554,66.2898
--18.914,-18.326,-17.248,-13.818,77.5964,72.1378
--18.721,-18.139,-17.072,-13.677,76.8046,71.3241
--18.15744,-17.59296,-16.65216,-13.54752,74.483136,71.2608
--18.72486,-18.23976,-17.17254,-13.87386,76.907754,72.9828
--18.721,-18.333,-17.169,-13.774,76.7949,71.1204
--18.15744,-17.68704,-16.65216,-13.35936,74.483136,69.6192
--18.15744,-17.59296,-16.55808,-13.1712,74.483136,69.2544
--17.78495,-17.23205,-16.2184,-12.80885,72.96437,70.1601
--18.914,-18.326,-17.248,-13.916,77.5964,70.5894
--18.528,-17.952,-16.896,-13.824,76.0032,67.7088
--19.107,-18.612,-17.424,-14.157,78.3783,68.3496
--18.34272,-17.86752,-16.72704,-13.40064,75.347712,65.7888
--19.107,-18.513,-17.424,-13.761,78.4773,67.8447
--18.914,-18.228,-17.15,-13.818,77.5964,67.767
--17.6016,-16.9632,-15.96,-12.8592,72.21216,66.5285
--17.6016,-17.0544,-15.96,-12.768,72.20304,65.968
--18.15937,-17.59483,-16.46575,-13.36078,74.500462,66.9688
--19.107,-18.513,-17.325,-13.86,78.2892,68.4585
--17.41825,-16.7865,-15.79375,-12.54475,71.3697,65.303
--18.816,-18.228,-17.15,-13.818,77.4004,69.04
--18.816,-18.228,-17.052,-13.72,77.4004,68.85
--19.008,-18.414,-17.325,-13.86,78.1902,67.3596
--18.0576,-17.58735,-16.45875,-13.26105,74.28069,64.8185
--18.06336,-17.59296,-16.464,-13.26528,74.304384,64.8288
--18.25152,-17.68116,-16.6355,-13.21334,75.078388,65.8952
--17.8752,-17.2235,-16.1994,-13.034,73.53038,65.7874
--18.24,-17.575,-16.53,-13.205,75.031,63.6975
--18.43776,-17.86158,-16.70922,-13.63626,75.844494,64.7281
--18.624,-18.139,-16.878,-13.677,76.4166,65.2228
--17.5104,-17.0544,-15.8688,-12.6768,71.93856,64.2624
--18.0576,-17.4933,-16.3647,-12.9789,74.28069,65.9835
--18.06336,-17.4048,-16.36992,-13.07712,74.304384,65.1014
--18.816,-18.13,-17.052,-13.72,77.4984,66.24
--18.816,-18.228,-17.052,-13.72,77.5866,65.44
--18.624,-18.042,-16.878,-13.677,76.8919,65.26
--18.527,-18.042,-16.878,-13.677,76.9889,65.25
--18.909,-18.315,-17.226,-13.563,78.5763,65.14
--17.7821,-17.1304,-16.1063,-12.9409,73.88416,63.7392
--17.96355,-17.3052,-16.27065,-13.07295,74.647485,61.6835
--17.60256,-17.0496,-15.94368,-12.81024,73.147392,62.1504
--18.15264,-17.67744,-16.44192,-13.59072,75.423744,63.7956
--18.53082,-18.04572,-16.78446,-13.67982,76.995072,62.867
--17.7821,-17.2235,-16.1063,-12.8478,73.89347,62.6612
--17.96355,-17.21115,-15.51825,-12.32055,74.647485,60.743
--18.15646,-16.44538,-13.87876,-11.59732,75.449122,61.6338
--18.15264,-15.49152,-12.73536,-10.26432,75.433248,62.4987
--17.7821,-14.3374,-11.6375,-9.0307,73.70727,62.181
--19.1,-14.7,-11.6,-8.7,78.98,63.13
--18.718,-13.916,-10.682,-7.35,77.4886,63.24
--17.8695,-12.88485,-9.5931,-6.2073,74.459385,63.7956
--18.34173,-12.77199,-8.83476,-5.28165,76.026951,62.9045
--17.689,-11.8237,-7.9135,-4.1895,73.62348,62.1908
--17.689,-11.3582,-7.2618,-3.6309,73.62348,61.9875
--18.2476,-11.23668,-6.7228,-3.16932,75.938828,62.6612
--17.8695,-10.43955,-5.92515,-3.0096,74.37474,63.2016
--18.05,-9.785,-5.51,-3.61,75.1165,60.287
--17.8695,-9.0288,-4.98465,-3.9501,74.365335,63.1917
--17.5104,-8.11008,-4.79232,-3.77856,72.870912,62.1504
--18.62,-7.742,-4.606,-3.724,77.4984,66.73
--17.8771,-6.77448,-3.95178,-3.48133,74.396963,64.3595
--17.8695,-6.2073,-3.1977,-2.8215,74.365335,63.3006
--17.77545,-5.36085,-2.4453,-1.97505,74.271285,63.5085
--18.711,-5.049,-1.782,-1.584,78.2892,65.03
--18.522,-4.116,-0.784,-1.176,77.4004,64.74
--18.333,-3.298,0.194,-0.679,76.6009,63.64
--17.5959,-2.3275,1.1172,0,73.61417,65.2092
--17.3242,-1.75085,2.11945,-0.09215,72.770855,66.1055
--17.96256,-1.04544,3.3264,0.38016,75.148128,67.4685
--18.23976,-0.38808,4.65696,0.77616,76.713714,70.1217
--18.048,0.384,5.568,1.344,75.9072,71.82
--17.50656,0.9312,6.42528,1.48992,73.639296,72.9888
--18.139,1.455,7.76,2.231,76.7076,75.22
--18.326,1.96,8.918,2.646,77.4004,75.73
--18.32787,2.54826,9.99702,3.03831,77.408298,72.9828
--18.14274,3.20166,11.25432,3.49272,76.616694,72.6474
--17.50074,3.95178,12.13761,3.85769,74.396963,72.2844
--17.50074,4.61041,13.1726,4.13996,74.396963,71.5084
--17.68116,5.13324,14.7343,4.84806,75.163942,72.3534
--17.04775,5.7133,15.38905,4.88395,72.87222,68.153
--17.5824,6.74784,16.82208,5.60736,75.157632,70.5177
--17.4048,7.33824,17.78112,6.20928,74.389056,69.6192
--17.85168,8.44074,19.404,6.59736,76.616694,70.3052
--18.4,9.2,21.2,7.5,78.89,71.05
--17.39598,9.41094,21.29344,7.6048,75.078388,68.943
--17.751,10.282,22.698,8.342,76.5136,68.0261
--16.5984,10.5792,22.5264,8.208,71.93856,66.7584
--16.7713,11.4266,23.4061,8.75425,72.68792,67.1725
--17.38324,12.4852,25.54664,9.89212,75.756352,67.6592
--17.376,13.344,26.4,10.176,75.7248,68.85
--16.9344,13.82976,26.62464,10.3488,74.210304,67.2574
--17.46,14.938,28.324,11.252,76.5136,66.3868
--17.9,16,29.9,12.3,78.88,68.45
--17.005,16.055,29.45,11.97,74.8505,64.8185
--16.74624,16.464,29.82336,12.60672,74.116224,66.5714
--17.26956,17.85168,31.33746,13.0977,76.432356,66.6792
--17.346,18.62,32.34,13.916,77.2044,66.2872
--16.55984,18.72391,31.52015,13.73714,74.218192,65.4071
--16.9785,19.8891,33.4719,14.94108,76.432356,66.8547
--16.807,20.45652,33.99816,15.27036,75.660312,66.0814
--16.03584,20.36736,33.36192,14.92992,72.603648,64.368
--16.44192,21.66912,34.97472,15.96672,74.967552,66.2706
--16.51716,22.47102,36.20331,16.70922,75.748464,66.0627
--16.35032,22.52922,36.40798,17.1108,75.078388,64.3595
--16.587,23.668,38.024,18.042,76.6106,65.94
--16.49,24.153,38.703,18.43,76.7949,63.7678
--15.73728,24.02496,37.99296,18.25152,73.723104,62.8224
--16.296,25.511,40.255,19.497,76.7949,65.44
--15.87502,25.47608,40.02026,19.86754,75.259002,63.3701
--15.4546,25.6025,39.7537,19.9234,73.80968,61.9875
--15.51825,26.5221,40.8177,20.5029,74.553435,64.4985
--15.42912,27.09504,41.48928,20.88576,74.577216,63.6314
--15.33015,27.4626,42.04035,21.6315,74.553435,61.3985
--15.24096,28.31808,42.52416,22.20288,74.577216,61.7568
--14.9891,28.5817,42.6398,22.1578,73.80037,61.123
--15.84,30.789,46.035,24.057,78.4773,62.8155
--14.95872,29.6352,44.02944,23.42592,74.577216,62.475
--14.71296,30.35712,44.13888,23.65248,73.723104,60.528
--15.444,32.769,47.52,25.641,78.1011,62.7165
--14.136,30.552,44.0496,24.168,72.02064,59.8975
--15.246,33.858,48.312,26.532,78.3783,62.7165
--14.592,33.408,47.232,26.208,76.0032,63.5904
--14.50204,33.80608,47.82792,26.8912,76.034868,62.6612
--14.1075,33.6699,47.30715,26.8983,74.459385,61.218
--13.357,32.76075,45.847,26.1725,71.450925,60.458
--13.82976,34.90368,48.35712,27.94176,74.483136,60.9984
--13.73714,35.28375,48.83271,28.41518,74.491053,61.5271
--13.40928,35.66496,48.888,28.49472,73.723104,61.2
--13.871,37.345,51.313,30.361,76.7949,65.55
--13.54023,37.25964,51.28002,30.44151,76.026951,65.3697
--13.44,38.016,51.648,30.912,76.0128,65.44
--12.98304,37.82016,51.17952,30.67008,74.483136,64.656
--13.289,39.188,53.059,32.01,76.7949,65.8921
--12.96405,39.56436,53.00856,31.97799,76.026951,65.7951
--12.25595,37.9658,51.32755,31.23885,72.955155,65.0385
--12.58124,40.43284,53.68636,32.6536,76.044472,64.8172
--11.856,37.9392,50.5248,32.4672,72.20304,63.312
--11.91936,38.6448,50.93664,34.73376,73.723104,63.696
--11.97,39.235,51.205,35.53,75.2115,66.65
--12.375,40.887,52.767,36.729,78.3783,66.2706
--12.054,40.278,51.548,36.064,77.5866,65.44
--11.616,38.496,49.248,37.44,76.0032,65.14
--11.42757,35.72316,46.95867,37.64376,76.026951,65.0385
--10.55925,32.6705,42.4175,34.8365,71.450925,62.6525
--10.8192,33.8688,43.7472,36.31488,74.492544,62.0544
--10.83,33.82,43.32,35.72,75.2115,67.05
--10.3208,30.87025,40.26955,33.3583,72.96437,65.3295
--10.241,30.3506,39.1951,33.3298,73.80037,69.1292
--10.05696,29.89152,37.99296,32.1264,73.816224,66.7584
--10.08315,29.7693,37.73979,32.55417,76.122981,70.6548
--9.49145,27.8293,35.29345,30.87025,73.047305,69.9758
--9.50208,27.94176,35.09184,30.19968,74.483136,71.7216
--9.50697,27.56061,34.76286,30.53754,76.122981,70.5481
--8.93952,25.71264,32.53248,28.93824,72.972288,71.6448
--9.0307,26.04644,32.60558,28.61306,75.354062,74.2154
--9.11493,25.97265,32.83335,29.30499,77.692527,73.7847
--8.82882,25.03116,31.72554,28.71792,76.907754,76.1409
--8.72289,24.69852,31.16718,27.83484,77.692527,74.7648
--8.342,23.862,30.167,27.16,76.8919,73.9237
--8.4,23.9,30.3,27.8,79.27,75.04
--7.872,22.464,28.32,25.728,76.0992,72.7008
--7.92,22.473,28.413,26.235,78.4872,75.34
--7.644,21.658,27.44,25.676,77.6846,73.9018
--7.2765,21.05334,26.48646,24.93414,76.907754,73.6758
--7.227,20.988,26.334,24.948,78.3783,73.0917
--6.74926,19.39224,24.7156,23.47982,75.354062,71.6674
--6.48945,18.81,23.8887,22.85415,74.459385,71.6067
--6.499,18.915,24.056,23.183,76.7949,68.9864
--6.0515,17.5959,22.5302,21.5061,73.70727,66.8325
--6.111,17.945,22.795,22.213,76.7949,70.35
--5.978,17.738,22.54,22.05,77.5964,67.5612
--5.2896,16.2336,20.52,19.8816,72.20304,65.588
--5.643,17.127,21.681,21.186,78.3783,67.9536
--5.016,15.2304,19.5168,19.3344,72.20304,65.1168
--4.7918,15.1126,19.25935,19.25935,72.955155,64.8185
--4.8015,15.3648,19.49409,19.59012,76.026951,66.7557
--4.51535,14.3754,18.2457,18.2457,72.955155,65.1035
--4.46292,14.65002,18.82188,19.01592,76.810734,66.003
--4.275,13.87,17.955,18.525,75.2115,63.3175
--3.87072,13.17888,17.0496,17.60256,72.963072,63.7728
--3.89664,13.3056,17.1072,17.48736,75.243168,63.2064
--3.59385,12.44025,16.12625,16.67915,72.955155,63.0325
--3.626,12.936,16.758,17.64,77.5866,64.8074
--3.43,12.642,16.366,17.542,77.5866,64.8074
--3.10464,11.85408,15.33504,16.464,74.483136,61.9488
--2.8861,11.3582,14.8029,15.7339,73.43728,65.3954
--2.8518,11.12202,14.7343,15.77996,74.983328,65.6108
--2.8,11.4,15.1,16.3,78.88,69.33
--2.6,11.2,14.8,16.1,78.97,68.74
--2.40075,10.5633,13.82832,14.88465,75.844494,66.7557
--2.277,10.494,13.86,14.949,78.1902,69.5376
--2.01663,9.79506,13.15611,14.50053,75.844494,69.4386
--1.98,9.9,13.167,14.85,78.1902,71.34
--1.6245,8.8445,11.7325,13.26675,71.27945,67.488
--1.5048,8.93475,11.94435,13.5432,74.28069,70.5177
--1.47015,8.91891,12.05523,13.62339,77.408298,70.4088
--1.261,8.439,11.64,13.192,76.7076,72.15
--1.11744,7.82208,10.89504,12.5712,73.629984,68.6688
--0.99,8.118,11.286,13.167,78.2892,73.8837
--0.83808,7.54272,10.33632,12.01248,73.629984,70.2048
--0.67228,7.58716,10.37232,12.10104,75.938828,72.2456
--0.55296,6.912,9.58464,11.15136,72.880128,70.8768
--0.3686,6.4505,9.3993,11.15015,72.863005,74.0304
--0.28518,6.6542,9.41094,11.4072,75.268508,74.2147
--0.09025,6.22725,8.664,10.6495,71.450925,73.1595
-0,6.36768,8.93376,10.64448,75.243168,73.4496
-0.09408,5.92704,8.56128,10.25472,74.483136,72.4992
-0.19602,5.78259,8.62488,10.48707,77.594517,74.9727
-0.37636,5.36313,8.09174,10.06763,74.491053,72.0128
-0.495,5.544,8.217,10.494,78.3783,72.73
-0.594,5.445,8.019,10.296,78.3783,72.44
-0.76,5.035,7.505,9.5,75.1165,71.93
-0.864,4.8,7.2,9.312,75.9168,68.1024
-0.9215,4.2389,6.72695,8.6621,72.87222,65.8635
-1.0032,4.104,6.384,8.7552,72.20304,66.2784
-1.1058,3.96245,6.2662,8.56995,72.955155,64.7425
-1.23552,4.08672,6.27264,8.74368,75.148128,67.1517
-1.37214,4.11642,6.27264,8.62488,77.594517,66.6765
-1.3824,3.59424,5.71392,7.64928,72.963072,64.368
-1.5048,3.1977,5.54895,7.80615,74.459385,62.928
-1.666,3.234,5.488,8.036,77.5964,66.35
-1.782,3.168,5.445,8.118,78.3783,65.1816
-1.78695,2.91555,4.98465,7.80615,74.46879,65.1816
-1.96,2.94,4.998,7.742,77.5866,65.63
-2.079,2.673,4.851,7.425,78.3783,65.0826
-2.134,2.328,4.462,6.984,76.7949,65.84
-2.09132,1.99626,4.18264,6.74926,75.259002,64.1461
-2.16407,1.8818,3.95178,6.86857,74.406372,62.4098
-2.25792,1.8816,3.85728,6.5856,74.210304,63.8372
-2.45,1.862,3.822,6.664,77.3906,64.8074
-2.44608,1.69344,3.48096,5.73888,74.304384,64.9344
-2.4206,1.3034,3.2585,5.586,73.53038,65.2092
-2.7,1.2,3.3,6,78.98,66.83
-2.63452,0.84681,2.91679,5.55131,74.312282,66.4741
-2.66168,0.9506,2.75674,5.89372,75.078388,66.5711
-2.72745,0.84645,2.6334,5.4549,74.28069,69.3297
-2.72745,0.65835,2.4453,4.8906,74.28069,69.5376
-2.7645,0.3686,2.2116,4.6075,72.78007,68.9088
-2.8272,0.0912,2.0064,4.6512,72.02976,66.9085
-3.007,0,1.94,4.85,76.6203,69.3841
-3.2,-0.1,1.9,5,78.97,72.52
-3.01088,-0.18818,1.59953,4.51632,74.312282,71.3241
-3.04095,-0.1843,1.4744,4.33105,72.87222,71.7218
-3.168,-0.288,1.344,4.224,75.9168,74.13
-3.10365,-0.47025,1.22265,3.762,74.28069,73.7748
-3.366,-0.891,0.99,3.861,78.1902,73.9629
-3.23,-1.045,0.855,3.705,75.031,73.94
-3.2592,-1.02432,0.65184,3.53856,73.546176,71.1204
-3.3614,-1.15248,0.57624,3.74556,75.861996,71.2754
-3.43035,-1.17612,0.49005,3.62637,77.408298,71.3097
-3.3516,-1.3034,0.2793,3.4447,73.53038,67.564
-3.45708,-1.44045,0.19206,3.26502,75.844494,70.1217
-3.38724,-1.59953,0.09409,3.01088,74.302873,68.0261
-3.44544,-1.76928,-0.09312,2.88672,73.536864,66.5568
-3.51722,-1.9012,-0.28518,2.56662,75.078388,66.8621
-3.3744,-1.9152,-0.3648,2.4624,72.02976,65.4835
-3.3744,-2.0064,-0.456,2.3712,72.02976,65.7888
-3.48096,-2.16384,-0.56448,2.44608,74.304384,65.712
-3.724,-2.352,-0.784,2.254,77.4004,66.787
-3.5739,-2.6334,-0.9405,1.59885,74.28069,68.0526
-3.5378,-2.793,-1.1172,1.6758,73.53038,67.3652
-3.686,-3.007,-1.261,1.94,76.6009,68.53
-3.724,-3.038,-1.372,1.862,77.4004,67.0712
-3.64952,-2.97724,-1.4406,1.82476,75.756352,66.9732
-3.648,-2.88,-1.536,1.824,75.7248,68.15
-3.686,-3.007,-1.649,1.552,76.5136,68.15
-3.61,-3.23,-1.71,1.235,74.936,64.5335
-3.50208,-3.40992,-1.8432,1.01376,72.695808,65.2128
-3.61228,-3.61228,-1.99626,1.14072,74.983328,65.8921
-3.762,-3.861,-2.178,1.089,77.9922,67.0626
-3.5017,-3.59385,-2.2116,1.01365,72.59577,64.1535
-3.648,-3.744,-2.304,0.864,75.7248,67.35
-3.5739,-3.762,-2.35125,0.7524,74.28069,63.9825
-3.724,-3.92,-2.548,0.686,77.3906,66.84
-3.762,-4.158,-2.673,0.396,78.2793,65.8746
-3.648,-4.224,-2.784,0.192,76.0032,66.35
-3.61,-4.37,-2.945,0.285,75.3065,66.02
-3.64952,-4.51388,-2.97724,0.19208,76.130908,64.6212
-3.53856,-4.37664,-3.07296,0.18624,73.816224,64.0394
-3.4295,-4.332,-3.0685,0.1805,71.631425,62.719
-3.64914,-4.60944,-3.26502,0,76.209408,64.0491
-3.4447,-4.5619,-3.2585,-0.2793,73.88416,62.548
-3.626,-4.9,-3.528,-0.196,77.6846,63.945
-3.626,-4.998,-3.626,-0.392,77.6748,63.3374
-3.44544,-4.93536,-3.63168,-0.55872,73.900032,62.5941
-3.7,-5.5,-4,-0.7,79.37,64.53
-3.7,-5.7,-4.1,-0.9,79.36,64.05
-3.42,-5.415,-3.99,-0.665,75.392,61.218
-3.3174,-5.3447,-3.96245,-0.82935,73.139455,61.503
-3.3858,-5.36085,-4.04415,-0.84645,74.459385,60.363
-3.35232,-5.40096,-4.1904,-1.11744,73.723104,61.9151
-3.2256,-5.62176,-4.23936,-1.65888,72.880128,61.584
-3.325,-6.08,-4.56,-1.71,75.1165,61.123
-3.36,-6.048,-4.704,-1.344,76.0032,64.93
-3.15875,-5.68575,-4.42225,-1.083,71.450925,61.6835
-3.19872,-5.83296,-4.704,-1.12896,74.389056,65.5032
-3.13344,-5.71392,-4.608,-1.19808,72.963072,63.3792
-3.10464,-5.73888,-4.704,-1.59936,74.483136,64.3174
-3.16899,-6.14592,-4.89753,-2.20869,76.026951,65.6766
-3.23433,-6.66468,-5.19453,-2.15622,77.594517,63.8847
-3.16932,-6.53072,-5.18616,-1.72872,76.034868,63.6314
-2.94912,-6.17472,-4.97664,-1.65888,72.963072,61.9392
-3.07296,-6.43401,-5.28165,-1.53648,76.026951,61.9151
-3.007,-6.499,-5.335,-1.843,76.7949,62.4098
-2.88672,-6.33216,-5.21472,-1.95552,73.723104,65.5041
-2.88672,-6.33216,-5.21472,-2.04864,73.723104,62.256
-2.736,-6.384,-5.1984,-2.4624,72.20304,60.5625
-2.7648,-6.81984,-5.43744,-2.58048,72.963072,62.0448
-2.8224,-7.056,-5.6448,-2.54016,74.483136,64.3174
-2.755,-7.125,-5.795,-2.28,75.2115,61.6075
-2.70048,-6.89088,-5.68032,-2.328,73.732416,63.984
-2.688,-7.008,-5.856,-2.304,76.0032,65.95
-2.744,-7.154,-6.076,-2.45,77.5866,65.2092
-2.53935,-6.9597,-5.8311,-2.2572,74.459385,63.6975
-2.48832,-6.81984,-5.80608,-2.58048,72.963072,66.1728
-2.48805,-7.0034,-5.8976,-2.9488,72.955155,64.6505
-2.3712,-7.1136,-5.928,-2.9184,72.20304,63.2064
-2.574,-7.92,-6.336,-2.277,78.3882,68.04
-2.45,0,-3.136,7.056,77.5866,68.93
-2.352,-3.85728,-4.32768,0.37632,74.483136,68.9472
-2.166,-0.9025,-1.805,10.2885,71.450925,67.1175
-2.30472,-2.78487,-2.78487,1.9206,75.940524,68.3496
-2.20892,-3.93764,-3.3614,0.4802,75.938828,65.8952
-2.14176,-4.1904,-3.44544,-0.18624,73.639296,64.6408
-2.09,-4.465,-3.61,-0.57,75.2115,66.54
-2.112,-4.704,-3.744,-0.864,75.9072,69.24
-1.9855,-4.693,-3.61,-1.083,71.3697,64.258
-1.99626,-5.2283,-3.99252,-1.4259,75.163942,65.2092
-2.01663,-5.56974,-4.22532,-1.72854,75.940524,67.1418
-1.9206,-5.66577,-4.32135,-1.72854,75.930921,67.3596
-1.96,-5.978,-4.508,-2.058,77.4886,68.85
-1.8816,-5.83296,-4.51584,-2.06976,74.483136,68.551
-1.82476,-6.05052,-4.70596,-2.01684,76.034868,69.4134
-1.80614,-6.1789,-4.753,-2.18638,75.268508,72.3911
-1.6416,-6.0192,-4.7424,-2.4624,72.20304,72.0195
-1.728,-6.624,-5.184,-2.88,76.0128,72.0384
-1.6758,-6.7032,-5.2136,-2.9792,73.70727,72.029
-1.649,-7.081,-5.529,-3.104,76.7076,75.11
-1.4592,-6.6576,-5.2896,-2.8272,72.21216,72.3235
-1.52064,-6.93792,-5.60736,-2.8512,75.243168,72.2112
-1.4259,-6.93938,-5.7036,-2.94686,75.259002,75.9696
-1.4112,3.66912,-2.352,18.06336,74.483136,75.0778
-1.3965,6.7032,-1.2103,10.7065,73.70727,73.7295
-1.34456,1.34456,-1.24852,9.1238,76.140512,74.5094
-1.33,7.22,1.045,13.965,75.3065,72.504
-1.33056,1.80576,-0.19008,5.98752,75.338208,73.3632
-1.24852,0.19208,0,6.53072,76.130908,73.7156
-1.23578,2.47156,2.18638,8.27022,75.354062,71.2754
-1.11744,0.65184,0.9312,4.84224,73.816224,70.4414
-1.1286,0,0.65835,4.04415,74.553435,68.818
-1.1286,-0.65835,0.3762,3.1977,74.553435,69.6465
-1.045,-1.235,0.19,2.755,75.3065,66.2435
-1.067,-1.552,0,2.716,76.9016,68.93
-1.05633,-1.82457,-0.09603,2.40075,76.219011,68.5476
-0.9603,-2.01663,-0.28809,2.11266,76.219011,68.2407
-0.9702,-2.23146,-0.4851,1.84338,77.004774,67.9437
-0.9603,-2.49678,-0.67221,1.44045,76.219011,67.4685
-0.9603,-2.97693,-1.05633,1.05633,76.219011,66.9636
-0.864,-3.36,-1.248,0.672,76.1952,67.43
-0.87318,-3.49272,-1.55232,0.87318,77.004774,65.8952
-0.9,-1.1,1,8,79.37,65.55
-0.864,-2.112,-0.384,2.304,76.1952,62.4384
-0.792,-2.871,-0.99,1.584,78.5763,65.55
-0.7448,-2.9792,-1.2103,0.931,73.89347,64.0234
-0.78408,-1.56816,0.29403,5.48856,77.790537,65.0727
-0.6517,-2.793,-0.8379,1.3965,73.80037,62.2725
-0.66528,2.09088,1.4256,14.63616,75.252672,63.1104
-0.67221,4.41738,3.64914,13.73229,76.026951,64.0491
-0.67228,1.53664,2.20892,6.2426,76.034868,63.8372
-0.57618,0.86427,2.59281,5.95386,76.036554,67.6566
-0.582,0.582,2.91,5.626,76.7949,67.53
-0.594,6.435,4.455,14.85,78.3783,67.83
-0.57,2.85,4.18,8.93,75.2115,69.24
-0.57624,6.05052,5.37824,12.005,76.034868,68.7274
-0.49005,6.8607,7.25274,14.50548,77.594517,69.1416
-0.485,9.312,8.439,17.751,76.7949,67.9194
-0.456,5.7456,6.4752,10.3056,72.20304,66.9085
-0.4851,4.55994,6.20928,8.92584,76.810734,69.8247
-0.4802,3.74556,5.7624,7.87528,76.140512,69.6192
-0.4752,2.94624,5.41728,6.74784,75.338208,71.6067
-0.361,2.07575,4.693,6.137,71.541175,70.8985
-0.38024,1.80614,4.65794,6.27396,75.354062,72.7454
-0.38,1.52,4.37,5.985,75.3065,73.61
-0.37636,1.31726,3.95178,5.45722,74.585143,71.7994
-0.4,0.9,3.9,5,79.27,74.13
-0.37248,0.18624,3.16608,4.46976,73.816224,71.4017
-0.3686,-0.09215,2.7645,4.2389,72.96437,71.1204
-0.37632,-0.18816,2.63424,4.32768,74.483136,71.2754
-0.3686,-0.27645,2.30375,3.96245,72.955155,68.818
-0.38024,-0.4753,2.09132,3.70734,75.259002,70.4914
-0.38412,-0.9603,1.72854,3.26502,76.026951,69.1998
-0.3686,-1.2901,1.38225,2.9488,72.955155,67.488
-0.37632,-1.50528,1.03488,2.8224,74.304384,69.3056
-0.38024,-1.71108,0.85554,2.75674,75.173448,69.3056
-0.388,-1.746,0.679,2.619,76.7076,68.4238
-0.38024,-1.9012,0.28518,2.3765,75.173448,68.7372
-0.388,-2.231,0.097,2.037,76.7949,70.03
-0.37248,-2.51424,-0.18624,1.67616,73.732416,67.6381
-0.392,-2.842,-0.49,1.666,77.5866,69.44
-0.28227,-2.91679,-0.65863,1.59953,74.406372,67.3471
-0.28512,-3.04128,-0.85536,1.4256,75.157632,68.7456
-0.28224,-3.01056,-1.03488,1.22304,74.398464,66.384
-0.28809,-3.16899,-1.34442,1.15236,76.026951,66.9688
-0.28224,-3.38688,-1.50528,0.75264,74.483136,67.2574
-0.28812,-3.8416,-1.72872,0.38416,76.140512,66.9732
-0.28518,-3.99252,-1.99626,0.38024,75.449122,66.6792
-0.29106,-4.17186,-2.13444,0.58212,77.004774,66.787
-0.28518,-4.08758,-2.28144,0.19012,75.449122,65.8921
-0.18624,-4.09728,-2.328,0.18624,73.909344,65.1168
-0.19602,-4.21443,-2.54826,0,77.790537,67.1517
-0.194,-4.268,-2.716,0,76.9889,65.1161
-0.18624,-4.28352,-2.70048,-0.4656,73.909344,64.1461
-0.198,-4.95,-3.168,-0.891,78.5763,66.13
-0.194,-5.044,-3.201,-0.679,76.9889,65.25
-0.196,-5.194,-3.43,-0.98,77.7826,65.04
-0.09603,-5.18562,-3.45708,-0.86427,76.219011,63.2925
-0.09312,-5.02848,-3.44544,-1.02432,73.909344,63.5835
-0.09603,-5.28165,-3.74517,-1.24839,76.219011,62.9821
-0.095,-5.32,-3.8,-1.33,75.4015,64.23
-0.099,-5.742,-4.158,-1.881,78.5763,63.4095
-0.095,-5.89,-4.085,-1.9,75.392,61.6075
-0.099,-6.237,-4.455,-1.98,78.5862,64.5975
-0,-6.3,-4.6,-2,79.37,65.74
-0,-6.208,-4.656,-2.037,76.9889,63.6611
-0,-6.272,-4.802,-2.058,77.7826,65.04
-0,-6.27,-4.75,-2.185,75.392,65.33
-0,-6.33798,-4.89753,-2.40075,76.219011,62.7978
--0.09801,-6.66468,-5.09652,-2.64627,77.790537,64.5975
--0.09312,-6.61152,-5.02848,-2.70048,73.909344,62.256
--0.09409,-6.86857,-5.17495,-3.10497,74.679233,64.1461
--0.09702,-7.17948,-5.53014,-2.9106,77.004774,64.6767
--0.09408,-6.96192,-5.45664,-3.01056,74.671296,63.312
--0.09604,-7.203,-5.66636,-3.07328,76.226948,65.8952
--0.1805,-6.76875,-5.415,-2.888,71.631425,62.928
--0.192,-7.392,-5.856,-3.36,76.1952,63.696
--0.192,-7.488,-6.048,-3.456,76.1952,64.2624
--0.18624,-7.4496,-5.95968,-3.53856,73.900032,64.656
--0.291,-7.857,-6.305,-3.88,76.9792,70.03
--0.28215,-7.7121,-6.2073,-3.762,74.65689,64.638
--0.2736,-7.4784,-6.1104,-3.648,72.38544,65.1168
--0.285,-7.885,-6.46,-3.895,75.3065,64.5335
--0.38416,-8.06736,-6.62676,-4.12972,76.130908,65.8952
--0.396,-8.415,-6.93,-4.455,78.4773,67.83
--0.38412,-8.35461,-6.81813,-4.41738,76.122981,67.2507
--0.46075,-8.1092,-6.6348,-4.2389,73.047305,67.3568
--0.48015,-8.54667,-7.01019,-4.51341,76.122981,68.5575
--0.456,-8.1168,-6.7488,-4.1952,72.29424,64.828
--0.475,-8.55,-7.125,-4.655,75.316,65.5975
--0.4851,-8.82882,-7.37352,-4.851,77.004774,69.4287
--0.6,-9.2,-7.7,-5.1,79.37,72.14
--0.5643,-8.8407,-7.3359,-4.79655,74.553435,68.818
--0.686,-9.31,-7.644,-5.096,77.6846,74.12
--0.672,-9.024,-7.584,-4.8,76.1952,73.2672
--0.672,-9.12,-7.68,-5.28,76.1952,74.93
--0.64505,-9.12285,-7.5563,-5.529,73.139455,72.029
--0.77616,-9.702,-8.05266,-5.62716,77.004774,73.9018
--0.768,-9.408,-7.968,-5.184,76.2048,72.7872
--0.784,-9.506,-8.134,-5.39,77.7826,73.4314
--0.81225,-8.664,-7.581,-4.78325,71.631425,70.984
--0.87318,-9.31392,-8.14968,-5.53014,77.004774,72.2456
--0.9604,-9.21984,-8.06736,-5.7624,76.322988,72.3534
--0.99,-9.9,-8.514,-6.237,78.6753,72.8739
--0.96,-9.888,-8.352,-6.144,76.2912,71.1648
--0.99,-10.098,-8.712,-6.138,78.5763,73.2006
--1.05633,-9.69903,-8.45064,-5.66577,76.219011,70.8294
--1.0241,-9.31,-8.1928,-5.3067,73.89347,70.3052
--1.176,-9.8,-8.624,-5.684,77.7826,69.237
--1.15248,-9.604,-8.45152,-5.66636,76.236552,69.237
--1.0944,-9.2112,-8.1168,-5.7456,72.38544,66.9085
--1.19795,-9.67575,-8.2935,-6.17405,73.139455,66.2435
--1.21056,-9.87072,-8.47392,-6.0528,73.909344,66.48
--1.358,-10.282,-8.924,-6.111,76.9792,65.7854
--1.3034,-9.7755,-8.5652,-5.6791,73.89347,64.258
--1.37214,-10.19304,-9.01692,-5.8806,77.790537,66.4686
--1.38225,-9.5836,-8.4778,-5.7133,73.139455,65.7175
--1.4112,-9.78432,-8.65536,-5.83296,74.671296,65.5032
--1.52096,-9.88624,-8.84058,-5.98878,75.449122,64.6505
--1.52,-9.975,-8.835,-6.08,75.4015,63.3175
--1.649,-10.282,-9.021,-6.305,76.9889,64.6505
--1.61602,-10.17142,-8.93564,-6.36902,75.449122,64.0491
--1.63251,-10.27521,-9.12285,-6.53004,76.219011,63.8648
--1.6416,-9.8496,-8.664,-6.0192,72.46752,63.3024
--1.746,-10.573,-9.215,-6.499,76.9889,65.26
--1.843,-10.573,-9.312,-6.499,76.9889,63.4865
--1.843,-10.573,-9.312,-6.596,76.9889,62.4098
--1.843,-10.1365,-8.93855,-6.2662,73.047305,62.2255
--1.862,-10.3341,-9.1238,-6.517,73.80037,62.475
--1.97505,-10.5336,-9.2169,-6.5835,74.553435,62.8254
--1.95552,-10.42944,-9.12576,-6.5184,73.816224,63.8648
--2.079,-11.088,-9.801,-6.93,78.4773,65.94
--2.11266,-10.85139,-9.603,-6.81813,76.219011,65.7657
--2.06976,-10.8192,-9.408,-6.96192,74.577216,65.2092
--2.231,-11.155,-9.797,-7.081,76.8919,68.23
--2.3,-11.5,-10.1,-7.4,79.27,69.04
--2.28096,-10.83456,-9.69408,-7.03296,75.433248,67.8447
--2.328,-11.252,-9.991,-7.178,76.8919,67.8515
--2.475,-11.781,-10.296,-7.821,78.4773,69.84
--2.28,-10.944,-9.576,-7.1136,72.38544,67.108
--2.574,-11.682,-10.296,-7.326,78.5763,71.93
--2.496,-11.136,-9.984,-7.104,76.1952,71.34
--2.3959,-10.59725,-9.5836,-6.6348,73.139455,70.0534
--2.619,-11.155,-10.088,-7.469,76.9889,72.15
--2.772,-11.682,-10.494,-8.217,78.5763,73.62
--2.66,-11.495,-10.07,-7.79,75.4015,74.71
--2.6448,-10.944,-9.7584,-6.9312,72.38544,71.4432
--2.67235,-10.96585,-9.7679,-7.0034,73.139455,70.9745
--2.84229,-11.46717,-10.38906,-7.35075,77.790537,74.7648
--2.793,-10.8927,-9.8686,-6.9825,73.89347,71.5635
--3,-11.7,-10.6,-7.6,79.37,73.94
--3.069,-11.583,-10.494,-7.524,78.5763,72.3987
--3.104,-11.64,-10.379,-7.663,76.9889,72.83
--2.9488,-11.33445,-9.9522,-7.46415,73.047305,70.1601
--2.97825,-11.191,-9.83725,-7.12975,71.631425,68.438
--3.267,-12.177,-10.791,-7.821,78.5763,71.12
--3.135,-11.495,-10.355,-7.41,75.3065,67.564
--3.29868,-11.73942,-10.57518,-7.56756,77.004774,69.2272
--3.23136,-11.49984,-10.35936,-7.41312,75.338208,69.8247
--3.29175,-11.38005,-10.25145,-7.524,74.647485,66.633
--3.3614,-11.62084,-10.46836,-7.49112,76.226948,68.551
--3.2832,-11.1264,-10.032,-7.3872,72.38544,66.8352
--3.42,-11.685,-10.45,-7.6,75.4015,69.44
--3.7,-12.4,-11.1,-8.3,79.27,69.44
--3.4447,-11.5444,-10.3341,-7.5411,73.80037,65.7875
--3.61,-11.875,-10.545,-7.98,75.3065,65.588
--3.686,-12.125,-10.864,-7.857,76.8919,68.74
--3.66912,-11.76,-10.53696,-7.90272,74.577216,67.1692
--3.861,-12.375,-11.187,-8.316,78.4773,67.6566
--3.8,-11.875,-10.735,-8.075,75.4015,64.8185
--4,-12.6,-11.3,-8.3,79.27,68.23
--3.77856,-11.70432,-10.50624,-7.74144,72.963072,65.712
--3.70025,-11.46175,-10.2885,-7.67125,71.541175,64.4385
--3.7905,-11.552,-10.37875,-7.7615,71.631425,63.9825
--3.95178,-12.13761,-10.82035,-8.18583,74.679233,65.2228
--3.9216,-11.7648,-10.488,-7.8432,72.38544,63.878
--4.0033,-12.0099,-10.7996,-8.0066,73.98657,63.6975
--4.0546,-11.9795,-10.78155,-7.9249,73.22239,65.1161
--4.18,-12.35,-11.115,-8.36,75.487,66.65
--4.32,-12.48,-11.232,-8.256,76.2816,66.43
--4.104,-11.9472,-10.7616,-8.1168,72.47664,63.1085
--4.3263,-12.4146,-11.0979,-8.37045,74.741535,65.0826
--4.28352,-12.29184,-11.08128,-8.28768,74.002464,63.4768
--4.46688,-12.64032,-11.30976,-8.5536,75.518784,64.2807
--4.46688,-12.64032,-11.4048,-8.45856,75.528288,62.256
--4.656,-12.901,-11.64,-8.342,77.0762,64.34
--4.608,-12.672,-11.52,-8.64,76.2816,63.94
--4.61041,-12.51397,-11.2908,-8.65628,74.763914,61.6338
--4.753,-13.095,-11.834,-9.215,77.0762,63.13
--4.7045,-12.89033,-11.47898,-8.75037,74.763914,61.1585
--4.9005,-13.32936,-11.95722,-8.8209,77.878746,62.3106
--4.99851,-13.13334,-11.95722,-8.91891,77.888547,61.8057
--4.84806,-12.64298,-11.59732,-8.46034,75.534676,60.7894
--4.8906,-12.4146,-11.4741,-8.37045,74.647485,59.242
--4.84224,-12.38496,-11.36064,-8.3808,73.900032,59.856
--4.8336,-12.4032,-11.2176,-8.664,72.38544,60.6048
--4.8336,-12.5856,-11.3088,-8.664,72.38544,59.3085
--5.13,-13.11,-11.78,-8.74,75.4015,63.54
--5.4,-13.6,-12.4,-9,79.37,64.93
--5.1205,-12.5685,-11.5444,-8.4721,73.88416,60.8475
--5.3361,-13.0977,-12.03048,-8.82882,76.995072,62.867
--5.21472,-12.5712,-11.54688,-8.47392,73.816224,63.8784
--5.2136,-12.5685,-11.5444,-8.7514,73.80968,60.572
--5.41842,-13.11828,-11.8825,-9.31588,75.354062,62.6612
--5.529,-13.58,-12.222,-9.506,76.8919,61.6338
--5.4549,-13.167,-11.8503,-8.93475,74.553435,62.7285
--5.2896,-12.6768,-11.4912,-8.4816,72.29424,63.0048
--5.49408,-12.85056,-11.73312,-8.3808,73.816224,62.64
--5.32475,-12.36425,-11.3715,-8.303,71.541175,61.2275
--5.78259,-13.32936,-12.25125,-9.11493,77.692527,64.2807
--5.82,-13.192,-12.222,-9.118,76.8919,65.0385
--5.73949,-12.89033,-11.85534,-8.75037,74.594552,66.6875
--5.856,-13.152,-12.096,-9.216,76.0992,65.424
--5.62115,-12.7167,-11.6109,-8.93855,73.139455,66.8621
--5.89,-13.3,-12.065,-8.93,75.3065,69.0935
--5.95448,-13.4456,-12.19708,-9.21984,75.852392,70.6972
--5.92704,-13.1712,-11.94816,-9.03168,74.210304,70.4928
--6.04989,-13.4442,-12.29184,-9.02682,75.844494,71.1204
--6.0192,-13.167,-12.0384,-9.0288,74.18664,72.0027
--6.24195,-13.4442,-12.29184,-9.41094,75.854097,72.0031
--6.1776,-13.40064,-12.16512,-9.31392,75.157632,70.6752
--6.11325,-13.3551,-12.13245,-9.405,74.459385,71.1835
--6.20928,-13.54752,-12.2304,-9.31392,74.483136,73.4216
--6.14592,-13.31616,-12.1056,-9.21888,73.723104,72.4992
--6.1104,-13.0416,-11.856,-8.8464,72.20304,71.364
--6.566,-13.916,-12.74,-9.604,77.6846,73.0296
--6.39812,-13.36078,-12.2317,-9.22082,74.491053,71.5084
--6.596,-13.774,-12.707,-9.603,76.8919,69.9758
--6.2928,-13.1328,-11.9472,-9.12,72.30336,68.8704
--6.55776,-13.7808,-12.54528,-9.504,75.338208,69.3297
--6.2928,-13.224,-12.0384,-9.0288,72.29424,65.588
--6.7914,-13.97088,-12.80664,-9.60498,76.907754,66.7557
--6.86,-14.112,-12.936,-9.506,77.5866,63.7392
--6.887,-13.871,-12.804,-9.506,76.8919,62.7978
--6.54265,-13.2696,-12.1638,-9.3993,73.047305,60.8475
--7.2,-14.6,-13.3,-10.4,79.17,63.46
--6.98544,-14.26194,-13.00068,-9.99306,76.810734,62.9046
--6.77376,-13.73568,-12.60672,-9.408,74.492544,60.8972
--7.008,-13.92,-12.768,-9.408,76.0032,58.8768
--6.9597,-13.5432,-12.50865,-9.31095,74.459385,59.6376
--7.178,-13.968,-12.901,-9.409,76.6979,57.8508
--7.178,-14.065,-12.901,-10.088,76.6979,57.3561
--7.05675,-13.92532,-12.60806,-9.87945,74.312282,56.5995
--6.984,-13.78176,-12.5712,-9.68448,73.536864,55.632
--7.07712,-13.68864,-12.5712,-9.40512,73.546176,56.5025
--7.22,-13.87,-12.73,-9.31,74.936,54.188
--7.31808,-13.7808,-12.73536,-9.21888,74.967552,54.96
--7.54677,-14.11344,-13.13334,-9.801,77.212278,56.2914
--7.623,-14.256,-13.167,-9.999,77.9922,56.1825
--7.2618,-13.4995,-12.4754,-9.31,73.34418,53.2475
--7.41468,-13.7837,-12.73804,-9.22082,74.76469,53.6895
--7.12975,-13.08625,-12.0935,-9.11525,70.981625,52.478
--7.74279,-14.30946,-13.13334,-9.70299,76.986855,54.7965
--7.84,-14.406,-13.132,-9.898,76.9888,53.851
--7.84,-14.406,-13.132,-9.996,76.9006,54.145
--7.8408,-14.40747,-13.23135,-9.89901,76.888845,53.8164
--7.69986,-13.97382,-12.8331,-9.79118,74.489016,53.3512
--7.46496,-13.54752,-12.4416,-9.40032,72.124416,52.2528
--7.6342,-13.7788,-12.5685,-9.4962,72.86006,51.813
--7.79492,-14.06888,-12.92816,-9.88624,74.298896,53.0572
--8.134,-14.602,-13.328,-10.192,76.6066,53.75
--7.97049,-14.30847,-13.06008,-10.17918,74.970621,53.2026
--7.64845,-13.73035,-12.5324,-9.67575,71.941505,52.4091
--7.581,-13.44725,-12.274,-9.386,70.37695,50.882
--7.98336,-14.16096,-13.02048,-9.88416,74.102688,53.0145
--8.075,-14.25,-13.015,-9.88,74.0715,50.5875
--7.99765,-14.20759,-12.98442,-10.06763,73.277292,51.1675
--8.42886,-14.89752,-13.52538,-10.19304,76.320387,52.3215
--8.428,-14.7,-13.524,-10.388,76.2244,52.3712
--8.17344,-14.16096,-13.11552,-9.9792,73.827072,50.8128
--8.7,-15,-13.8,-10.6,77.68,52.85
--8.35461,-14.59656,-13.34817,-10.37124,74.500074,52.7175
--8.10144,-14.34048,-13.0368,-9.96384,72.251808,51.6622
--8.712,-15.147,-13.86,-10.791,76.7151,52.56
--8.36352,-14.35104,-13.21056,-9.88416,73.636992,52.3215
--8.2859,-13.965,-12.9409,-9.4962,72.05009,51.5774
--8.455,-14.155,-13.205,-9.975,73.5205,53.04
--8.91,-14.85,-13.761,-10.692,76.4676,52.74
--8.2935,-14.0068,-12.901,-9.9522,71.08451,49.8275
--8.736,-14.784,-13.44,-10.464,74.0544,50.5344
--9.1,-15.4,-14.1,-10.9,77.14,52.93
--8.55855,-14.2956,-13.167,-9.87525,72.465525,49.5425
--9.009,-15.048,-13.86,-10.197,76.2696,51.8166
--8.74,-14.25,-13.3,-9.785,73.1025,50.103
--8.83476,-14.4045,-13.34817,-9.98712,73.895085,50.7698
--8.303,-13.5375,-12.54475,-9.5665,69.447375,49.818
--8.4816,-13.68,-12.768,-9.6672,70.0872,49.6185
--8.4816,-13.7712,-12.768,-9.7584,70.0872,49.438
--8.93564,-14.54418,-13.3084,-10.26648,72.95855,50.715
--8.75328,-14.34048,-13.12992,-10.05696,71.478912,49.68
--9.12285,-14.78862,-13.54023,-10.27521,73.616598,51.8067
--9.0307,-14.63924,-13.40346,-9.9813,72.872996,51.499
--8.9376,-14.39424,-13.26528,-9.78432,72.027648,50.448
--9.21984,-14.69412,-13.54164,-10.27628,73.528224,50.7934
--8.7552,-13.9536,-12.8592,-9.9408,69.82272,49.2385
--8.664,-13.8985,-12.8155,-9.9275,69.00515,48.8775
--9.12285,-14.57775,-13.3551,-10.43955,71.91063,51.0246
--9.506,-15.19,-13.916,-10.486,74.9308,50.715
--8.93855,-14.28325,-13.0853,-10.04435,70.374955,50.8765
--9.8,-15.5,-14.2,-10.9,76.27,53.25
--9.41094,-14.88465,-13.73229,-10.46727,73.242081,52.0502
--9.70299,-15.19155,-14.01543,-10.58508,74.742426,53.2026
--9.40896,-14.82624,-13.59072,-10.64448,72.477504,51.7824
--8.93475,-14.16925,-12.996,-10.01775,68.833675,51.243
--9.405,-14.76585,-13.5432,-10.3455,71.72253,53.4897
--9.312,-14.52672,-13.40928,-10.2432,71.022624,52.4091
--9.408,-14.5824,-13.54752,-10.25472,71.745408,51.9648
--9.30816,-14.37696,-13.27104,-10.50624,70.290432,51.792
--9.30715,-14.65185,-13.36175,-10.59725,70.27359,51.148
--9.50208,-15.0528,-13.73568,-10.72512,71.754816,53.0474
--10.098,-15.642,-14.454,-11.088,75.4974,53.94
--9.69,-14.915,-13.775,-10.355,72.4565,53.74
--9.996,-15.288,-14.21,-10.78,74.8328,53.74
--9.888,-14.976,-13.92,-10.464,73.3152,53.74
--9.78912,-14.82624,-13.7808,-10.64448,72.582048,53.0145
--9.89212,-15.07828,-14.02184,-10.94856,73.336144,52.871
--10.088,-15.423,-14.162,-11.058,74.0789,52.0502
--9.88624,-15.2096,-13.97382,-10.64672,72.587816,52.7632
--9.87525,-14.95395,-13.82535,-10.62765,71.81658,53.1234
--9.9792,-15.01632,-13.97088,-10.54944,72.582048,53.0145
--10.1871,-15.23214,-14.16492,-10.76922,74.094174,52.479
--9.7776,-14.61984,-13.59552,-10.52256,71.106432,51.8368
--10.38906,-15.38757,-14.40747,-11.07513,74.938446,53.0145
--9.97248,-14.86464,-13.82976,-10.53696,71.848896,53.5472
--10.593,-15.741,-14.553,-11.187,75.5964,53.0145
--10.16928,-15.2064,-13.97088,-10.9296,72.582048,53.4105
--10.38114,-15.62022,-14.35896,-11.1573,74.084472,53.263
--10.379,-15.52,-14.356,-11.058,74.0692,52.9038
--10.26432,-15.2064,-14.06592,-10.73952,72.487008,53.8857
--10.1574,-15.048,-13.9194,-10.62765,71.731935,51.3285
--10.368,-15.36,-14.208,-10.656,73.2192,51.5904
--10.04435,-14.744,-13.73035,-10.78155,70.282805,51.5458
--10.1479,-14.9891,-13.8719,-10.9858,71.00737,50.2835
--10.791,-16.038,-14.751,-11.484,75.4083,53.14
--10.6722,-15.71724,-14.45598,-11.1573,73.900134,51.9255
--10.5633,-15.46083,-14.4045,-10.94742,73.050021,50.9735
--10.3455,-15.14205,-14.01345,-10.7217,71.543835,51.7077
--10.989,-15.939,-14.751,-11.187,75.3093,52.44
--11.1,-16.2,-15,-11.8,76.07,52.74
--10.54944,-15.49152,-14.35104,-10.9296,72.296928,52.5096
--10.545,-15.58,-14.345,-11.115,72.181,53.66
--10.752,-15.648,-14.496,-11.04,72.9408,51.7824
--10.64448,-15.49152,-14.256,-10.9296,72.211392,52.0704
--10.864,-15.617,-14.647,-11.058,73.5551,54.13
--10.63104,-15.24096,-14.20608,-11.00736,71.340864,51.9648
--10.62765,-15.4242,-14.20155,-11.286,71.45919,53.5887
--10.52256,-15.45792,-14.15424,-11.1744,70.743264,52.6128
--10.83456,-15.6816,-14.44608,-11.30976,72.201888,52.0704
--10.5051,-15.1126,-14.0068,-10.8737,70.006355,51.3285
--10.61568,-15.08544,-14.06112,-10.7088,70.743264,52.3218
--10.72512,-15.24096,-14.20608,-10.91328,71.481984,52.6652
--11.155,-15.617,-14.647,-11.058,73.7006,54.03
--11.04,-15.456,-14.496,-11.04,72.9312,53.84
--11.02464,-15.39648,-14.35104,-11.11968,72.201888,51.5904
--10.69056,-15.02208,-14.00832,-10.78272,70.106112,51.408
--11.6,-16.4,-15.2,-11.7,76.07,53.84
--11.6,-16.4,-15.2,-11.5,76.07,53.73
--11.349,-15.908,-14.744,-11.446,73.7879,54.03
--11.115,-15.58,-14.44,-11.115,72.276,51.3285
--10.78155,-15.02045,-14.0068,-10.59725,70.098505,51.243
--10.9858,-15.2684,-14.1512,-10.8927,70.83048,51.148
--10.8737,-15.1126,-14.0068,-10.8737,70.098505,51.148
--11.0979,-15.51825,-14.38965,-11.0979,71.543835,53.1234
--11.21,-15.675,-14.535,-11.21,72.2665,51.053
--11.305,-15.675,-14.535,-11.305,72.2665,53.65
--11.19552,-15.61728,-14.48832,-11.10144,71.660736,52.577
--11.662,-16.268,-15.092,-11.662,74.6466,53.65
--11.4072,-15.6849,-14.54418,-11.4072,72.407202,52.3712
--11.5236,-15.84495,-14.78862,-11.33154,73.146051,51.7301
--11.5248,-15.8466,-14.79016,-11.5248,73.163272,52.3712
--11.495,-15.865,-14.63,-11.59,72.3615,50.483
--11.1744,-15.55104,-14.34048,-11.1744,70.920192,51.3024
--11.38489,-15.71303,-14.58395,-11.38489,71.668353,51.5458
--11.0352,-15.2304,-14.136,-10.944,69.54912,51.12
--11.73942,-16.29936,-15.0381,-11.73942,73.997154,52.2634
--11.3582,-15.6408,-14.4305,-11.3582,70.99806,51.053
--11.36064,-15.73728,-14.52672,-11.26752,71.013312,51.6525
--11.47776,-15.89952,-14.67648,-11.38368,71.754816,52.3712
--11.2176,-15.4128,-14.2272,-10.944,69.56736,50.8128
--12.3,-17,-15.7,-12.2,76.36,52.74
--11.2176,-15.504,-14.3184,-10.944,69.64032,50.103
--11.33568,-15.6672,-14.46912,-11.15136,70.373376,50.9184
--11.78,-16.055,-14.915,-11.59,72.5515,50.2835
--11.5444,-15.827,-14.6167,-11.4513,71.18426,51.793
--11.78,-16.15,-14.915,-11.78,72.542,52.15
--12.00375,-16.42113,-15.17274,-11.71566,73.424538,51.0511
--11.75625,-16.08255,-14.8599,-11.6622,71.91063,49.818
--12.005,-16.3268,-15.17432,-11.90896,73.432184,51.2932
--11.64,-15.92352,-14.71296,-11.64,71.199552,49.9584
--12.00375,-16.3251,-15.17274,-11.90772,73.424538,50.9735
--12.10104,-16.3268,-15.17432,-11.90896,73.432184,50.7934
--11.73312,-15.92352,-14.71296,-11.73312,71.292672,50.2751
--11.46175,-15.43275,-14.34975,-11.46175,69.0954,49.058
--12.19708,-16.42284,-15.17432,-11.81292,73.51862,51.1854
--12.44727,-16.6617,-15.58359,-12.05523,75.036456,51.2325
--11.70305,-15.75765,-14.65185,-11.4266,70.55004,49.7135
--11.94943,-16.08939,-14.96031,-11.94943,72.035304,50.5855
--11.79648,-15.85152,-14.65344,-11.61216,70.557696,49.9584
--12.8,-17.2,-15.9,-12.4,76.56,52.15
--12.8,-17.2,-15.9,-12.5,76.66,52.85
--11.9168,-16.0132,-14.896,-11.6375,71.36115,52.3712
--12.29312,-16.61492,-15.3664,-12.10104,73.61466,51.499
--12.38787,-16.70922,-15.46083,-12.09978,73.616598,51.3117
--12.384,-16.704,-15.456,-12,73.5936,50.448
--11.7648,-15.8688,-14.6832,-11.5824,69.91392,49.343
--11.856,-15.8688,-14.6832,-11.4912,69.91392,49.6185
--12.87,-17.226,-15.939,-12.771,75.8934,52.55
--12.6126,-16.88148,-15.62022,-12.41856,74.375532,50.9992
--12.45024,-16.53696,-15.30144,-11.97504,72.857664,50.3424
--12.07296,-16.03584,-14.92992,-11.61216,70.7328,49.1904
--12.58124,-16.71096,-15.55848,-12.38916,73.7107,50.2152
--12.32055,-16.45875,-15.2361,-12.13245,72.183375,50.7276
--12.32579,-16.46575,-15.24258,-11.85534,72.214075,49.9938
--12.54792,-16.6355,-15.39972,-12.26274,72.968056,50.715
--12.2892,-16.2925,-15.0822,-12.0099,71.45425,50.1074
--12.80664,-17.07552,-15.81426,-12.51558,74.46285,50.1074
--12.672,-16.896,-15.648,-12.48,73.68,51.53
--12.51264,-16.55808,-15.33504,-12.13632,72.2064,50.2152
--12.901,-17.072,-15.811,-12.513,74.4475,52.63
--12.1296,-16.0512,-14.8656,-11.856,70.00512,49.1625
--12.901,-17.072,-15.811,-12.61,74.4475,50.83
--12.6027,-16.64685,-15.33015,-12.13245,72.277425,48.5735
--12.60806,-16.55984,-15.43076,-12.32579,72.223484,49.2081
--12.60672,-16.65216,-15.42912,-12.41856,72.30048,48.336
--12.6027,-16.64685,-15.4242,-12.2265,72.277425,50.8365
--12.8331,-16.82562,-15.58984,-12.73804,73.05361,49.5292
--12.70215,-16.74802,-15.52485,-12.41988,72.308165,49.5185
--12.44025,-16.4027,-15.1126,-12.07165,70.817275,47.9085
--12.312,-16.2336,-14.9568,-11.9472,70.0872,48.1175
--12.5712,-16.57536,-15.3648,-12.19872,71.56272,48.2478
--13.19472,-17.36658,-16.0083,-12.80664,74.55987,49.9257
--13.06008,-17.18937,-15.84495,-12.57993,73.904688,48.6455
--13.328,-17.542,-16.268,-13.23,75.411,49.343
--13.056,-17.184,-15.936,-12.768,73.872,48.9024
--12.4944,-16.3248,-15.1392,-12.0384,70.1784,48.336
--12.75744,-16.66848,-15.45792,-12.38496,71.65584,49.0238
--13.02322,-17.1108,-15.77996,-12.64298,73.14867,49.1372
--12.36425,-16.245,-14.9815,-12.18375,69.447375,47.633
--13.426,-17.64,-16.366,-13.132,75.411,49.0392
--12.9789,-16.929,-15.70635,-12.69675,72.371475,48.013
--12.8478,-16.8511,-15.5477,-12.4754,71.64045,47.8325
--12.8478,-16.758,-15.5477,-12.4754,71.64045,48.013
--13.11,-17.195,-15.865,-12.825,73.1025,47.3575
--13.205,-17.195,-15.96,-13.015,73.093,47.7375
--12.9409,-16.8511,-15.6408,-12.5685,71.72424,49.343
--13.48578,-17.56062,-16.29936,-13.0977,74.75391,49.8465
--13.761,-17.919,-16.632,-13.464,76.2795,50.14
--13.4456,-17.38324,-16.13472,-13.15748,73.99882,49.8232
--13.72,-17.836,-16.562,-13.23,75.509,49.4214
--12.768,-16.5984,-15.4128,-12.4032,70.2696,48.5184
--13.1712,-17.12256,-15.89952,-12.88896,72.48864,48.6668
--13.72,-17.836,-16.562,-13.23,75.509,49.04
--13.395,-17.385,-16.055,-13.015,73.188,46.7875
--13.54164,-17.47928,-16.23076,-13.06144,73.99882,48.559
--13.40064,-17.39232,-16.1568,-12.92544,73.22832,47.0784
--12.8592,-16.6896,-15.504,-12.5856,70.26048,46.968
--13.63768,-17.57532,-16.3268,-13.25352,73.99882,48.6668
--13.63626,-17.57349,-16.3251,-13.25214,73.991115,48.3545
--13.22304,-17.04096,-15.8304,-12.75744,71.74896,48.0635
--13.63626,-17.66952,-16.42113,-13.34817,73.981512,48.5496
--13.17745,-16.9556,-15.75765,-12.62455,71.08451,47.0725
--13.17745,-16.9556,-15.75765,-12.80885,71.001575,48.5388
--13.45344,-17.21664,-16.08768,-12.98304,72.48864,47.952
--13.73229,-17.57349,-16.42113,-13.25214,73.981512,49.3515
--13.73229,-17.66952,-16.42113,-13.34817,74.077542,48.8367
--13.82976,-17.67136,-16.42284,-13.25352,74.09486,47.9514
--13.2696,-16.9556,-15.8498,-12.80885,71.093725,46.588
--13.2696,-16.9556,-15.8498,-12.7167,71.08451,47.4621
--14.21,-18.032,-16.856,-13.622,75.5972,49.04
--14.065,-17.848,-16.684,-13.386,74.8258,47.1711
--13.775,-17.575,-16.34,-13.3,73.283,46.797
--14.21,-18.13,-16.856,-13.524,75.5972,47.9514
--14.21145,-18.22986,-16.95573,-13.81941,75.604914,48.2625
--14.16492,-18.04572,-16.78446,-13.5828,74.841228,47.9514
--14.162,-18.042,-16.781,-13.58,74.8258,48.93
--13.4539,-17.1399,-15.94195,-12.5324,71.093725,47.2875
--14.6,-18.5,-17.3,-13.9,77.14,48.45
--14.016,-17.76,-16.608,-13.248,74.0544,48.63
--14.406,-18.228,-16.954,-13.916,75.5972,47.5888
--13.82535,-17.58735,-16.3647,-13.44915,72.55017,48.1437
--13.97382,-17.77622,-16.54044,-13.49852,73.329284,47.2778
--13.54752,-17.14176,-16.03584,-12.81024,71.184384,46.4064
--14.112,-17.856,-16.608,-13.248,74.1504,48.45
--14.06592,-17.67744,-16.53696,-13.3056,73.408896,47.8665
--13.78176,-17.41344,-16.20288,-13.0368,71.925888,47.184
--14.06,-17.86,-16.53,-13.49,73.2925,46.132
--14.06592,-17.86752,-16.53696,-13.49568,73.408896,46.2336
--14.30847,-17.95761,-16.70922,-13.63626,74.173572,47.7576
--13.73184,-17.23392,-16.03584,-13.08672,71.184384,46.128
--14.16096,-17.77248,-16.53696,-13.3056,73.408896,47.8665
--14.01345,-17.6814,-16.45875,-13.26105,72.64422,45.6475
--14.304,-18.048,-16.8,-13.536,74.1408,45.9168
--14.7,-18.424,-17.15,-13.916,75.705,47.1968
--14.25,-17.955,-16.72,-13.49,73.378,48.05
--14.55,-18.236,-16.975,-13.677,74.9228,46.7928
--13.968,-17.50656,-16.296,-13.31616,71.916576,46.5018
--13.62775,-16.967,-15.884,-13.08625,69.7091,45.543
--14.345,-18.05,-16.72,-13.775,73.378,45.448
--15,-19,-17.6,-14.3,77.24,48.05
--14.20155,-17.8695,-16.5528,-13.3551,72.64422,47.2824
--14.20155,-17.77545,-16.5528,-13.3551,72.64422,45.3625
--14.798,-18.424,-17.248,-14.014,75.705,48.16
--14.30016,-17.68704,-16.55808,-13.45344,72.667392,46.795
--15.048,-18.711,-17.523,-14.256,76.4676,48.05
--13.8624,-17.328,-16.1424,-13.1328,70.44288,45.9264
--14.0068,-17.5085,-16.31055,-13.2696,71.17666,45.372
--14.1512,-17.5959,-16.4787,-13.3133,71.91044,45.3625
--14.39577,-17.78301,-16.65393,-13.45487,72.675116,46.0362
--14.688,-18.144,-16.992,-13.824,74.1504,45.84
--14.688,-18.336,-16.992,-13.824,74.1504,46.0224
--14.39424,-17.96928,-16.74624,-13.6416,72.667392,46.991
--14.994,-18.718,-17.444,-14.21,75.6952,47.84
--14.48832,-17.96928,-16.74624,-13.35936,72.667392,46.128
--14.0448,-17.328,-16.2336,-13.0416,70.44288,46.4064
--14.94108,-18.4338,-17.26956,-13.97088,74.938248,47.8665
--14.48832,-17.8752,-16.74624,-13.54752,72.667392,45.84
--15.246,-18.909,-17.622,-14.652,76.4577,47.24
--15.035,-18.624,-17.266,-14.356,74.9228,47.75
--14.7312,-18.24768,-16.91712,-13.87584,73.408896,45.84
--14.4336,-17.78592,-16.57536,-13.5024,71.9352,45.84
--15.035,-18.527,-17.266,-14.065,74.9228,46.84
--14.88,-18.24,-17.088,-14.016,74.1504,47.35
--14.67648,-17.8752,-16.84032,-13.82976,72.667392,46.1874
--14.82936,-18.25152,-17.01574,-14.06888,73.424344,46.1874
--15.6,-19.3,-17.9,-14.7,77.24,47.54
--14.82624,-18.24768,-17.01216,-13.87584,73.408896,45.168
--14.915,-18.24,-17.005,-13.775,73.378,47.24
--15.07671,-18.34173,-17.18937,-13.63626,74.077542,46.9854
--14.76585,-17.96355,-16.83495,-13.167,72.55017,46.6587
--15.38757,-18.6219,-17.54379,-14.01543,75.702924,46.7676
--15.23214,-18.53082,-17.36658,-14.26194,74.938248,46.2952
--14.86464,-17.96928,-16.84032,-13.92384,72.667392,45.168
--14.7098,-17.8752,-16.758,-13.6857,71.91044,44.6975
--15.326,-18.624,-17.363,-14.259,74.8258,47.13
--14.4096,-17.5104,-16.416,-13.3152,70.44288,45.163
--14.56128,-17.60256,-16.49664,-13.54752,71.092224,45.6384
--14.8029,-17.7821,-16.6649,-13.7788,71.82665,45.087
--14.80608,-17.87904,-16.7616,-13.68864,71.925888,45.5616
--14.95872,-18.25152,-16.9344,-14.112,72.573312,46.5892
--15.423,-18.818,-17.46,-14.259,74.9228,47.35
--14.34975,-17.41825,-16.245,-13.357,69.61885,44.878
--15.264,-18.528,-17.28,-14.208,74.0544,47.46
--14.592,-17.6016,-16.5072,-13.224,70.44288,46.128
--14.744,-17.78495,-16.587,-13.6382,71.17666,46.3175
--15.2,-18.335,-17.195,-14.25,73.378,44.422
--14.44,-17.59875,-16.33525,-13.44725,69.7091,44.5075
--15.048,-18.33975,-17.02305,-14.01345,72.64422,44.6975
--14.83615,-17.96925,-16.67915,-13.54605,71.17666,45.4385
--14.99232,-18.1584,-16.94784,-13.87488,71.925888,45.9295
--15.778,-19.012,-17.836,-14.504,75.6952,46.5892
--15.14688,-18.25152,-17.02848,-13.82976,72.667392,47.2752
--15.30144,-18.43776,-17.29728,-14.256,73.408896,47.2725
--14.6832,-17.8752,-16.6896,-13.7712,70.44288,44.9825
--15.39,-18.62,-17.29,-14.44,73.378,45.6475
--15.24096,-18.43968,-17.21664,-14.112,72.667392,45.9264
--15.39972,-18.5367,-17.39598,-14.259,73.424344,46.9812
--15.24258,-18.34755,-17.21847,-14.20759,72.675116,46.0362
--14.92992,-17.9712,-16.86528,-13.54752,71.184384,45.9168
--15.71724,-18.9189,-17.65764,-14.65002,74.938248,47.2725
--15.1753,-18.2476,-17.0373,-14.1512,71.91044,44.9825
--15.97563,-19.30797,-17.93583,-14.99553,75.604914,46.7676
--15.811,-19.109,-17.751,-14.647,74.9131,47.13
--16.137,-19.503,-18.216,-14.85,76.3686,47.0646
--15.1753,-18.2476,-17.1304,-14.0581,71.81734,46.8832
--16.4,-19.6,-18.4,-15.2,77.14,47.83
--15.91128,-19.01592,-17.85168,-14.74704,74.938248,47.5695
--15.908,-19.012,-17.848,-14.841,74.9228,46.5018
--15.75056,-19.01592,-17.67136,-14.69412,74.085256,46.5108
--15.42912,-18.62784,-17.4048,-14.30016,72.667392,46.8832
--16.072,-19.404,-18.13,-15.19,75.5972,48.24
--16.17,-19.404,-18.13,-14.7,75.5972,48.35
--16.005,-19.109,-17.945,-14.841,74.8355,47.75
--16.5,-19.7,-18.4,-15,77.14,47.75
--15.675,-18.715,-17.575,-14.345,73.283,47.75
--15.52485,-18.62982,-17.40665,-14.48986,72.675116,46.5018
--15.20475,-18.2457,-17.04775,-14.09895,71.17666,46.4048
--15.77996,-18.91694,-17.5861,-14.44912,73.424344,47.3845
--16.268,-19.404,-18.13,-15.092,75.5972,48.24
--15.2969,-18.33785,-17.1399,-14.1911,71.08451,45.543
--15.77996,-18.82188,-17.68116,-14.63924,73.329284,47.6672
--15.94098,-19.01394,-17.86158,-14.88465,74.087145,46.8995
--16.199,-19.303,-18.042,-14.744,74.8258,48.05
--15.39072,-18.33984,-17.14176,-14.10048,71.092224,46.3104
--16.366,-19.502,-18.228,-14.896,75.5972,48.05
--16.20234,-19.404,-18.14274,-14.94108,74.841228,47.9514
--15.70635,-18.81,-17.58735,-14.4837,72.559575,46.132
--15.39072,-18.432,-17.23392,-14.2848,71.092224,46.3104
--16.46568,-19.602,-18.32787,-15.28956,75.604914,47.6784
--15.64416,-18.624,-17.41344,-14.52672,71.832768,47.1711
--16.29936,-19.30698,-18.14274,-14.74704,74.85093,47.7576
--15.48288,-18.33984,-17.23392,-14.19264,71.092224,46.6176
--16.296,-19.303,-18.139,-15.035,74.8258,48.93
--16.632,-19.8,-18.513,-15.345,76.3686,48.24
--15.80544,-18.91008,-17.59296,-14.67648,72.58272,46.0224
--16.731,-19.8,-18.612,-15.345,76.3686,48.16
--16.562,-19.6,-18.424,-15.092,75.5972,48.16
--15.57335,-18.43,-17.23205,-14.1911,71.08451,46.8995
--15.7339,-18.62,-17.4097,-14.4305,71.81734,47.7652
--16.562,-19.502,-18.326,-15.092,75.5972,48.57
--16.83,-19.701,-18.513,-15.147,76.3785,48.93
--15.9953,-18.72391,-17.59483,-14.48986,72.581026,47.0062
--15.6655,-18.43,-17.23205,-14.1911,71.08451,47.6755
--16.1602,-19.012,-17.77622,-14.63924,73.329284,47.873
--16.1568,-19.008,-17.77248,-14.82624,73.313856,46.9728
--15.75765,-18.43,-17.3242,-14.1911,71.08451,46.588
--16.59042,-19.404,-18.14274,-15.0381,74.85093,48.1437
--16.08768,-18.816,-17.68704,-14.48832,72.58272,47.873
--15.75765,-18.43,-17.3242,-14.1911,71.08451,46.6925
--16.08255,-18.81,-17.6814,-14.38965,72.55017,46.132
--15.43275,-18.05,-16.967,-13.8985,69.61885,46.1985
--16.08768,-18.816,-17.68704,-14.5824,72.573312,47.383
--17.1,-20,-18.8,-15.6,77.14,48.56
--16.35032,-19.012,-17.87128,-14.63924,73.329284,47.1808
--15.6864,-18.24,-17.1456,-13.9536,70.35168,45.828
--16.512,-19.2,-18.048,-14.784,74.064,46.3104
--16.35032,-19.012,-17.87128,-14.54418,73.33879,47.775
--15.6864,-18.24,-17.1456,-14.136,70.35168,46.2336
--16.18348,-18.818,-17.68892,-14.58395,72.590435,46.7152
--17.3,-20.1,-18.8,-15.6,77.14,48.56
--16.95573,-19.70001,-18.52389,-15.28956,75.614715,47.8665
--15.61325,-18.14025,-16.967,-13.8985,69.627875,45.752
--16.78446,-19.50102,-18.23976,-15.0381,74.841228,47.6672
--16.781,-19.497,-18.236,-14.841,74.8355,47.6755
--16.954,-19.6,-18.424,-15.288,75.5972,47.5888
--16.70922,-19.30203,-18.05364,-14.88465,74.087145,46.6085
--16.37166,-18.91209,-17.68892,-14.48986,72.581026,46.6085
--16.36992,-18.91008,-17.78112,-14.77056,72.58272,46.6848
--17.226,-19.899,-18.711,-15.444,76.3686,47.5695
--16.53,-19.095,-17.955,-14.82,73.283,47.94
--16.70922,-19.30203,-18.14967,-14.88465,74.077542,46.6085
--16.3647,-18.90405,-17.77545,-14.6718,72.55017,45.543
--17.052,-19.698,-18.522,-15.288,75.5972,48.05
--16.37166,-18.91209,-17.78301,-14.58395,72.581026,46.6085
--17.325,-19.998,-18.711,-15.444,76.3785,47.75
--16.8,-19.392,-18.144,-14.784,74.064,46.128
--16.625,-19.19,-17.955,-14.82,73.283,45.7425
--16.12625,-18.52215,-17.41635,-14.1911,71.08451,46.3951
--16.9785,-19.50102,-18.33678,-15.13512,74.841228,46.9812
--17.248,-19.698,-18.522,-15.386,75.5972,47.2752
--16.55808,-18.91008,-17.78112,-14.77056,72.573312,46.9812
--17.248,-19.796,-18.522,-15.288,75.5972,47.6574
--17.07552,-19.59804,-18.33678,-15.32916,74.85093,47.4606
--16.55984,-19.00618,-17.78301,-14.77213,72.581026,46.5018
--17.6,-20.2,-18.9,-15.7,77.15,48.24
--16.72704,-19.19808,-17.96256,-14.63616,73.32336,45.744
--16.65393,-19.00618,-17.78301,-14.67804,72.581026,46.3175
--16.5528,-18.9981,-17.77545,-14.8599,72.559575,46.7676
--16.992,-19.392,-18.144,-15.168,74.064,45.744
--16.31055,-18.70645,-17.41635,-14.5597,71.08451,45.543
--16.815,-19.19,-17.955,-14.82,73.378,45.6475
--17.169,-19.594,-18.333,-15.035,74.8355,46.2205
--16.815,-19.19,-17.955,-14.915,73.283,45.543
--17.17254,-19.59804,-18.4338,-15.23214,74.841228,47.1735
--16.5718,-18.8993,-17.689,-14.5236,71.91044,46.8734
--17.088,-19.488,-18.24,-15.072,74.1504,46.512
--16.57536,-18.90336,-17.6928,-14.71296,71.832768,45.744
--16.4027,-18.70645,-17.5085,-14.46755,71.08451,45.163
--16.74624,-19.00416,-17.8752,-14.5824,72.667392,47.089
--17.09334,-19.39806,-18.2457,-15.07671,74.077542,47.6685
--17.09334,-19.49409,-18.2457,-15.17274,74.087145,47.0062
--16.66848,-18.81024,-17.6928,-14.61984,71.925888,45.84
--16.49664,-18.70848,-17.5104,-14.46912,71.092224,45.7344
--16.83495,-19.09215,-17.8695,-14.76585,72.55017,45.4385
--16.84211,-19.10027,-17.8771,-14.96031,72.581026,46.1138
--16.66848,-18.90336,-17.6928,-14.61984,71.832768,45.5616
--17.363,-19.788,-18.43,-15.326,74.8258,47.54
--16.84032,-19.09824,-17.96928,-14.77056,72.58272,46.0224
--16.7616,-18.90336,-17.6928,-14.61984,71.84208,48.24
--17.542,-19.894,-18.62,-15.484,75.607,48.46
--17.64,-19.894,-18.718,-15.484,75.607,47.45
--16.9362,-19.10027,-17.8771,-14.86622,72.581026,45.8228
--17.2854,-19.49409,-18.2457,-15.07671,74.087145,47.4621
--17.2854,-19.49409,-18.2457,-15.17274,73.991115,47.1711
--16.5888,-18.70848,-17.5104,-14.56128,71.10144,46.896
--16.587,-18.70645,-17.5085,-14.5597,71.093725,46.4075
--17.82,-20.097,-18.909,-15.642,76.3686,48.4407
--17.38143,-19.59012,-18.34173,-15.26877,74.087145,47.4621
--16.85472,-18.99648,-17.78592,-14.80608,71.84208,47.3942
--17.919,-20.196,-18.909,-15.642,76.3686,49.1634
--17.73981,-19.99404,-18.71991,-15.48558,75.516705,49.3515
--17.02848,-19.19232,-17.96928,-14.77056,72.573312,48.4128
--17.38324,-19.59216,-18.34364,-15.17432,73.989216,48.4512
--16.33525,-18.411,-17.23775,-14.34975,69.537625,46.873
--17.02848,-19.19232,-17.96928,-14.86464,72.48864,47.9616
--18.018,-20.196,-18.909,-15.642,76.2795,48.9456
--18.018,-20.196,-18.909,-15.642,76.2795,48.9456
--17.29728,-19.38816,-18.24768,-15.2064,73.218816,49.3515
--17.83782,-20.09205,-18.81792,-15.48558,75.516705,47.6784
--17.1171,-19.28025,-18.0576,-14.8599,72.465525,48.7674
--17.12256,-19.19232,-18.06336,-14.95872,72.48864,47.3732
--16.9442,-18.9924,-17.7821,-14.7098,71.73355,46.797
--18.018,-20.196,-19.008,-15.741,76.2795,48.45
--16.94784,-18.99648,-17.87904,-14.71296,71.74896,47.1032
--16.86345,-18.7986,-17.6928,-14.65185,70.99236,48.1702
--17.21664,-19.2864,-18.06336,-14.86464,72.48864,47.6736
--17.934,-20.188,-18.816,-15.778,75.509,50.14
--17.93583,-20.09205,-18.81792,-15.58359,75.516705,49.4604
--17.934,-20.09,-18.816,-15.582,75.509,49.25
--16.86345,-18.89075,-17.6928,-14.83615,71.001575,48.3545
--17.568,-19.68,-18.432,-15.264,73.968,47.7504
--17.75466,-19.8891,-18.62784,-15.5232,74.75391,49.2426
--17.39598,-19.4873,-18.25152,-15.11454,73.24373,48.0635
--17.568,-19.68,-18.432,-15.36,73.9584,47.6736
--18.03384,-19.99404,-18.81792,-15.77961,75.516705,49.2426
--17.934,-20.09,-18.816,-15.68,75.4992,49.44
--17.31072,-19.2864,-18.06336,-14.95872,72.479232,47.2896
--17.3052,-19.3743,-18.15165,-15.048,72.45612,46.588
--17.3052,-19.3743,-18.15165,-14.95395,72.371475,46.4835
--17.31072,-19.2864,-18.15744,-14.95872,72.479232,48.7452
--17.848,-19.982,-18.721,-15.423,74.6415,49.15
--17.31256,-19.38254,-18.15937,-15.24258,72.402255,46.9965
--18.315,-20.394,-19.107,-15.84,76.1805,48.5496
--17.04775,-18.9829,-17.78495,-14.744,70.91864,46.6925
--17.39925,-19.3743,-18.15165,-14.95395,72.465525,46.208
--18.315,-20.394,-19.107,-15.939,76.1805,48.4407
--16.872,-18.7872,-17.6016,-14.6832,70.1784,46.588
--17.945,-19.982,-18.721,-15.423,74.6415,49.33
--17.4048,-19.38048,-18.15744,-15.0528,72.39456,47.7652
--17.40665,-19.38254,-18.25346,-15.0544,72.496345,47.7725
--17.2272,-19.18272,-17.97216,-14.8992,71.65584,46.896
--17.856,-19.776,-18.624,-15.456,73.8624,48.34
--17.5824,-19.57824,-18.43776,-15.2064,73.13328,46.416
--18.414,-20.394,-19.206,-15.741,76.1805,48.1536
--17.86158,-19.78218,-18.62982,-15.46083,73.895085,48.8367
--17.50074,-19.38254,-18.25346,-15.14849,72.402255,46.8898
--17.67744,-19.67328,-18.43776,-15.2064,73.13328,47.7576
--18.228,-20.188,-19.012,-15.68,75.411,48.265
--17.49888,-19.47456,-18.25152,-15.0528,72.39456,47.1968
--17.856,-19.776,-18.624,-15.552,73.8624,48.56
--17.68116,-19.58236,-18.44164,-15.39972,73.139164,47.187
--17.95948,-19.88028,-18.63176,-15.46244,73.912384,47.4908
--17.4097,-19.2717,-18.0614,-14.896,71.64045,46.968
--17.23205,-19.07505,-17.8771,-15.02045,70.909425,47.2778
--17.95761,-19.87821,-18.62982,-15.55686,73.895085,47.2778
--17.59296,-19.47456,-18.25152,-15.14688,72.39456,46.8734
--18.139,-20.079,-18.818,-15.617,74.6415,48.16
--17.952,-19.872,-18.624,-15.36,73.872,46.6176
--17.23205,-19.07505,-17.8771,-14.83615,70.909425,47.2778
--17.95761,-19.78218,-18.62982,-15.46083,73.895085,46.7928
--17.59296,-19.47456,-18.25152,-15.14688,72.39456,45.9168
--17.58735,-19.46835,-18.2457,-15.14205,72.371475,48.0744
--17.3242,-19.07505,-17.8771,-14.9283,70.909425,47.1032
--18.612,-20.592,-19.206,-15.939,76.1805,48.6585
--18.42588,-20.38608,-19.01394,-15.77961,75.418695,47.5695
--17.87128,-19.77248,-18.5367,-15.39972,73.14867,47.2752
--17.3242,-19.1672,-17.96925,-14.83615,70.909425,46.6085
--16.967,-18.68175,-17.59875,-14.6205,69.447375,46.6925
--18.048,-19.968,-18.72,-15.552,73.8816,49.04
--17.86752,-19.76832,-18.5328,-15.49152,73.13328,46.9728
--17.86752,-19.76832,-18.5328,-15.30144,73.13328,45.9168
--17.86752,-19.76832,-18.5328,-15.49152,73.13328,48.1437
--18.048,-19.968,-18.72,-15.648,73.872,45.456
--18.14967,-19.97424,-18.72585,-15.55686,73.895085,47.5695
--17.96256,-19.76832,-18.5328,-15.39648,73.13328,47.1735
--17.955,-19.76,-18.525,-15.295,73.1025,47.24
--18.15156,-19.97632,-18.7278,-15.3664,73.90278,47.2752
--17.41635,-19.25935,-18.0614,-14.9283,70.909425,45.448
--17.78112,-19.56864,-18.3456,-15.24096,72.39456,44.8896
--18.14967,-19.97424,-18.82188,-15.65289,73.895085,45.8228
--17.96634,-19.86754,-18.63176,-15.39972,73.14867,45.6385
--17.78112,-19.66272,-18.43968,-15.24096,72.39456,46.0224
--18.33678,-20.27718,-19.01592,-15.91128,74.65689,46.8765
--18.33678,-20.27718,-19.01592,-15.62022,74.65689,46.0012
--18.81,-20.592,-19.404,-16.038,76.1805,48.34
--17.77545,-19.5624,-18.4338,-15.14205,72.371475,44.498
--18.62,-20.384,-19.208,-16.072,75.4208,47.65
--19,-20.8,-19.6,-16.5,76.95,47.54
--18.81,-20.691,-19.404,-16.236,76.1805,47.1636
--18.2457,-20.07027,-18.82188,-15.74892,73.895085,46.6587
--17.1475,-18.86225,-17.689,-14.71075,69.447375,45.9325
--18.0614,-19.86754,-18.63176,-15.39972,73.14867,45.8228
--17.8771,-19.57072,-18.44164,-15.52485,72.402255,46.0362
--18.81,-20.691,-19.404,-16.236,76.1805,47.0646
--18.71991,-20.48409,-19.20996,-16.07364,75.418695,46.9755
--17.60065,-19.25935,-18.0614,-15.20475,70.909425,45.7258
--18.15646,-19.86754,-18.63176,-15.58984,73.14867,45.7268
--18.34173,-20.07027,-18.82188,-15.74892,73.895085,47.0646
--17.7821,-19.4579,-18.2476,-15.2684,71.64045,44.9825
--17.7821,-19.4579,-18.2476,-15.2684,71.64045,45.6475
--18.336,-20.064,-18.816,-15.744,73.872,45.6384
--18.527,-20.273,-19.012,-15.908,74.6415,45.9295
--18.15646,-19.86754,-18.63176,-15.6849,73.14867,46.7152
--17.60256,-19.26144,-18.06336,-15.02208,70.91712,46.8
--18.15264,-19.86336,-18.62784,-15.49152,73.142784,46.2336
--17.6928,-19.25935,-18.0614,-15.1126,70.817275,45.923
--17.78592,-19.46208,-18.34464,-15.27168,71.65584,45.9168
--17.60065,-19.25935,-18.0614,-15.20475,70.909425,46.2205
--19.008,-20.691,-19.404,-16.434,76.1805,47.54
--18.816,-20.482,-19.306,-16.268,75.411,46.2952
--18.06336,-19.66272,-18.43968,-15.5232,72.39456,45.7344
--18.24,-19.855,-18.715,-15.485,73.1025,45.923
--18.43776,-20.07027,-18.91791,-15.74892,73.895085,48.0744
--17.69472,-19.3536,-18.15552,-15.11424,70.91712,46.128
--18.62784,-20.3742,-19.11294,-15.91128,74.65689,47.089
--17.6928,-19.3515,-18.15355,-15.20475,70.909425,45.087
--18.816,-20.58,-19.306,-16.268,75.411,46.2952
--18.624,-20.37,-19.109,-15.714,74.6415,47.83
--18.06336,-19.7568,-18.53376,-15.42912,72.39456,46.403
--18.624,-20.37,-19.109,-15.811,74.6415,47.54
--17.97216,-19.5552,-18.34464,-15.3648,71.65584,46.7055
--17.78495,-19.3515,-18.15355,-15.1126,70.91864,45.163
--18.15937,-19.7589,-18.53573,-15.43076,72.402255,46.2108
--19.107,-20.79,-19.503,-16.137,76.1805,47.3517
--17.6016,-19.152,-17.9664,-15.048,70.1784,45.6475
--18.53379,-20.1663,-18.91791,-15.84495,73.895085,46.9854
--18.91593,-20.5821,-19.40598,-16.17165,75.418695,47.1735
--18.91593,-20.5821,-19.30797,-16.17165,75.418695,47.1735
--17.78688,-19.3536,-18.24768,-15.29856,70.91712,45.168
--18.914,-20.678,-19.404,-16.268,75.411,45.9032
--17.97216,-19.64832,-18.43776,-15.27168,71.65584,45.5415
--18.15937,-19.85299,-18.62982,-15.43076,72.402255,45.7161
--18.818,-20.467,-19.206,-15.908,74.5445,47.94
--17.78688,-19.44576,-18.24768,-15.11424,70.91712,46.2336
--17.5085,-19.04275,-17.8695,-14.71075,69.357125,45.828
--17.5085,-19.04275,-17.8695,-14.801,69.447375,44.9825
--17.6928,-19.2432,-18.0576,-15.1392,70.0872,44.7735
--17.8771,-19.44365,-18.2457,-15.1126,70.817275,45.0468
--18.0614,-19.6441,-18.4338,-15.4546,71.54735,45.8248
--17.6928,-19.2432,-18.0576,-14.9568,70.09632,44.5824
--18.44164,-20.05766,-18.82188,-15.77996,73.05361,45.9295
--19.012,-20.678,-19.404,-16.17,75.313,45.7268
--18.818,-20.467,-19.206,-15.908,74.5445,44.9692
--18.06528,-19.64832,-18.43776,-15.27168,71.56272,46.3951
--18.43776,-20.05344,-18.81792,-15.6816,73.03824,46.1934
--18.34755,-19.85299,-18.62982,-15.52485,72.308165,46.9965
--19.4,-21.1,-19.8,-16.4,76.86,47.54
--18.7278,-20.26444,-19.01592,-15.94264,73.80674,45.913
--18.5328,-20.05344,-18.91296,-15.6816,73.047744,46.3023
--17.784,-19.2432,-18.0576,-15.1392,70.0872,44.2944
--19.11195,-20.68011,-19.40598,-16.26966,75.320685,46.3815
--18.1545,-19.6441,-18.4338,-15.4546,71.54735,46.011
--17.96925,-19.44365,-18.2457,-15.20475,70.909425,45.7258
--19.11,-20.678,-19.502,-16.366,75.313,47.64
--17.9712,-19.44576,-18.33984,-15.39072,70.82496,44.688
--18.1584,-19.64832,-18.53088,-15.45792,71.56272,44.016
--19.305,-20.988,-19.701,-16.533,76.0815,46.7676
--18.82384,-20.26444,-19.11196,-15.94264,73.90278,45.913
--18.5367,-20.05766,-18.91694,-15.77996,73.14867,44.5812
--18.9189,-20.47122,-19.30698,-16.0083,74.65689,45.227
--19.20996,-20.68011,-19.50399,-16.36767,75.418695,44.9856
--18.62,-20.045,-18.905,-15.58,73.1025,43.7285
--18.82384,-20.36048,-19.11196,-15.94264,73.90278,45.619
--18.06336,-19.53792,-18.33984,-15.2064,70.91712,45.168
--18.43968,-19.94496,-18.72192,-15.61728,72.39456,45.8248
--18.0614,-19.5358,-18.33785,-15.38905,70.909425,44.2225
--18.82188,-20.35836,-19.10997,-15.94098,73.895085,45.1535
--18.816,-20.352,-19.104,-16.032,73.872,46.65
--18.44164,-19.94708,-18.72391,-15.61894,72.402255,44.5812
--18.4338,-19.9386,-18.71595,-15.51825,72.371475,45.6786
--18.62,-20.14,-18.905,-15.675,73.1025,43.833
--18.82188,-20.35836,-19.10997,-15.94098,73.895085,45.0468
--18.0614,-19.5358,-18.33785,-15.20475,70.909425,43.377
--18.62784,-20.14848,-18.91296,-15.96672,73.142784,46.3716
--18.816,-20.352,-19.104,-16.032,73.7856,46.95
--18.52785,-19.9386,-18.71595,-15.70635,72.277425,44.878
--19.20996,-20.77812,-19.50399,-16.36767,75.320685,46.9755
--18.3407,-19.7372,-18.62,-15.3615,71.55666,44.498
--19.503,-20.988,-19.8,-16.434,76.0815,46.7676
--18.3407,-19.7372,-18.62,-15.5477,71.54735,46.403
--18.912,-20.352,-19.2,-15.936,73.7856,47.13
--19.503,-20.988,-19.8,-16.533,76.0815,46.3716
--18.53573,-20.04117,-18.818,-15.71303,72.298756,45.1535
--18.91988,-20.36048,-19.208,-15.94264,73.816344,46.011
--18.72682,-20.15272,-19.012,-15.77996,73.063116,47.089
--19.109,-20.564,-19.4,-16.296,74.5445,46.14
--18.34464,-19.83456,-18.624,-15.3648,71.56272,44.688
--19.306,-20.188,-18.13,-16.954,75.3228,48.05
--19.30797,-19.11195,-16.95573,-16.95573,75.320685,46.3716
--18.53376,-17.49888,-15.33504,-15.89952,72.30048,45.8248
--19.503,-17.721,-15.444,-16.632,76.0815,46.6587
--19.404,-17.052,-14.406,-15.778,75.313,46.0012
--19.008,-17.952,-14.88,-14.496,73.7856,46.36
--18.6219,-18.6219,-15.6123,-15.048,72.277425,44.9825
--19.20996,-19.404,-16.4934,-15.23214,74.55987,47.3517
--18.62784,-18.816,-16.18176,-14.48832,72.30048,45.9032
--18.81,-18.905,-16.53,-14.535,73.0075,47.53
--19.01592,-19.11196,-16.807,-14.50204,73.80674,46.2952
--19.8,-19.8,-17.6,-15.1,76.85,47.35
--19.206,-19.206,-17.169,-14.841,74.4572,45.7161
--19.602,-19.503,-17.622,-14.949,75.9924,47.76
--19.008,-18.912,-17.088,-14.688,73.776,47.65
--19.602,-19.602,-17.721,-15.246,76.0815,47.6685
--19.8,-20,-18.1,-15.6,76.76,48.16
--18.82188,-19.10706,-17.30092,-14.7343,72.95855,46.1874
--18.24768,-18.52416,-16.77312,-14.37696,70.7328,45.6288
--19.01394,-19.30203,-17.57349,-14.69259,73.703025,47.0646
--19.404,-19.698,-18.032,-15.288,75.215,45.619
--19.602,-19.899,-18.216,-15.345,75.9924,47.8566
--19.01394,-19.30203,-17.76555,-14.98068,73.703025,46.7676
--18.43776,-18.71712,-17.2272,-14.61984,71.478912,46.512
--18.82188,-19.10706,-17.5861,-15.01948,72.968056,46.0265
--18.2457,-18.6143,-17.1399,-14.5597,70.73434,44.9825
--19.008,-19.488,-17.952,-15.168,73.68,47.13
--18.81,-19.285,-17.765,-14.915,72.9125,48.56
--18.2457,-18.70645,-17.3242,-14.46755,70.73434,44.4745
--19.206,-19.691,-18.236,-15.229,74.4572,46.55
--19.01394,-19.49409,-18.05364,-15.17274,73.712628,45.9756
--18.82188,-19.29718,-17.87128,-15.01948,72.968056,46.1874
--19.20996,-19.69506,-18.33678,-15.13512,74.472552,45.3915
--19.8,-20.3,-18.9,-15.8,76.76,45.95
--18.6219,-19.1862,-17.77545,-15.048,72.183375,46.8765
--19.008,-19.584,-18.24,-15.264,73.68,46.76
--18.72192,-19.19232,-17.8752,-14.86464,72.2064,46.795
--19.404,-20.09,-18.718,-15.582,75.215,46.03
--18.0576,-18.696,-17.4192,-14.5008,69.996,44.422
--19.303,-19.885,-18.527,-15.229,74.4475,45.2505
--19.50399,-20.09205,-18.71991,-15.77961,75.232476,45.7875
--19.104,-19.68,-18.336,-15.36,73.68,47.35
--19.01394,-19.68615,-18.34173,-15.26877,73.703025,47.2725
--18.72192,-19.2864,-18.06336,-14.86464,72.121728,45.456
--18.43776,-19.0896,-17.87904,-14.80608,71.385792,46.0362
--19.30698,-19.8891,-18.62784,-15.5232,74.375532,46.109
--19.50399,-20.09205,-18.81792,-15.6816,75.134466,47.0646
--19.104,-19.776,-18.432,-15.264,73.5936,47.24
--18.91694,-19.58236,-18.25152,-15.2096,72.872996,45.6092
--19.10997,-19.78218,-18.53379,-15.26877,73.616598,46.7152
--19.30698,-19.98612,-18.72486,-15.5232,74.375532,45.9756
--18.53088,-19.18272,-17.97216,-14.99232,71.385792,46.3951
--19.30698,-19.98612,-18.72486,-15.42618,74.36583,46.4706
--18.1488,-18.7872,-17.6016,-14.592,69.91392,44.9825
--18.905,-19.57,-18.335,-15.295,72.827,45.543
--19.502,-20.286,-18.914,-15.778,75.117,46.0012
--18.1488,-18.8784,-17.6928,-14.7744,69.91392,45.163
--18.905,-19.665,-18.43,-15.295,72.827,44.3175
--18.91694,-19.77248,-18.44164,-15.2096,72.872996,46.1972
--18.905,-19.76,-18.43,-15.39,72.8175,45.752
--18.62982,-19.47663,-18.25346,-15.24258,72.129394,46.3951
--18.71595,-19.5624,-18.2457,-15.14205,72.09873,45.6475
--19.30698,-20.18016,-18.82188,-15.71724,74.36583,47.8566
--18.91694,-19.77248,-18.44164,-15.58984,72.777936,47.873
--19.303,-20.176,-18.915,-15.714,74.3602,46.0362
--18.53088,-19.36896,-18.1584,-15.17856,71.292672,45.7344
--18.91694,-19.77248,-18.5367,-15.39972,72.872996,45.6385
--18.72192,-19.56864,-18.3456,-15.33504,72.121728,45.6384
--18.905,-19.855,-18.525,-15.485,72.732,45.258
--18.905,-19.855,-18.525,-15.485,72.732,47.75
--19.502,-20.384,-19.208,-15.778,75.1268,47.05
--19.104,-20.064,-18.72,-15.648,73.4976,45.84
--18.1488,-19.0608,-17.8752,-14.8656,69.82272,45.258
--18.72192,-19.66272,-18.43968,-15.33504,72.027648,46.128
--18.91296,-19.86336,-18.62784,-15.49152,72.762624,47.5695
--19.10997,-19.97424,-18.82188,-15.46083,73.520568,47.6784
--19.502,-20.482,-19.208,-16.17,75.0288,45.8346
--18.5269,-19.4579,-18.2476,-15.1753,71.27736,46.6872
--19.30698,-20.27718,-19.01592,-16.10532,74.278512,46.1874
--18.53088,-19.5552,-18.25152,-15.27168,71.292672,45.552
--18.33984,-19.26144,-18.06336,-15.11424,70.557696,46.0224
--18.905,-19.95,-18.715,-15.485,72.732,48.34
--18.72192,-19.7568,-18.53376,-15.42912,72.01824,45.552
--18.905,-19.855,-18.715,-15.58,72.732,48.24
--19.50399,-20.5821,-19.30797,-15.97563,75.036456,48.8367
--19.104,-20.16,-18.912,-15.744,73.4976,46.66
--18.5269,-19.551,-18.3407,-15.2684,71.27736,46.303
--18.53088,-19.5552,-18.34464,-15.27168,71.292672,46.0362
--19.10997,-20.1663,-18.91791,-15.84495,73.520568,46.2205
--18.72192,-19.7568,-18.62784,-15.42912,72.027648,46.6848
--18.72192,-19.7568,-18.53376,-15.42912,72.01824,45.7344
--18.5269,-19.551,-18.3407,-15.1753,71.27736,46.0275
--18.91694,-19.9626,-18.82188,-15.6849,72.777936,45.7161
--18.91694,-19.9626,-18.72682,-15.49478,72.777936,46.9812
--19.104,-20.16,-19.008,-15.84,73.4976,47.83
--19.701,-20.889,-19.602,-16.335,75.7944,48.56
--19.303,-20.467,-19.206,-16.102,74.2632,48.34
--18.72192,-19.85088,-18.62784,-15.61728,71.933568,45.4328
--17.95975,-19.04275,-17.8695,-14.89125,69.00515,43.833
--18.53088,-19.64832,-18.43776,-15.3648,71.199552,45.4464
--19.6,-20.678,-19.404,-16.17,74.9308,45.9032
--19.9,-21.1,-19.8,-16.4,76.46,48.56
--18.905,-20.045,-18.81,-15.675,72.637,44.7735
--19.404,-20.47122,-19.20996,-16.10532,74.278512,46.109
--18.33785,-19.44365,-18.2457,-15.2969,70.55004,45.8228
--17.95975,-19.04275,-17.8695,-14.9815,69.086375,46.132
--19.10997,-20.26233,-19.01394,-15.94098,73.424538,46.1835
--18.91296,-20.05344,-18.81792,-15.87168,72.667584,46.5795
--19.012,-20.15272,-18.91694,-15.97008,72.682876,46.109
--18.816,-19.94496,-18.72192,-15.5232,71.933568,46.9812
--19.4,-20.564,-19.303,-16.005,74.1662,48.34
--18.62,-19.7372,-18.5269,-15.4546,71.19357,47.6574
--19.012,-20.15272,-18.91694,-15.97008,72.682876,46.403
--18.816,-19.94496,-18.72192,-15.61728,71.933568,44.688
--19.012,-20.15272,-18.91694,-15.87502,72.682876,44.9692
--18.81,-20.03265,-18.71595,-15.6123,72.00468,46.5795
--19.4,-20.661,-19.303,-16.102,74.2632,46.55
--19.4,-20.176,-17.945,-16.102,74.2632,46.55
--18.24,-17.9664,-15.7776,-16.1424,69.73152,43.453
--18.62,-17.4097,-15.2684,-16.0132,71.27736,44.042
--18.624,-16.85472,-14.52672,-16.20288,71.301984,44.7936
--18.62,-16.2925,-13.7788,-15.827,71.27736,43.7285
--19.4,-17.751,-14.744,-13.968,74.2632,45.74
--19.2,-18.912,-15.84,-15.168,73.4976,43.4496
--19.404,-19.404,-16.39638,-15.23214,74.278512,44.933
--19.2,-19.2,-16.416,-14.784,73.488,46.36
--18.43,-18.33785,-15.94195,-14.1911,70.55004,45.3572
--19.008,-18.91296,-16.53696,-14.54112,72.762624,43.9104
--19.8,-19.602,-17.424,-15.048,75.7944,45.66
--19.2,-19.008,-16.992,-14.592,73.5072,45.16
--18.62,-18.4338,-16.5718,-14.1512,71.27736,42.617
--19.4,-19.109,-17.266,-14.841,74.2632,45.66
--19.6,-19.404,-17.542,-14.994,75.0288,45.85
--18.624,-18.53088,-16.7616,-14.4336,71.292672,44.0768
--19.208,-19.208,-17.47928,-14.8862,73.528224,44.7468
--19.8,-19.998,-18.117,-15.543,75.7944,45.2826
--18.62,-18.8062,-17.0373,-14.6167,71.37046,43.0635
--18.624,-18.81024,-17.13408,-14.61984,71.385792,43.8336
--18.816,-18.91008,-17.31072,-14.5824,72.121728,43.1424
--19,-19.095,-17.575,-14.82,72.8175,44.56
--20,-20.1,-18.5,-15.5,76.65,44.86
--19,-19.19,-17.67,-14.725,72.8175,42.2275
--19,-19.19,-17.67,-14.63,72.8175,41.8475
--19.206,-19.49409,-17.95761,-14.69259,73.606995,43.1165
--18.816,-19.09824,-17.68704,-14.86464,72.121728,43.2768
--18.432,-18.80064,-17.32608,-14.56128,70.649856,42.7776
--19.6,-19.894,-18.424,-15.582,75.117,44.45
--19.008,-19.29312,-17.96256,-15.01632,72.84816,44.0055
--18.62,-18.8993,-17.5959,-14.8029,71.36115,43.6688
--19.208,-19.49612,-18.15156,-15.46244,73.61466,44.149
--18.24,-18.6048,-17.328,-14.592,69.9048,42.96
--19.2,-19.68,-18.24,-15.456,73.68,42.96
--19.208,-19.6882,-18.2476,-15.3664,73.7107,43.953
--18.24,-18.696,-17.4192,-14.6832,70.00512,42.332
--18.432,-18.98496,-17.60256,-14.92992,70.7328,42.8544
--19.6,-20.188,-18.816,-15.778,75.215,44.64
--20,-20.6,-19.2,-16.4,76.75,44.45
--19.404,-19.98612,-18.62784,-15.71724,74.46285,44.4114
--18.818,-19.47663,-18.15937,-15.43076,72.214075,43.5918
--19.012,-19.77248,-18.34658,-15.49478,72.95855,44.0412
--18.43,-19.1672,-17.78495,-15.02045,70.725125,42.693
--18.432,-19.07712,-17.78688,-14.83776,70.7328,42.672
--18.24,-18.9696,-17.6928,-14.8656,69.996,42.0185
--19.602,-20.38608,-19.01394,-16.17165,75.222675,43.7976
--19.8,-20.592,-19.206,-16.236,75.9825,44.56
--19,-19.855,-18.525,-15.58,72.9125,44.56
--19.012,-19.86754,-18.5367,-15.58984,72.95855,43.4075
--19.206,-20.07027,-18.72585,-15.84495,73.712628,43.4075
--19.8,-20.691,-19.404,-16.236,75.9825,44.1936
--18.816,-19.7568,-18.43968,-15.5232,72.215808,44.149
--19,-19.95,-18.62,-15.77,72.922,45.05
--19.012,-19.9626,-18.63176,-15.58984,72.95855,43.7472
--18.24,-19.152,-17.8752,-14.9568,69.996,43.1424
--19.206,-20.1663,-18.82188,-15.94098,73.703025,44.4906
--19.208,-20.1684,-18.91988,-16.13472,73.816344,43.855
--19.206,-20.26233,-18.91791,-15.94098,73.703025,43.6888
--19.008,-20.05344,-18.72288,-15.6816,72.9432,44.4114
--19.8,-20.889,-19.602,-16.434,75.9825,44.6985
--18.43,-19.44365,-18.2457,-15.38905,70.817275,43.3008
--19.008,-20.14848,-18.81792,-15.87168,73.03824,43.248
--18.62,-19.7372,-18.4338,-15.6408,71.45425,43.7472
--19.8,-20.988,-19.701,-16.731,75.9825,45.55
--18.816,-19.85088,-18.62784,-15.61728,72.2064,43.5264
--18.24,-18.4224,-16.3248,-15.504,70.0872,42.902
--18.432,-17.78688,-15.48288,-16.49664,70.7328,43.6224
--19.206,-17.57349,-15.17274,-17.57349,73.799055,46.5795
--18.816,-16.55808,-14.01792,-17.02848,72.30048,44.688
--19.404,-16.78446,-13.87386,-16.0083,74.55987,45.7875
--19.6,-18.62,-15.386,-15.288,75.2248,46.55
--18.24,-18.0576,-15.1392,-14.5008,70.0872,42.8925
--19.008,-19.008,-16.1568,-14.92128,73.03824,44.5995
--19.206,-19.206,-16.51716,-14.98068,73.799055,45.3915
--19.206,-19.10997,-16.70922,-14.88465,73.799055,43.7955
--19,-18.905,-16.625,-14.63,73.0075,46.25
--20,-19.8,-17.6,-15.5,76.85,45.44
--19.404,-19.20996,-17.17254,-14.84406,74.55987,44.639
--18.24,-18.1488,-16.2336,-14.0448,70.09632,43.5575
--19.8,-19.701,-17.721,-15.345,76.0914,45.45
--18.05,-18.05,-16.245,-14.079,69.357125,43.0635
--18.81,-18.90405,-17.02305,-14.8599,72.277425,43.0635
--19.008,-19.19808,-17.39232,-14.82624,73.03824,45.3915
--18.81,-18.9981,-17.3052,-14.8599,72.277425,42.997
--19.012,-19.20212,-17.49104,-15.01948,73.05361,44.4648
--18.816,-19.09824,-17.4048,-15.0528,72.30048,43.728
--19,-19.285,-17.67,-15.105,73.0075,43.833
--19.404,-19.79208,-18.04572,-15.42618,74.55987,44.4332
--18.81,-19.1862,-17.58735,-15.048,72.28683,45.0945
--19.404,-19.8891,-18.23976,-15.42618,74.55987,44.8866
--19.6,-19.992,-18.424,-15.582,75.313,45.5112
--19.4,-19.885,-18.333,-15.617,74.5445,45.0468
--18.624,-19.0896,-17.59968,-14.8992,71.56272,44.5812
--18.81,-19.1862,-17.77545,-14.95395,72.277425,43.453
--19.4,-19.885,-18.43,-15.617,74.5445,45.55
--18.624,-19.18272,-17.6928,-14.99232,71.56272,43.9104
--18.624,-19.18272,-17.78592,-14.99232,71.56272,43.728
--18.62,-19.0855,-17.7821,-14.9891,71.54735,43.453
--19.206,-19.78218,-18.43776,-15.3648,73.799055,44.9856
--19.404,-19.98612,-18.62784,-15.5232,74.55987,45.2172
--19.008,-19.57824,-18.24768,-15.11136,73.047744,45.7875
--20,-20.6,-19.2,-16.1,76.85,45.74
--19.2,-19.776,-18.528,-15.456,73.776,43.5168
--18.62,-19.1786,-17.9683,-15.0822,71.54735,42.8925
--19.404,-20.08314,-18.72486,-15.62022,74.55987,45.0945
--19.404,-20.08314,-18.72486,-15.81426,74.569572,45.2034
--19.404,-20.08314,-18.72486,-15.62022,74.55987,45.4905
--19.8,-20.493,-19.107,-16.038,76.0815,44.7975
--18.81,-19.46835,-18.2457,-15.33015,72.277425,45.2727
--19.602,-20.28807,-19.01394,-15.97563,75.320685,44.9856
--19.4,-20.176,-18.818,-15.811,74.5445,45.85
--18.81,-19.5624,-18.2457,-15.33015,72.277425,45.3915
--18.62,-19.3648,-18.0614,-15.0822,71.54735,43.168
--18.816,-19.56864,-18.3456,-15.24096,72.30048,43.5168
--19.206,-19.97424,-18.72585,-15.55686,73.799055,44.3025
--19.6,-20.482,-19.11,-15.876,75.411,44.5312
--19.206,-20.07027,-18.72585,-15.74892,73.799055,44.4114
--19.206,-19.97424,-18.72585,-15.84495,73.895085,45.3915
--18.81,-19.5624,-18.33975,-15.33015,72.371475,43.6525
--18.816,-19.56864,-18.3456,-15.24096,72.30048,45.1094
--18.624,-19.46208,-18.25152,-15.17856,71.65584,43.6224
--19.012,-19.86754,-18.63176,-15.58984,73.05361,44.0412
--19.208,-20.07236,-18.82384,-15.65452,73.90278,44.639
--19.8,-20.691,-19.404,-16.137,76.0914,45.16
--18.43,-19.25935,-18.0614,-15.1126,70.909425,43.9798
--19,-19.855,-18.62,-15.58,73.0075,44.75
--19.6,-20.482,-19.208,-16.072,75.411,45.05
--19.2,-20.16,-18.816,-15.84,73.776,45.25
--18.43,-19.3515,-18.15355,-15.20475,70.817275,43.6888
--19.404,-20.3742,-19.11294,-16.0083,74.55987,44.6985
--19.2,-20.16,-18.912,-15.84,73.872,44.75
--18.624,-19.5552,-18.34464,-15.3648,71.60928,42.9128
--19.8,-20.79,-19.503,-16.236,76.1904,44.05
--19.8,-20.79,-19.503,-16.335,76.1805,45.15
--18.816,-19.7568,-18.53376,-15.42912,72.385152,43.5168
--19,-19.95,-18.81,-15.675,73.0075,43.168
--18.24,-19.152,-18.0576,-15.048,70.0872,42.6075
--20,-21,-19.8,-16.6,76.85,44.94
--19.008,-20.05344,-18.81792,-15.6816,73.03824,43.6095
--18.43,-19.44365,-18.2457,-15.2969,70.909425,42.028
--19.602,-20.68011,-19.40598,-16.36767,75.418695,43.7085
--18.43,-19.44365,-18.2457,-15.20475,70.909425,42.1325
--19.8,-20.691,-19.008,-15.543,76.1805,43.7976
--19,-18.905,-16.72,-13.015,73.1025,44.56
--18.24,-17.2368,-15.048,-11.4912,70.1784,42.617
--19.404,-17.65764,-15.32916,-11.93346,74.65689,43.3552
--19.008,-16.632,-14.256,-10.73952,73.13328,42
--19.2,-16.32,-13.536,-9.984,73.8624,43.86
--18.818,-15.52485,-12.70215,-9.03264,72.402255,42.6218
--19.206,-15.46083,-12.38787,-8.06652,73.895085,43.4214
--18.816,-14.67648,-11.66592,-7.24416,72.39456,43.7472
--19.008,-14.256,-11.02464,-7.03296,73.13328,42.1056
--19.012,-13.7837,-10.4566,-6.36902,73.14867,43.0612
--19.206,-13.54023,-9.89109,-7.29828,73.895085,42.3308
--19.8,-13.167,-9.9,-7.92,76.1805,43.64
--19.8,-12.375,-9.504,-7.821,76.1805,43.35
--18.81,-11.19195,-8.55855,-7.3359,72.371475,41.4675
--19.008,-10.73952,-8.17344,-6.74784,73.123776,43.3125
--18.81,-10.1574,-7.3359,-6.11325,72.371475,41.667
--19.206,-9.603,-6.81813,-5.95386,73.895085,42.4375
--18.43,-8.2935,-5.62115,-5.3447,70.909425,42.6218
--19.012,-7.69986,-4.84806,-4.84806,73.14867,42.9128
--19.206,-7.10622,-3.93723,-4.32135,73.895085,42.9264
--18.43,-5.98975,-2.85665,-3.77815,70.909425,41.458
--18.624,-5.49408,-1.8624,-3.35232,71.65584,41.904
--18.33785,-4.69965,-0.7372,-2.67235,70.909425,42.1465
--18.905,-4.085,0.475,-2.375,73.1025,41.192
--18.72391,-3.57542,1.50544,-2.25816,72.411664,41.8555
--19.701,-2.871,2.97,-1.98,76.1805,43.94
--18.5269,-2.0482,3.6309,-1.4896,71.64045,43.169
--18.72391,-1.50544,4.79859,-1.03499,72.402255,42.9128
--18.72192,-1.12896,5.92704,-0.56448,72.385152,42.3936
--19.602,-0.396,7.326,-0.099,76.1805,43.3125
--18.4338,0.1862,7.8204,0.3724,71.64045,43.0612
--19.20996,0.87318,9.31392,0.29106,74.647188,43.7085
--19.20996,1.26126,10.28412,1.06722,74.647188,42.7086
--17.9664,2.0064,10.5792,1.368,70.1784,41.192
--19.11294,2.61954,12.41856,1.64934,74.65689,42.581
--17.77925,3.0685,12.4545,1.9855,69.447375,41.363
--19.404,4.059,14.652,2.673,76.1805,43.46
--18.82384,4.60992,15.17432,3.16932,73.90278,42.5908
--19.012,5.141,16.587,3.88,74.6415,42.0592
--18.06336,5.62176,16.40448,3.6864,70.91712,42.1056
--19.11195,6.76269,18.52389,4.60647,75.418695,43.1046
--18.3456,7.24416,18.816,4.98624,72.39456,41.232
--18.3456,7.80864,19.7568,5.83296,72.403968,43.2768
--18.62982,8.45064,20.93454,6.24195,73.895085,42.6218
--17.97216,8.93952,21.23136,6.42528,71.65584,42.0592
--19.107,10.098,23.463,7.227,76.1805,43.0155
--17.6016,10.1232,22.5264,7.1136,70.1784,41.6256
--18.432,11.328,24.672,8.256,73.872,41.712
--18.816,12.446,25.97,8.624,75.411,43.36
--17.96355,12.50865,25.86375,8.55855,72.36207,43.3125
--18.527,13.677,27.354,9.797,74.6415,43.25
--18.43,14.162,28.324,10.185,74.6415,43.15
--18.0576,14.63616,28.32192,10.16928,73.123776,42.9264
--18.144,15.36,29.376,10.944,73.872,43.06
--17.86752,15.77664,29.84256,11.11968,73.13328,42.4215
--18.236,16.587,30.943,12.125,74.5445,43.14
--17.77622,17.1108,31.3698,12.26274,73.14867,41.9832
--17.856,17.856,31.968,12.576,73.776,43.25
--16.69625,17.23775,30.5045,12.36425,69.447375,41.0875
--17.2235,18.4338,32.3988,13.034,71.54735,42.091
--16.9556,18.89075,32.71325,13.54605,70.909425,42.2338
--17.21664,19.66272,34.24512,14.30016,72.30048,42
--17.0373,20.2027,34.6332,14.5236,71.54735,42.5908
--17.836,21.658,37.142,15.68,75.313,43.46
--17.557,22.116,37.248,16.005,74.5542,43.36
--16.7616,21.79008,36.59616,16.10976,71.56272,41.5548
--16.6649,22.344,37.1469,16.2925,71.54735,41.8068
--16.4027,22.6689,37.4129,16.587,70.817275,40.698
--16.65216,23.70816,38.94912,17.49888,72.309888,41.8068
--17.072,24.929,40.643,18.333,74.5445,41.8458
--16.45875,25.0173,39.97125,18.52785,72.277425,40.983
--16.1994,25.137,40.1261,18.7131,71.64045,40.983
--16.78446,26.87454,42.49476,20.08314,74.55987,42.4928
--16.51716,27.46458,42.54129,20.07027,73.799055,41.5645
--16.416,28.032,43.104,20.832,73.776,43.06
--16.3251,28.52091,43.69365,21.1266,73.799055,42.9264
--15.25225,27.2555,41.515,20.3965,69.357125,40.812
--16.296,29.973,45.105,22.116,74.5542,43.15
--15.6123,29.24955,44.29755,22.10175,72.277425,40.983
--16.5,31.4,47.5,24.4,76.85,42.44
--15.744,30.432,46.272,23.52,73.776,41.0592
--15.1753,29.9782,45.2466,23.6474,71.54735,41.8068
--15.939,32.868,48.609,25.245,76.0815,42.85
--14.7456,30.68928,45.43488,23.86944,70.82496,41.6256
--15.17432,32.55756,48.02,25.64268,73.80674,42.7672
--14.3184,31.3728,45.9648,24.8064,70.0872,41.192
--14.3754,32.2525,46.8122,25.2491,70.82649,40.9925
--15.246,35.343,50.886,27.621,76.0815,42.5304
--14.54112,34.6896,49.23072,26.80128,73.03824,41.6256
--14.06112,33.70944,48.51552,26.72544,71.56272,41.6712
--13.824,33.54624,48.384,26.54208,70.82496,41.0592
--14.21244,35.14698,50.03163,28.809,73.799055,41.8458
--13.4064,33.1968,46.8768,29.0928,70.0872,40.907
--13.63725,34.0461,47.5893,30.56625,72.277425,41.0875
--13.97088,35.02422,48.41298,30.85236,74.55987,42.3324
--13.77684,35.02422,47.73384,30.65832,74.55987,42.6393
--13.3056,33.07392,44.6688,33.16896,73.03824,42.5304
--13.662,32.769,44.154,34.353,76.0815,42.5304
--12.62455,29.488,39.34805,31.23885,70.817275,40.4225
--12.312,28.3632,37.2096,29.4576,70.0872,40.6315
--12.77199,28.32885,37.4517,30.44151,73.799055,42.1562
--11.9472,25.8096,34.1088,28.3632,70.0872,41.7216
--12.26016,26.136,34.11936,28.32192,73.03824,41.136
--12.16768,24.90572,32.70064,27.85258,73.05361,41.4869
--11.85534,23.89886,31.14379,27.00383,72.308165,41.3802
--11.42784,22.76352,29.39904,25.344,70.82496,40.7424
--11.956,23.324,30.086,26.46,75.313,42.66
--11.5236,21.99087,28.42488,25.44795,73.799055,41.3705
--11.328,21.216,27.456,24.864,73.776,41.424
--11.368,20.972,26.95,24.696,75.313,43.06
--11.06028,20.08314,25.80732,23.86692,74.55987,42.3324
--10.976,19.6,25.186,23.52,75.313,42.95
--10.25472,18.25152,23.42592,22.01472,72.30048,41.601
--9.747,16.87675,21.75025,20.577,69.357125,40.4225
--9.5665,16.245,21.02825,20.12575,69.43835,40.8025
--9.5836,16.0341,20.8259,20.18085,70.817275,40.8025
--9.69612,16.06514,20.81814,20.24778,73.05361,42.385
--9.9,16.236,20.988,20.493,76.0815,42.66
--8.9376,14.3184,18.7872,18.5136,70.0872,40.7075
--9.40896,14.99553,19.602,19.40598,75.320685,42.6294
--8.7514,13.8719,18.0614,18.0614,71.54735,40.812
--8.645,13.775,17.86,17.86,73.0075,40.8025
--8.6436,13.34956,17.47928,17.57532,73.80674,41.993
--8.11008,12.34944,16.31232,16.5888,70.907904,40.9536
--8.256,12.48,16.512,16.704,73.8624,41.3376
--8.148,12.222,16.199,16.587,74.5445,41.6615
--7.79,11.59,15.485,15.865,73.1025,42.55
--7.5264,11.10144,14.77056,15.24096,72.30048,42.1008
--7.644,11.074,14.994,15.288,75.4012,42.385
--7.17024,10.15008,13.87488,14.34048,71.56272,40.9536
--7.05675,9.87945,13.54896,14.20759,72.402255,41.5645
--7.081,9.991,13.483,14.259,74.5445,42.44
--6.887,9.506,13.192,13.774,74.5445,42.96
--6.555,8.835,12.445,13.015,73.0075,40.983
--6.17405,8.20135,11.70305,12.44025,70.817275,41.7682
--6.27396,7.98504,11.59732,12.45286,73.05361,41.699
--6.14592,7.97049,11.42757,12.38787,73.799055,41.6615
--5.89248,7.50816,10.9296,11.88,73.03824,40.6656
--5.79744,7.31808,10.54944,11.49984,73.03824,40.6656
--5.54895,6.9597,10.06335,11.00385,72.277425,40.7075
--5.25255,6.35835,9.5836,10.41295,70.817275,40.527
--5.1604,6.0819,9.215,10.22865,70.817275,40.4225
--4.9761,5.7133,8.93855,9.86005,70.817275,40.318
--5.03712,5.60736,8.83872,9.88416,73.03824,40.56
--4.6512,5.1984,8.208,9.2112,70.0872,40.318
--4.753,5.141,8.342,9.506,74.5445,40.8855
--4.51584,4.60992,7.71456,8.9376,72.30048,41.5912
--4.37,4.275,7.505,8.835,73.0075,42.14
--4.104,3.9216,6.84,8.3904,70.09632,40.147
--4.22576,4.03368,6.91488,8.45152,73.816344,41.5128
--3.99,3.705,6.65,8.075,73.0075,42.25
--3.8171,3.2585,6.1446,7.3549,71.54735,40.1375
--3.744,2.976,5.952,7.488,73.776,40.6656
--3.57542,2.63452,5.55131,7.05675,72.308165,40.7788
--3.515,2.47,5.32,7.125,73.0075,42.77
--3.36,2.304,5.088,7.008,73.776,40.7424
--3.16608,2.14176,4.74912,6.61152,71.56272,40.9825
--3.0096,1.824,4.3776,5.928,70.0872,40.527
--2.94686,1.61602,4.2777,5.98878,73.05361,41.307
--2.7645,1.19795,3.8703,5.529,70.817275,40.0425
--2.78487,1.05633,3.74517,5.66577,73.799055,42.1245
--2.5536,0.8208,3.2832,5.1984,70.0872,40.7424
--2.5137,0.7448,3.1654,5.2136,71.54735,40.0425
--2.3959,0.64505,2.85665,4.88395,70.817275,40.8855
--2.4,0.288,2.784,4.704,73.776,42.04
--2.18592,0,2.47104,4.37184,73.03824,40.3584
--2.11266,-0.28809,2.20869,4.22532,73.799055,41.6196
--1.9551,-0.5586,1.9551,3.9102,71.54735,41.5128
--1.9206,-0.67221,1.72854,3.8412,73.799055,42.0156
--1.84338,-0.87318,1.55232,3.68676,74.55987,41.5912
--1.8,-1,1.4,3.6,76.85,42.44
--1.6929,-1.1286,1.1286,3.3858,72.277425,40.622
--1.649,-1.358,0.97,3.104,74.5445,42.76
--1.52096,-1.52096,0.66542,2.8518,73.05361,41.9146
--1.4406,-1.72872,0.4802,2.68912,73.80674,42.2772
--1.31712,-1.97568,0.18816,2.352,72.30048,41.993
--1.248,-2.304,0,2.4,73.776,40.9536
--1.12896,-2.352,-0.18816,2.16384,72.30048,40.7424
--1.11744,-2.42112,-0.4656,2.04864,71.56272,41.3802
--1.04544,-2.56608,-0.57024,1.9008,73.03824,41.232
--1.045,-2.755,-0.76,1.71,73.0075,40.318
--0.9702,-3.00762,-0.9702,1.35828,74.55987,42.1245
--0.891,-3.366,-1.188,1.287,76.0815,42.36
--0.77616,-3.49272,-1.35828,1.16424,74.569572,41.1208
--0.7372,-3.40955,-1.56655,0.9215,70.817275,41.5645
--0.6517,-3.5378,-1.6758,0.6517,71.54735,41.8068
--0.58212,-3.8808,-1.9404,0.67914,74.55987,42.9264
--0.56454,-3.95178,-2.06998,0.37636,72.308165,41.4772
--0.4802,-4.22576,-2.30496,0.19208,73.80674,40.8366
--0.4753,-4.37276,-2.47156,0,73.05361,41.0892
--0.4,-4.8,-2.8,-0.1,76.85,42.95
--0.3724,-4.655,-2.793,-0.1862,71.54735,40.7075
--0.3724,-4.655,-2.8861,-0.3724,71.55666,40.527
--0.2736,-4.7424,-3.0096,-0.456,70.0872,40.6656
--0.28512,-5.13216,-3.3264,-0.85536,73.03824,41.0592
--0.18624,-5.40096,-3.53856,-1.02432,71.56272,40.2816
--0.1824,-5.472,-3.5568,-1.0032,70.0872,40.7424
--0.198,-5.94,-3.96,-1.089,76.0815,42.44
--0.1843,-5.529,-3.8703,-0.9215,70.817275,40.6315
--0.09603,-5.7618,-4.12929,-1.15236,73.799055,41.9463
--0.098,-5.88,-4.312,-1.372,75.313,41.405
-0,-5.7133,-4.2389,-2.0273,70.82649,40.7012
-0,-6.37065,-4.70448,-2.45025,75.320685,41.8374
-0,-6.53004,-4.70547,-2.40075,73.799055,41.9364
-0,-6.22725,-4.60275,-2.166,69.357125,40.4225
-0,-7,-5.2,-2.4,76.85,41.85
-0.09504,-6.6528,-5.03712,-2.18592,73.03824,40.464
-0.09504,-6.74784,-5.13216,-2.28096,73.03824,41.9364
-0.09504,-6.74784,-5.32224,-2.28096,73.03824,40.2816
-0.09603,-7.01019,-5.47371,-2.59281,73.799055,41.0892
-0.09504,-7.128,-5.60736,-2.8512,73.03824,40.3584
-0.1,-7.8,-6,-3.3,76.85,41.85
-0.09801,-7.8408,-6.07662,-3.43035,75.320685,41.5404
-0.09506,-7.69986,-6.08384,-3.13698,73.05361,40.7788
-0.09801,-7.93881,-6.37065,-3.33234,75.320685,41.7285
-0.097,-7.857,-6.402,-3.395,74.5348,41.1668
-0.09312,-7.63584,-6.23904,-3.63168,71.553408,40.5945
-0.09312,-7.82208,-6.33216,-3.81792,71.56272,41.1668
-0.09504,-8.26848,-6.6528,-3.99168,72.9432,41.5305
-0.0912,-8.1168,-6.5664,-3.7392,70.07808,40.1375
-0.09408,-8.4672,-6.86784,-4.04544,72.2064,41.013
-0.096,-8.64,-7.104,-3.84,73.776,40.3584
-0.0912,-8.208,-6.84,-4.0128,69.996,40.0032
-0.09312,-8.47392,-7.07712,-4.09728,71.4696,40.176
-0.09409,-8.56219,-7.24493,-4.23405,72.308165,40.7012
-0.096,-8.832,-7.392,-4.416,73.776,40.56
-0.098,-9.212,-7.742,-4.9,75.313,42.44
-0,-8.93475,-7.524,-4.8906,72.183375,40.318
-0,-8.8464,-7.3872,-4.7424,69.996,39.862
-0,-9.50796,-7.95564,-5.04504,74.55987,41.1992
-0,-9.31095,-7.80615,-5.0787,72.277425,40.0425
-0,-9.702,-8.2467,-5.53014,74.55987,41.6196
--0.09506,-9.60106,-8.17516,-5.13324,73.05361,41.1992
--0.095,-9.69,-8.265,-5.415,72.998,42.36
--0.09408,-9.69024,-8.27904,-5.45664,72.30048,40.176
--0.096,-9.984,-8.544,-5.568,73.776,41.96
--0.1862,-9.7755,-8.379,-5.586,71.55666,41.1992
--0.198,-10.593,-9.009,-6.039,76.0815,42.44
--0.19206,-10.27521,-8.83476,-5.95386,73.799055,41.6196
--0.196,-10.584,-9.212,-6.37,75.3032,42.15
--0.294,-10.682,-9.31,-6.468,75.313,42.15
--0.288,-10.656,-9.216,-6.528,73.776,41.96
--0.27936,-10.42944,-9.03264,-6.23904,71.56272,41.1668
--0.38016,-10.73952,-9.31392,-6.46272,73.03824,42.0156
--0.4,-11.3,-9.9,-6.7,76.85,42.15
--0.4655,-10.6134,-9.31,-6.3308,71.46356,39.938
--0.48,-10.944,-9.696,-6.816,73.776,42.66
--0.456,-10.7616,-9.3024,-6.84,70.0872,40.147
--0.57036,-11.4072,-9.79118,-7.22456,73.05361,40.9825
--0.5529,-10.96585,-9.5836,-6.4505,70.725125,41.2735
--0.5529,-10.8737,-9.5836,-6.35835,70.725125,41.1668
--0.67221,-11.33154,-10.08315,-6.91416,73.799055,41.7285
--0.672,-11.232,-10.08,-7.104,73.68,42.55
--0.66542,-11.31214,-10.07636,-7.69986,72.95855,40.8855
--0.73728,-11.24352,-9.95328,-7.46496,70.742016,40.6752
--0.84645,-11.56815,-10.25145,-7.524,72.277425,40.0425
--0.81225,-11.10075,-9.83725,-6.94925,69.357125,40.147
--0.8208,-11.1264,-10.032,-7.0224,69.996,40.318
--0.9216,-11.24352,-10.1376,-7.00416,70.82496,40.9536
--0.912,-11.1264,-10.032,-7.1136,70.0872,40.752
--1.01376,-11.33568,-10.22976,-7.18848,70.815744,40.2816
--1.05644,-11.90896,-10.75648,-7.87528,73.7107,41.307
--1.083,-11.46175,-10.19825,-7.581,69.266875,40.318
--1.176,-12.642,-11.27,-8.232,75.313,42.26
--1.19795,-11.9795,-10.59725,-7.7406,70.73434,40.6315
--1.23552,-12.26016,-11.02464,-7.88832,73.03824,40.752
--1.33056,-12.26016,-11.02464,-7.98336,72.952704,40.848
--1.33084,-12.3578,-11.12202,-8.0801,72.968056,41.5912
--1.5,-13,-11.7,-8.6,76.75,42.55
--1.425,-12.445,-11.21,-8.075,72.9125,40.0425
--1.48992,-12.19872,-11.08128,-7.9152,71.56272,41.0592
--1.5048,-12.4146,-11.19195,-8.18235,72.183375,40.1375
--1.552,-12.901,-11.64,-8.439,74.5542,40.8855
--1.66617,-13.13334,-11.85921,-8.91891,75.222675,41.8275
--1.6245,-12.18375,-11.0105,-8.1225,69.357125,40.033
--1.71072,-12.92544,-11.68992,-8.74368,72.9432,41.6196
--1.78695,-12.88485,-11.56815,-8.8407,72.183375,40.1375
--1.862,-13.524,-12.25,-9.016,75.215,42.14
--1.881,-12.9789,-11.75625,-8.8407,72.183375,40.242
--1.93515,-12.80885,-11.51875,-8.56995,70.817275,41.1668
--1.97589,-13.07851,-11.85534,-8.93855,72.308165,41.1668
--2.0273,-12.99315,-11.70305,-9.0307,70.725125,40.318
--2.09088,-13.49568,-12.16512,-9.31392,72.952704,42.0156
--2.11968,-13.27104,-11.88864,-9.12384,70.7328,40.7424
--2.2572,-13.5432,-12.2265,-9.31095,72.277425,42.1245
--2.1888,-13.1328,-11.9472,-8.8464,69.996,40.6656
--2.28,-13.0416,-11.9472,-8.9376,70.0872,40.7075
--2.35225,-13.54896,-12.32579,-9.409,72.308165,41.1668
--2.47,-13.965,-12.635,-9.975,73.017,42.25
--2.548,-14.602,-13.132,-10.192,75.313,42.66
--2.48805,-13.73035,-12.44025,-9.5836,70.725125,41.4772
--2.68884,-14.21244,-12.96405,-9.79506,73.799055,41.5645
--2.6334,-13.9194,-12.7908,-9.68715,72.183375,41.9364
--2.75616,-13.97088,-12.92544,-9.78912,72.9432,41.0592
--2.8224,-13.92384,-12.79488,-9.59616,72.2064,40.6656
--2.9106,-14.35896,-13.19472,-10.09008,74.46285,41.9832
--2.97693,-14.21244,-13.15611,-9.89109,73.703025,42.0156
--2.94624,-14.256,-13.11552,-10.16928,72.9432,40.6656
--2.97984,-14.06112,-12.85056,-9.96384,71.572032,40.752
--3.201,-14.841,-13.483,-10.573,74.4475,42.55
--3.234,-14.994,-13.72,-10.682,75.2248,41.8068
--3.23136,-14.54112,-13.3056,-10.35936,72.952704,40.464
--3.332,-14.994,-13.818,-10.584,75.215,41.5912
--3.5,-15.3,-14.1,-10.9,76.75,42.44
--3.2832,-14.136,-12.9504,-10.1232,69.996,40.7424
--3.42,-14.82,-13.585,-10.83,72.9125,40.527
--3.3744,-14.2272,-13.1328,-10.3968,69.996,40.4225
--3.4295,-14.2595,-13.08625,-10.37875,69.2759,40.6315
--3.64914,-15.17274,-13.92435,-11.04345,73.703025,41.0892
--3.74517,-15.17274,-14.02038,-10.94742,73.703025,42.1245
--4,-15.8,-14.6,-11.4,76.75,42.55
--3.88,-15.326,-14.162,-11.058,74.4572,42.55
--3.85769,-14.96031,-13.83123,-11.10262,72.214075,40.8758
--3.99168,-15.39648,-14.06592,-11.21472,72.9432,41.6196
--4.11642,-15.97563,-14.60349,-11.66319,75.222675,41.8275
--4.257,-16.137,-14.751,-11.484,75.9825,42.14
--4.0128,-14.7744,-13.5888,-10.6704,70.00512,40.6752
--4.0546,-14.83615,-13.8225,-10.78155,70.725125,40.7788
--4.3659,-15.62022,-14.553,-11.44836,74.46285,41.6196
--4.508,-15.974,-14.798,-11.858,75.215,42.25
--4.508,-16.17,-14.896,-12.25,75.215,41.013
--4.46688,-15.77664,-14.54112,-11.68992,72.952704,40.6656
--4.65696,-16.0083,-14.84406,-11.83644,74.46285,41.1992
--4.704,-16.17,-14.994,-11.76,75.215,41.1992
--4.60845,-15.4242,-14.38965,-11.0979,72.19278,40.1375
--4.51535,-15.1126,-14.09895,-10.96585,70.73434,39.938
--4.5125,-14.801,-13.8985,-10.73975,69.266875,40.7075
--4.94802,-15.91128,-14.94108,-11.73942,74.46285,41.7285
--5.044,-16.005,-14.938,-12.028,74.4572,40.8855
--5.148,-16.632,-15.444,-12.474,75.9924,42.55
--4.8336,-15.4128,-14.2272,-11.3088,69.996,40.4544
--4.78325,-15.25225,-14.16925,-11.28125,69.2759,40.242
--4.9248,-15.4128,-14.3184,-11.4,70.00512,40.7424
--5.17275,-15.89445,-14.76585,-11.56815,72.183375,40.4225
--5.2283,-15.87502,-14.92442,-11.50226,72.968056,41.3802
--5.26848,-15.80544,-14.77056,-11.57184,72.2064,41.5912
--5.1984,-15.3216,-14.3184,-11.2176,69.996,40.7424
--5.51,-16.055,-15.01,-11.97,72.9125,40.7075
--5.3998,-15.827,-14.7098,-11.8237,71.45425,41.5912
--5.72418,-16.59042,-15.42618,-12.41856,74.46285,41.1992
--5.60736,-16.25184,-15.11136,-12.07008,72.9432,40.3584
--5.472,-15.6864,-14.592,-11.7648,69.996,39.8525
--6.039,-17.028,-15.84,-12.771,75.9924,42.36
--5.85844,-16.61492,-15.46244,-12.38916,73.7107,41.699
--6.014,-16.781,-15.617,-12.804,74.3505,42.03
--6.174,-17.052,-15.778,-12.74,75.215,41.1992
--6.237,-17.226,-16.038,-12.87,75.9825,42.76
--5.8976,-16.12625,-14.9283,-12.07165,70.64219,40.318
--5.98975,-16.12625,-15.02045,-12.1638,70.71591,40.242
--6.0515,-16.2925,-15.1753,-12.3823,71.45425,41.1992
--6.0819,-16.2184,-15.1126,-12.25595,70.725125,41.5645
--6.633,-17.424,-16.236,-13.266,75.8934,42.37
--6.633,-17.523,-16.335,-13.068,75.8835,42.36
--6.46,-16.91,-15.675,-12.73,72.8175,40.4225
--6.55914,-16.92068,-15.6849,-12.8331,72.872996,41.8068
--6.55914,-16.92068,-15.77996,-12.8331,72.95855,41.699
--6.5835,-16.83495,-15.6123,-12.69675,72.09873,40.527
--6.54336,-16.49664,-15.39072,-12.62592,70.64064,40.848
--6.67968,-16.84032,-15.71136,-12.88896,72.121728,41.0496
--6.6348,-16.587,-15.4812,-12.62455,70.64219,41.6615
--6.5664,-16.416,-15.3216,-12.4032,69.91392,41.6256
--6.86784,-17.02848,-15.89952,-12.79488,72.11232,41.3376
--7.10696,-17.38324,-16.23076,-12.9654,73.624264,42.7672
--7.17948,-17.65764,-16.39638,-13.48578,74.375532,42.5304
--7.125,-17.29,-16.15,-13.395,72.827,40.7075
--7.15084,-17.21847,-15.9953,-13.1726,72.129394,41.3705
--7.372,-17.751,-16.49,-13.483,74.3602,42.55
--7.0224,-16.6896,-15.5952,-12.8592,69.9048,41.136
--7.8,-18.3,-17.1,-14.1,76.66,42.44
--7.1136,-16.6896,-15.6864,-12.9504,69.92304,40.6315
--7.43232,-17.4048,-16.18176,-13.54752,72.121728,41.4144
--7.50974,-17.68116,-16.44538,-13.59358,72.86349,41.7682
--7.3728,-17.23392,-16.03584,-13.27104,70.649856,41.4144
--7.69986,-17.77622,-16.54044,-13.68864,72.872996,42.1562
--7.61805,-17.4933,-16.3647,-13.3551,72.09873,41.5625
--7.4005,-16.7865,-15.7035,-13.08625,69.18565,41.287
--8.217,-18.414,-17.325,-14.355,75.8934,43.1046
--7.885,-17.86,-16.625,-14.06,72.827,41.4675
--7.7406,-17.5085,-16.2184,-13.54605,70.651405,41.192
--8.16255,-18.2457,-16.99731,-14.21244,73.606995,42.1562
--8.0784,-17.96256,-16.82208,-13.87584,72.84816,42.9264
--8.428,-18.522,-17.346,-14.21,75.1268,42.385
--8.10144,-17.59968,-16.48224,-13.5024,71.385792,41.6615
--7.85175,-17.05725,-15.97425,-13.44725,69.176625,41.192
--8.53776,-18.4338,-17.26956,-14.35896,74.375532,42.1988
--8.20135,-17.60065,-16.49485,-13.8225,70.64219,41.5645
--8.45856,-18.24768,-17.01216,-14.256,72.762624,41.232
--8.28768,-17.87904,-16.7616,-13.78176,71.385792,41.4869
--8.4681,-18.06528,-16.9362,-13.92532,72.129394,42.0592
--8.736,-18.432,-17.28,-14.4,73.5936,44.05
--8.832,-18.336,-17.28,-14.208,73.5936,43.25
--8.6526,-18.0576,-16.929,-14.01345,72.00468,41.363
--8.84058,-18.34658,-17.20586,-14.35406,72.872996,41.993
--8.835,-18.43,-17.29,-14.25,72.827,41.4675
--9.024,-18.72,-17.472,-14.784,73.4976,43.46
--9.12285,-18.72585,-17.47746,-14.50053,73.626201,42.8175
--8.8445,-18.0614,-16.9442,-13.965,71.37046,40.907
--9.0288,-18.2457,-17.21115,-14.2956,72.00468,41.5625
--8.8464,-17.96925,-16.86345,-13.91465,70.55004,42.1562
--9.7,-19.5,-18.3,-15.4,76.56,43.36
--8.9376,-17.8752,-16.7808,-13.9536,69.82272,41.424
--9.50796,-19.01592,-17.85168,-15.0381,74.278512,42.5908
--9.40896,-18.72288,-17.5824,-14.63616,72.857664,43.4214
--9.50697,-18.91791,-17.76555,-14.78862,73.520568,44.9856
--9.603,-18.91791,-17.76555,-14.78862,73.616598,43.1262
--9.60106,-18.72682,-17.5861,-14.54418,72.777936,43.0612
--9.59904,-18.72288,-17.67744,-14.63616,72.75312,41.52
--9.49824,-18.43776,-17.32032,-14.52672,71.292672,42.0592
--9.5931,-18.71595,-17.4933,-14.57775,72.00468,41.192
--9.49248,-18.33984,-17.23392,-14.37696,70.557696,41.3376
--9.78432,-18.72192,-17.59296,-14.5824,72.027648,41.3376
--9.58464,-18.33984,-17.23392,-14.2848,70.557696,42.1056
--10.29,-19.6,-18.424,-15.19,75.0288,42.777
--10.494,-19.8,-18.612,-15.444,75.8043,43.15
--10.17918,-19.206,-18.05364,-14.98068,73.520568,41.6615
--10.07424,-19.008,-17.86752,-14.92128,72.762624,41.136
--10.27521,-19.206,-18.14967,-15.26877,73.520568,42.6218
--10.584,-19.698,-18.522,-15.386,75.0288,43.0612
--10.26648,-19.10706,-17.96634,-15.01948,72.777936,42.7285
--10.57518,-19.59804,-18.33678,-15.32916,74.278512,43.2768
--10.9,-20.1,-19,-15.8,76.57,43.94
--10.032,-18.4224,-17.328,-14.4096,69.82272,41.743
--10.66044,-19.30404,-18.2476,-15.27036,73.537828,42.9828
--10.656,-19.392,-18.24,-15.264,73.4976,43.94
--10.44288,-19.09824,-17.96928,-15.14688,72.027648,43.7472
--10.976,-19.992,-18.718,-15.582,75.0288,43.0612
--10.41408,-18.80064,-17.69472,-14.83776,70.557696,42.576
--10.5203,-18.9924,-17.8752,-14.7098,71.27736,42.693
--11.172,-19.894,-18.816,-15.68,75.0288,44.56
--10.83,-19.38,-18.24,-15.2,72.732,41.8475
--10.5984,-18.80064,-17.69472,-14.65344,70.557696,41.904
--11.136,-19.584,-18.432,-15.36,73.5072,43.86
--10.5792,-18.6048,-17.6016,-14.592,69.82272,42.1824
--11.583,-20.196,-19.107,-15.939,75.7944,45.0945
--11.23551,-19.59012,-18.53379,-15.55686,73.530171,44.1144
--11.446,-19.885,-18.721,-15.52,74.2632,42.8352
--11.44836,-19.79208,-18.72486,-15.5232,74.278512,44.7975
--11.781,-20.295,-19.206,-15.84,75.7944,44.3025
--11.172,-19.0855,-17.9683,-15.0822,71.27736,42.7975
--11.4,-19.475,-18.43,-15.295,72.732,43.0635
--11.2651,-19.0855,-18.0614,-14.9891,71.27736,43.9628
--11.15136,-18.98496,-17.87904,-14.83776,70.465536,43.0656
--11.4741,-19.3743,-18.2457,-15.33015,71.91063,44.4906
--11.59,-19.665,-18.525,-15.485,72.637,42.2275
--11.45376,-19.18272,-18.1584,-15.08544,71.199552,43.5168
--12.05523,-20.19006,-19.11195,-15.77961,74.948247,44.1936
--11.904,-19.872,-18.72,-15.456,73.4016,42.96
--12.028,-19.982,-18.915,-15.617,74.1662,43.94
--12.5,-20.7,-19.5,-16.3,76.46,44.16
--12.00375,-19.87821,-18.72585,-15.74892,73.424538,44.0055
--11.7306,-19.2717,-18.2476,-15.3615,71.18426,43.4532
--12.096,-19.872,-18.816,-15.456,73.4016,43.94
--12.07008,-19.67328,-18.62784,-15.49152,72.667584,42.1056
--11.82624,-19.27584,-18.25152,-15.17856,71.199552,42.5442
--11.9168,-19.3648,-18.2476,-15.3615,71.18426,42.123
--12.16512,-19.76832,-18.62784,-15.58656,72.667584,42.5664
--12.384,-19.968,-18.816,-15.648,73.4112,42.5664
--12.3552,-19.86336,-18.72288,-15.6816,72.677088,44.1936
--12.6126,-20.27718,-19.11294,-15.91128,74.191194,43.7472
--12.35,-19.855,-18.715,-15.485,72.637,44.34
--12.32055,-19.65645,-18.52785,-15.51825,71.91063,44.0154
--11.9472,-19.0608,-17.9664,-14.9568,69.74064,43.3536
--12.29184,-19.46208,-18.43776,-15.3648,71.199552,42.3936
--12.51264,-19.66272,-18.62784,-15.5232,71.933568,43.0612
--12.51397,-19.66481,-18.62982,-15.43076,71.950623,43.5142
--12.3823,-19.551,-18.4338,-15.4546,71.18426,43.463
--12.47808,-19.46208,-18.43776,-15.27168,71.208864,42.96
--12.73804,-19.67742,-17.68116,-15.58984,72.682876,43.7472
--12.8331,-18.82188,-16.44538,-16.6355,72.682876,43.169
--12.44025,-17.3242,-15.1126,-16.0341,70.467105,43.3008
--13.32936,-17.54379,-15.09354,-17.15175,74.938446,44.1936
--12.5324,-16.0341,-13.4539,-16.67915,70.45789,43.0098
--12.62455,-16.587,-13.91465,-13.2696,70.45789,42.5125
--12.62455,-17.78495,-15.1126,-14.65185,70.467105,43.168
--13.11,-18.62,-15.96,-14.915,72.637,45.74
--13.25352,-18.91988,-16.42284,-14.79016,73.441788,44.149
--12.80885,-18.15355,-15.94195,-14.0068,70.374955,43.9701
--13.21334,-18.63176,-16.54044,-14.35406,72.692382,44.5312
--12.9409,-18.2476,-16.2925,-14.1512,71.18426,43.2768
--13.86,-19.404,-17.424,-15.345,75.6954,43.4214
--13.3,-18.62,-16.815,-14.44,72.637,44.45
--13.40346,-18.63176,-16.92068,-14.54418,72.682876,43.7955
--12.99456,-18.06336,-16.49664,-14.19264,70.465536,42.288
--13.22304,-18.34464,-16.7616,-14.52672,71.199552,43.344
--13.774,-19.206,-17.654,-15.326,74.1759,45.45
--13.77684,-19.404,-17.75466,-15.32916,74.191194,43.6095
--13.45487,-18.818,-17.31256,-14.77213,71.941214,42.1562
--13.73229,-19.206,-17.66952,-15.17274,73.328508,43.1046
--13.4064,-18.62,-17.2235,-14.7098,71.18426,42.4928
--13.68,-19,-17.67,-15.01,72.637,43.94
--13.5432,-18.90405,-17.4933,-14.8599,71.91063,42.123
--13.92435,-19.30203,-17.95761,-15.26877,73.424538,43.6888
--13.224,-18.3312,-17.1456,-14.4096,69.73152,41.743
--13.4539,-18.52215,-17.3242,-14.65185,70.374955,42.2338
--13.5926,-18.8062,-17.5028,-14.7098,71.09116,41.192
--14.162,-19.594,-18.333,-15.423,74.0692,43.54
--14.553,-19.998,-18.711,-15.642,75.7053,42.7086
--14.112,-19.488,-18.144,-15.36,73.3152,42.1824
--14.21244,-19.59012,-18.2457,-15.55686,73.328508,42.4375
--14.208,-19.584,-18.336,-15.456,73.3152,41.6256
--14.35896,-19.8891,-18.53082,-15.71724,74.094174,42.9264
--14.60349,-20.09205,-18.81792,-15.97563,74.850237,42.9264
--14.155,-19.475,-18.24,-15.39,72.542,41.667
--14.16096,-19.4832,-18.24768,-15.2064,72.582048,42.1824
--14.25,-19.475,-18.24,-15.295,72.5515,43.54
--14.4045,-19.68615,-18.53379,-15.74892,73.338111,44.4114
--13.965,-19.1786,-17.9683,-15.2684,71.10047,42.6692
--14.35104,-19.57824,-18.34272,-15.39648,72.582048,43.2135
--14.65002,-19.98612,-18.82188,-15.91128,74.084472,42.9264
--13.8624,-18.8784,-17.6928,-14.7744,69.64944,41.9425
--14.74704,-20.08314,-18.82188,-15.71724,74.094174,43.1046
--14.896,-20.286,-19.012,-15.876,74.8328,43.94
--14.24736,-19.27584,-18.1584,-15.17856,71.106432,41.7216
--14.24736,-19.27584,-18.1584,-15.27168,71.106432,42.288
--14.841,-20.176,-18.915,-15.908,74.0692,43.36
--13.8985,-18.772,-17.689,-14.89125,68.9149,40.8025
--14.63616,-19.76832,-18.62784,-15.58656,72.582048,43.1046
--14.1911,-19.1672,-18.0614,-15.1126,70.36574,40.907
--15.035,-20.273,-19.012,-16.005,73.9819,41.8458
--15.19155,-20.48409,-19.30797,-16.17165,74.762028,43.1046
--14.57775,-19.65645,-18.52785,-15.70635,71.72253,41.0875
--14.6718,-19.65645,-18.52785,-15.6123,71.731935,41.0875
--14.52672,-19.46208,-18.34464,-15.45792,71.013312,41.8458
--15.444,-20.691,-19.503,-16.434,75.5073,42.6294
--15.229,-20.273,-19.206,-16.102,73.9722,41.5645
--15.7,-21,-19.8,-16.8,76.27,42.95
--14.3184,-19.152,-18.0576,-15.2304,69.55824,41.52
--14.71296,-19.0896,-17.13408,-15.45792,71.013312,41.616
--14.7098,-18.2476,-15.7339,-16.3856,71.01668,42.287
--14.95395,-17.58735,-14.95395,-16.7409,71.72253,40.907
--14.80608,-16.57536,-14.24736,-16.20288,71.022624,41.9525
--14.65185,-15.94195,-13.2696,-16.0341,70.27359,40.8025
--15.11136,-17.48736,-14.44608,-14.256,72.477504,42.1245
--15.3648,-18.72585,-15.65289,-15.3648,73.242081,42.5442
--14.896,-18.3407,-15.6408,-14.6167,71.00737,42.6692
--15.5232,-19.20996,-16.59042,-15.0381,73.900134,42.4215
--14.9891,-18.4338,-16.1063,-14.2443,70.91427,41.699
--15.30466,-18.72682,-16.54044,-14.44912,72.416708,41.5645
--14.9891,-18.3407,-16.2925,-14.1512,70.91427,40.983
--15.714,-19.109,-17.169,-14.744,73.8946,41.7682
--15.714,-19.109,-17.169,-14.841,73.8849,43.25
--15.71724,-19.11294,-17.26956,-14.84406,73.900134,42.1988
--15.0822,-18.3407,-16.758,-14.4305,70.91427,41.363
--15.55848,-19.01592,-17.38324,-14.98224,73.153668,42.5908
--15.974,-19.6,-17.836,-15.484,74.6466,43.561
--14.8656,-18.3312,-16.6896,-14.3184,69.46704,41.0875
--15.65452,-19.30404,-17.67136,-15.17432,73.153668,44.0412
--15.648,-19.296,-17.76,-15.072,73.1232,44.05
--15.42912,-18.91008,-17.4048,-14.77056,71.566656,42.5908
--16.236,-19.998,-18.414,-15.642,75.4083,43.5006
--15.4242,-18.9981,-17.58735,-14.95395,71.543835,42.8175
--15.3615,-18.8062,-17.5028,-14.9891,70.82117,43.3552
--16.0083,-19.69506,-18.23976,-15.42618,73.803114,43.6095
--16.335,-20.196,-18.711,-15.84,75.3093,44.24
--15.20475,-18.7986,-17.5085,-14.9283,70.10772,42.7285
--15.6816,-19.38816,-18.0576,-15.2064,72.296928,43.5006
--16.268,-19.992,-18.62,-15.778,74.5486,42.7672
--16.102,-19.788,-18.527,-15.617,73.7879,43.94
--16.6,-20.4,-19.1,-16.2,76.08,44.45
--15.87168,-19.57824,-18.24768,-15.39648,72.296928,42.1056
--15.5477,-19.1786,-17.8752,-15.0822,70.82117,41.743
--15.70635,-19.3743,-18.15165,-15.33015,71.55324,44.1144
--16.03701,-19.87821,-18.53379,-15.65289,72.963594,42.3405
--16.128,-19.872,-18.624,-15.84,73.0368,42.4704
--15.4812,-19.07505,-17.8771,-15.1126,70.006355,42.1562
--15.8004,-19.46835,-18.2457,-15.2361,71.449785,41.743
--16.29936,-20.18016,-18.9189,-15.91128,73.706094,43.4532
--16.562,-20.384,-19.11,-15.974,74.4604,45.15
--16.562,-20.384,-19.11,-16.268,74.4506,44.05
--16.06514,-19.77248,-18.63176,-15.87502,72.217082,43.6688
--16.562,-20.384,-19.208,-16.268,74.4604,42.777
--16.49,-20.273,-19.012,-16.296,73.6909,42.7285
--16.66,-20.482,-19.208,-16.17,74.4702,43.8648
--15.504,-19.0608,-17.9664,-15.048,69.29376,43.1424
--16.3251,-20.1663,-18.91791,-15.94098,72.963594,43.6888
--16.3268,-20.1684,-18.91988,-15.8466,72.971192,44.7468
--15.6672,-19.3536,-18.15552,-15.2064,70.023168,43.44
--16.08939,-19.7589,-18.62982,-15.71303,71.348447,42.8255
--16.587,-20.273,-19.109,-15.52,73.5551,44.05
--16.08255,-18.90405,-16.929,-15.9885,71.318115,44.5995
--15.43275,-17.328,-15.07175,-15.3425,68.436575,42.5125
--16.01664,-17.13408,-14.80608,-16.66848,70.622208,43.5142
--16.51716,-16.90128,-14.50053,-17.18937,72.819549,43.9701
--16.01664,-15.92352,-13.31616,-15.73728,70.612896,42.8352
--16.512,-18.048,-15.072,-14.976,72.7968,45.15
--16.27584,-18.43968,-15.61728,-15.0528,71.340864,43.855
--16.1063,-18.3407,-15.7339,-14.4305,70.59773,43.4435
--16.608,-19.008,-16.512,-14.88,72.7968,44.64
--15.7776,-17.9664,-15.7776,-14.0448,69.15696,42.332
--17.127,-19.503,-17.226,-15.048,75.0717,45.0945
--16.1994,-18.3407,-16.3856,-14.3374,70.60704,44.0412
--16.53,-18.715,-16.815,-14.535,72.0385,42.028
--16.53696,-18.72288,-16.91712,-14.54112,72.068832,44.3025
--16.70922,-18.91791,-17.09334,-14.69259,72.819549,43.6888
--17.052,-19.404,-17.64,-15.386,74.3134,43.561
--16.464,-18.72192,-17.02848,-14.86464,71.340864,43.2384
--16.45875,-18.81,-17.1171,-14.8599,71.23347,44.4906
--16.975,-19.497,-17.751,-15.229,73.4581,45.66
--16.632,-19.19808,-17.48736,-15.01632,71.973792,44.9664
--16.9785,-19.59804,-17.9487,-15.23214,73.473246,45.0945
--15.79375,-18.14025,-16.7865,-14.34975,68.346325,43.6525
--16.9785,-19.59804,-18.04572,-15.42618,73.473246,46.1835
--15.96,-18.4224,-17.0544,-14.5008,69.06576,44.8896
--17.248,-19.894,-18.424,-15.876,74.2154,45.423
--16.90304,-19.59216,-18.05552,-15.65452,72.740696,45.9032
--16.72,-19.475,-17.955,-15.39,71.9435,45.84
--16.0512,-18.696,-17.328,-14.6832,69.06576,44.1888
--16.64685,-19.28025,-17.8695,-15.048,71.224065,43.168
--16.1424,-18.696,-17.4192,-14.7744,69.06576,44.498
--17.17254,-19.8891,-18.53082,-15.62022,73.473246,44.8252
--16.99731,-19.68615,-18.43776,-15.55686,72.656298,46.2205
--16.48224,-19.18272,-17.87904,-15.27168,70.454592,46.896
--16.82562,-19.58236,-18.34658,-15.49478,71.91289,45.031
--16.31055,-19.07505,-17.78495,-15.1126,69.711475,43.833
--17.266,-20.079,-18.818,-15.811,73.3902,46.85
--17.622,-20.493,-19.206,-16.038,74.8935,46.65
--16.91712,-19.67328,-18.43776,-15.49152,71.907264,44.6784
--17.09512,-19.88028,-18.63176,-15.65452,72.663864,47.481
--17.266,-20.176,-18.915,-15.811,73.3902,46.3175
--16.74802,-19.57072,-18.34755,-15.61894,71.188494,47.2778
--17.088,-19.968,-18.816,-15.936,72.5376,46.2336
--17.01216,-19.76832,-18.62784,-15.58656,71.812224,45.552
--17.9,-20.9,-19.6,-16.5,75.56,49.25
--17.721,-20.691,-19.404,-16.335,74.8044,48.63
--17.36658,-20.27718,-19.11294,-16.10532,73.308312,46.1874
--16.6649,-19.4579,-18.3407,-15.4546,70.34636,45.828
--16.929,-19.7505,-18.52785,-15.70635,71.054775,45.8865
--16.7616,-19.5552,-18.43776,-15.55104,70.35216,46.7055
--17.82,-20.79,-19.602,-16.434,74.8044,46.54
--17.46,-20.37,-19.206,-16.005,73.2932,47.64
--17.1072,-19.29312,-17.20224,-16.1568,71.812224,44.9664
--17.1108,-18.34658,-15.97008,-16.06514,71.827336,46.5018
--17.46,-17.848,-15.423,-17.751,73.2835,47.13
--17.38324,-16.99908,-14.50204,-17.67136,72.55822,46.3932
--17.20586,-16.25526,-13.7837,-16.25526,71.827336,47.2752
--17.20586,-17.96634,-15.01948,-14.7343,71.827336,47.6574
--17.38324,-18.82384,-16.03868,-15.27036,72.55822,44.5312
--18.1,-19.8,-17,-15.7,75.55,45.74
--17.738,-19.404,-16.856,-15.386,74.039,44.737
--16.68096,-18.24768,-16.03584,-14.00832,69.636096,43.728
--17.30092,-18.72682,-16.6355,-14.54418,71.81783,44.3678
--18.018,-19.503,-17.424,-15.246,74.7945,44.85
--16.9442,-18.3407,-16.4787,-14.2443,70.34636,43.7285
--17.1171,-18.52785,-16.7409,-14.4837,71.06418,44.0325
--18.018,-19.602,-17.82,-15.345,74.7945,45.0945
--18.018,-19.602,-17.82,-15.345,74.8044,45.8865
--16.94784,-18.53088,-16.85472,-14.52672,70.361472,44.9692
--16.5984,-18.3312,-16.6896,-14.5008,68.9016,43.9375
--17.1171,-18.9981,-17.3052,-15.048,71.06418,43.377
--17.57349,-19.39806,-17.76555,-15.3648,72.550665,44.8625
--17.934,-19.796,-18.228,-15.582,74.039,45.4328
--17.39232,-19.19808,-17.77248,-15.11136,71.80272,43.6224
--17.04096,-18.90336,-17.41344,-14.80608,70.35216,45.8228
--18.117,-20.097,-18.612,-15.84,74.7945,45.55
--17.568,-19.488,-18.048,-15.264,72.528,42.672
--16.86345,-18.7986,-17.41635,-14.9283,69.619325,43.548
--17.848,-19.885,-18.43,-15.617,73.2932,44.1835
--18.03384,-20.09205,-18.6219,-15.87762,74.056356,45.2034
--16.606,-18.50125,-17.23775,-14.71075,68.1929,43.9375
--18.216,-20.394,-18.909,-16.038,74.8044,45.5697
--17.66952,-19.78218,-18.43776,-15.55686,72.560268,44.0768
--17.3052,-19.3743,-18.0576,-15.33015,71.06418,43.7285
--17.85168,-19.98612,-18.62784,-15.81426,73.308312,44.9232
--18.216,-20.493,-19.107,-16.137,74.7153,45.44
--17.66952,-19.87821,-18.62982,-15.65289,72.464238,46.8666
--17.664,-19.872,-18.624,-15.744,72.4416,47.64
--17.04775,-19.07505,-17.8771,-15.1126,69.545605,44.2225
--17.76,-19.968,-18.624,-15.936,72.4416,47.24
--16.69625,-18.772,-17.59875,-14.89125,68.10265,43.0635
--16.872,-18.9696,-17.784,-15.2304,68.81952,42.6075
--17.76,-20.064,-18.816,-16.032,72.4416,44.112
--17.76555,-20.07027,-18.82188,-15.84495,72.464238,44.1936
--17.76,-20.064,-18.816,-15.936,72.4416,45.04
--16.872,-19.0608,-17.9664,-15.1392,68.81952,42.288
--18.13185,-20.5821,-19.30797,-16.17165,73.958346,43.7085
--17.7674,-20.1684,-18.91988,-15.94264,72.471784,44.0412
--16.7865,-18.9525,-17.77925,-14.9815,68.10265,42.693
--17.86344,-20.1684,-19.01592,-15.94264,72.471784,44.1392
--17.50074,-19.47663,-17.68892,-15.52485,71.000314,44.8625
--18.22986,-19.50399,-16.85772,-16.75971,73.958346,47.0547
--17.67,-17.86,-15.39,-16.53,71.687,46.94
--17.67744,-17.1072,-14.54112,-17.20224,71.622144,44.4015
--16.7865,-15.7035,-13.1765,-16.15475,68.0124,43.7285
--17.1399,-16.49485,-13.6382,-12.99315,69.453455,44.0325
--18.14274,-18.72486,-15.71724,-15.32916,73.114272,44.345
--17.77622,-18.82188,-15.97008,-15.01948,71.637216,44.4648
--17.77248,-18.81792,-16.1568,-14.7312,71.622144,43.2384
--16.87675,-17.8695,-15.523,-13.98875,68.0124,42.5125
--18.513,-19.602,-17.226,-15.147,74.6064,44.1144
--18.14274,-19.11294,-16.9785,-15.0381,73.114272,44.8154
--17.41344,-18.34464,-16.38912,-14.34048,70.175232,43.9701
--18.139,-19.109,-17.169,-14.938,73.0992,45.25
--17.59296,-18.53376,-16.74624,-14.39424,70.908096,42.3936
--17.4097,-18.4338,-16.6649,-14.3374,70.16016,42.408
--18.326,-19.502,-17.738,-15.484,73.8528,44.34
--17.4097,-18.7131,-16.9442,-14.8029,70.16016,44.5312
--17.6814,-18.90405,-17.21115,-14.8599,70.87608,41.9425
--17.86,-19.19,-17.48,-14.915,71.592,42.332
--17.3242,-18.6143,-17.04775,-14.65185,69.44424,42.3405
--18.05364,-19.39806,-17.86158,-15.26877,72.368208,43.6888
--17.3242,-18.6143,-17.1399,-14.65185,69.44424,42.028
--17.3242,-18.70645,-17.23205,-14.744,69.44424,42.8925
--17.6814,-19.09215,-17.6814,-15.048,70.87608,44.4807
--18.236,-19.788,-18.333,-15.714,73.0992,43.8925
--17.86752,-19.38816,-17.96256,-15.30144,71.631648,44.8866
--17.68704,-19.2864,-17.8752,-15.24096,70.898688,42.4704
--17.86752,-19.4832,-18.0576,-15.39648,71.622144,44.4807
--18.23976,-19.98612,-18.53082,-15.71724,73.017252,43.855
--17.1456,-18.7872,-17.4192,-14.8656,68.63712,44.213
--18.05552,-19.78424,-18.43968,-15.65452,72.279704,43.6688
--17.41635,-18.9829,-17.6928,-14.9283,69.35209,43.9701
--17.59968,-19.27584,-17.97216,-15.17856,70.082112,43.9701
--18.711,-20.493,-19.107,-16.137,74.5074,44.6985
--17.2368,-18.8784,-17.6928,-15.048,68.63712,42.2275
--18.14967,-19.97424,-18.62982,-15.94098,72.272178,44.3581
--18.14967,-19.97424,-18.72585,-15.84495,72.281781,43.8966
--17.2368,-18.9696,-17.784,-14.9568,68.64624,42.8544
--18.333,-20.273,-18.915,-16.005,73.0022,42.9128
--17.41824,-19.26144,-18.06336,-15.39072,69.359616,42.384
--18.333,-20.273,-19.012,-16.005,73.0022,43.8925
--18.33678,-20.27718,-19.01592,-16.0083,73.017252,45.1935
--17.05725,-18.9525,-17.689,-15.07175,67.931175,42.6075
--18.711,-20.79,-19.503,-16.335,74.5074,45.2826
--18.144,-20.16,-18.912,-16.032,72.2496,42.7776
--17.328,-19.152,-17.9664,-15.2304,68.64624,41.6256
--17.5104,-19.44576,-18.24768,-15.57504,69.359616,43.056
--17.8695,-19.5624,-17.4933,-15.4242,70.78203,42.123
--18.0576,-18.72288,-16.53696,-16.82208,71.527104,45.2826
--18.05,-17.765,-15.39,-16.91,71.497,44.94
--17.1475,-16.33525,-13.98875,-15.884,67.92215,41.5625
--17.8695,-16.3647,-14.01345,-16.45875,70.791435,44.0154
--18.0576,-17.01216,-14.256,-13.40064,71.527104,43.6224
--17.8752,-18.25152,-15.33504,-14.86464,70.804608,42.4608
--17.6928,-18.34464,-15.64416,-14.80608,70.091424,41.616
--17.8695,-18.71595,-16.08255,-14.6718,70.78203,41.5625
--18.718,-19.404,-16.954,-15.288,73.7548,44.74
--18.718,-19.404,-17.052,-15.092,73.7548,43.7472
--18.43,-19.109,-16.975,-14.841,73.0022,44.24
--17.96928,-18.53376,-16.55808,-14.30016,70.804608,42.5664
--17.78592,-18.43776,-16.57536,-14.4336,70.082112,43.2232
--18.53082,-19.20996,-17.36658,-14.94108,73.017252,43.561
--18.909,-19.602,-17.721,-15.444,74.5074,45.9657
--17.7821,-18.5269,-16.8511,-14.6167,69.98327,43.6525
--18.527,-19.497,-17.654,-15.423,72.9052,43.1165
--18.909,-19.998,-18.216,-15.642,74.4183,43.64
--18.909,-19.998,-18.216,-15.543,74.4084,43.7976
--17.78592,-18.81024,-17.2272,-14.71296,69.998304,42.1056
--17.78592,-18.90336,-17.32032,-14.8992,69.998304,42.9504
--17.7821,-18.8993,-17.4097,-14.896,69.98327,44.0325
--17.96355,-19.09215,-17.58735,-14.8599,70.68798,43.7976
--17.7821,-18.8993,-17.5028,-14.896,69.98327,41.458
--18.145,-19.38,-17.955,-15.2,71.4115,40.983
--18.15646,-19.39224,-17.96634,-15.30466,71.447096,42.8255
--18.71991,-20.09205,-18.6219,-15.77961,73.664316,43.7184
--18.145,-19.57,-18.05,-15.485,71.4115,44.75
--18.15264,-19.57824,-18.15264,-15.58656,71.432064,44.4807
--17.96355,-19.3743,-18.0576,-15.33015,70.68798,42.332
--17.4192,-18.7872,-17.5104,-14.8656,68.54592,42.788
--17.96355,-19.46835,-18.15165,-15.4242,70.68798,45.0945
--17.6928,-19.07505,-17.78495,-15.02045,69.269155,42.8255
--18.06336,-19.47456,-18.15744,-15.5232,70.710528,43.1592
--17.8752,-19.3648,-18.0614,-15.1753,69.97396,43.4532
--18.24768,-19.76832,-18.43776,-15.6816,71.432064,44.1144
--17.328,-18.772,-17.5085,-14.801,67.840925,42.693
--17.69472,-19.16928,-17.9712,-15.29856,69.267456,43.44
--18.43968,-20.07236,-18.7278,-15.94264,72.183664,45.1094
--18.43776,-20.07027,-18.82188,-15.74892,72.185751,43.7955
--18.432,-20.16,-18.816,-15.936,72.1632,44.1888
--18.0576,-19.7505,-18.52785,-15.51825,70.697385,44.4114
--19.008,-20.79,-19.503,-16.335,74.4084,44.45
--18.25152,-19.9626,-18.72682,-15.6849,71.447096,43.4075
--17.69472,-19.3536,-18.15552,-15.39072,69.267456,43.728
--18.62784,-20.3742,-19.20996,-16.10532,72.920232,44.3025
--18.43968,-20.07236,-18.53572,-15.46244,72.183664,44.0314
--18.24768,-19.008,-16.91712,-16.25184,71.432064,43.056
--19.3,-19,-16.5,-17.9,75.16,44.34
--18.15165,-17.02305,-14.6718,-16.7409,70.68798,42.2275
--17.6016,-15.96,-13.5888,-16.3248,68.55504,41.7216
--18.15165,-16.45875,-13.7313,-13.44915,70.697385,44.0055
--18.53379,-18.43776,-15.46083,-15.26877,72.176148,43.8966
--18.335,-18.715,-15.865,-15.105,71.307,44.64
--18.34272,-18.81792,-16.1568,-14.92128,71.346528,42.8544
--17.41825,-17.8695,-15.523,-13.8985,67.750675,42.693
--17.78495,-18.2457,-15.94195,-14.1911,69.177005,43.9701
--18.721,-19.109,-16.975,-14.938,72.8179,44.45
--17.9683,-18.3407,-16.3856,-14.2443,69.89017,41.667
--17.97216,-18.43776,-16.48224,-14.34048,69.905184,42.7776
--18.15165,-18.6219,-16.7409,-14.4837,70.59393,46.1835
--17.78495,-18.2457,-16.587,-14.28325,69.16779,41.5625
--18.72486,-19.30698,-17.56062,-15.32916,72.823212,44.1936
--17.41825,-18.14025,-16.4255,-14.34975,67.750675,41.743
--17.6016,-18.4224,-16.6896,-14.5008,68.45472,42.1056
--18.53379,-19.39806,-17.66952,-15.17274,72.080118,44.0055
--19.107,-19.998,-18.315,-15.741,74.3193,44.86
--18.15937,-19.10027,-17.50074,-15.0544,70.623954,43.8925
--18.15165,-19.09215,-17.58735,-15.048,70.603335,45.2826
--17.78688,-18.70848,-17.32608,-14.65344,69.175296,43.9104
--18.72486,-19.79208,-18.23976,-15.42618,72.823212,43.4214
--18.72486,-19.79208,-18.23976,-15.42618,72.823212,44.9856
--18.528,-19.584,-18.144,-15.552,72.0576,41.7888
--18.15165,-19.28025,-17.77545,-15.33015,70.59393,44.3025
--19.107,-20.394,-18.81,-16.038,74.3094,44.64
--18.721,-19.982,-18.527,-15.714,72.8179,43.5821
--17.8771,-18.89075,-17.60065,-15.1126,69.16779,42.8925
--18.82188,-19.98612,-18.62784,-15.91128,72.832914,43.7976
--18.44164,-19.58236,-18.25152,-15.39972,71.352036,42.6218
--19.01394,-20.28807,-18.91593,-15.97563,73.566306,42.9165
--18.43,-19.665,-18.335,-15.58,71.307,44.85
--18.624,-19.872,-18.624,-15.744,72.0576,42.2784
--18.25152,-19.47456,-18.25152,-15.5232,70.616448,42.875
--18.44164,-19.77248,-18.44164,-15.58984,71.361542,43.0098
--17.8771,-19.1672,-17.96925,-15.1126,69.16779,43.7285
--19.012,-20.482,-19.11,-16.268,73.4706,44.75
--17.8771,-19.25935,-18.0614,-15.02045,69.07564,40.983
--18.0614,-19.4579,-18.2476,-15.1753,69.88086,42.8925
--19.206,-20.691,-19.404,-16.335,74.2203,43.6095
--18.06528,-19.46208,-18.34464,-15.45792,69.812064,43.056
--19.206,-20.691,-19.503,-16.335,74.2203,44.86
--18.62982,-20.1663,-18.91791,-15.94098,71.993691,44.7975
--18.818,-20.37,-19.109,-16.102,72.7209,44.45
--18.818,-20.37,-19.206,-16.102,72.7112,43.53
--18.25152,-19.7568,-18.53376,-15.71136,70.541184,42.8544
--18.62982,-20.26233,-19.01394,-15.84495,71.993691,43.0098
--19.012,-20.58,-19.306,-15.876,73.4706,44.8154
--17.87904,-18.52416,-16.49664,-15.48288,69.092352,42.672
--17.87904,-17.69472,-15.39072,-16.49664,69.092352,43.344
--18.25346,-17.21847,-14.96031,-16.84211,70.445183,44.6491
--18.3456,-16.55808,-14.20608,-16.9344,70.447104,44.8252
--18.3456,-16.08768,-13.45344,-16.18176,70.437696,43.953
--18.72585,-18.05364,-14.88465,-14.78862,71.993691,43.5918
--18.33975,-18.4338,-15.51825,-14.95395,70.509285,43.168
--18.7278,-19.01592,-16.23076,-14.98224,72.001188,46.0012
--18.9189,-19.20996,-16.59042,-14.94108,72.638874,44.247
--17.96925,-18.2457,-15.94195,-14.1911,69.084855,43.0635
--18.5328,-18.81792,-16.53696,-14.7312,71.156448,44.1936
--18.1584,-18.34464,-16.38912,-14.15424,69.718944,43.5045
--17.59875,-17.77925,-15.97425,-13.80825,67.570175,42.123
--17.59875,-17.77925,-16.0645,-13.98875,67.570175,43.833
--18.9189,-19.20996,-17.36658,-14.94108,72.638874,44.4807
--18.3456,-18.62784,-16.9344,-14.67648,70.531776,44.1392
--18.33975,-18.81,-17.02305,-14.8599,70.509285,45.8865
--18.1584,-18.71712,-17.04096,-14.71296,69.718944,44.8625
--18.72585,-19.39806,-17.66952,-15.46083,71.897661,46.0746
--19.305,-19.998,-18.315,-15.84,74.1213,48.73
--17.59875,-18.32075,-16.7865,-14.53025,67.660425,45.1535
--19.11,-19.894,-18.326,-15.582,73.3726,46.14
--18.72,-19.584,-17.952,-15.456,71.8752,47.13
--18.34755,-19.19436,-17.68892,-15.0544,70.539273,48.1605
--17.96925,-18.7986,-17.41635,-15.02045,69.00192,44.5715
--18.72585,-19.68615,-18.14967,-15.55686,71.897661,46.0746
--18.915,-19.885,-18.43,-15.811,72.7209,47.1711
--18.33975,-19.3743,-17.96355,-15.2361,70.509285,50.4306
--18.1584,-19.18272,-17.78592,-15.27168,69.812064,45.7344
--18.5367,-19.67742,-18.25152,-15.39972,71.266482,45.423
--18.525,-19.57,-18.24,-15.485,71.2215,46.0275
--19.11195,-20.28807,-18.91593,-15.97563,73.478097,47.5596
--18.5367,-19.67742,-18.34658,-15.58984,71.266482,47.7848
--18.3456,-19.56864,-18.25152,-15.61728,70.625856,49.245
--18.7278,-19.97632,-18.63176,-15.94264,72.087624,47.7652
--19.5,-20.8,-19.5,-16.4,75.07,47.64
--18.915,-20.273,-18.915,-16.102,72.8179,46.94
--19.11,-20.482,-19.208,-16.366,73.5686,47.45
--19.305,-20.79,-19.404,-16.335,74.3094,47.64
--19.208,-20.58,-19.208,-16.366,73.5686,48.265
--18.9189,-20.3742,-19.11294,-15.81426,72.832914,46.8666
--18.525,-19.95,-18.715,-15.675,71.402,49.44
--18.06336,-19.3536,-18.15552,-15.29856,69.184512,46.7904
--19.5,-21,-19.7,-16.8,75.07,48.45
--18.915,-20.079,-18.042,-16.005,72.8082,48.7425
--19.305,-19.404,-17.028,-17.424,74.3094,48.8367
--19.6,-18.7,-16.2,-17.7,75.07,48.63
--18.44164,-16.9362,-14.58395,-17.12438,70.633363,46.7055
--18.43968,-16.36992,-13.82976,-16.9344,70.625856,45.168
--18.4338,-16.929,-14.01345,-13.44915,70.603335,48.0744
--18.816,-18.624,-15.552,-15.36,72.0672,47.46
--18.62,-18.81,-15.96,-15.01,71.3165,47.53
--18.4338,-18.6219,-15.9885,-14.6718,70.68798,46.4835
--19.404,-19.602,-17.028,-15.345,74.4084,46.14
--19.404,-19.602,-17.226,-15.246,74.4084,47.45
--18.0614,-18.15355,-16.12625,-14.1911,69.269155,45.258
--18.25152,-18.34464,-16.38912,-14.34048,69.905184,45.8131
--17.8752,-18.0576,-16.2336,-13.8624,68.54592,45.543
--18.62784,-18.81792,-16.91712,-14.82624,71.432064,45.8865
--18.43968,-18.62784,-16.9344,-14.67648,70.719936,45.0624
--18.44164,-18.818,-17.03029,-14.86622,70.718044,44.4648
--17.689,-18.14025,-16.4255,-14.34975,67.8319,43.7285
--19.208,-19.796,-17.934,-15.386,73.6568,46.1874
--19.01592,-19.59804,-17.85168,-15.32916,72.920232,46.3716
--18.44164,-19.00618,-17.40665,-14.77213,70.727453,45.7161
--18.62,-19.285,-17.67,-15.2,71.402,43.9375
--18.0614,-18.70645,-17.23205,-14.5597,69.25994,44.422
--18.816,-19.488,-18.048,-15.072,72.1536,44.112
--18.2476,-18.9924,-17.5028,-14.8029,69.98327,45.031
--18.62,-19.38,-17.955,-15.2,71.402,46.14
--19.404,-20.196,-18.711,-15.939,74.4084,45.9756
--19.208,-20.09,-18.62,-15.876,73.6568,46.03
--18.43968,-19.2864,-17.8752,-15.24096,70.710528,44.1888
--19.404,-20.394,-18.909,-15.939,74.4084,45.1935
--18.25152,-19.18272,-17.87904,-15.17856,69.988992,43.9701
--18.82384,-19.78424,-18.43968,-15.65452,72.193268,46.8734
--18.816,-19.872,-18.432,-15.648,72.1536,47.75
--19.20996,-20.28807,-18.91593,-16.07364,73.674117,47.0646
--19.208,-20.286,-18.914,-16.072,73.6666,46.14
--18.4338,-19.46835,-18.2457,-15.51825,70.68798,45.5697
--18.43968,-19.56864,-18.25152,-15.42912,70.710528,43.5168
--19.01592,-20.18016,-18.82188,-16.10532,72.920232,45.8865
--18.82188,-19.97424,-18.72585,-15.94098,72.176148,44.9595
--19.404,-20.691,-19.305,-16.236,74.4183,45.7875
--19.012,-20.273,-19.012,-16.102,72.9052,45.0371
--17.8752,-19.0608,-17.8752,-15.1392,68.54592,43.6525
--18.4338,-19.65645,-18.4338,-15.51825,70.697385,43.9375
--18.62784,-19.9584,-18.62784,-15.6816,71.432064,45.6786
--18.63176,-19.9626,-18.72682,-15.6849,71.456602,44.5715
--18.0614,-19.3515,-18.15355,-15.4812,69.25994,44.422
--17.8752,-19.152,-17.9664,-15.2304,68.54592,45.4464
--18.43968,-19.7568,-18.53376,-15.61728,70.710528,45.6092
--18.2476,-19.551,-18.4338,-15.4546,69.97396,45.5112
--18.82188,-20.07027,-18.53379,-15.65289,72.176148,45.3572
--18.25152,-18.53088,-16.38912,-16.01664,69.988992,43.9008
--18.62784,-18.0576,-15.6816,-16.53696,71.432064,46.0845
--18.25152,-16.85472,-14.52672,-16.48224,69.998304,44.4
--19.11294,-16.9785,-14.45598,-17.26956,72.920232,45.9657
--18.72288,-16.632,-13.87584,-13.40064,71.432064,44.5728
--19.503,-19.008,-15.84,-15.543,74.3193,45.73
--18.25152,-18.34464,-15.55104,-14.71296,69.988992,44.4
--18.3407,-18.3407,-15.827,-14.5236,69.97396,44.345
--18.82188,-18.91791,-16.51716,-14.59656,72.089721,45.1935
--18.0614,-18.15355,-15.94195,-14.09895,69.177005,43.928
--18.912,-18.816,-16.704,-14.688,72.0672,45.74
--18.72682,-18.63176,-16.73056,-14.35406,71.361542,44.6292
--18.912,-18.816,-16.992,-14.784,72.1536,43.6224
--18.72682,-18.63176,-16.92068,-14.63924,71.447096,44.8625
--19.503,-19.503,-17.721,-15.246,74.4084,44.6985
--18.2476,-18.3407,-16.758,-14.4305,69.88086,44.345
--19.208,-19.502,-17.738,-15.288,73.6568,45.2172
--18.34464,-18.624,-17.04096,-14.71296,69.895872,44.8896
--19.503,-19.899,-18.216,-15.543,74.3193,46.1934
--19.7,-20.2,-18.4,-15.8,75.16,46.25
--18.715,-19.19,-17.575,-15.01,71.402,43.5575
--18.91988,-19.40008,-17.86344,-14.98224,72.087624,45.031
--18.3407,-18.8062,-17.4097,-14.7098,69.89017,44.639
--18.62784,-19.29312,-17.77248,-15.01632,71.337024,45.5697
--19.11294,-19.69506,-18.23976,-15.42618,72.920232,44.9232
--18.52785,-19.09215,-17.6814,-15.048,70.59393,45.2826
--18.53573,-19.19436,-17.78301,-15.0544,70.708635,44.5715
--19.503,-20.196,-18.711,-15.84,74.3193,46.36
--18.52785,-19.28025,-17.8695,-15.14205,70.59393,43.168
--18.72288,-19.4832,-18.0576,-15.30144,71.346528,43.44
--19.11294,-19.8891,-18.53082,-15.71724,72.832914,45.0945
--19.109,-19.885,-18.624,-15.811,72.9052,44.6491
--19.11294,-19.98612,-18.62784,-15.81426,72.920232,44.9856
--18.15355,-18.9829,-17.6928,-14.9283,69.25994,43.0635
--19.11294,-19.98612,-18.72486,-15.81426,72.920232,44.1392
--18.52785,-19.3743,-18.15165,-15.33015,70.68798,42.9875
--19.109,-19.982,-18.721,-15.811,72.9149,44.0768
--19.306,-20.286,-18.914,-15.876,73.5588,45.55
--18.15355,-19.07505,-17.8771,-15.20475,69.25994,45.6385
--18.53376,-19.56864,-18.25152,-15.5232,70.625856,43.728
--18.91988,-19.88028,-18.63176,-15.8466,72.183664,43.3454
--17.9664,-18.9696,-17.784,-15.048,68.45472,42.288
--18.3407,-19.2717,-18.1545,-15.2684,69.89017,43.6688
--18.72682,-19.67742,-18.5367,-15.58984,71.352036,43.5918
--18.91791,-19.87821,-18.72585,-15.74892,72.089721,43.7955
--18.15355,-19.07505,-18.0614,-15.1126,69.18622,44.0768
--19.11294,-20.08314,-19.01592,-15.91128,72.832914,44.345
--19.503,-20.493,-19.404,-16.137,74.3193,46.36
--18.15552,-19.16928,-18.06336,-15.2064,69.175296,44.1888
--19.109,-20.079,-19.012,-16.102,72.8082,45.33
--18.53376,-19.56864,-18.53376,-15.5232,70.625856,44.5312
--18.715,-19.76,-18.715,-15.675,71.3165,45.74
--18.53376,-19.56864,-18.53376,-15.61728,70.625856,44.9664
--18.52785,-19.5624,-18.52785,-15.70635,70.603335,45.3816
--19.306,-20.384,-19.306,-16.268,73.5686,46.65
--18.72288,-19.86336,-18.72288,-15.77664,71.346528,45.9657
--18.53376,-19.66272,-18.53376,-15.61728,70.625856,44.5056
--18.53376,-19.2864,-17.31072,-15.5232,70.625856,44.345
--18.52785,-18.2457,-15.89445,-16.45875,70.603335,44.6985
--19.30797,-18.03384,-15.58359,-17.24976,73.576107,44.9856
--19.11294,-17.07552,-14.553,-17.26956,72.929934,44.4906
--19.503,-16.83,-14.058,-17.127,74.4084,46.2924
--18.912,-17.568,-14.496,-14.208,72.1536,44.86
--18.715,-18.43,-15.485,-15.01,71.4115,42.9875
--18.715,-18.62,-15.865,-14.82,71.402,45.33
--19.30797,-19.20996,-16.6617,-15.09354,73.664316,45.8964
--18.52785,-18.4338,-16.08255,-14.2956,70.68798,44.8767
--18.91791,-18.72585,-16.61319,-14.50053,72.176148,44.9856
--19.306,-19.11,-17.052,-14.896,73.6568,42.581
--19.109,-18.915,-16.975,-14.647,72.9052,44.45
--18.91791,-18.72585,-16.90128,-14.78862,72.185751,42.9264
--18.53376,-18.3456,-16.74624,-14.20608,70.719936,43.2768
--18.912,-18.816,-17.088,-14.784,72.1632,42
--18.53376,-18.53376,-16.84032,-14.67648,70.719936,41.7984
--17.77925,-17.8695,-16.33525,-13.8985,67.8319,41.667
--18.52785,-18.6219,-17.1171,-14.57775,70.697385,41.743
--18.91791,-19.10997,-17.47746,-14.88465,72.185751,44.0055
--18.52785,-18.71595,-17.21115,-14.38965,70.68798,42.7975
--18.91791,-19.01394,-17.57349,-14.78862,72.176148,43.8925
--18.72288,-18.81792,-17.48736,-14.82624,71.432064,44.2944
--18.34464,-18.53088,-17.13408,-14.80608,69.998304,44.3678
--19.30797,-19.602,-18.13185,-15.38757,73.664316,45.0945
--17.9664,-18.24,-16.9632,-14.3184,68.54592,43.1328
--17.9664,-18.3312,-16.9632,-14.4096,68.45472,43.168
--18.52785,-18.90405,-17.58735,-14.76585,70.68798,42.788
--18.72288,-19.10304,-17.77248,-14.92128,71.432064,44.3025
--18.15355,-18.52215,-17.3242,-14.46755,69.25994,42.6835
--17.9664,-18.3312,-17.1456,-14.4096,68.54592,42.617
--18.91988,-19.30404,-18.15156,-15.3664,72.183664,43.561
--18.15355,-18.6143,-17.41635,-14.46755,69.269155,42.2275
--18.53573,-19.00618,-17.78301,-14.77213,70.718044,43.4075
--18.72682,-19.29718,-17.96634,-15.30466,71.447096,44.1392
--17.9664,-18.5136,-17.328,-14.5008,68.54592,42.6075
--19.306,-19.894,-18.62,-15.68,73.6666,43.855
--18.715,-19.285,-18.05,-15.105,71.402,45.54
--19.11294,-19.69506,-18.53082,-15.42618,72.920232,44.4015
--18.912,-19.488,-18.336,-15.168,72.1536,44.64
--19.306,-19.894,-18.718,-15.582,73.6568,44.64
--18.52785,-19.09215,-17.96355,-15.048,70.68798,42.028
--18.34464,-18.90336,-17.87904,-14.80608,69.988992,42.1056
--19.503,-20.196,-19.008,-15.741,74.4084,45.65
--19.7,-20.4,-19.2,-15.9,75.16,45.73
--18.15355,-18.7986,-17.6928,-14.744,69.25994,44.1835
--18.53376,-19.19232,-18.06336,-14.95872,70.710528,42
--18.34464,-18.99648,-17.87904,-14.99232,69.988992,42
--19.109,-19.788,-18.721,-15.52,72.9052,43.5045
--18.72682,-19.39224,-18.34658,-15.30466,71.447096,42.8352
--18.912,-19.584,-18.528,-15.36,72.1536,42.384
--18.3407,-19.0855,-17.9683,-15.0822,69.97396,42.123
--19.11294,-19.8891,-18.72486,-15.71724,72.920232,44.5896
--18.53376,-19.2864,-18.15744,-15.14688,70.710528,44.737
--18.72682,-19.4873,-18.44164,-15.30466,71.447096,43.561
--18.72288,-19.4832,-18.43776,-15.30144,71.432064,44.4114
--17.77925,-18.50125,-17.5085,-14.44,67.8319,43.168
--18.715,-19.57,-18.43,-15.39,71.402,42.332
--18.34464,-19.0896,-18.06528,-15.08544,69.988992,43.3978
--18.53376,-19.38048,-18.25152,-15.14688,70.719936,43.953
--19.306,-20.188,-19.012,-15.974,73.6568,44.4234
--18.52785,-19.3743,-18.2457,-15.048,70.68798,41.9425
--19.306,-20.188,-19.11,-15.778,73.6568,44.9232
--18.715,-19.57,-18.525,-15.39,71.4115,42.8925
--18.912,-19.776,-18.72,-15.456,72.1536,45.04
--18.15552,-18.98496,-17.9712,-14.7456,69.267456,43.44
--18.15552,-18.98496,-17.9712,-14.7456,69.267456,43.6224
--18.52785,-19.3743,-18.33975,-15.14205,70.697385,45.0945
--18.15552,-18.98496,-17.9712,-14.7456,69.267456,43.824
--18.52785,-19.46835,-18.33975,-15.33015,70.603335,44.4015
--18.53376,-19.47456,-18.3456,-15.42912,70.625856,43.8452
--18.715,-19.665,-18.525,-15.39,71.3165,45.54
--18.72288,-19.57824,-18.5328,-15.49152,71.346528,44.1936
--18.72288,-19.67328,-18.5328,-15.2064,71.337024,42.288
--17.9664,-18.8784,-17.8752,-14.7744,68.46384,42.693
--18.715,-19.665,-18.62,-15.39,71.3165,42.2275
--18.715,-19.665,-18.62,-15.485,71.3165,44.56
--19.30797,-20.28807,-19.20996,-16.07364,73.576107,44.7975
--19.11294,-20.08314,-19.01592,-15.71724,72.823212,43.953
--19.503,-20.493,-19.404,-16.038,74.3094,45.25
--19.11294,-20.08314,-19.01592,-15.71724,72.823212,43.6095
--18.715,-19.76,-18.62,-15.485,71.307,45.04
--19.20996,-20.08314,-19.01592,-15.81426,72.823212,43.4532
--18.3407,-19.3648,-18.2476,-15.1753,69.89017,42.9828
--19.11294,-20.18016,-19.01592,-15.91128,72.832914,44.4015
--18.81792,-19.67328,-18.62784,-15.58656,71.346528,44.1936
--18.3407,-19.2717,-18.2476,-15.2684,69.89017,42.788
--19.306,-20.286,-19.306,-15.876,73.5588,44.345
--19.503,-20.592,-19.503,-16.236,74.3193,44.85
--18.81,-19.665,-18.62,-15.485,71.307,44.75
--19.30797,-20.38608,-19.20996,-15.87762,73.566306,45.0945
--18.912,-19.872,-18.816,-15.744,72.0672,46.35
--19.109,-20.176,-19.012,-15.908,72.8082,45.73
--19.602,-20.592,-19.404,-16.137,74.3094,44.85
--19.404,-20.384,-19.306,-15.974,73.5686,44.639
--18.715,-19.76,-18.715,-15.39,71.3165,43.4435
--18.43776,-19.36896,-18.34464,-15.27168,69.895872,43.3008
--19.008,-20.064,-18.912,-15.84,72.0576,45.44
--18.81,-19.855,-18.715,-15.58,71.402,42.6075
--18.43776,-19.46208,-18.34464,-15.17856,69.895872,42.1056
--19.01394,-20.07027,-18.91791,-15.84495,72.176148,44.3025
--19.602,-20.691,-19.503,-16.335,74.3193,44.1936
--18.4338,-19.3648,-18.4338,-15.0822,69.89017,41.9425
--18.82188,-19.77248,-18.72682,-15.58984,71.456602,42.8352
--18.6219,-19.5624,-18.52785,-15.4242,70.59393,42.2275
--19.206,-20.176,-19.109,-15.908,72.9052,45.15
--19.206,-20.176,-19.109,-15.908,72.9149,45.04
--18.62784,-19.56864,-18.62784,-15.33504,70.710528,43.6688
--18.81792,-19.76832,-18.81792,-15.58656,71.432064,42.5664
--18.81,-19.76,-18.715,-15.675,71.402,42.9875
--19.01394,-20.07027,-18.91791,-15.65289,72.176148,45.4348
--18.62784,-19.66272,-18.53376,-15.42912,70.710528,42.6594
--18.82188,-19.86754,-18.82188,-15.6849,71.447096,42.5442
--19.404,-20.482,-19.404,-16.17,73.6568,43.86
--19.008,-20.064,-19.008,-15.648,72.1536,42.672
--18.82188,-19.86754,-18.82188,-15.58984,71.447096,42.0495
--19.01394,-20.07027,-19.01394,-15.74892,72.176148,44.3025
--18.24768,-19.26144,-18.24768,-15.02208,69.276672,42.4704
--18.81792,-19.76832,-18.81792,-15.58656,71.441568,43.4214
--18.81,-19.855,-18.81,-15.58,71.402,44.34
--18.81792,-19.86336,-18.81792,-15.58656,71.441568,43.728
--19.008,-20.064,-19.008,-15.552,72.1632,44.16
--19.8,-20.9,-19.8,-16.3,75.16,44.56
--19.01592,-19.97632,-18.82384,-15.07828,72.193268,43.561
--18.0576,-18.0576,-15.8688,-15.4128,68.54592,41.8475
--19.20996,-18.33678,-15.71724,-17.17254,72.920232,43.7976
--19.8,-17.9,-15.3,-17.5,75.16,44.56
--18.43776,-16.01664,-13.40928,-16.20288,69.988992,42.384
--18.24768,-15.94368,-12.99456,-12.99456,69.359616,42.672
--18.91296,-18.0576,-14.92128,-14.63616,71.441568,43.6095
--18.62982,-18.34755,-15.43076,-14.67804,70.812134,42.6218
--19.50399,-19.11195,-16.46568,-14.79951,73.762326,43.7184
--19.20996,-19.01592,-16.4934,-14.74704,73.017252,43.1046
--19.30698,-18.9189,-16.59042,-14.553,73.017252,42.581
--19.303,-18.818,-16.781,-14.55,73.0022,42.4375
--18.33984,-17.87904,-16.03584,-13.63968,69.359616,41.3376
--18.91296,-18.43776,-16.632,-14.256,71.527104,44.1144
--19.404,-19.11,-17.248,-14.7,73.7548,43.53
--17.8695,-17.5085,-15.97425,-13.44725,67.931175,41.4675
--19.701,-19.305,-17.622,-14.85,74.5074,43.1046
--18.0576,-17.8752,-16.3248,-14.0448,68.63712,41.9425
--18.91694,-18.72682,-17.1108,-14.63924,71.542156,42.6218
--18.53088,-18.43776,-16.85472,-14.34048,70.082112,42
--18.53088,-18.34464,-16.85472,-14.24736,70.175232,41.616
--19.01394,-18.91791,-17.47746,-14.59656,72.358605,42.4375
--18.2457,-18.15355,-16.86345,-14.0068,69.435025,41.9525
--19.01592,-18.91988,-17.57532,-14.79016,72.36614,42.581
--19.602,-19.503,-18.216,-15.147,74.6064,43.1046
--19.404,-19.306,-18.032,-14.994,73.843,43.64
--19.20996,-19.20996,-17.9487,-14.94108,73.114272,42.875
--19.11196,-19.11196,-17.7674,-14.8862,72.375744,43.6688
--18.62784,-18.72192,-17.4048,-14.48832,70.88928,45.031
--19.30698,-19.30698,-18.04572,-14.94108,73.114272,44.4015
--18.62784,-18.62784,-17.49888,-14.5824,70.88928,44.5312
--18.62982,-18.72391,-17.50074,-14.67804,70.896815,43.7955
--19.701,-19.701,-18.513,-15.642,74.6064,44.94
--18.81792,-19.008,-17.77248,-14.7312,71.631648,45.2034
--18.4338,-18.62,-17.4097,-14.3374,70.24395,42.693
--19.008,-19.2,-18.048,-14.88,72.432,44.23
--18.81,-19,-17.86,-14.725,71.6775,43.64
--19.502,-19.6,-18.424,-15.386,73.9508,43.169
--18.43776,-18.624,-17.50656,-14.52672,70.25904,41.8944
--19.008,-19.2,-18.048,-14.976,72.432,42.576
--18.62982,-18.818,-17.68892,-14.58395,70.990905,43.3008
--18.62784,-18.91008,-17.78112,-14.67648,70.98336,42.8554
--19.206,-19.497,-18.333,-15.229,73.1865,43.2232
--18.62784,-19.00416,-17.78112,-14.77056,70.98336,42.288
--18.82188,-19.20212,-18.0614,-14.92442,71.732276,42.4375
--18.905,-19.19,-18.05,-14.915,71.6775,43.25
--18.81792,-19.10304,-18.0576,-14.82624,71.70768,41.7984
--18.82188,-19.10706,-18.0614,-14.82936,71.81783,41.6615
--19.404,-19.796,-18.62,-15.288,74.039,42.091
--18.2457,-18.52215,-17.5085,-14.46755,69.62854,42.1562
--19.602,-19.998,-18.81,-15.642,74.7945,42.1245
--19.20996,-19.59804,-18.4338,-15.42618,73.29861,42.2334
--18.4338,-18.8062,-17.7821,-14.7098,70.33705,41.307
--19.602,-20.097,-18.909,-15.741,74.7945,43.14
--18.81792,-19.19808,-18.15264,-14.92128,71.80272,41.4144
--18.43776,-18.81024,-17.78592,-14.52672,70.35216,41.1668
--19.008,-19.392,-18.336,-15.264,72.528,42.36
--19.404,-19.894,-18.718,-15.288,74.039,43.06
--18.62982,-19.00618,-17.97119,-14.77213,71.084995,41.1668
--18.0576,-18.4224,-17.4192,-14.3184,68.91072,40.9536
--19.206,-19.594,-18.527,-15.326,73.2835,42.03
--18.82188,-19.20212,-18.15646,-15.01948,71.81783,41.1668
--18.62784,-19.00416,-17.96928,-14.48832,71.17152,40.56
--18.6219,-18.9981,-17.96355,-14.76585,71.148825,40.4225
--18.43776,-18.71712,-17.78592,-14.71296,70.44528,40.848
--19.8,-20.1,-19.1,-15.8,75.65,42.44
--19.01394,-19.49409,-18.34173,-15.07671,72.646695,41.9364
--19.206,-19.691,-18.624,-15.52,73.3805,41.3802
--18.43776,-18.90336,-17.87904,-14.80608,70.44528,40.9825
--19.602,-20.097,-19.008,-15.84,74.8935,42.14
--19.206,-19.691,-18.624,-15.326,73.3805,40.9825
--19.20996,-19.69506,-18.62784,-15.32916,73.39563,41.405
--18.2457,-18.70645,-17.6928,-14.5597,69.711475,41.0892
--19.008,-19.488,-18.432,-15.264,72.624,40.464
--18.0576,-18.5136,-17.5104,-14.5008,68.9928,40.4225
--18.43776,-18.90336,-17.87904,-14.80608,70.44528,41.5548
--19.40598,-19.89603,-18.81792,-15.58359,74.144565,42.6294
--18.0576,-18.6048,-17.5104,-14.4096,69.00192,40.812
--19.01592,-19.59216,-18.53572,-15.46244,72.65426,41.699
--18.43776,-18.99648,-17.97216,-14.80608,70.44528,41.2416
--19.404,-19.992,-18.914,-15.582,74.137,42.66
--19.404,-19.992,-18.914,-15.582,74.137,41.8068
--18.81792,-19.38816,-18.34272,-15.01632,71.89776,40.3584
--19.20996,-19.79208,-18.72486,-15.23214,73.39563,42.0156
--18.2457,-18.7986,-17.78495,-14.46755,69.70226,40.242
--19.20996,-19.79208,-18.72486,-15.42618,73.473246,41.4315
--19.8,-20.4,-19.3,-15.9,75.73,42.25
--18.0576,-18.6048,-17.6016,-14.4096,69.06576,40.318
--18.81,-19.38,-18.335,-15.105,71.9435,41.85
--19.8,-20.4,-19.3,-16,75.73,42.15
--18.2457,-18.7986,-17.78495,-14.5597,69.77598,40.7012
--19.40598,-19.99404,-18.91593,-15.77961,74.213172,41.5404
--19.008,-19.584,-18.528,-15.168,72.7008,41.85
--19.20996,-19.79208,-18.72486,-15.62022,73.473246,40.9052
--18.0576,-18.696,-17.6016,-14.592,69.06576,39.9936
--19.8,-20.5,-19.3,-15.9,75.73,41.85
--18.4338,-18.9924,-17.9683,-14.8029,70.50463,39.653
--18.62982,-19.19436,-18.15937,-15.0544,71.254357,40.8758
--19.20996,-19.79208,-18.72486,-15.5232,73.473246,41.2533
--18.62982,-19.19436,-18.15937,-15.14849,71.254357,40.5945
--18.6219,-19.28025,-18.2457,-15.048,71.224065,41.8275
--18.6219,-19.1862,-18.2457,-15.2361,71.318115,40.318
--18.2457,-18.7986,-17.8771,-14.65185,69.785195,40.318
--19.008,-19.68,-18.624,-15.36,72.7008,40.6656
--18.82188,-19.39224,-18.44164,-15.11454,71.988938,41.5128
--19.40598,-20.09205,-19.01394,-15.58359,74.222973,42.1245
--19.01592,-19.6882,-18.63176,-15.27036,72.817528,41.405
--19.206,-19.885,-18.818,-15.617,73.4581,41.0892
--19.40598,-20.09205,-19.01394,-15.38757,74.311182,42.6294
--18.62784,-19.2864,-18.25152,-15.0528,71.246784,41.232
--18.0576,-18.696,-17.6928,-14.592,69.06576,40.3488
--18.62982,-19.28845,-18.25346,-15.14849,71.254357,41.2735
--19.404,-20.09,-19.012,-15.582,74.3134,43.14
--17.8695,-18.50125,-17.5085,-14.44,68.436575,40.907
--18.0576,-18.696,-17.6928,-14.592,69.15696,40.4544
--18.62784,-19.2864,-18.25152,-15.14688,71.331456,40.7424
--18.43776,-19.0896,-18.06528,-14.99232,70.519776,41.3705
--17.8695,-18.50125,-17.5085,-14.44,68.436575,39.938
--19.20996,-19.8891,-18.82188,-15.5232,73.570266,41.6196
--18.62784,-19.2864,-18.25152,-15.14688,71.340864,41.1992
--19.20996,-19.8891,-18.82188,-15.5232,73.570266,41.6196
--19.01592,-19.6882,-18.63176,-15.3664,72.836736,41.013
--19.01592,-19.6882,-18.63176,-15.27036,72.827132,41.1894
--18.2457,-18.89075,-17.8771,-14.83615,69.86813,40.9825
--18.82188,-19.4873,-18.44164,-15.2096,72.074492,40.5945
--19.404,-20.09,-19.012,-15.582,74.3134,42.14
--18.6219,-19.28025,-18.2457,-15.2361,71.30871,41.6097
--19.206,-19.982,-18.818,-15.617,73.5551,42.44
--18.6219,-19.3743,-18.2457,-15.14205,71.318115,41.6196
--19.01394,-19.68615,-18.62982,-15.46083,72.809946,40.7788
--18.81792,-19.4832,-18.5328,-15.30144,72.201888,41.7285
--18.2457,-18.89075,-17.8771,-14.83615,70.006355,40.7691
--19.8,-20.5,-19.4,-15.9,75.82,42.44
--19.01394,-19.68615,-18.62982,-15.26877,72.809946,42.1245
--19.404,-20.09,-19.012,-15.582,74.4506,41.5912
--18.24768,-18.8928,-17.87904,-14.7456,70.013952,40.7424
--18.6219,-19.3743,-18.2457,-15.14205,71.318115,42.0156
--18.24768,-18.98496,-17.9712,-14.92992,69.875712,40.2816
--19.8,-20.5,-19.4,-16.1,75.83,44.15
--18.62982,-19.28845,-18.25346,-15.0544,71.348447,42.1562
--18.81,-19.475,-18.43,-15.295,71.9435,42.03
--18.62784,-19.2864,-18.25152,-15.33504,71.237376,41.0496
--18.81,-19.475,-18.525,-15.295,71.9435,40.4225
--19.01394,-19.68615,-18.62982,-15.3648,72.723519,41.0892
--19.20996,-19.98612,-18.82188,-15.62022,73.570266,42.1988
--18.6219,-19.28025,-18.2457,-15.048,71.224065,40.983
--18.62784,-19.38048,-18.3456,-15.0528,71.246784,41.3376
--18.81792,-19.57824,-18.43776,-15.2064,71.973792,40.7328
--18.82188,-19.58236,-18.5367,-15.30466,71.998444,41.9832
--18.2457,-18.9829,-17.96925,-14.83615,69.877345,40.622
--19.602,-20.394,-19.305,-15.84,75.0618,42.1245
--18.6219,-19.3743,-18.33975,-14.95395,71.318115,42.0156
--19.01592,-19.6882,-18.63176,-15.46244,72.827132,41.797
--18.4338,-19.1786,-18.1545,-14.9891,70.58842,40.242
--19.404,-20.188,-19.012,-15.876,74.3134,42.54
--18.81,-19.475,-18.525,-15.39,72.0385,40.242
--19.008,-19.68,-18.624,-15.264,72.7872,40.848
--19.01592,-19.78424,-18.7278,-15.3664,72.817528,41.699
--19.40598,-20.09205,-19.11195,-15.6816,74.311182,42.0156
--17.8695,-18.50125,-17.59875,-14.44,68.436575,40.318
--18.0576,-18.7872,-17.784,-14.592,69.15696,40.944
--18.2457,-18.89075,-17.8771,-14.65185,69.877345,40.242
--18.72192,-19.38048,-18.25152,-15.14688,71.472576,41.699
--19.602,-20.295,-19.305,-15.84,75.2103,42.0156
--19.10997,-19.68615,-18.72585,-15.55686,72.953991,41.9364
--19.104,-19.68,-18.72,-15.36,72.9312,40.3488
--18.72391,-19.28845,-18.25346,-14.96031,71.480173,43.4075
--19.303,-19.885,-18.915,-15.52,73.6909,43.36
--18.5269,-19.0855,-18.0614,-14.896,70.72807,40.622
--18.33785,-18.9829,-17.96925,-14.65185,70.006355,41.192
--18.905,-19.57,-18.525,-15.105,72.029,41.1825
--18.71595,-19.28025,-18.33975,-15.2361,71.449785,42.7086
--18.0576,-18.696,-17.784,-14.592,69.28464,40.4225
--18.91296,-19.4832,-18.43776,-15.2064,72.201888,42.0156
--18.33984,-18.8928,-17.87904,-14.7456,70.023168,42.1056
--19.303,-19.885,-18.818,-15.52,73.5454,42.3405
--18.81792,-19.4832,-18.43776,-15.39648,72.201888,43.0254
--18.33785,-12.1638,-13.17745,2.3959,69.86813,41.5625
--19.404,-8.33,-10.878,3.43,74.3036,43.64
--19.206,-8.051,-8.633,2.91,73.5454,43.14
--19.8,-5.4,-7,7.4,75.83,42.95
--18.62784,-2.25792,-5.26848,7.80864,71.331456,42.1988
--18.62784,-5.45664,-6.49152,-1.4112,71.340864,42.2772
--18.62784,-7.71456,-7.43232,-3.7632,71.340864,42.5908
--19.01394,-8.73873,-7.87446,-5.18562,72.809946,42.6218
--18.82188,-9.506,-8.0801,-6.55914,72.083998,41.8458
--18.6219,-9.9693,-8.0883,-6.48945,71.30871,40.983
--18.2457,-10.04435,-8.20135,-6.17405,69.877345,41.9525
--19.30797,-10.87911,-8.91891,-6.8607,74.320983,42.9264
--19.503,-11.187,-9.207,-6.831,75.2103,43.06
--18.72682,-10.9319,-9.0307,-6.84432,72.226588,41.6712
--17.8752,-10.7616,-8.8464,-7.4784,69.28464,40.8025
--18.82188,-11.81169,-9.69903,-8.45064,72.963594,41.4772
--18.25152,-11.82624,-9.59136,-8.00832,70.743264,42.0592
--18.62,-12.065,-9.975,-7.885,72.0385,42.36
--18.3456,-12.04224,-10.06656,-7.90272,71.331456,42.1988
--18.72585,-12.38787,-10.46727,-8.06652,72.819549,41.3705
--18.525,-12.35,-10.45,-8.17,72.0385,42.76
--18.2457,-12.32055,-10.5336,-8.2764,71.318115,40.527
--18.82188,-12.90366,-11.06028,-8.92584,73.570266,42.7086
--18.44164,-13.11828,-11.12202,-9.12576,72.074492,41.4772
--18.44164,-13.3084,-11.31214,-9.12576,72.083998,41.8458
--18.15744,-13.26528,-11.2896,-9.03168,71.340864,41.4144
--19.107,-13.959,-12.078,-9.504,74.9727,46.94
--18.53572,-13.54164,-11.81292,-9.31588,72.731092,48.3434
--18.24768,-13.49568,-11.78496,-9.21888,71.973792,49.3416
--18.624,-13.774,-12.125,-9.409,73.4581,50.83
--18.06528,-13.45487,-11.85534,-9.12673,71.254357,48.4515
--18.43968,-13.82976,-12.19708,-9.604,72.731092,47.0792
--17.4192,-13.224,-11.6736,-9.2112,69.06576,45.888
--18.71991,-14.30946,-12.7413,-10.29105,74.222973,45.9756
--18.15264,-14.06592,-12.45024,-9.88416,71.973792,46.0746
--19.1,-15.1,-13.3,-10.7,75.73,44.93
--17.8752,-14.30016,-12.60672,-9.97248,71.246784,43.6224
--17.8695,-14.2956,-12.69675,-9.9693,71.224065,44.6985
--18.0614,-14.44912,-12.92816,-10.07636,71.988938,45.423
--17.77545,-14.2956,-12.7908,-9.9693,71.224065,45.258
--17.78112,-14.39424,-12.88896,-9.97248,71.246784,44.247
--17.05725,-13.80825,-12.4545,-9.65675,68.346325,44.6975
--18.33678,-14.94108,-13.38876,-10.6722,73.473246,45.6092
--18.424,-15.19,-13.622,-10.682,74.2154,48.56
--18.42588,-15.28956,-13.7214,-10.87911,74.222973,47.6685
--18.048,-15.168,-13.536,-10.752,72.7008,48.45
--17.1456,-14.5008,-12.9504,-10.1232,69.06576,46.896
--17.77622,-15.01948,-13.59358,-10.64672,71.988938,48.3545
--17.952,-15.168,-13.728,-10.848,72.7008,48.0288
--17.0544,-14.4096,-13.1328,-10.488,69.06576,47.7408
--18.326,-15.582,-14.112,-11.172,74.2154,51.499
--17.14176,-14.65344,-13.3632,-10.87488,69.792768,49.8528
--17.50074,-15.14849,-13.73714,-11.00853,71.254357,51.5458
--17.68116,-15.39972,-13.87876,-11.21708,72.074492,49.5961
--18.042,-15.714,-14.259,-11.64,73.5454,47.6658
--17.5824,-15.49152,-14.06592,-11.49984,72.068832,44.9664
--16.872,-14.9568,-13.5888,-11.1264,69.15696,45.1535
--17.04775,-15.1126,-13.73035,-11.15015,69.877345,46.132
--17.66952,-15.74892,-14.4045,-11.71566,72.819549,45.5318
--17.1304,-15.3615,-13.965,-11.3582,70.59773,44.878
--17.67136,-15.8466,-14.50204,-11.90896,72.827132,46.2952
--17.48,-15.77,-14.44,-11.78,72.0385,46.25
--17.21115,-15.70635,-14.2956,-11.75625,71.318115,43.0635
--17.21664,-15.71136,-14.39424,-11.76,71.472576,43.0656
--18.3,-16.8,-15.4,-12.6,75.97,44.85
--17.04096,-15.64416,-14.34048,-11.54688,70.743264,44.0768
--17.21664,-15.80544,-14.48832,-11.85408,71.472576,44.639
--18.018,-16.731,-15.345,-12.573,75.2994,45.44
--17.65764,-16.4934,-15.13512,-12.22452,73.706094,44.9955
--18.2,-17,-15.6,-13,75.97,45.15
--17.29728,-16.1568,-14.92128,-12.07008,72.296928,44.8767
--16.8511,-15.827,-14.6167,-11.9168,70.82117,44.737
--16.33525,-15.43275,-14.2595,-11.46175,68.653175,42.8925
--17.02305,-16.08255,-14.8599,-12.0384,71.53443,43.0635
--17.195,-16.34,-15.105,-12.255,72.2665,45.55
--17.2854,-16.51716,-15.26877,-12.57993,73.146051,44.8767
--16.929,-16.27065,-15.048,-12.2265,71.637885,45.0945
--16.7616,-16.10976,-14.8992,-12.19872,70.929504,44.4
--17.1072,-16.44192,-15.2064,-12.45024,72.391968,43.44
--16.416,-15.8688,-14.6832,-11.7648,69.46704,43.728
--17.1108,-16.54044,-15.30466,-12.3578,72.407202,44.737
--17.005,-16.53,-15.295,-12.445,72.352,45.55
--17.36658,-16.88148,-15.71724,-12.70962,73.997154,44.639
--16.66848,-16.296,-15.08544,-12.19872,71.013312,44.7558
--17.005,-16.53,-15.39,-12.54,72.447,45.66
--16.92068,-16.6355,-15.39972,-12.54792,72.492756,44.737
--17.088,-16.896,-15.648,-12.864,73.2096,46.04
--16.92068,-16.73056,-15.49478,-12.54792,72.492756,45.0468
--17.088,-16.896,-15.744,-12.768,73.2096,46.44
--16.57536,-16.38912,-15.27168,-12.5712,71.022624,45.0468
--16.40448,-16.22016,-15.11424,-12.4416,70.290432,44.2944
--16.82562,-16.82562,-15.6849,-12.73804,72.492756,46.3932
--17.7,-17.7,-16.5,-13.3,76.27,45.95
--16.992,-16.992,-15.84,-12.864,73.2096,45.95
--16.64685,-16.7409,-15.51825,-12.7908,71.731935,45.4905
--16.48224,-16.66848,-15.45792,-12.66432,71.013312,45.168
--17.7,-17.9,-16.6,-13.7,76.26,46.76
--16.99731,-17.18937,-15.94098,-12.96405,73.232478,45.9756
--16.0512,-16.3248,-15.2304,-12.4032,69.54912,44.5824
--15.884,-16.15475,-15.07175,-12.18375,68.82465,43.9375
--16.896,-17.28,-16.128,-13.056,73.2096,46.25
--16.72704,-17.1072,-15.96672,-13.02048,72.477504,46.0746
--17.24976,-17.6418,-16.46568,-13.32936,74.742426,45.9756
--16.55808,-16.9344,-15.80544,-12.98304,71.754816,45.5112
--16.90128,-17.38143,-16.13304,-13.25214,73.232478,46.3716
--16.12625,-16.67915,-15.4812,-12.80885,70.27359,45.1438
--16.72704,-17.20224,-16.06176,-13.02048,72.572544,45.4905
--16.975,-17.557,-16.393,-13.483,74.0692,44.7558
--16.8,-17.472,-16.224,-13.248,73.3056,44.7936
--17.15,-17.836,-16.66,-13.426,74.8328,45.5112
--17.15,-17.836,-16.66,-13.426,74.8328,46.65
--16.807,-17.47928,-16.3268,-13.34956,73.336144,45.8248
--17.15,-17.934,-16.66,-13.622,74.8426,45.7268
--16.46575,-17.21847,-16.08939,-12.89033,71.847124,44.8625
--16.46575,-17.12438,-16.08939,-12.98442,71.847124,44.7558
--16.9785,-17.65764,-16.4934,-13.19472,74.084472,44.8252
--16.80525,-17.47746,-16.42113,-13.15611,73.338111,44.5812
--16.296,-16.94784,-15.92352,-12.94368,71.106432,44.0064
--16.80525,-17.57349,-16.42113,-13.25214,73.328508,44.9692
--16.3647,-17.21115,-16.08255,-12.9789,71.81658,43.9375
--16.45875,-17.21115,-16.08255,-12.7908,71.81658,43.7285
--15.8688,-16.5984,-15.5952,-12.5856,69.64032,43.738
--16.71096,-17.47928,-16.42284,-13.34956,73.336144,44.5312
--16.1994,-17.0373,-15.9201,-12.8478,71.09116,44.4234
--16.36992,-17.21664,-16.18176,-13.07712,71.933568,44.639
--16.878,-17.848,-16.684,-13.289,74.0692,44.3678
--16.54044,-17.39598,-16.35032,-13.11828,72.587816,44.4234
--16.36992,-17.21664,-16.18176,-12.88896,71.839488,43.728
--16.704,-17.568,-16.512,-13.248,73.3056,44.112
--16.704,-17.664,-16.512,-13.536,73.3056,45.85
--16.20288,-17.2272,-16.01664,-13.0368,71.199552,44.1835
--16.54044,-17.5861,-16.44538,-13.11828,72.682876,44.639
--16.36992,-17.31072,-16.18176,-12.88896,71.92416,44.8252
--15.8688,-16.6896,-15.6864,-12.6768,69.73152,43.5264
--16.88148,-17.75466,-16.78446,-13.38876,74.181492,44.7975
--16.20288,-17.13408,-16.10976,-13.0368,71.19024,43.6224
--15.8688,-16.872,-15.7776,-12.9504,69.73152,43.2725
--17.4,-18.5,-17.3,-13.8,76.46,45.95
--16.3647,-17.3052,-16.27065,-13.07295,71.91063,43.377
--16.70922,-17.66952,-16.61319,-13.06008,73.424538,44.0768
--15.7035,-16.606,-15.61325,-12.635,69.00515,43.5575
--16.3647,-17.3052,-16.27065,-13.07295,71.91063,45.5796
--17.226,-18.216,-17.127,-13.86,75.6954,45.3915
--16.03584,-17.0496,-16.03584,-12.9024,70.465536,43.248
--16.0341,-17.04775,-15.94195,-12.80885,70.45789,43.9701
--16.53,-17.48,-16.435,-13.11,72.637,43.377
--16.1994,-17.2235,-16.1994,-12.9409,71.18426,42.9875
--16.878,-18.042,-16.878,-13.58,74.1662,45.55
--16.0341,-17.1399,-16.0341,-12.901,70.45789,43.8925
--16.44538,-17.68116,-16.54044,-13.3084,72.682876,44.639
--16.3647,-17.39925,-16.3647,-13.07295,71.91063,44.5995
--16.61319,-17.76555,-16.70922,-13.34817,73.424538,43.6888
--16.70922,-17.66952,-16.70922,-13.34817,73.424538,45.2034
--16.44192,-17.67744,-16.632,-13.59072,72.667584,43.6224
--16.44192,-17.77248,-16.632,-13.49568,72.667584,44.8866
--16.1063,-17.4097,-16.2925,-13.1271,71.18426,45.031
--16.878,-18.042,-16.975,-13.483,74.1759,43.7955
--16.878,-17.945,-16.975,-13.386,74.1662,45.85
--17.052,-18.13,-17.052,-13.72,74.9308,45.25
--16.10976,-17.2272,-16.20288,-13.12992,71.19024,43.6985
--16.54044,-17.68116,-16.6355,-13.49852,72.682876,43.4075
--16.878,-18.139,-16.975,-13.677,74.1662,43.8925
--16.70922,-17.86158,-16.80525,-13.34817,73.424538,44.9692
--16.70922,-17.86158,-16.80525,-13.34817,73.414935,43.1165
--16.704,-17.568,-15.744,-12.672,73.4016,43.0656
--16.70922,-16.70922,-14.30847,-11.13948,73.424538,44.8866
--16.3647,-15.33015,-12.88485,-9.5931,71.91063,44.4114
--16.0341,-14.1911,-11.70305,-8.8464,70.45789,42.7975
--15.7035,-13.357,-10.73975,-7.7615,69.00515,42.693
--16.71096,-13.63768,-10.66044,-7.10696,73.432184,44.0412
--16.54044,-13.02322,-9.88624,-6.1789,72.682876,43.4075
--17.4,-13.3,-9.7,-5.5,76.45,45.33
--16.36992,-12.13632,-8.4672,-4.13952,71.933568,43.9628
--16.53,-11.78,-7.98,-3.705,72.637,42.408
--17.05374,-11.66319,-7.54677,-3.72438,74.938446,44.5995
--16.88148,-10.86624,-6.88842,-4.55994,74.181492,44.247
--16.704,-10.176,-6.432,-4.896,73.4016,44.75
--16.1994,-9.2169,-5.8653,-4.5619,71.18426,42.617
--16.36992,-8.65536,-5.36256,-4.42176,71.92416,43.7472
--16.36992,-7.90272,-4.98624,-4.42176,71.933568,43.344
--15.8688,-6.9312,-4.3776,-3.7392,69.73152,42.672
--16.53,-6.46,-3.895,-3.135,72.637,44.75
--16.878,-5.82,-3.007,-2.813,74.1662,44.56
--16.20288,-5.02848,-2.14176,-1.95552,71.199552,43.8052
--16.0341,-4.0546,-1.1058,-1.4744,70.448675,42.2275
--16.78446,-3.68676,-0.09702,-1.35828,74.17179,44.0055
--16.608,-3.168,0.768,-0.672,73.4016,42.672
--16.435,-1.995,1.9,-0.57,72.637,44.64
--15.61325,-1.35375,2.79775,-0.09025,68.996125,42.617
--15.94195,-0.64505,3.96245,0.5529,70.45789,43.9022
--16.44538,-0.28518,5.13324,0.66542,72.67337,43.2768
--16.684,0.388,6.208,0.97,74.1565,45.15
--17.127,0.891,7.425,1.683,75.6954,44.4114
--17.028,1.485,8.613,1.881,75.6954,44.7975
--15.8498,2.0273,8.93855,2.2116,70.448675,43.4075
--15.8498,2.7645,10.04435,2.67235,70.45789,43.5918
--16.0132,3.5378,11.172,3.1654,71.18426,42.8925
--16.35032,4.08758,12.73804,3.51722,72.682876,45.325
--16.929,4.752,14.454,3.96,75.6954,45.6786
--17.1,5.7,15.6,4.5,76.46,44.86
--15.9201,5.8653,15.6408,4.7481,71.18426,43.561
--16.83,6.93,17.82,5.643,75.6954,44.35
--16.6617,7.64478,18.91593,6.07662,74.938446,44.8767
--16.66,8.134,19.992,6.174,74.9308,43.169
--15.6655,8.4778,19.81225,6.72695,70.45789,42.8925
--15.89445,9.2169,21.16125,7.42995,71.91063,45.1935
--15.90121,9.97354,22.01706,7.99765,71.941214,43.5142
--16.224,11.136,23.616,8.64,73.4016,43.248
--16.8,12.1,25.7,9.6,76.46,44.45
--15.87502,12.26274,25.38102,9.506,72.587816,43.7472
--16.032,13.056,26.688,10.176,73.3056,44.45
--16.366,13.916,27.832,10.78,74.9308,44.0412
--15.77,14.155,27.93,11.115,72.542,43.0635
--16.268,15.484,29.4,12.348,74.8328,47.05
--16.005,16.005,30.167,12.319,74.0692,46.03
--15.675,16.53,30.115,12.54,72.542,45.77
--14.9568,16.6896,29.7312,12.5856,69.64032,42.693
--15.908,18.139,32.01,13.968,74.0692,43.8925
--15.33504,18.15744,31.42272,13.92384,71.839488,43.1424
--14.6205,18.05,30.95575,13.98875,68.9149,43.168
--15.55848,19.97632,33.80608,15.27036,73.336144,44.4234
--15.30144,20.62368,34.2144,15.58656,72.572544,44.2944
--15.36,21.216,35.424,15.936,73.3152,45.74
--15.105,21.755,35.72,16.34,72.542,45.55
--15.582,22.834,38.024,17.444,74.8328,45.04
--14.5597,22.116,36.3071,17.04775,70.374955,43.548
--14.46912,22.85568,36.864,17.0496,70.373376,43.8336
--14.3754,23.31395,37.50505,17.6928,70.36574,42.617
--14.98224,25.06644,39.56848,18.91988,73.336144,44.5312
--15.092,25.872,41.16,19.796,74.8328,45.325
--14.94108,26.48646,41.42754,20.18016,74.084472,44.9856
--14.54112,26.23104,41.15232,20.24352,72.572544,43.2384
--13.8624,25.992,40.128,20.064,69.64032,42.5125
--14.798,28.518,43.708,21.462,74.8426,45.45
--14.406,28.71596,43.31404,21.89712,73.336144,43.561
--14.01792,28.60032,42.90048,22.01472,71.839488,43.056
--13.78176,28.96032,42.92832,22.16256,71.106432,43.9701
--13.82976,29.54112,43.93536,22.76736,71.839488,44.149
--13.73568,29.91744,44.49984,23.42592,71.839488,43.8336
--13.68576,31.07808,45.6192,24.04512,72.572544,44.5896
--13.871,32.495,47.045,24.929,74.0692,45.44
--13.632,32.736,47.04,25.248,73.3056,44.45
--13.1271,32.1195,46.0845,24.9508,71.10047,44.0412
--14,34.7,49.9,27.1,76.36,44.56
--12.98442,33.02559,47.51545,26.25111,71.847124,44.0768
--13.15611,34.28271,48.87927,27.46458,73.328508,45.8865
--13.328,35.868,50.372,28.42,74.8328,44.345
--12.47808,34.36128,48.32928,27.28416,71.106432,43.2384
--12.77199,36.01125,50.22369,28.809,73.328508,43.5142
--12.936,37.044,51.94,29.694,74.8328,43.25
--11.856,35.0208,48.6096,28.0896,69.64032,43.824
--12.26274,36.78822,51.14228,29.75378,72.597322,43.1262
--12.19708,38.12788,52.05368,30.63676,73.336144,44.5312
--12.474,39.699,53.955,31.878,75.5964,45.9756
--12.152,39.298,53.998,31.948,74.8328,45.2172
--11.931,39.867,53.835,31.719,74.0692,46.14
--11.38368,38.29056,51.64992,32.55168,71.839488,43.44
--11.662,39.592,53.116,35.378,74.8328,45.1094
--11.56518,39.30201,52.33734,35.77365,74.840436,44.7975
--11.368,39.2,51.646,35.182,74.8328,45.1094
--11.286,39.501,51.579,35.145,75.6063,45.85
--10.961,38.509,49.858,34.338,74.0692,46.03
--10.22865,35.10915,45.7064,35.5699,70.36574,44.5715
--9.83725,32.49,42.68825,34.1145,68.9149,43.453
--10.16064,32.83392,42.99456,35.18592,71.839488,45.1094
--9.7679,32.2525,41.74395,34.0955,70.36574,45.0468
--9.6824,31.0023,40.4985,32.9574,71.09116,45.619
--9.69612,30.22908,39.54496,33.17594,72.587816,45.2172
--9.7,30.361,38.703,33.465,74.0692,44.7655
--9.60498,30.08907,37.63584,32.3433,74.840436,45.2034
--9.12,27.835,35.245,31.065,72.542,42.332
--8.7514,26.8128,33.3298,29.792,71.09116,42.617
--8.83568,26.79516,33.22984,29.96448,73.336144,44.5312
--8.4672,25.4016,31.5168,28.97664,71.839488,43.5168
--8.712,26.136,32.175,29.7,75.5964,44.86
--8.09088,24.08448,29.6352,27.65952,71.839488,43.5168
--7.8204,23.1819,28.4886,26.999,71.09116,44.7468
--7.79492,23.19464,28.23282,26.99704,72.587816,44.2805
--7.68,22.944,27.744,26.112,73.3056,45.04
--7.8,23.2,28.1,27,76.36,44.86
--7.2,21.792,26.4,25.536,73.3056,44.45
--6.93792,20.9088,25.37568,24.90048,72.572544,42.7776
--6.6101,19.9234,24.206,23.9267,71.08185,43.6688
--6.831,20.691,25.146,24.849,75.6954,45.15
--6.56667,19.99404,24.30648,24.20847,74.938446,44.7975
--6.5,19.9,24.1,24.1,76.46,45.15
--5.80545,17.96925,21.65525,21.83955,70.45789,44.5812
--5.73705,17.77545,21.6315,21.8196,71.91063,44.5896
--5.60736,17.48736,21.384,21.57408,72.65808,44.9856
--5.41728,17.1072,20.81376,21.19392,72.65808,45.0945
--5.28165,16.90128,20.55042,21.22263,73.414935,44.6985
--5.194,16.758,20.482,20.972,74.9308,44.5312
--4.70016,15.29856,18.80064,19.53792,70.465536,42.5664
--4.704,15.552,19.2,19.968,73.4016,44.56
--4.512,15.264,18.72,19.488,73.4016,42.8544
--4.275,14.725,18.145,18.905,72.637,42.617
--4.05504,13.73184,17.14176,17.9712,70.465536,42.672
--3.7905,13.08625,16.4255,17.23775,69.00515,42.332
--3.8808,13.77684,17.26956,18.23976,74.181492,43.7472
--3.68676,13.48578,16.88148,17.9487,74.181492,44.0154
--3.45708,12.96405,16.3251,17.2854,73.424538,43.5142
--3.5,13,16.6,17.7,76.46,43.86
--3.20166,12.32154,15.71724,16.88148,74.181492,43.7976
--2.91648,11.66592,14.86464,15.9936,71.92416,42.8544
--2.784,11.616,14.88,16.032,73.4112,43.1424
--2.772,11.583,14.949,16.038,75.6954,44.35
--2.44608,10.53696,13.82976,14.86464,71.933568,42.96
--2.328,10.573,13.871,15.132,74.1662,44.35
--2.0482,9.8686,12.9409,14.4305,71.18426,43.855
--1.9152,9.576,12.4944,13.8624,69.7224,42.672
--1.84338,9.79902,12.90366,14.16492,74.181492,42.9828
--1.63251,9.21888,12.38787,13.92435,73.414935,44.4015
--1.53648,8.93079,12.09978,13.73229,73.424538,42.6218
--1.33056,8.64864,11.68992,13.3056,72.667584,43.7184
--1.21056,8.3808,11.08128,12.85056,71.199552,44.0768
--1.03488,8.18496,10.91328,12.60672,71.933568,42
--0.9312,7.63584,10.52256,12.19872,71.199552,41.904
--0.77616,7.56756,10.6722,12.41856,74.181492,44.1392
--0.6517,7.1687,9.9617,11.7306,71.18426,40.7075
--0.4704,7.056,9.78432,11.85408,71.933568,42.1988
--0.37636,6.86857,9.50309,11.47898,71.941214,42.0592
--0.29403,6.8607,9.60498,11.46717,74.938446,43.7976
--0.09405,6.2073,8.8407,10.81575,71.91063,41.287
-0,6.02112,8.65536,10.72512,71.92416,41.7216
-0.097,6.014,8.633,10.961,74.1662,42.5442
-0.28512,5.79744,8.26848,10.4544,72.667584,44.4114
-0.38412,5.66577,8.06652,10.17918,73.424538,43.1165
-0.4752,5.2272,7.69824,9.78912,72.667584,43.4496
-0.5529,4.69965,7.1877,9.3993,70.45789,42.408
-0.66528,4.65696,7.22304,9.40896,72.667584,43.6095
-0.88209,4.80249,7.15473,9.60498,74.938446,43.6095
-0.96,4.512,6.816,9.216,73.4016,42.4704
-1.078,4.41,6.762,9.016,74.9308,44.56
-1.12896,3.85728,6.20928,8.37312,71.92416,42.7776
-1.22304,3.57504,5.92704,8.18496,71.933568,43.0612
-1.33,3.42,5.795,8.36,72.7225,42.028
-1.425,3.325,5.605,8.17,72.637,44.35
-1.52,3.23,5.415,7.885,72.732,41.743
-1.59953,3.19906,5.17495,7.71538,71.941214,43.3008
-1.74636,3.00762,5.04504,7.47054,74.278512,43.3552
-1.80614,2.56662,4.753,7.1295,72.777936,43.2232
-1.9206,2.30472,4.51341,7.10622,73.424538,43.1165
-1.9152,2.0976,4.104,6.7488,69.8136,42.3936
-2.15622,2.25423,4.31244,6.95871,75.036456,43.8966
-2.09088,2.09088,3.99168,6.84288,72.762624,42.1824
-2.20892,1.9208,3.8416,6.62676,73.51862,43.0612
-2.328,1.649,3.686,6.208,74.2535,43.64
-2.30375,1.19795,3.22525,5.7133,70.55004,43.4075
-2.4255,1.16424,3.20166,6.11226,74.278512,43.7184
-2.3959,0.9215,2.85665,5.43685,70.55004,42.028
-2.7,1,2.9,6,76.55,44.05
-2.6334,0.7524,2.53935,5.4549,71.995275,42.693
-2.60736,0.65184,2.42112,5.21472,71.292672,43.4075
-2.75616,0.57024,2.28096,5.03712,72.75312,42.1824
-2.871,0.297,2.178,4.851,75.7845,43.8966
-2.9106,-0.09702,1.84338,4.851,74.26881,42.9828
-2.91648,-0.28224,1.69344,4.51584,72.01824,43.169
-2.97693,-0.28809,1.53648,4.60944,73.520568,42.7285
-2.97984,-0.37248,1.3968,4.37664,71.292672,43.5142
-3.0096,-0.3762,1.22265,4.42035,72.00468,42.332
-2.9792,-0.4655,1.1172,4.1895,71.36115,42.9828
-3.20166,-0.67914,0.9702,3.8808,74.278512,42.875
-3.0723,-1.0241,0.7448,3.4447,71.26805,43.0612
-3.332,-1.372,0.588,3.528,75.019,42.777
-3.1008,-1.2768,0.3648,3.2832,69.8136,42
-3.16608,-1.3968,0.27936,3.2592,71.37648,41.9525
-3.36,-1.44,0.192,3.264,73.584,43.86
-3.29175,-1.5048,0,3.10365,72.089325,42.9264
-3.36105,-1.53648,-0.09603,3.07296,73.606995,43.0254
-3.49272,-1.74636,-0.29106,2.52252,74.36583,42.5908
-3.249,-1.9855,-0.361,2.25625,69.176625,41.363
-3.49272,-2.4255,-0.58212,2.32848,74.36583,43.6095
-3.42144,-2.376,-0.76032,2.47104,72.84816,41.904
-3.44544,-2.328,-0.83808,2.42112,71.37648,42.6218
-3.4447,-2.3275,-0.931,2.1413,71.36115,42.028
-3.515,-2.47,-1.045,2.28,72.827,43.94
-3.589,-2.619,-1.164,1.843,74.3505,42.5442
-3.515,-2.755,-1.33,1.805,72.8175,44.75
-3.626,-3.136,-1.568,1.568,75.117,43.2768
-3.61228,-3.23204,-1.61602,1.33084,72.86349,42.7285
-3.724,-3.43,-1.862,1.47,75.117,42.875
-3.61152,-3.3264,-1.9008,1.33056,72.84816,43.5006
-3.64952,-3.45744,-2.01684,1.24852,73.624264,43.169
-3.57504,-3.38688,-2.06976,1.12896,72.11232,42.1056
-3.724,-3.724,-2.254,1.078,75.117,43.169
-3.5378,-3.724,-2.2344,0.931,71.36115,42.2275
-3.8,-4.1,-2.6,0.6,76.65,44.35
-3.5378,-3.9102,-2.5137,0.5586,71.36115,41.4675
-3.5739,-4.1382,-2.6334,0.3762,72.089325,43.2135
-3.68676,-4.3659,-2.81358,0.4851,74.36583,43.1046
-3.64914,-4.41738,-2.97693,0.19206,73.606995,42.7285
-3.50208,-4.33152,-2.94912,0.09216,70.64064,42
-3.57504,-4.51584,-3.10464,0.18816,72.121728,41.7216
-3.762,-4.851,-3.366,-0.099,75.8835,44.24
-3.4295,-4.5125,-3.249,-0.27075,69.176625,41.363
-3.589,-4.947,-3.492,-0.291,74.3602,42.4472
-3.40955,-4.7918,-3.5017,-0.5529,70.632975,42.4375
-3.3744,-4.8336,-3.5568,-0.5472,69.9048,41.4675
-3.62637,-5.39055,-4.01841,-0.58806,75.222675,43.7184
-3.47985,-5.2668,-3.85605,-0.47025,72.183375,43.0254
-3.626,-5.586,-4.116,-0.588,75.215,42.5908
-3.564,-5.742,-4.257,-1.089,75.9924,42.8175
-3.42216,-5.51348,-4.18264,-0.9506,72.95855,42.5908
-3.564,-5.841,-4.455,-1.089,75.9825,43.86
-3.43035,-5.97861,-4.60647,-1.37214,75.222675,43.0254
-3.5,-6.3,-4.9,-1.5,76.75,43.06
-3.395,-6.208,-4.753,-1.552,74.4475,42.4375
-3.22525,-5.8976,-4.6075,-1.38225,70.725125,42.5442
-3.2928,-5.92704,-4.79808,-1.59936,72.2064,42.385
-3.298,-6.402,-5.044,-2.522,74.4475,43.25
-3.0685,-6.22725,-4.8735,-2.166,69.266875,40.9165
-3.1654,-6.4239,-5.1205,-2.0482,71.45425,43.0612
-3.0723,-6.3308,-5.1205,-1.4896,71.45425,41.192
-3.267,-6.633,-5.445,-1.782,75.9726,43.94
-3.168,-6.432,-5.376,-1.824,73.68,41.7984
-3.0096,-6.3954,-5.36085,-2.16315,72.183375,41.5625
-3.10464,-6.88842,-5.72418,-2.52252,74.46285,43.169
-3.168,-7.326,-5.94,-2.772,75.9825,43.0254
-3.00762,-7.17948,-5.8212,-2.4255,74.46285,43.2036
-3.00762,-7.08246,-5.91822,-2.32848,74.472552,42.8848
-2.97693,-6.91416,-5.85783,-2.40075,73.703025,43.3125
-2.94,-7.056,-5.978,-2.352,75.215,43.169
-2.736,-6.6576,-5.6544,-2.4624,69.996,41.458
-2.7075,-6.76875,-5.68575,-2.61725,69.266875,41.287
-2.72832,-7.15008,-6.02112,-2.91648,72.2064,42.0096
-2.813,-7.566,-6.305,-3.007,74.4378,43.36
-2.60736,-7.35648,-6.14592,-2.97984,71.4696,41.7984
-2.688,-7.584,-6.432,-2.784,73.68,43.25
-2.43675,-7.22,-6.137,-2.97825,69.266875,41.572
-2.48805,-7.372,-6.2662,-3.04095,70.725125,41.363
-2.56608,-7.69824,-6.55776,-3.42144,72.9432,42.9264
-2.4453,-7.80615,-6.5835,-3.47985,72.183375,40.983
-2.35125,-7.9002,-6.67755,-3.47985,72.183375,42.4215
-2.376,-8.17344,-6.93792,-3.61152,72.9432,41.7984
-2.28,-7.9344,-6.6576,-3.5568,69.996,41.8944
-2.32848,-8.34372,-7.17948,-3.8808,74.46285,42.7672
-2.28144,-8.27022,-7.1295,-3.8024,72.95855,41.8458
-2.16384,-8.18496,-7.056,-3.7632,72.2064,42.1008
-2.277,-8.811,-7.524,-4.158,75.9825,42.9264
-2.112,-8.736,-7.488,-4.128,73.68,43.54
-2.15622,-9.01692,-7.64478,-4.50846,75.222675,43.3125
-1.97505,-8.6526,-7.42995,-4.1382,72.183375,41.667
-1.89525,-8.303,-7.12975,-3.70025,69.266875,41.8475
-1.9404,-8.82882,-7.7616,-4.26888,74.46285,42.6692
-1.98,-9.207,-8.019,-4.752,75.9825,43.0254
-1.78752,-9.03168,-7.80864,-4.98624,72.215808,42.3936
-1.78695,-9.2169,-7.9002,-4.8906,72.183375,43.7976
-1.764,-9.506,-8.232,-4.606,75.215,43.561
-1.76418,-9.31095,-8.33085,-4.41045,75.222675,43.7976
-1.615,-9.025,-8.075,-4.56,72.9125,44.45
-1.61568,-9.0288,-8.0784,-4.56192,72.9432,42.5664
-1.52096,-9.0307,-8.0801,-4.46782,72.95855,43.0612
-1.4256,-9.12384,-8.17344,-4.752,72.9432,41.8944
-1.41135,-9.31491,-8.18583,-5.17495,72.204666,43.4075
-1.34456,-9.70004,-8.45152,-5.2822,73.720304,43.071
-1.34456,-9.79608,-8.45152,-5.18616,73.7107,42.777
-1.287,-9.999,-8.811,-5.148,75.9825,43.86
-1.22304,-9.408,-8.4672,-4.98624,72.2064,42.1056
-1.164,-9.7,-8.73,-5.141,74.4475,42.4375
-1.056,-9.6,-8.64,-5.184,73.68,42.95
-1.067,-9.7,-8.73,-5.238,74.4475,43.64
-0.9506,-9.69612,-8.65046,-5.41842,72.95855,41.9525
-0.96,-9.984,-8.832,-5.664,73.68,41.6256
-0.8208,-9.576,-8.4816,-5.2896,69.996,40.7075
-0.7524,-9.87525,-8.74665,-5.54895,72.183375,41.667
-0.7372,-9.7679,-8.6621,-5.3447,70.725125,40.7075
-0.67228,-10.18024,-9.1238,-5.85844,73.7107,42.2772
-0.68607,-10.38906,-9.31095,-5.58657,75.232476,42.5205
-0.5586,-9.9617,-8.8445,-5.586,71.45425,40.5175
-0.495,-10.593,-9.504,-6.138,75.9825,42.6294
-0.47045,-10.25581,-9.12673,-5.92767,72.214075,41.6615
-0.37632,-10.25472,-9.21984,-5.73888,72.2064,42.385
-0.388,-10.67,-9.506,-6.208,74.4475,41.9525
-0.28518,-10.55166,-9.41094,-5.98878,72.95855,42.4928
-0.19206,-10.65933,-9.50697,-6.14592,73.703025,41.5548
-0.19404,-10.86624,-9.702,-6.40332,74.46285,42.3423
-0.099,-11.187,-9.999,-6.435,75.9726,43.75
-0,-10.41295,-9.30715,-6.2662,70.725125,42.1562
-0,-10.83684,-9.69612,-6.55914,72.95855,42.6692
--0.09408,-10.72512,-9.59616,-6.30336,72.2064,42.4704
--0.0931,-10.7065,-9.5893,-6.4239,71.45425,42.5908
--0.19206,-11.13948,-9.98712,-6.53004,73.712628,41.3802
--0.2793,-10.7996,-9.6824,-6.6101,71.45425,40.907
--0.3648,-10.6704,-9.576,-6.2928,69.996,41.3376
--0.38412,-11.23551,-10.08315,-6.62607,73.703025,41.6615
--0.47025,-11.00385,-9.9693,-6.5835,72.183375,42.3324
--0.47025,-11.0979,-10.06335,-6.67755,72.277425,40.8025
--0.576,-11.616,-10.368,-7.296,73.68,42.76
--0.576,-11.712,-10.464,-7.296,73.776,42.84
--0.67228,-11.5248,-10.46836,-7.01092,73.797136,41.405
--0.784,-11.76,-10.682,-7.154,75.215,41.5912
--0.7372,-11.058,-10.04435,-6.8191,70.817275,41.4869
--0.8379,-11.4513,-10.3341,-7.3549,71.54735,40.527
--0.9312,-11.64,-10.42944,-7.54272,71.56272,41.6615
--0.9215,-11.4266,-10.3208,-7.27985,70.80806,41.1668
--1.0032,-11.2176,-10.2144,-6.7488,70.07808,40.4225
--1.0032,-11.1264,-10.2144,-6.6576,70.0872,40.9536
--1.1058,-11.15015,-10.3208,-6.8191,70.817275,41.5645
--1.261,-11.737,-10.864,-7.372,74.5445,42.65
--1.26126,-11.73942,-10.96326,-7.66458,74.550168,42.2772
--1.2901,-11.4266,-10.5051,-7.64845,70.80806,41.2735
--1.41135,-11.94943,-10.72626,-7.71538,72.308165,41.4772
--1.4256,-12.07008,-10.9296,-7.69824,73.028736,41.9364
--1.52096,-12.07262,-10.9319,-7.50974,73.05361,41.405
--1.683,-12.375,-11.385,-7.623,76.0815,42.2334
--1.53425,-11.28125,-10.37875,-6.94925,69.357125,40.622
--1.746,-12.125,-11.252,-7.566,74.5445,43.54
--1.67616,-11.64,-10.7088,-7.26336,71.572032,41.6712
--1.78771,-11.85534,-10.91444,-7.5272,72.308165,41.0892
--1.805,-11.3715,-10.469,-7.12975,69.357125,41.192
--2.016,-12.192,-11.136,-7.776,73.776,43.46
--2.03742,-12.41856,-11.35134,-7.7616,74.55987,42.6294
--2.134,-12.416,-11.349,-8.051,74.5348,42.55
--2.1413,-11.9168,-10.9858,-7.6342,71.54735,40.5175
--2.14176,-12.1056,-10.98816,-7.82208,71.56272,41.3802
--2.23488,-12.1056,-11.08128,-7.72896,71.56272,40.9825
--2.28144,-12.3578,-11.31214,-7.88998,73.063116,41.0989
--2.30375,-11.9795,-11.058,-7.83275,70.817275,41.5645
--2.3465,-11.82275,-10.83,-7.85175,69.43835,40.318
--2.3465,-11.913,-10.92025,-7.7615,69.357125,41.0875
--2.592,-12.672,-11.616,-8.256,73.776,42.95
--2.4624,-12.0384,-11.0352,-8.1168,70.0872,41.0592
--2.5802,-12.25595,-11.2423,-7.9249,70.817275,41.3802
--2.842,-13.034,-11.956,-8.624,75.3032,42.66
--2.871,-13.266,-12.177,-8.613,76.0815,42.7086
--2.793,-12.4754,-11.4513,-8.1928,71.55666,40.6315
--2.7645,-12.44025,-11.4266,-7.9249,70.90021,40.698
--2.91648,-12.7008,-11.66592,-8.37312,72.30048,41.3376
--3.04192,-12.92816,-11.8825,-8.36528,73.14867,41.1668
--3.04192,-12.92816,-11.8825,-8.46034,73.05361,41.9832
--3.10365,-12.7908,-11.75625,-8.37045,72.277425,42.2334
--3.1977,-12.7908,-11.75625,-8.6526,72.371475,40.4225
--3.43,-13.524,-12.446,-9.604,75.411,41.8068
--3.465,-13.959,-12.672,-9.702,76.1706,43.06
--3.3174,-12.901,-11.7952,-8.56995,70.909425,41.363
--3.528,-13.622,-12.544,-9.016,75.4012,43.25
--3.40992,-12.71808,-11.79648,-8.47872,70.907904,41.4144
--3.724,-13.524,-12.544,-9.114,75.411,42.6692
--3.64952,-13.34956,-12.29312,-9.21984,73.90278,42.6692
--3.5017,-13.0853,-11.9795,-9.3993,70.909425,41.7682
--3.5568,-13.0416,-11.9472,-8.9376,70.1784,41.4675
--3.88,-13.774,-12.707,-9.312,74.6318,43.36
--3.84,-13.536,-12.576,-9.312,73.8624,40.9536
--3.85605,-13.167,-12.2265,-9.0288,72.371475,40.4225
--3.99252,-13.21334,-12.3578,-8.84058,73.14867,42.0592
--4.116,-13.622,-12.74,-9.212,75.4012,41.9048
--4.17186,-13.48578,-12.6126,-9.11988,74.647188,42.2772
--4.13996,-13.1726,-12.32579,-9.12673,72.402255,40.9825
--4.224,-13.728,-12.672,-9.6,73.872,42.55
--4.14675,-13.36175,-12.1638,-9.30715,70.90021,41.8458
--4.32,-13.92,-12.768,-9.504,73.872,41.3376
--4.37,-13.775,-12.635,-9.215,73.1025,41.287
--4.416,-13.728,-12.768,-9.216,73.872,41.4144
--4.33105,-13.17745,-12.25595,-8.8464,70.90021,42.1562
--4.8,-14.3,-13.3,-9.7,76.95,44.35
--4.56288,-13.59358,-12.73804,-8.93564,73.139164,42.091
--4.851,-14.256,-13.266,-9.504,76.1805,42.1245
--4.656,-13.40928,-12.47808,-9.12576,71.646528,42.3936
--4.656,-13.40928,-12.47808,-9.12576,71.65584,41.52
--4.84806,-13.7837,-12.8331,-9.506,73.14867,42.9128
--4.79859,-13.73714,-12.70215,-9.409,72.402255,41.3802
--4.79232,-13.45536,-12.4416,-9.30816,70.907904,40.7424
--4.8906,-13.82535,-12.7908,-9.49905,72.36207,42.4215
--5.194,-14.406,-13.328,-9.996,75.411,41.993
--5.0274,-13.7788,-12.7547,-9.4962,71.64045,40.318
--5.0787,-13.9194,-12.88485,-9.5931,72.371475,42.0156
--5.17495,-13.92532,-12.89033,-9.78536,72.392846,41.5645
--5.39,-14.602,-13.426,-10.192,75.4012,42.4928
--5.432,-14.453,-13.386,-10.088,74.6318,41.4772
--5.41728,-14.16096,-13.21056,-9.78912,73.13328,42.3423
--5.36313,-14.1135,-13.07851,-9.87945,72.402255,41.6615
--5.51232,-14.35104,-13.21056,-9.88416,73.13328,41.3376
--5.684,-14.896,-13.72,-10.486,75.4012,42.1988
--5.723,-14.744,-13.58,-9.991,74.6415,43.36
--5.88,-14.798,-13.72,-10.192,75.411,42.95
--5.643,-14.2956,-13.26105,-10.43955,72.371475,42.4215
--5.856,-14.88,-13.632,-10.848,73.8624,43.25
--5.68032,-14.4336,-13.22304,-9.96384,71.65584,41.7779
--5.6544,-13.9536,-13.0416,-9.6672,70.18752,41.6256
--5.83296,-14.30016,-13.35936,-9.8784,72.479232,41.136
--5.8653,-14.0581,-13.2202,-9.6824,71.72424,41.4675
--6.17463,-14.7015,-13.91742,-9.99702,75.506904,43.0254
--6.08,-14.25,-13.395,-9.975,73.188,43.54
--6.37,-14.896,-13.916,-10.976,75.411,42.4928
--6.1152,-14.5824,-13.45344,-10.53696,72.39456,42.4704
--6.14592,-14.4336,-13.31616,-10.33632,71.739648,41.9525
--6.402,-14.938,-13.871,-10.573,74.7288,42.0592
--6.432,-14.688,-13.728,-10.176,73.968,43.15
--6.566,-14.896,-14.014,-10.29,75.4992,43.75
--6.66468,-14.79951,-14.01543,-10.48707,75.506904,44.1936
--6.2928,-13.7712,-13.0416,-9.576,70.26048,41.363
--6.48945,-14.2956,-13.44915,-10.06335,72.45612,43.3125
--6.5856,-14.39424,-13.45344,-10.25472,72.479232,43.9628
--6.517,-14.3374,-13.3133,-10.0548,71.72424,42.875
--6.54336,-14.19264,-13.17888,-9.86112,71.00928,41.4144
--7.029,-15.246,-14.256,-10.791,76.2696,43.53
--6.84288,-14.7312,-13.68576,-10.16928,73.13328,41.904
--6.77448,-14.58395,-13.54896,-10.06763,72.486936,42.6218
--6.72768,-14.2848,-13.27104,-9.95328,71.00928,41.4144
--7.104,-14.88,-13.824,-10.464,73.9584,42.3936
--7.4,-15.6,-14.5,-11.1,77.04,43.65
--6.6785,-14.16925,-13.1765,-10.01775,69.5286,41.4675
--7.128,-14.92128,-13.7808,-10.4544,73.22832,44.4114
--7.1478,-14.6718,-13.7313,-10.25145,72.45612,43.7976
--7.296,-14.976,-14.016,-10.656,73.9584,44.05
--7.24416,-14.77056,-13.73568,-10.44288,72.479232,43.0612
--7.47054,-15.32916,-14.26194,-10.76922,74.75391,43.5006
--7.24416,-14.95872,-13.82976,-10.44288,72.39456,43.2768
--7.41,-15.01,-14.06,-10.545,73.1025,42.1325
--7.43311,-14.86622,-13.83123,-10.53808,72.486936,42.7285
--7.28064,-14.56128,-13.54752,-10.04544,71.00928,42.1824
--7.9,-15.8,-14.8,-11.2,77.04,44.05
--7.5264,-14.95872,-13.92384,-10.44288,72.479232,42.6692
--7.62048,-14.95872,-13.92384,-10.53696,72.48864,42.4928
--7.54272,-14.80608,-13.78176,-10.42944,71.739648,42.3405
--7.71456,-14.95872,-14.01792,-10.44288,72.479232,42
--7.63584,-14.80608,-13.87488,-10.33632,71.739648,42.2338
--7.88832,-15.11136,-14.16096,-10.73952,73.218816,43.7976
--8.3,-16,-14.9,-11.4,77.04,43.46
--8.232,-15.68,-14.602,-11.074,75.4992,42.287
--8.316,-15.939,-14.85,-11.286,76.2795,43.65
--8.064,-15.36,-14.4,-10.944,73.9584,41.52
--7.752,-14.592,-13.68,-10.2144,70.2696,41.363
--8.17516,-15.11454,-14.259,-10.64672,73.24373,42.0592
--8.17516,-15.2096,-14.259,-11.02696,73.234224,42.0592
--8.18583,-15.24258,-14.20759,-11.00853,72.486936,42.3405
--8.35461,-15.65289,-14.50053,-11.04345,73.981512,42.5205
--8.2764,-15.2361,-14.20155,-10.7217,72.45612,41.667
--8.8,-16.1,-15.1,-11.4,77.04,44.64
--8.9,-16.1,-15,-11.2,77.04,43.25
--8.46034,-15.2096,-14.259,-10.83684,73.234224,42.3405
--8.46034,-15.30466,-14.35406,-10.83684,73.24373,43.5142
--8.1225,-14.6205,-13.62775,-10.469,69.5286,41.192
--8.4721,-15.1753,-14.1512,-10.7065,71.72424,40.7075
--8.736,-15.648,-14.592,-11.328,73.9584,41.7216
--8.47392,-15.17856,-14.15424,-10.61568,71.739648,41.136
--8.56704,-15.08544,-14.15424,-10.7088,71.739648,41.3376
--8.74,-15.39,-14.44,-10.83,73.188,40.6315
--9.114,-15.876,-14.896,-11.172,75.4992,42.777
--9.207,-16.137,-15.147,-11.682,76.2696,44.1144
--8.93,-15.58,-14.535,-11.115,73.1975,43.36
--8.6621,-15.1126,-14.09895,-10.78155,70.99236,40.8025
--8.8407,-15.4242,-14.38965,-10.9098,72.45612,41.5625
--9.31,-15.974,-14.994,-11.466,75.4992,43.54
--9.312,-15.908,-14.841,-11.252,74.7288,41.7682
--9.03168,-15.42912,-14.39424,-11.19552,72.479232,41.2416
--9.6,-16.5,-15.4,-11.9,77.04,43.06
--9.506,-16.17,-15.092,-11.662,75.4992,42.091
--9.506,-16.17,-15.092,-11.662,75.4992,42.7476
--9.50796,-16.10532,-15.0381,-11.54538,74.75391,43.0254
--9.0307,-15.2969,-14.28325,-10.8737,70.99236,40.527
--9.702,-16.17,-15.19,-11.662,75.4992,42.85
--9.2169,-15.3615,-14.4305,-11.0789,71.72424,40.983
--9.21888,-15.27168,-14.4336,-11.08128,71.739648,41.4772
--9.312,-15.3648,-14.4336,-10.98816,71.739648,42.1562
--9.215,-15.2969,-14.28325,-11.058,70.983145,40.8025
--9.2112,-15.1392,-14.2272,-10.944,70.26048,40.812
--9.30715,-15.2969,-14.28325,-10.8737,71.08451,41.7682
--9.996,-16.268,-15.19,-11.466,75.4992,41.9048
--10.098,-16.434,-15.444,-11.583,76.2696,42.7086
--9.69612,-15.87502,-14.82936,-11.4072,73.234224,41.4772
--9.69127,-15.71303,-14.67804,-11.2908,72.486936,41.5645
--9.49145,-15.38905,-14.3754,-10.8737,70.99236,40.527
--9.88,-15.865,-14.82,-11.305,73.283,40.7075
--9.386,-14.9815,-14.079,-10.73975,69.61885,40.7075
--10.296,-16.434,-15.444,-11.88,76.2696,43.25
--9.9792,-15.87168,-14.92128,-11.49984,73.22832,42.6393
--9.576,-15.3216,-14.3184,-10.944,70.26048,40.6315
--9.87072,-15.55104,-14.61984,-11.1744,71.832768,40.848
--9.76896,-15.39072,-14.46912,-11.15136,71.000064,40.9536
--9.6672,-15.2304,-14.3184,-10.8528,70.26048,41.0592
--10.27521,-16.03701,-15.07671,-11.42757,73.981512,42.8175
--10.16928,-15.96672,-14.92128,-11.59488,73.218816,41.136
--10.692,-16.632,-15.543,-11.979,76.2696,42.6294
--10.1574,-15.89445,-14.8599,-11.4741,72.45612,40.983
--10.26432,-16.06176,-15.01632,-11.30976,73.22832,40.848
--10.25472,-15.80544,-14.86464,-11.2896,72.573312,41.8068
--9.9408,-15.3216,-14.4096,-10.944,70.35168,41.0592
--10.45,-15.96,-15.01,-11.59,73.1975,43.36
--10.3455,-15.8004,-14.8599,-11.56815,72.45612,42.4215
--10.56,-12.96,-12.096,-5.472,73.9584,42.85
--10.878,-12.544,-10.584,-5.488,75.4992,42.66
--10.33632,-13.22304,-11.82624,-8.75328,71.739648,41.8458
--10.545,-13.87,-12.635,-9.31,73.188,40.527
--10.75536,-14.11641,-12.86802,-9.79506,73.991115,42.3423
--10.64672,-14.16394,-12.92816,-10.17142,73.234224,41.993
--11.074,-14.994,-13.426,-11.074,75.4992,41.993
--10.62765,-14.4837,-12.9789,-10.25145,72.45612,42.0156
--10.74178,-14.54418,-13.11828,-10.36154,73.329284,40.7788
--10.62765,-14.2956,-13.07295,-9.9693,72.55017,42.6294
--10.72626,-14.20759,-13.07851,-9.87945,72.581026,43.2232
--11.172,-14.7,-13.622,-10.388,75.4992,42.76
--10.83456,-14.256,-13.3056,-10.07424,73.218816,40.4544
--10.37875,-13.80825,-12.72525,-10.2885,69.5286,40.147
--10.9319,-14.82936,-13.49852,-11.12202,73.234224,41.5128
--10.488,-14.2272,-13.0416,-10.3056,70.35168,40.907
--10.6894,-14.3754,-13.17745,-10.1365,71.08451,40.527
--10.5792,-14.136,-13.0416,-10.032,70.26048,40.3584
--11.13948,-14.69259,-13.73229,-10.46727,74.077542,43.3125
--10.69056,-14.10048,-13.17888,-9.95328,71.000064,40.7424
--11.115,-14.535,-13.585,-10.165,73.1975,40.983
--11.349,-14.841,-13.871,-10.573,74.7385,41.1668
--11.10144,-14.48832,-13.54752,-10.53696,72.48864,40.2816
--11.21,-14.82,-13.775,-10.64,73.188,42.96
--10.98816,-14.71296,-13.59552,-10.52256,71.739648,42.0592
--11.0979,-14.8599,-13.7313,-10.62765,72.45612,41.9364
--11.0789,-14.7098,-13.5926,-10.6134,71.72424,41.993
--11.662,-15.484,-14.308,-10.976,75.4992,44.45
--11.19671,-14.86622,-13.83123,-10.44399,72.486936,40.9825
--11.19552,-10.63104,-11.00736,3.2928,72.48864,41.5128
--11.6424,-11.73942,-11.93346,-7.47054,74.744208,42.0156
--11.6424,-13.38876,-12.70962,-9.11988,74.85093,43.6688
--11.2896,-13.35936,-12.51264,-9.21984,72.479232,40.6656
--11.73942,-13.97088,-13.00068,-9.702,74.744208,42.7086
--11.616,-13.92,-12.864,-9.696,73.9584,40.7424
--11.737,-14.162,-13.095,-9.797,74.7288,41.3802
--11.858,-14.308,-13.23,-9.996,75.4992,42.85
--11.38005,-13.9194,-12.7908,-10.1574,72.45612,41.952
--11.712,-14.304,-13.152,-10.272,73.9584,43.36
--11.59,-14.345,-13.11,-10.26,73.283,40.242
--11.1264,-13.8624,-12.6768,-9.7584,70.2696,39.5865
--11.95722,-14.99553,-13.7214,-10.38906,75.604914,41.7285
--11.685,-14.44,-13.3,-10.07,73.283,39.7575
--11.57184,-14.30016,-13.1712,-10.16064,72.573312,41.136
--11.685,-14.535,-13.395,-10.545,73.283,40.7075
--11.81169,-14.98068,-13.63626,-10.85139,73.981512,42.1245
--11.931,-15.229,-13.871,-10.961,74.8258,43.14
--11.5444,-14.6167,-13.3133,-10.1479,71.73355,41.993
--11.78744,-14.82936,-13.68864,-10.36154,73.33879,40.9922
--12.028,-15.035,-13.968,-10.573,74.8258,42.04
--11.88,-14.7312,-13.68576,-10.26432,73.218816,40.176
--11.64,-14.4336,-13.40928,-10.05696,71.74896,40.8855
--12.25,-15.19,-14.112,-10.584,75.5972,41.85
--11.6375,-14.4305,-13.4064,-10.1479,71.81734,39.862
--12.00375,-15.07671,-13.92435,-10.75536,74.077542,40.9825
--12.222,-15.326,-14.162,-11.058,74.8258,41.3802
--12.375,-15.84,-14.553,-11.187,76.3686,41.6196
--12.34926,-15.6816,-14.40747,-11.07513,75.614715,42.7185
--11.85534,-15.0544,-13.83123,-10.72626,72.486936,40.5945
--11.97756,-15.11454,-13.97382,-10.74178,73.234224,41.405
--11.85534,-15.0544,-13.92532,-10.63217,72.581026,40.9825
--11.94816,-15.14688,-14.01792,-10.8192,72.573312,41.1992
--11.70305,-14.9283,-13.73035,-10.6894,71.08451,40.7788
--12.192,-15.552,-14.4,-11.04,73.9584,40.3584
--11.8237,-15.1753,-13.965,-10.7996,71.72424,41.699
--12.07008,-15.49152,-14.256,-10.9296,73.313856,41.6196
--11.9168,-15.0822,-13.965,-10.7065,71.82665,40.6315
--11.79648,-15.02208,-13.91616,-10.5984,71.000064,40.176
--11.6736,-14.8656,-13.7712,-10.6704,70.26048,40.56
--11.91936,-15.3648,-14.15424,-10.89504,71.739648,41.1668
--12.16768,-15.6849,-14.54418,-11.31214,73.329284,41.993
--11.6736,-15.1392,-13.9536,-10.7616,70.35168,40.4225
--11.7648,-15.1392,-13.9536,-10.944,70.35168,40.1375
--12.38787,-15.84495,-14.69259,-11.33154,74.077542,42.0156
--11.7648,-15.048,-13.9536,-10.8528,70.35168,40.1375
--12.26016,-15.77664,-14.63616,-11.4048,73.313856,42.0255
--12.2304,-15.71136,-14.48832,-11.2896,72.573312,41.307
--12.3578,-15.87502,-14.7343,-11.4072,73.33879,41.1208
--12.2265,-15.70635,-14.57775,-11.19195,72.55017,40.1375
--11.856,-15.2304,-14.136,-10.944,70.35168,39.7575
--11.856,-15.2304,-14.136,-11.0352,70.35168,40.147
--12.2265,-15.8004,-14.6718,-11.4741,72.55017,39.862
--12.32055,-15.89445,-14.6718,-11.4741,72.55017,39.938
--12.70962,-16.39638,-15.13512,-11.83644,74.841228,41.8275
--12.07165,-15.4812,-14.46755,-11.2423,71.08451,40.4878
--12.1961,-15.6408,-14.5236,-11.3582,71.82665,40.0425
--12.07296,-15.57504,-14.46912,-11.33568,71.092224,40.2816
--12.4146,-15.89445,-14.76585,-11.56815,72.55017,41.5404
--12.672,-16.32,-15.072,-12,74.064,41.57
--12.16512,-15.6672,-14.56128,-11.33568,71.092224,40.3584
--12.54528,-16.25184,-15.01632,-11.78496,73.313856,41.4315
--12.672,-16.416,-15.168,-11.808,74.0544,42.15
--12.768,-16.416,-15.168,-11.904,74.064,40.5696
--12.64298,-16.25526,-15.01948,-11.59732,73.329284,40.4878
--12.25595,-15.75765,-14.65185,-11.70305,71.08451,40.5945
--12.77332,-16.51888,-15.27036,-12.10104,74.085256,41.1208
--13.00068,-16.68744,-15.5232,-12.1275,74.841228,40.9052
--12.38496,-16.01664,-14.8992,-11.45376,71.832768,40.3132
--12.2208,-15.6864,-14.592,-11.5824,70.35168,40.176
--12.4754,-16.0132,-14.896,-11.6375,71.81734,40.147
--13.266,-17.028,-15.84,-12.573,76.3686,41.7186
--13.00068,-16.78446,-15.62022,-12.41856,74.85093,41.6196
--12.5685,-16.1994,-14.9891,-12.103,71.81734,39.7575
--12.18375,-15.7035,-14.53025,-11.46175,69.61885,39.938
--12.96,-16.704,-15.552,-12.192,74.0544,40.176
--12.7008,-16.36992,-15.24096,-11.85408,72.573312,40.3584
--12.825,-16.53,-15.39,-11.875,73.283,40.983
--13.5,-17.4,-16.2,-12.5,77.14,43.06
--12.92544,-16.53696,-15.39648,-12.07008,73.313856,43.5006
--13.464,-17.226,-16.038,-12.771,76.3686,44.6985
--13.464,-17.325,-16.137,-12.87,76.3785,44.57
--13.06144,-16.807,-15.65452,-12.4852,74.085256,44.639
--13.056,-16.896,-15.648,-12.384,74.0544,43.6224
--12.79488,-16.55808,-15.33504,-12.13632,72.573312,43.9104
--13.015,-16.72,-15.485,-12.255,73.283,43.2725
--13.42737,-17.24976,-16.07364,-12.83931,75.604914,45.7875
--13.02048,-16.72704,-15.58656,-12.3552,73.313856,46.128
--13.29174,-17.07552,-15.91128,-12.51558,74.841228,45.5112
--13.11,-16.72,-15.58,-12.255,73.283,43.6525
--12.85056,-16.48224,-15.3648,-12.1056,71.84208,44.3678
--12.9789,-16.64685,-15.4242,-12.2265,72.55017,45.9756
--13.38876,-17.17254,-16.0083,-12.51558,74.841228,45.9756
--12.85056,-16.57536,-15.3648,-12.19872,71.832768,44.5056
--13.21056,-16.91712,-15.6816,-12.45024,73.313856,44.2944
--13.07712,-16.74624,-15.5232,-12.2304,72.573312,45.0408
--12.9409,-16.5718,-15.4546,-12.2892,71.81734,43.2725
--13.344,-17.088,-15.936,-12.672,74.0544,45.74
--13.34956,-17.09512,-15.94264,-12.77332,74.085256,44.4332
--13.761,-17.622,-16.434,-13.068,76.3686,45.16
--13.761,-17.721,-16.434,-13.167,76.3686,44.64
--13.034,-16.6649,-15.5477,-12.4754,71.80803,42.693
--13.034,-16.6649,-15.5477,-12.3823,71.91044,43.855
--13.1726,-16.84211,-15.71303,-12.60806,72.675116,46.6085
--13.7214,-17.54379,-16.36767,-13.03533,75.604914,46.8765
--13.40346,-17.01574,-15.87502,-12.73804,73.329284,45.8248
--13.12992,-16.7616,-15.55104,-12.38496,71.916576,44.6491
--13.81941,-17.6418,-16.36767,-13.03533,75.604914,45.5004
--12.99315,-16.587,-15.38905,-12.3481,71.093725,44.9692
--13.26528,-16.9344,-15.80544,-12.60672,72.573312,45.5112
--13.916,-17.738,-16.464,-13.23,75.6854,46.25
--13.0853,-16.67915,-15.4812,-12.5324,71.167445,44.2902
--13.91742,-17.73981,-16.46568,-13.32936,75.702924,45.2826
--13.08672,-16.68096,-15.48288,-12.53376,71.184384,44.016
--12.9504,-16.5072,-15.4128,-12.4944,70.44288,44.2944
--13.49,-17.195,-16.055,-12.92,73.3685,42.693
--12.90575,-16.4255,-15.25225,-12.274,69.7091,42.5125
--14.014,-17.836,-16.562,-13.328,75.6952,45.96
--14.014,-17.836,-16.66,-13.132,75.6952,46.8734
--13.45487,-17.12438,-15.9953,-12.79624,72.675116,44.7655
--13.40928,-16.94784,-15.8304,-12.5712,71.925888,45.0624
--13.82832,-17.57349,-16.3251,-13.25214,74.173572,45.3572
--14.4,-18.3,-17,-13.8,77.24,46.55
--13.97088,-17.75466,-16.59042,-13.38876,74.938248,45.8248
--13.968,-17.751,-16.49,-13.192,74.9228,45.3572
--13.5024,-17.04096,-15.92352,-12.66432,71.9352,44.7655
--13.92,-17.568,-16.416,-13.248,74.1504,44.1216
--14.355,-18.216,-16.929,-13.662,76.4676,46.36
--14.21,-18.13,-16.856,-13.426,75.6952,45.96
--13.92435,-17.66952,-16.51716,-12.96405,74.173572,44.4745
--14.16492,-17.75466,-16.59042,-13.29174,74.938248,44.345
--13.59552,-17.04096,-15.92352,-12.75744,71.925888,43.6985
--14.308,-18.032,-16.856,-13.72,75.6952,44.639
--13.3152,-16.9632,-15.6864,-12.768,70.44288,43.0656
--13.5926,-17.3166,-16.1063,-12.8478,72.05009,43.073
--13.73714,-17.40665,-16.18348,-12.98442,72.665707,43.1165
--13.82976,-17.31072,-16.18176,-12.88896,72.667392,42.4704
--13.97088,-17.48736,-16.34688,-13.11552,73.541952,42.4704
--13.68864,-17.13408,-16.01664,-12.85056,72.065568,42.6816
--14.11788,-17.7674,-16.61492,-13.54164,74.315752,43.855
--14.11788,-17.7674,-16.61492,-13.4456,74.181296,43.2768
--13.9194,-17.4933,-16.27065,-12.9789,72.64422,42.408
--13.6382,-17.04775,-15.94195,-12.7167,71.17666,41.667
--14.8,-18.5,-17.3,-13.8,77.24,44.24
--13.357,-16.606,-15.61325,-12.4545,69.700075,41.667
--13.7788,-17.2235,-16.1063,-12.8478,71.91044,42.5125
--14.304,-17.856,-16.704,-13.44,74.1504,44.86
--14.45598,-18.04572,-16.88148,-13.5828,74.938248,44.8866
--14.453,-18.042,-16.878,-13.58,74.9131,46.66
--13.87488,-17.32032,-16.20288,-12.94368,71.916576,45.9295
--15,-18.6,-17.4,-13.9,77.23,46.36
--13.968,-17.2272,-16.20288,-13.12992,71.925888,44.5056
--15,-18.6,-17.4,-14.3,77.24,46.36
--14.25,-17.765,-16.53,-13.585,73.378,46.77
--14.553,-18.14274,-16.9785,-13.77684,74.938248,46.5795
--13.965,-17.4097,-16.2925,-12.9409,71.91044,47.481
--14.4,-17.856,-16.704,-13.44,74.1504,46.128
--13.62775,-16.69625,-15.7035,-12.635,69.7091,45.258
--14.20155,-17.39925,-16.45875,-13.3551,72.64422,44.6975
--14.35104,-17.67744,-16.632,-13.68576,73.399392,45.552
--14.35406,-17.77622,-16.6355,-13.49852,73.424344,46.5108
--14.44608,-17.67744,-16.632,-13.3056,73.408896,46.128
--14.30016,-17.49888,-16.464,-13.1712,72.667392,46.9812
--14.74704,-17.9487,-16.9785,-13.5828,74.938248,46.795
--14.44912,-17.5861,-16.6355,-13.49852,73.424344,46.1874
--14.592,-17.952,-16.8,-13.728,74.1504,45.168
--14.89752,-18.32787,-17.15175,-14.01543,75.702924,46.5795
--14.99553,-18.32787,-17.15175,-14.11344,75.702924,46.4805
--14.38965,-17.58735,-16.45875,-13.07295,72.77589,46.4706
--13.9536,-16.9632,-15.96,-12.6768,70.57968,44.4315
--14.69259,-17.86158,-16.80525,-13.54023,74.308014,46.3716
--14.2443,-17.4097,-16.3856,-13.3133,72.04078,45.325
--14.79016,-18.05552,-16.90304,-13.54164,74.325356,45.2172
--14.94108,-18.23976,-17.07552,-13.67982,74.938248,45.1192
--14.78862,-18.05364,-16.90128,-13.63626,74.173572,45.8964
--15.246,-18.513,-17.424,-13.959,76.3686,46.04
--14.94108,-18.14274,-17.07552,-13.5828,74.841228,44.8252
--14.88,-17.952,-16.896,-13.44,74.0544,44.016
--14.4305,-17.5028,-16.3856,-13.2202,71.72424,45.2172
--14.5824,-17.78112,-16.55808,-13.35936,72.479232,44.8252
--15.345,-18.711,-17.424,-14.157,76.1805,45.55
--14.88,-18.144,-16.896,-13.344,73.872,45.74
--14.37696,-17.32608,-16.22016,-12.99456,70.82496,44.1888
--15.444,-18.513,-17.424,-13.959,75.9825,46.04
--14.82936,-17.87128,-16.73056,-13.49852,72.95855,44.8625
--14.3754,-17.41635,-16.31055,-13.36175,70.632975,43.738
--15.13512,-18.33678,-17.17254,-13.97088,74.375532,45.9756
--14.3184,-17.2368,-16.1424,-13.1328,69.9048,44.7936
--14.77213,-17.68892,-16.65393,-13.26669,72.035304,45.7161
--14.61984,-17.50656,-16.48224,-13.12992,71.292672,45.744
--14.6167,-17.5028,-16.3856,-13.3133,71.18426,46.9812
--15.38757,-18.52389,-17.34777,-13.91742,74.938446,47.4606
--14.77056,-17.78112,-16.65216,-13.45344,71.92416,45.5616
--14.56128,-17.5104,-16.31232,-13.17888,70.45632,46.512
--15.326,-18.333,-17.169,-13.774,74.0692,47.9568
--15.17274,-18.14967,-16.99731,-13.54023,73.338111,48.4612
--14.5597,-17.3242,-16.31055,-13.0853,70.282805,47.4525
--14.86464,-17.78112,-16.65216,-13.6416,71.754816,48.1344
--15.484,-18.62,-17.444,-14.014,74.7446,50.14
--15.105,-18.05,-16.91,-13.585,72.447,49.95
--14.95395,-17.8695,-16.7409,-13.44915,71.72253,49.4505
--15.58359,-18.6219,-17.44578,-13.81941,74.742426,49.2426
--15.264,-18.144,-16.992,-13.728,73.1136,49.74
--14.95395,-17.77545,-16.7409,-13.63725,71.637885,49.1634
--15.36,-18.24,-17.088,-13.824,73.2192,47.568
--15.2,-18.145,-16.91,-13.585,72.447,47.0725
--15.52,-18.43,-17.266,-13.968,73.9722,47.9568
--15.0528,-17.78112,-16.74624,-13.45344,71.745408,48.3434
--15.5232,-18.33678,-17.26956,-13.77684,73.997154,48.265
--15.52,-18.333,-17.266,-14.162,73.9722,47.6658
--14.83776,-17.60256,-16.49664,-13.63968,70.281216,46.9728
--14.6832,-17.5104,-16.3248,-13.3152,69.55824,46.9728
--15.617,-18.527,-17.363,-13.871,73.9722,48.74
--15.14205,-17.8695,-16.83495,-13.5432,71.731935,46.303
--14.83615,-17.5085,-16.49485,-13.36175,70.27359,47.2778
--15.456,-18.144,-17.088,-13.824,73.2096,46.6848
--15.39648,-17.96256,-16.91712,-13.87584,72.477504,48.3615
--15.87762,-18.6219,-17.44578,-14.11344,74.742426,47.9655
--15.55686,-18.2457,-17.18937,-13.92435,73.328508,47.1711
--16.038,-18.909,-17.721,-14.355,75.5964,48.24
--15.39,-18.145,-17.005,-13.87,72.542,48.45
--15.24096,-17.8752,-16.84032,-13.45344,71.839488,46.4352
--15.65289,-18.2457,-17.18937,-13.82832,73.338111,47.9754
--15.71724,-18.4338,-17.26956,-14.16492,74.084472,47.6784
--15.02208,-17.60256,-16.49664,-13.3632,70.373376,46.2336
--15.17856,-17.87904,-16.66848,-13.5024,71.106432,46.2108
--15.49478,-18.25152,-17.01574,-13.97382,72.682876,46.0265
--15.81426,-18.53082,-17.36658,-14.16492,74.181492,46.6872
--15.2684,-17.7821,-16.6649,-13.4995,71.18426,45.752
--15.42912,-17.8752,-16.84032,-13.54752,71.933568,45.7344
--15.11424,-17.60256,-16.49664,-13.54752,70.465536,45.2448
--16.236,-19.008,-17.721,-14.553,75.6954,47.2725
--15.27168,-17.87904,-16.7616,-13.59552,71.199552,46.0362
--15.91128,-18.62784,-17.4636,-14.0679,74.181492,46.1874
--15.4242,-18.0576,-16.929,-13.63725,71.91063,44.878
--15.908,-18.527,-17.46,-14.162,74.2632,47.13
--15.908,-18.527,-17.46,-13.968,74.2632,47.24
--15.048,-17.4192,-16.3248,-13.4064,69.8136,44.784
--16.17,-18.816,-17.64,-14.504,75.019,45.619
--15.84495,-18.53379,-17.2854,-14.21244,73.520568,45.3669
--16.17,-18.914,-17.64,-14.406,75.019,45.913
--15.6849,-18.25152,-17.1108,-13.7837,72.76843,46.109
--16.434,-19.008,-17.82,-14.355,75.7944,46.4706
--15.77664,-18.15264,-17.1072,-14.06592,72.75312,46.3023
--15.61728,-18.06336,-16.9344,-14.01792,72.027648,46.011
--15.61728,-18.15744,-17.02848,-13.92384,72.01824,45.5112
--15.94098,-18.62982,-17.38143,-14.11641,73.520568,44.6588
--14.9815,-17.41825,-16.33525,-13.1765,69.0954,44.2225
--16.533,-19.008,-17.919,-14.454,75.7944,46.66
--15.61894,-18.06528,-17.03029,-13.73714,72.129394,45.0468
--16.20234,-18.62784,-17.4636,-14.16492,74.36583,46.0012
--15.55104,-17.87904,-16.85472,-13.68864,71.37648,44.5824
--16.03868,-18.53572,-17.38324,-14.11788,73.61466,45.7268
--16.03701,-18.53379,-17.38143,-14.11641,73.606995,45.6786
--15.38905,-17.8771,-16.67915,-13.6382,70.64219,45.8228
--15.87502,-18.34658,-17.20586,-13.97382,72.86349,44.7558
--16.20234,-18.72486,-17.56062,-13.97088,74.36583,45.0408
--16.128,-18.528,-17.376,-14.208,73.5936,44.7936
--15.3216,-17.6928,-16.5072,-13.4976,69.9048,43.833
--15.80712,-18.25346,-17.12438,-13.92532,72.119985,44.7558
--16.29936,-18.9189,-17.65764,-14.16492,74.36583,45.5697
--15.97008,-18.5367,-17.30092,-13.97382,72.86349,44.7468
--16.22907,-18.62982,-17.47746,-14.21244,73.606995,45.4905
--15.57335,-17.78495,-16.7713,-13.6382,70.64219,43.2725
--15.4128,-17.6016,-16.5072,-13.3152,69.91392,44.688
--15.90121,-18.15937,-17.12438,-14.1135,72.129394,44.2902
--15.73728,-18.1584,-17.04096,-14.06112,71.385792,43.8336
--16.9,-19.6,-18.3,-15.1,76.75,45.55
--15.73728,-18.1584,-17.04096,-13.87488,71.385792,44.1984
--15.7339,-18.1545,-16.9442,-13.8719,71.45425,43.377
--16.15,-18.525,-17.29,-14.06,72.9125,45.66
--16.1568,-18.43776,-17.29728,-13.87584,72.9432,43.5264
--16.3251,-18.53379,-17.47746,-14.11641,73.712628,44.8625
--15.9953,-18.25346,-17.12438,-14.01941,72.214075,44.3678
--15.504,-17.6928,-16.6896,-13.7712,69.996,44.3136
--16.49,-18.915,-17.751,-14.647,74.4475,45.74
--16.3251,-18.72585,-17.57349,-14.21244,73.703025,44.0865
--16.3251,-18.72585,-17.57349,-14.4045,73.703025,44.9856
--15.6672,-17.87904,-16.77312,-13.63968,70.7328,43.9104
--15.75765,-17.8771,-16.86345,-13.6382,70.725125,42.8925
--16.587,-18.915,-17.751,-14.356,74.4475,43.9701
--16.758,-19.11,-17.934,-14.7,75.215,44.8252
--17.1,-19.6,-18.3,-15,76.75,45.66
--16.25526,-18.63176,-17.39598,-14.35406,72.95855,45.1192
--17.1,-19.6,-18.4,-14.9,76.76,45.45
--15.92352,-18.1584,-17.04096,-13.68864,71.4696,44.1835
--16.42113,-18.72585,-17.57349,-14.11641,73.703025,44.6985
--16.512,-18.72,-17.568,-14.304,73.6896,45.74
--16.01664,-18.25152,-17.04096,-14.06112,71.478912,42.96
--16.51716,-18.82188,-17.57349,-14.4045,73.703025,44.5995
--16.34,-18.62,-17.48,-14.345,72.9125,45.85
--16.51716,-18.82188,-17.66952,-14.21244,73.703025,44.8767
--15.6864,-17.8752,-16.7808,-13.4976,69.996,43.7376
--16.34688,-18.62784,-17.48736,-14.256,72.9432,43.8336
--15.94195,-17.96925,-16.9556,-13.6382,70.725125,44.2902
--16.27584,-18.43968,-17.31072,-14.30016,72.2064,43.5264
--16.61319,-18.91791,-17.66952,-14.30847,73.703025,43.7955
--16.1063,-18.3407,-17.1304,-13.5926,71.45425,44.149
--15.94195,-18.15355,-17.04775,-13.54605,70.725125,44.3678
--16.61319,-18.91791,-17.66952,-14.50053,73.703025,45.0945
--16.954,-19.208,-18.032,-15.092,75.215,44.345
--16.435,-18.525,-17.48,-14.155,72.922,42.997
--16.61319,-18.82188,-17.66952,-14.59656,73.703025,45.0945
--16.53696,-18.72288,-17.5824,-14.63616,72.933696,44.6985
--15.8688,-18.0576,-16.872,-13.8624,69.996,43.5168
--16.36992,-18.53376,-17.4048,-14.39424,72.2064,43.8336
--16.53696,-18.81792,-17.5824,-14.54112,72.9432,43.5264
--17.226,-19.602,-18.315,-14.949,75.9825,44.3025
--17.226,-19.602,-18.414,-14.949,75.9825,44.9856
--16.8,-19.008,-17.76,-14.496,73.6896,45.74
--16.2925,-18.3407,-17.2235,-14.1512,71.46356,42.617
--17.052,-19.404,-18.228,-14.994,75.215,44.94
--16.296,-18.53088,-17.32032,-14.34048,71.4696,43.8925
--16.975,-19.303,-18.042,-15.035,74.4475,43.9798
--15.79375,-17.95975,-16.7865,-13.80825,69.3481,42.408
--16.625,-18.905,-17.67,-14.535,73.0075,42.693
--16.464,-18.72192,-17.59296,-14.39424,72.30048,44.2568
--17.325,-19.701,-18.414,-15.345,75.9825,44.1936
--15.79375,-18.05,-16.87675,-13.98875,69.266875,42.617
--16.38912,-18.624,-17.41344,-14.24736,71.478912,43.248
--16.90304,-19.208,-17.95948,-14.8862,73.80674,43.855
--16.38912,-18.624,-17.41344,-14.24736,71.56272,42.8544
--17.07552,-19.404,-18.23976,-14.94108,74.55987,44.4234
--17.248,-19.698,-18.424,-15.19,75.215,44.0412
--16.72704,-19.008,-17.86752,-14.63616,73.03824,43.728
--17.072,-19.4,-18.236,-14.938,74.5445,42.9128
--16.2184,-18.43,-17.3242,-14.28325,70.725125,42.693
--15.884,-18.14025,-16.967,-14.079,69.357125,43.0635
--17.248,-19.698,-18.424,-15.386,75.3228,44.95
--17.7,-20.1,-18.9,-15.6,76.76,44.86
--16.82562,-19.10706,-17.96634,-14.7343,72.95855,44.149
--16.82562,-19.10706,-17.96634,-14.7343,72.95855,44.247
--16.65393,-19.00618,-17.78301,-14.48986,72.308165,43.9798
--16.99908,-19.30404,-18.15156,-14.8862,73.80674,43.6688
--17.17254,-19.50102,-18.33678,-15.0381,74.55987,44.0412
--16.48224,-18.624,-17.59968,-14.4336,71.553408,43.1424
--16.1424,-18.24,-17.2368,-14.136,70.0872,43.8336
--16.82562,-19.10706,-17.96634,-14.7343,73.05361,43.855
--17.444,-19.796,-18.522,-15.288,75.313,44.933
--17.09334,-19.39806,-18.2457,-15.07671,73.799055,44.4906
--17.09334,-19.39806,-18.2457,-15.07671,73.799055,44.6985
--17.8,-20.2,-18.9,-15.6,76.85,46.15
--17.09512,-19.40008,-18.2476,-14.8862,73.80674,44.2568
--16.7409,-18.9981,-17.8695,-14.76585,72.26802,45.0945
--17.26956,-19.50102,-18.4338,-15.13512,74.55987,45.031
--17.266,-19.594,-18.43,-15.326,74.5542,45.26
--17.54379,-19.89603,-18.6219,-15.38757,75.320685,44.8767
--16.3248,-18.5136,-17.328,-14.2272,70.07808,44.016
--17.444,-19.894,-18.718,-15.484,75.3032,45.05
--17.54379,-19.89603,-18.71991,-15.28956,75.320685,46.1934
--16.84211,-19.10027,-17.97119,-14.77213,72.214075,44.0768
--17.542,-19.894,-18.718,-15.484,75.215,44.75
--17.9,-20.3,-19.1,-15.8,76.75,45.33
--16.66848,-18.90336,-17.78592,-14.52672,71.56272,44.016
--17.28,-19.488,-18.336,-15.36,73.6896,43.8336
--17.46,-19.691,-18.527,-15.229,74.4475,44.2902
--16.587,-18.70645,-17.60065,-14.65185,70.725125,42.8925
--17.6418,-19.99404,-18.71991,-15.6816,75.320685,44.4114
--16.416,-18.6048,-17.5104,-14.4096,70.0872,43.248
--16.929,-19.1862,-18.0576,-14.76585,72.277425,42.693
--17.1,-19.38,-18.24,-14.915,73.0075,44.94
--17.2854,-19.49409,-18.43776,-15.07671,73.799055,43.8925
--16.9344,-19.09824,-18.06336,-15.0528,72.2064,44.2568
--17.38143,-19.49409,-18.43776,-15.07671,73.799055,44.3678
--17.919,-20.196,-19.008,-15.642,76.0716,44.8866
--16.68096,-18.80064,-17.69472,-14.7456,70.815744,43.44
--17.919,-20.196,-19.008,-15.543,76.0815,45.2826
--17.56062,-19.79208,-18.62784,-15.23214,74.55987,43.855
--17.557,-19.788,-18.624,-15.326,74.5445,45.26
--17.376,-19.584,-18.432,-15.36,73.68,45.05
--17.03029,-19.19436,-18.06528,-14.77213,72.308165,44.1835
--17.557,-19.788,-18.624,-15.229,74.4475,43.7955
--17.47746,-19.59012,-18.43776,-15.17274,73.703025,44.6588
--17.83782,-19.99404,-18.81792,-15.48558,75.222675,44.5995
--17.47746,-19.59012,-18.43776,-15.3648,73.703025,44.5995
--17.836,-19.992,-18.816,-15.386,75.3032,44.149
--17.83782,-19.99404,-18.81792,-15.48558,75.320685,45.3915
--17.47746,-19.59012,-18.43776,-15.07671,73.799055,44.7975
--17.47928,-19.59216,-18.43968,-15.27036,73.80674,44.933
--17.472,-19.584,-18.432,-15.072,73.776,45.15
--17.29728,-19.38816,-18.24768,-15.01632,73.028736,43.2576
--17.47928,-19.59216,-18.43968,-15.17432,73.80674,44.2568
--16.94784,-18.99648,-17.87904,-14.71296,71.553408,42.672
--16.86345,-18.7986,-17.6928,-14.65185,70.817275,44.0768
--18.117,-20.196,-19.008,-15.543,75.9825,45.25
--18.117,-20.196,-19.008,-15.444,75.9825,45.25
--16.86345,-18.7986,-17.78495,-14.65185,70.80806,43.377
--17.39232,-19.38816,-18.24768,-14.82624,72.9432,43.728
--17.385,-19.38,-18.24,-15.105,72.9125,45.55
--17.934,-19.992,-18.816,-15.386,75.313,44.639
--17.04096,-18.99648,-17.97216,-14.80608,71.4696,43.44
--17.57349,-19.59012,-18.43776,-15.17274,73.703025,44.2902
--17.48736,-19.4832,-18.34272,-15.01632,72.9432,43.44
--17.48736,-19.38816,-18.24768,-14.92128,72.9432,43.5168
--16.606,-18.411,-17.41825,-14.34975,69.266875,43.2725
--16.9556,-18.89075,-17.78495,-14.5597,70.725125,44.0768
--17.31072,-19.2864,-18.15744,-14.86464,72.2064,44.541
--17.664,-19.68,-18.528,-15.168,73.68,43.3536
--17.48736,-19.4832,-18.34272,-15.01632,73.03824,43.0656
--18.4,-20.5,-19.3,-15.9,76.75,45.15
--18.216,-20.196,-19.107,-15.444,75.9726,45.44
--16.606,-18.411,-17.41825,-14.16925,69.266875,42.997
--17.664,-19.584,-18.432,-15.264,73.68,43.5264
--16.872,-18.6048,-17.5104,-14.4096,69.996,43.9104
--17.945,-19.788,-18.624,-15.326,74.4475,43.9798
--18.13,-19.992,-18.816,-15.484,75.215,44.86
--17.39925,-19.28025,-18.0576,-14.8599,72.183375,42.408
--16.69625,-18.50125,-17.328,-14.34975,69.2759,42.693
--17.575,-19.475,-18.335,-15.105,72.9125,42.5125
--16.872,-18.696,-17.6016,-14.5008,69.996,42.028
--18.13,-20.09,-18.914,-15.582,75.215,44.86
--18.414,-20.295,-19.107,-15.84,75.9825,45.25
--17.86158,-19.68615,-18.53379,-15.17274,73.703025,44.7975
--17.4933,-19.28025,-18.15165,-14.76585,72.183375,45.0945
--18.414,-20.295,-19.107,-15.543,75.9825,44.4114
--17.68116,-19.4873,-18.34658,-15.2096,72.95855,43.8925
--17.4933,-19.28025,-18.15165,-14.8599,72.19278,42.3415
--17.4933,-19.1862,-18.15165,-14.8599,72.183375,43.5006
--17.4933,-19.1862,-18.15165,-14.95395,72.183375,44.1144
--17.32032,-18.99648,-17.97216,-14.71296,71.4696,42.9128
--17.23205,-18.7986,-17.78495,-14.744,70.725125,43.6985
--17.14176,-18.80064,-17.78688,-14.65344,70.7328,43.1424
--18.7,-20.5,-19.3,-16,76.75,45.16
--17.23205,-18.89075,-17.78495,-14.65185,70.725125,43.5142
--17.58735,-19.28025,-18.15165,-15.048,72.183375,44.7975
--18.139,-19.885,-18.721,-15.423,74.4572,43.9022
--17.59483,-19.28845,-18.15937,-14.96031,72.214075,43.6985
--17.77248,-19.38816,-18.34272,-15.11136,72.9432,44.4906
--17.952,-19.584,-18.528,-15.264,73.68,42.96
--17.95761,-19.59012,-18.43776,-15.26877,73.712628,43.3008
--17.4097,-18.9924,-17.9683,-14.7098,71.45425,44.4234
--18.23976,-19.79208,-18.62784,-15.42618,74.46285,44.5995
--17.59296,-19.2864,-18.15744,-15.0528,72.2064,42.6816
--17.77622,-19.4873,-18.34658,-15.2096,72.95855,43.6791
--18.612,-20.295,-19.107,-15.741,75.9924,46.26
--17.86,-19.475,-18.335,-15.2,72.9125,42.5125
--18.8,-20.5,-19.3,-15.9,76.75,44.05
--18.048,-19.68,-18.528,-15.168,73.68,44.45
--18.424,-20.09,-18.914,-15.484,75.215,43.561
--17.50656,-19.0896,-17.97216,-14.8992,71.4696,43.0656
--17.68704,-19.2864,-18.15744,-15.0528,72.11232,43.7472
--17.5028,-19.0855,-17.9683,-14.8029,71.37046,44.2568
--17.5028,-19.0855,-17.9683,-14.896,71.36115,43.561
--17.1456,-18.696,-17.6016,-14.592,69.9048,42.7975
--17.59968,-19.0896,-17.97216,-14.99232,71.37648,43.0098
--17.955,-19.57,-18.335,-15.2,72.8175,44.34
--18.333,-19.982,-18.721,-15.617,74.3602,44.86
--17.96634,-19.58236,-18.34658,-15.30466,72.86349,43.561
--18.333,-19.885,-18.721,-15.52,74.3505,43.1165
--18.33678,-19.98612,-18.72486,-15.42618,74.375532,44.1936
--17.41635,-18.89075,-17.78495,-14.744,70.632975,43.4075
--17.78112,-19.38048,-18.25152,-15.0528,72.121728,43.9628
--17.78112,-19.38048,-18.25152,-14.95872,72.11232,43.6688
--17.2368,-18.7872,-17.6928,-14.4096,69.9048,42.028
--17.41635,-18.9829,-17.8771,-14.744,70.632975,43.1165
--17.955,-19.57,-18.43,-15.105,72.8175,44.16
--18.4338,-19.98612,-18.72486,-15.5232,74.375532,43.0254
--17.8752,-19.2864,-18.25152,-14.86464,72.11232,42
--18.711,-20.295,-19.107,-15.939,75.8835,43.0254
--17.8752,-19.2864,-18.15744,-15.0528,72.121728,42.5908
--17.6928,-19.18272,-18.06528,-14.8992,71.385792,42.3405
--18.6219,-20.19006,-19.01394,-15.58359,75.134466,43.6095
--17.8695,-19.3743,-18.2457,-15.2361,72.089325,43.5006
--18.4338,-19.98612,-18.82188,-15.62022,74.36583,43.0254
--17.6928,-19.18272,-18.06528,-14.8992,71.37648,42.4375
--17.8752,-19.38048,-18.25152,-15.14688,72.11232,42.875
--18.4338,-19.98612,-18.82188,-15.5232,74.36583,43.6688
--17.328,-18.7872,-17.6928,-14.7744,69.9048,42.8544
--18.05,-19.57,-18.43,-15.2,72.8175,42.5125
--19,-20.6,-19.4,-16,76.76,45.55
--18.336,-19.776,-18.624,-15.456,73.584,44.75
--17.8695,-19.3743,-18.2457,-15.14205,72.183375,43.6095
--18.71991,-20.19006,-19.01394,-15.58359,75.134466,43.6095
--18.53082,-20.08314,-18.82188,-15.5232,74.375532,43.9628
--17.96928,-19.38048,-18.25152,-15.14688,72.2064,43.855
--18.34173,-19.87821,-18.72585,-15.3648,73.703025,43.3224
--18.53082,-20.08314,-18.9189,-15.62022,74.46285,42.8848
--18.145,-19.57,-18.43,-15.295,72.9125,43.86
--18.34364,-19.78424,-18.63176,-15.46244,73.7107,42.8848
--18.15646,-19.58236,-18.44164,-15.2096,72.95855,42.875
--18.909,-20.394,-19.206,-15.939,75.9825,42.8175
--17.96355,-19.3743,-18.2457,-15.14205,72.183375,43.5006
--17.60256,-18.98496,-17.9712,-14.92992,70.7328,42
--18.53082,-20.08314,-18.9189,-15.62022,74.46285,43.2036
--17.7821,-19.2717,-18.1545,-14.9891,71.45425,41.363
--18.24768,-19.67328,-18.5328,-15.2064,73.03824,43.4214
--18.909,-20.493,-19.305,-15.741,76.0815,43.6
--17.6928,-18.9829,-17.96925,-14.744,70.817275,41.667
--18.816,-20.286,-19.11,-15.876,75.313,42.9828
--18.816,-20.286,-19.012,-15.68,75.313,43.7472
--17.87904,-19.27584,-18.1584,-14.8992,71.56272,42.3936
--18.25152,-19.67742,-18.5367,-15.30466,73.05361,43.6688
--18.24,-19.665,-18.525,-15.295,73.0075,42.2275
--18.624,-20.079,-18.915,-15.714,74.5445,43.76
--18.24,-19.665,-18.525,-15.39,73.0075,41.667
--18.624,-20.079,-18.915,-15.714,74.6415,43.75
--18.06528,-19.47663,-18.34755,-15.14849,72.392846,43.3008
--18.624,-20.079,-18.915,-15.52,74.6415,43.54
--19.008,-20.493,-19.305,-15.84,76.1706,43.9065
--18.24768,-19.57824,-18.5328,-15.30144,73.13328,41.904
--18.816,-20.286,-19.11,-15.974,75.411,43.76
--18.914,-20.286,-19.11,-15.68,75.411,43.36
--18.34658,-19.67742,-18.5367,-15.39972,73.14867,42.4375
--17.78495,-19.07505,-17.96925,-14.744,70.909425,41.4675
--18.53379,-19.87821,-18.72585,-15.46083,73.904688,42.1562
--17.41825,-18.68175,-17.59875,-14.53025,69.447375,41.8475
--18.15165,-19.46835,-18.33975,-15.2361,72.371475,43.5006
--17.9683,-19.2717,-18.1545,-14.896,71.72424,43.071
--18.528,-19.872,-18.72,-15.456,73.9584,43.87
--18.721,-20.079,-18.915,-15.52,74.7288,44.16
--17.9683,-19.2717,-18.1545,-14.896,71.72424,42.028
--19.3,-20.7,-19.5,-16.2,77.04,43.76
--18.914,-20.384,-19.11,-15.582,75.509,43.54
--18.53572,-19.88028,-18.7278,-15.46244,73.99882,43.1788
--17.41825,-18.68175,-17.59875,-14.71075,69.5286,41.363
--19.4,-20.7,-19.5,-16.1,77.04,44.56
--18.0614,-19.3648,-18.1545,-14.9891,71.72424,41.952
--18.25152,-19.56864,-18.3456,-14.95872,72.48864,41.993
--18.624,-19.968,-18.816,-15.36,73.9584,41.136
--18.06528,-19.27584,-18.1584,-14.99232,71.74896,41.5645
--17.87904,-19.07712,-17.9712,-14.83776,71.092224,41.3472
--18.25152,-19.56864,-18.43968,-15.33504,72.573312,41.0592
--19.01394,-20.38608,-19.20996,-15.87762,75.614715,42.5304
--18.62982,-19.87821,-18.82188,-15.3648,74.077542,43.4214
--17.87904,-19.07712,-17.9712,-14.83776,71.092224,42.7776
--18.2457,-19.5624,-18.33975,-15.2361,72.55017,43.7976
--17.5085,-18.772,-17.59875,-14.53025,69.61885,41.4675
--18.43776,-19.76832,-18.62784,-15.39648,73.313856,42.288
--18.43,-19.76,-18.62,-15.295,73.283,41.667
--18.44164,-19.77248,-18.63176,-15.2096,73.329284,42.2338
--18.62982,-19.97424,-18.82188,-15.65289,74.077542,42.1562
--18.915,-20.176,-19.012,-15.617,74.8355,43.36
--17.784,-18.9696,-17.8752,-14.6832,70.35168,41.192
--18.43,-19.76,-18.62,-15.39,73.2735,43.36
--17.784,-18.9696,-17.8752,-14.7744,70.3608,41.192
--19.11195,-20.38608,-19.20996,-15.87762,75.604914,43.0254
--18.9189,-20.18016,-19.01592,-15.71724,74.841228,42.1988
--18.7278,-19.97632,-18.82384,-15.55848,74.085256,42.777
--18.5328,-19.76832,-18.62784,-15.39648,73.304352,41.3376
--18.5328,-19.76832,-18.62784,-15.49152,73.313856,42.4215
--18.1545,-19.3648,-18.2476,-15.1753,71.81734,42.1988
--19.305,-20.592,-19.404,-16.038,76.4676,42.8175
--18.1584,-19.36896,-18.25152,-15.08544,71.832768,41.5645
--19.5,-20.9,-19.6,-16.2,77.23,43.25
--17.96925,-19.25935,-18.0614,-14.9283,71.08451,41.6712
--18.915,-20.176,-19.012,-15.908,74.9228,42.85
--18.72,-19.968,-18.816,-15.552,74.1408,41.3376
--18.915,-20.273,-19.012,-15.811,74.9228,42.77
--18.33975,-19.5624,-18.4338,-15.33015,72.653625,42.4215
--18.816,-19.968,-18.816,-15.648,74.1504,40.9536
--17.59875,-18.772,-17.689,-14.801,69.7091,40.2515
--18.43968,-19.56864,-18.43968,-15.24096,72.657984,41.5912
--18.2476,-19.3648,-18.2476,-15.0822,71.91044,41.601
--18.82188,-20.07027,-18.82188,-15.65289,74.077542,41.4315
--18.06336,-19.16928,-18.15552,-15.11424,71.175168,42.576
--18.2476,-19.4579,-18.3407,-15.0822,71.81734,42.1988
--19.404,-20.691,-19.404,-16.038,76.3686,43.06
--19.404,-20.592,-19.404,-16.038,76.2795,43.55
--18.816,-19.968,-18.912,-15.84,73.9584,45.45
--17.689,-18.86225,-17.77925,-14.6205,69.537625,40.147
--18.82188,-19.97424,-18.91791,-15.55686,73.981512,44.3678
--18.43968,-19.66272,-18.53376,-15.33504,72.39456,41.0592
--18.82188,-20.07027,-18.91791,-15.74892,73.895085,43.7184
--18.82188,-20.07027,-18.91791,-15.65289,73.895085,43.2135
--18.4338,-19.65645,-18.52785,-15.2361,72.371475,42.9264
--19.012,-20.273,-19.109,-15.908,74.6415,43.36
--19.6,-20.9,-19.7,-16.6,76.95,43.25
--18.62,-19.855,-18.715,-15.485,73.1025,45.85
--19.01592,-20.27718,-19.11294,-15.91128,74.65689,47.2824
--19.503,-20.691,-19.503,-16.137,76.1805,43.7184
--18.0614,-19.25935,-18.15355,-15.1126,70.90021,43.5918
--19.30797,-20.48409,-19.30797,-15.97563,75.418695,44.1144
--18.91791,-20.07027,-18.91791,-15.55686,73.895085,52.6185
--18.91791,-20.07027,-18.91791,-15.84495,73.895085,51.5458
--18.15552,-19.26144,-18.15552,-15.11424,70.91712,50.736
--19.306,-20.482,-19.306,-16.072,75.4208,50.36
--18.3407,-19.4579,-18.3407,-15.2684,71.54735,44.5075
--18.34464,-19.46208,-18.34464,-15.27168,71.65584,46.9728
--19.109,-20.273,-19.109,-15.908,74.6318,51.35
--18.15355,-19.25935,-18.15355,-14.9283,70.909425,44.327
--18.53573,-19.66481,-18.53573,-15.33667,72.402255,47.1032
--17.9664,-19.0608,-17.9664,-14.9568,70.1784,49.9584
--18.52785,-19.65645,-18.52785,-15.2361,72.371475,44.118
--18.52785,-19.65645,-18.52785,-15.51825,72.371475,44.8866
--17.9664,-19.0608,-17.9664,-14.8656,70.16928,49.0675
--18.52785,-19.7505,-18.52785,-15.6123,72.371475,51.6285
--18.53573,-19.66481,-18.53573,-15.43076,72.402255,47.8598
--18.912,-20.064,-18.912,-15.84,73.8624,44.784
--18.53376,-19.7568,-18.53376,-15.42912,72.39456,50.9012
--19.30797,-20.48409,-19.30797,-16.07364,75.408894,55.2717
--19.11294,-20.27718,-19.11294,-15.71724,74.65689,55.3112
--19.109,-20.273,-19.109,-15.811,74.6415,55.64
--18.62784,-19.66272,-18.53376,-15.33504,72.39456,53.3414
--19.40598,-20.48409,-19.30797,-15.97563,75.408894,48.0744
--18.43776,-19.46208,-18.34464,-15.17856,71.65584,51.5904
--18.24768,-19.26144,-18.15552,-15.11424,70.91712,53.7024
--18.81792,-19.86336,-18.72288,-15.58656,73.13328,53.3088
--19.404,-20.482,-19.306,-16.17,75.411,54.94
--17.8695,-18.86225,-17.77925,-14.71075,69.447375,52.3735
--19.404,-20.58,-19.306,-15.974,75.411,54.84
--18.62784,-19.7568,-18.53376,-15.33504,72.39456,52.3712
--18.6219,-19.65645,-18.52785,-15.51825,72.465525,49.8275
--18.81,-19.855,-18.715,-15.58,73.188,50.4925
--18.62784,-19.66272,-18.53376,-15.5232,72.479232,50.736
--18.62982,-19.7589,-18.53573,-15.33667,72.581026,50.8668
--18.82188,-19.86754,-18.82188,-15.58984,73.234224,49.9162
--19.01394,-20.07027,-18.91791,-15.74892,74.077542,48.2526
--19.20996,-20.27718,-19.11294,-16.0083,74.744208,47.5888
--18.81,-19.855,-18.81,-15.675,73.283,46.303
--18.6219,-19.7505,-18.6219,-15.2361,72.55017,48.1536
--18.4338,-19.4579,-18.3407,-15.2684,71.82665,45.448
--19.404,-20.58,-19.306,-16.072,75.4992,46.85
--18.62784,-19.7568,-18.53376,-15.33504,72.48864,45.168
--19.20996,-20.3742,-19.11294,-15.71724,74.75391,45.9756
--19.404,-20.482,-19.306,-15.974,75.5972,46.14
--18.1488,-19.0608,-17.9664,-14.9568,70.35168,43.662
--19.10997,-20.07027,-18.91791,-15.84495,74.077542,44.1835
--18.5269,-19.4579,-18.3407,-15.1753,71.81734,44.639
--19.502,-20.482,-19.306,-15.974,75.5972,45.33
--19.30698,-20.27718,-19.11294,-15.91128,74.744208,44.149
--19.303,-20.37,-19.109,-15.908,74.8258,44.94
--18.72192,-19.66272,-18.53376,-15.5232,72.573312,43.5264
--18.33785,-19.3515,-18.15355,-15.1126,71.08451,42.8925
--18.905,-19.95,-18.715,-15.485,73.283,42.9875
--18.905,-19.95,-18.715,-15.675,73.283,45.66
--18.91694,-19.9626,-18.82188,-15.49478,73.329284,44.149
--19.701,-20.79,-19.503,-16.533,76.3686,44.94
--19.502,-20.482,-19.306,-16.072,75.6952,45.16
--19.30698,-20.3742,-19.11294,-16.0083,74.938248,43.9628
--18.91296,-19.9584,-18.72288,-15.39648,73.399392,42.4704
--18.53088,-19.5552,-18.34464,-15.27168,71.925888,43.2232
--18.91694,-19.9626,-18.82188,-15.6849,73.424344,43.1165
--19.50399,-20.5821,-19.30797,-16.07364,75.693123,44.1144
--19.104,-20.16,-19.008,-15.648,74.1504,44.46
--18.72391,-19.7589,-18.62982,-15.43076,72.806842,43.0195
--18.72391,-19.7589,-18.62982,-15.43076,72.806842,43.1165
--19.30698,-20.3742,-19.11294,-15.91128,75.083778,44.1144
--19.502,-20.58,-19.404,-16.17,75.8324,44.05
--18.91694,-19.9626,-18.72682,-15.6849,73.557428,42.8352
--18.91296,-19.9584,-18.81792,-15.58656,73.541952,43.7976
--18.91296,-19.9584,-18.81792,-15.6816,73.551456,42.3936
--19.303,-20.37,-19.206,-15.908,75.0586,44.16
--19.602,-20.5821,-19.40598,-16.26966,75.938148,43.7976
--18.624,-19.5552,-18.43776,-15.27168,72.149376,42.1152
--18.624,-19.5552,-18.43776,-15.27168,72.149376,42.4704
--19.303,-20.37,-19.206,-15.908,75.1556,42.8352
--19.404,-20.3742,-19.20996,-15.91128,75.171096,43.6095
--19.2,-20.16,-19.008,-15.744,74.3808,42.1152
--19.602,-20.5821,-19.40598,-16.17165,75.938148,43.3224
--20,-21,-19.8,-16.5,77.48,43.36
--19.012,-19.9626,-18.82188,-15.58984,73.652488,42.2338
--18.62,-19.551,-18.4338,-15.2684,72.13388,42.5908
--18.816,-19.7568,-18.62784,-15.61728,72.893184,41.7216
--19.6,-20.58,-19.404,-16.072,75.9304,43.65
--18.62,-19.551,-18.4338,-15.3615,72.14319,43.071
--18.81,-19.7505,-18.6219,-15.6123,72.86994,43.5006
--19,-20.045,-18.81,-15.675,73.606,44.16
--18.05,-18.9525,-17.8695,-14.89125,70.01595,41.4675
--19.208,-20.26444,-19.01592,-15.8466,74.411792,43.0612
--20,-21.1,-19.8,-16.5,77.58,43.87
--19.404,-20.3742,-19.20996,-15.81426,75.268116,43.0612
--20,-21,-19.8,-16.3,77.57,43.86
--19.8,-20.79,-19.602,-16.038,76.7943,43.6095
--18.62,-19.551,-18.4338,-15.2684,72.22698,41.6765
--19.6,-20.58,-19.404,-16.072,76.0284,43.75
--18.62,-19.6441,-18.4338,-15.3615,72.22698,42.385
--19.8,-20.889,-19.602,-16.236,76.7943,43.54
--18.624,-19.5552,-18.43776,-15.3648,72.242496,42.4472
--19.2,-20.16,-19.008,-15.648,74.4768,43.46
--19.008,-20.05344,-18.81792,-15.58656,73.732032,43.3224
--19.30404,-20.26444,-19.01592,-15.8466,74.498228,42.777
--18.432,-19.3536,-18.24768,-15.11424,71.497728,41.424
--19.698,-20.678,-19.404,-16.072,76.0186,42.8848
--18.7131,-19.551,-18.4338,-15.2684,72.22698,43.071
--19.50102,-20.3742,-19.20996,-15.91128,75.268116,43.4214
--18.05,-19.04275,-17.8695,-14.801,70.01595,41.6765
--18.3312,-19.152,-18.0576,-15.048,70.75296,41.5625
--18.71712,-19.5552,-18.43776,-15.3648,72.242496,42.96
--19.497,-20.37,-19.206,-16.005,75.2526,44.16
--19.296,-20.16,-19.008,-15.744,74.4672,42.4704
--19.497,-20.37,-19.206,-16.199,75.2526,43.95
--19.698,-20.58,-19.404,-16.17,76.0284,42.8848
--18.90405,-19.7505,-18.6219,-15.51825,72.96399,41.363
--19.497,-20.467,-19.206,-16.005,75.2526,43.46
--18.71712,-19.5552,-18.43776,-15.27168,72.233184,42.7285
--18.3312,-19.2432,-18.0576,-15.1392,70.75296,42.4704
--19.095,-20.045,-18.81,-15.77,73.701,41.952
--18.90405,-19.84455,-18.71595,-15.51825,72.954585,41.7525
--19.70001,-20.5821,-19.40598,-16.17165,76.036158,43.4214
--18.71712,-19.5552,-18.43776,-15.27168,72.242496,42.4704
--19.30203,-20.26233,-19.01394,-15.84495,74.500074,42.9264
--18.52215,-19.44365,-18.2457,-15.20475,71.48997,41.8458
--18.91209,-19.85299,-18.62982,-15.52485,72.995022,41.2735
--18.52416,-19.3536,-18.24768,-15.11424,71.488512,40.848
--19.899,-20.79,-19.602,-16.335,76.8042,43.2135
--18.90405,-19.7505,-18.6219,-15.6123,72.96399,41.667
--18.3312,-19.152,-18.0576,-15.048,70.75296,40.4225
--19.899,-20.79,-19.602,-16.434,76.8042,42.0255
--18.71712,-19.46208,-18.43776,-15.27168,72.251808,41.3802
--19.296,-20.16,-19.008,-15.84,74.4768,42.04
--19.10304,-19.86336,-18.81792,-15.6816,73.732032,41.136
--18.14025,-18.86225,-17.8695,-14.9815,70.01595,41.0875
--19.296,-20.064,-19.008,-15.744,74.4768,41.136
--19.70001,-20.48409,-19.40598,-16.07364,76.036158,43.9065
--19.095,-19.855,-18.81,-15.58,73.701,40.9165
--19.50102,-20.27718,-19.20996,-16.0083,75.268116,43.0254
--18.7131,-19.4579,-18.3407,-15.2684,72.22698,43.5708
--19.998,-20.79,-19.602,-16.236,76.8042,42.86
--18.81024,-19.5552,-18.43776,-15.27168,72.233184,40.9536
--18.7131,-19.551,-18.4338,-15.2684,72.22698,42.287
--19.19,-19.95,-18.81,-15.675,73.6915,42.55
--18.8062,-19.551,-18.4338,-15.2684,72.22698,42.385
--19.594,-20.37,-19.206,-16.199,75.2526,41.8555
--19.79802,-20.68011,-19.40598,-16.07364,76.036158,42.7086
--19.19808,-20.05344,-18.81792,-15.6816,73.732032,41.52
--19.19,-20.045,-18.81,-15.675,73.701,43.86
--19.392,-20.256,-19.008,-15.84,74.4768,43.76
--18.8062,-19.551,-18.4338,-15.1753,72.21767,42.1325
--19.796,-20.678,-19.404,-16.17,76.0284,42.777
--18.4224,-19.152,-18.1488,-15.048,70.75296,41.6256
--18.6143,-19.44365,-18.33785,-15.1126,71.48997,42.028
--19.00618,-19.85299,-18.62982,-15.52485,72.995022,42.9128
--20.2,-21.1,-19.8,-16.7,77.58,44.16
--19.796,-20.678,-19.502,-16.366,76.0284,43.54
--18.81024,-19.64832,-18.43776,-15.27168,72.158688,43.1424
--19.79802,-20.68011,-19.50399,-16.07364,76.036158,43.9065
--19.392,-20.256,-19.104,-15.936,74.4768,44.16
--18.4224,-19.2432,-18.1488,-15.048,70.66176,42.96
--19.594,-20.467,-19.303,-16.102,75.1556,43.94
--19.392,-20.256,-19.104,-15.84,74.4672,42.96
--19.392,-20.256,-19.104,-15.648,74.4768,44.35
--19.39806,-20.26233,-19.10997,-15.84495,74.413647,43.7184
--19.19,-20.045,-18.905,-15.865,73.606,43.86
--19.20212,-20.05766,-18.91694,-15.6849,73.747548,44.2568
--19.19,-19.95,-18.905,-15.77,73.606,41.952
--19.998,-20.889,-19.701,-16.335,76.7052,44.24
--19.59804,-20.3742,-19.30698,-15.81426,75.171096,43.5006
--19.19808,-19.9584,-18.91296,-15.6816,73.636992,42.96
--19.594,-20.467,-19.303,-16.102,75.1556,42.5442
--19.19808,-20.05344,-18.91296,-15.87168,73.636992,44.1936
--18.61632,-19.44576,-18.33984,-15.29856,71.405568,43.1424
--19.392,-20.256,-19.104,-15.84,74.3808,42.672
--18.9981,-19.84455,-18.71595,-15.51825,72.879345,41.952
--19.594,-20.467,-19.303,-16.005,75.1653,43.0195
--19.00416,-19.85088,-18.72192,-15.5232,72.893184,42.96
--19.392,-20.256,-19.104,-15.936,74.3808,44.16
--18.4224,-19.2432,-18.1488,-14.9568,70.66176,42.1325
--19.29718,-20.05766,-18.91694,-15.58984,73.652488,43.0195
--18.9981,-19.84455,-18.71595,-15.51825,72.86994,41.5625
--19.09824,-19.85088,-18.72192,-15.80544,72.893184,42.3936
--19.10027,-19.85299,-18.818,-15.61894,72.900932,42.3405
--19.49409,-20.26233,-19.10997,-15.94098,74.404044,42.9128
--20.097,-20.889,-19.8,-16.434,76.7052,43.9065
--20.097,-20.889,-19.701,-16.236,76.7052,43.94
--20.097,-20.988,-19.8,-16.434,76.7151,44.56
--19.49612,-20.36048,-19.11196,-15.94264,74.411792,43.169
--19.29312,-20.05344,-19.008,-15.6816,73.636992,42.96
--19.69506,-20.56824,-19.30698,-16.10532,75.171096,43.5006
--18.32075,-19.133,-17.95975,-14.9815,69.9257,41.952
--19.09215,-19.9386,-18.81,-15.6123,72.86994,43.7976
--19.69506,-20.56824,-19.404,-16.0083,75.171096,44.1144
--20.3,-21.2,-20,-16.6,77.48,44.16
--19.09215,-19.9386,-18.81,-15.6123,72.86994,43.4214
--19.49612,-20.36048,-19.208,-15.8466,74.411792,42.7672
--19.488,-20.256,-19.2,-16.128,74.3808,43.65
--19.29718,-20.05766,-18.91694,-15.58984,73.652488,42.3405
--19.49409,-20.35836,-19.206,-15.74892,74.404044,42.6315
--19.09824,-19.94496,-18.816,-15.61728,72.893184,41.2416
--18.5136,-19.2432,-18.24,-15.048,70.67088,41.363
--19.29312,-20.05344,-19.008,-15.6816,73.636992,42.0096
--19.29312,-20.05344,-19.008,-15.6816,73.636992,43.5006
--20.097,-20.889,-19.701,-16.236,76.7052,43.2135
--19.09215,-19.1862,-17.21115,-15.9885,72.86994,43.7184
--19.10027,-18.25346,-15.9953,-16.55984,72.900932,42.5442
--20.097,-18.216,-15.741,-17.028,76.7052,43.9065
--18.90336,-16.57536,-14.24736,-16.296,72.149376,41.9525
--20.3,-17.3,-14.6,-17.1,77.48,43.65
--20.3,-18.8,-15.5,-15.4,77.48,42.77
--18.5136,-17.9664,-15.1392,-14.5008,70.66176,41.7984
--19.49612,-19.11196,-16.3268,-14.98224,74.411792,43.2768
--19.691,-19.303,-16.587,-15.035,75.1556,42.3405
--19.09824,-18.72192,-16.27584,-14.30016,72.893184,42.777
--19.285,-18.81,-16.625,-14.345,73.5205,41.287
--19.89603,-19.30797,-17.24976,-14.99553,75.840138,42.8175
--18.8993,-18.3407,-16.4787,-14.2443,72.04078,40.983
--19.488,-18.912,-17.088,-14.688,74.2848,41.3568
--18.70645,-18.15355,-16.4027,-14.0068,71.314885,41.0892
--19.10027,-18.62982,-16.84211,-14.30168,72.816251,41.2735
--19.49409,-19.01394,-17.2854,-14.88465,74.308014,42.0592
--18.8993,-18.5269,-16.8511,-14.4305,72.04078,41.363
--18.90336,-18.71712,-17.04096,-14.52672,72.056256,41.6256
--19.69506,-19.50102,-17.75466,-15.23214,75.074076,42.4215
--18.90336,-18.81024,-17.13408,-14.52672,72.065568,41.7216
--19.691,-19.594,-17.848,-15.229,75.0683,42.0592
--19.09215,-18.9981,-17.39925,-14.8599,72.77589,41.0875
--20.3,-20.2,-18.6,-15.6,77.39,44.45
--18.32075,-18.32075,-16.87675,-14.2595,69.844475,41.743
--18.90336,-18.90336,-17.41344,-14.71296,72.065568,42.4472
--19.691,-19.788,-18.236,-15.229,74.9228,41.8555
--19.488,-19.584,-18.144,-15.36,74.1504,42.1056
--19.29312,-19.38816,-17.96256,-15.30144,73.408896,42.6294
--19.49409,-19.59012,-18.14967,-15.26877,74.163969,43.7184
--19.69506,-19.79208,-18.4338,-15.42618,74.938248,43.0254
--19.29718,-19.39224,-18.0614,-15.2096,73.43385,42.2338
--18.70645,-18.89075,-17.5085,-14.9283,71.167445,41.0875
--19.09824,-19.2864,-17.96928,-15.0528,72.667392,43.2768
--19.285,-19.475,-18.145,-15.2,73.378,42.1325
--18.70645,-18.89075,-17.60065,-14.83615,71.17666,42.2275
--20.097,-20.295,-18.909,-15.939,76.4676,44.0055
--19.49409,-19.78218,-18.43776,-15.46083,74.077542,43.5142
--19.89603,-20.28807,-18.91593,-15.77961,75.702924,43.7184
--18.32075,-18.68175,-17.41825,-14.6205,69.7091,41.743
--19.29718,-19.58236,-18.34658,-15.30466,73.33879,43.5142
--20.3,-20.7,-19.3,-16.1,77.14,44.35
--19.894,-20.286,-18.914,-15.778,75.5972,42.9828
--19.285,-19.665,-18.43,-15.58,73.283,42.9875
--18.5136,-18.8784,-17.6928,-14.592,70.35168,43.5264
--18.5136,-18.8784,-17.6928,-14.9568,70.35168,41.952
--19.488,-19.872,-18.624,-15.552,74.0544,43.1424
--20.3,-20.7,-19.4,-16.2,77.14,44.24
--19.69506,-19.98612,-18.82188,-15.91128,74.841228,43.7976
--19.29718,-19.67742,-18.5367,-15.39972,73.329284,43.2329
--19.00618,-19.47663,-18.34755,-15.33667,72.581026,43.0195
--19.20212,-19.67742,-18.5367,-15.39972,73.329284,44.3548
--19.69506,-20.08314,-18.9189,-15.71724,74.841228,44.4906
--18.81024,-19.27584,-18.1584,-14.99232,71.832768,43.2232
--19.09824,-19.47456,-18.3456,-15.24096,72.573312,42.875
--18.70848,-19.07712,-17.9712,-14.92992,71.092224,42.8544
--19.39806,-19.87821,-18.82188,-15.74892,74.077542,42.4375
--18.61632,-19.07712,-17.9712,-15.02208,71.092224,42.288
--19.29718,-19.67742,-18.5367,-15.30466,73.329284,42.9128
--19.39806,-19.87821,-18.82188,-15.74892,73.981512,44.9856
--19.10027,-19.57072,-18.44164,-15.14849,72.590435,43.5142
--20.2,-20.9,-19.6,-16.4,77.14,44.45
--20.3,-20.9,-19.6,-16.4,77.04,45.25
--18.61632,-19.26144,-18.15552,-15.29856,71.092224,43.1424
--18.8062,-19.4579,-18.3407,-15.3615,71.73355,43.073
--18.8062,-19.4579,-18.3407,-15.2684,71.81734,44.1392
--19.19,-19.855,-18.715,-15.58,73.188,45.05
--19.40008,-20.07236,-18.91988,-15.65452,74.085256,44.345
--19.796,-20.482,-19.306,-16.072,75.4992,44.639
--18.9981,-19.7505,-18.52785,-15.4242,72.465525,43.1775
--19.392,-20.064,-18.912,-15.744,73.968,43.6224
--19.00618,-19.7589,-18.53573,-15.43076,72.486936,43.6985
--19.00416,-19.7568,-18.53376,-15.24096,72.479232,43.5168
--19.79802,-20.5821,-19.30797,-15.97563,75.506904,45.2826
--18.6143,-19.3515,-18.2457,-15.02045,71.08451,42.902
--18.61632,-19.3536,-18.15552,-15.11424,71.000064,43.248
--18.81024,-19.5552,-18.43776,-15.17856,71.739648,43.8925
--19.79802,-20.5821,-19.40598,-16.07364,75.506904,44.4906
--18.81024,-19.5552,-18.43776,-15.17856,71.74896,43.4496
--19.59804,-20.3742,-19.20996,-15.81426,74.744208,44.7975
--19.09215,-19.7505,-18.6219,-15.33015,72.45612,44.1936
--19.20212,-19.9626,-18.82188,-15.58984,73.234224,43.7472
--18.9981,-19.7505,-18.6219,-15.2361,72.45612,42.7975
--18.2305,-18.9525,-17.8695,-14.71075,69.5286,43.2725
--19.796,-20.58,-19.404,-15.974,75.4992,46.25
--19.285,-19.95,-18.81,-15.39,73.188,46.36
--19.59804,-20.3742,-19.20996,-16.0083,74.744208,44.639
--18.8062,-19.551,-18.4338,-15.4546,71.72424,42.7975
--19.594,-20.37,-19.206,-15.908,74.7288,43.8925
--19.00618,-19.7589,-18.62982,-15.33667,72.486936,43.7955
--18.81024,-19.5552,-18.43776,-15.27168,71.65584,43.8925
--19.998,-20.79,-19.602,-16.137,76.2696,45.3915
--19.392,-20.16,-19.008,-15.744,73.9584,45.44
--19.594,-20.37,-19.206,-15.908,74.7288,44.0768
--19.19,-19.95,-18.81,-15.675,73.188,42.788
--19.594,-20.37,-19.206,-15.908,74.6318,44.6588
--19.392,-20.16,-19.008,-15.936,73.872,43.1424
--18.2305,-19.04275,-17.8695,-14.801,69.447375,42.408
--18.61632,-19.44576,-18.24768,-15.11424,70.907904,43.8336
--19.19808,-19.9584,-18.81792,-15.49152,73.123776,44.0055
--19.998,-20.79,-19.602,-16.137,76.1706,44.75
--19.00416,-19.7568,-18.62784,-15.5232,72.39456,44.0412
--19.59804,-20.3742,-19.20996,-15.91128,74.647188,43.9628
--18.2305,-19.04275,-17.8695,-14.801,69.43835,42.693
--19.392,-20.256,-19.008,-15.744,73.8624,43.728
--19.79802,-20.68011,-19.40598,-16.17165,75.408894,44.7975
--18.6143,-19.44365,-18.33785,-15.1126,70.90021,43.7955
--19.594,-20.467,-19.303,-16.005,74.6318,43.1165
--19.59804,-20.3742,-19.30698,-16.0083,74.647188,44.8074
--18.8062,-19.551,-18.5269,-15.3615,71.64045,43.855
--19.19808,-19.9584,-18.91296,-15.6816,73.123776,45.0945
--19.392,-20.256,-19.104,-15.744,73.8624,42.7776
--19.00416,-19.85088,-18.72192,-15.5232,72.385152,43.561
--19.19,-20.045,-18.905,-15.58,73.093,44.94
--20.2,-21.1,-19.9,-16.5,76.94,44.86
--19.894,-20.678,-19.502,-16.268,75.4012,44.64
--19.392,-20.256,-19.104,-15.936,73.8624,44.56
--19.39806,-20.26233,-19.10997,-15.94098,73.885482,43.7976
--19.796,-20.678,-19.502,-16.268,75.411,43.0612
--18.8062,-19.6441,-18.5269,-15.1753,71.64045,42.5125
--18.8062,-19.6441,-18.5269,-15.3615,71.63114,41.8475
--19.79802,-20.68011,-19.50399,-16.26966,75.408894,44.4114
--20.3,-21.1,-19.9,-16.5,76.94,44.64
--18.6143,-19.1672,-17.5085,-14.65185,70.90021,42.5125
--19.00618,-18.62982,-16.55984,-13.64305,72.392846,42.6218
--19.594,-18.43,-16.005,-12.804,74.6415,43.1262
--18.8062,-16.9442,-14.6167,-11.6375,71.63114,42.875
--19.00618,-16.55984,-14.01941,-10.91444,72.402255,42.8352
--19.49409,-16.3251,-13.63626,-10.08315,73.885482,42.8352
--19.10027,-15.52485,-12.79624,-9.03264,72.392846,43.4075
--20.097,-15.84,-12.771,-8.514,76.0815,44.45
--19.691,-15.132,-11.931,-7.663,74.6318,44.45
--19.09824,-14.20608,-10.8192,-6.67968,72.30048,43.0656
--18.5136,-13.4064,-9.9408,-6.2016,70.0872,42.8544
--18.8062,-13.1271,-9.5893,-6.4239,71.54735,43.855
--19.285,-12.825,-9.12,-7.03,73.0075,42.332
--19.39806,-12.38787,-8.93079,-7.20225,73.789452,43.0195
--18.5136,-11.0352,-8.0256,-6.9312,70.07808,42.576
--19.796,-11.368,-8.232,-6.958,75.313,43.9628
--18.81024,-9.96384,-7.26336,-5.95968,71.56272,43.5168
--18.9981,-9.2169,-6.48945,-5.36085,72.277425,42.408
--19.20212,-8.84058,-5.79866,-5.2283,73.05361,44.3548
--18.61632,-7.64928,-4.88448,-4.88448,70.815744,43.344
--18.9981,-6.9597,-3.85605,-4.60845,72.26802,44.7975
--19.998,-6.534,-2.97,-4.059,75.9825,44.3025
--19.39806,-5.7618,-1.9206,-3.45708,73.789452,44.4906
--19.00416,-4.704,-0.4704,-2.8224,72.2064,44.1392
--19.19808,-3.99168,0.4752,-2.47104,72.9432,42.672
--19.19,-3.325,1.615,-2.09,72.9125,41.8475
--18.3312,-2.4624,2.6448,-1.4592,69.996,42.5125
--19.899,-2.178,3.96,-1.287,75.9825,44.4114
--19.296,-1.344,4.8,-1.056,73.68,42.96
--19.296,-0.672,5.952,-0.576,73.68,44.64
--19.698,-0.098,7.252,-0.098,75.215,45.33
--18.81,0.65835,7.9002,0.1881,72.183375,44.4906
--18.818,1.22317,9.03264,0.47045,72.214075,42.9128
--18.05,1.6245,9.747,0.9025,69.266875,41.743
--18.43,2.11945,10.96585,1.6587,70.725125,42.693
--18.81,2.91555,12.2265,2.0691,72.183375,42.332
--18.53088,3.35232,13.12992,2.328,71.4696,43.4075
--18.72391,4.23405,14.30168,3.10497,72.129394,43.4075
--19.01394,4.89753,15.84495,3.74517,73.703025,43.6985
--19.404,5.684,17.248,4.41,75.117,45.66
--18.4338,6.1446,17.2235,4.4688,71.36115,44.0412
--18.81792,6.84288,18.62784,5.13216,72.838656,44.1936
--18.15552,7.09632,18.80064,5.25312,70.64064,43.344
--18.53376,8.27904,20.32128,5.73888,72.11232,43.6224
--18.62784,9.0288,21.384,6.36768,72.84816,42.4704
--18.82384,9.79608,22.5694,6.7228,73.61466,44.345
--18.62784,10.64448,23.37984,7.22304,72.857664,44.1243
--18.5367,11.12202,24.33536,7.69986,72.86349,43.8052
--19.305,12.177,26.235,8.613,75.8835,44.24
--18.0614,12.3823,25.4163,8.5652,71.36115,42.1325
--17.8771,13.0853,26.07845,8.8464,70.632975,43.3008
--18.72486,14.26194,28.1358,9.89604,74.26881,43.9628
--18.06336,14.39424,28.224,10.06656,72.01824,45.2172
--18.43968,15.55848,29.48428,10.94856,73.51862,43.7472
--17.78592,15.73728,29.23968,10.80192,71.28336,44.0768
--18.2457,16.70922,30.63357,11.5236,73.520568,43.1262
--17.8695,17.1171,30.75435,11.8503,71.995275,43.168
--17.955,17.765,31.445,12.635,72.7225,46.36
--18.144,18.432,32.352,13.248,73.392,46.65
--17.3242,18.2457,31.97605,12.901,70.45789,43.9701
--18.513,20.394,35.145,14.355,75.6855,45.85
--18.414,21.087,35.838,15.147,75.6855,44.23
--16.872,19.8816,33.744,14.5008,69.73152,42.8544
--17.04775,20.6416,34.8327,15.02045,70.448675,42.522
--17.848,22.504,37.442,16.199,74.1565,44.1835
--16.86528,21.6576,36.31104,15.85152,70.465536,42.8544
--17.12256,22.5792,37.53792,16.55808,71.933568,43.6224
--17.20224,23.66496,38.58624,17.29728,72.65808,43.2384
--16.587,23.4061,37.87365,17.1399,70.45789,43.4075
--17.01216,24.90048,39.72672,18.34272,72.65808,42.3936
--16.5718,24.9508,39.5675,18.4338,71.17495,42.9875
--16.992,26.304,41.28,19.584,73.4016,43.94
--17.07552,27.06858,42.10668,19.98612,74.181492,44.7468
--16.2925,26.5335,41.0571,19.9234,71.09116,42.2275
--17.226,28.908,44.154,21.582,75.5964,44.7975
--16.27584,27.94176,42.71232,21.168,71.92416,44.345
--16.01664,28.21536,42.55584,21.4176,71.106432,43.9104
--16.66,29.89,45.374,23.03,74.8328,44.5312
--15.89952,29.07072,44.12352,22.20288,71.839488,44.5312
--15.6408,29.1403,44.0363,22.5302,71.09116,43.453
--15.5477,29.5127,44.5018,22.9026,71.09116,44.5312
--16.0083,31.14342,46.95768,24.255,74.084472,43.6095
--16.07364,32.14728,47.92689,25.09056,74.830635,44.3025
--15.02208,30.50496,45.6192,24.05376,70.373376,43.6224
--14.99232,31.00896,46.37376,24.58368,71.106432,42.1824
--15.2064,31.93344,47.80512,25.37568,72.477504,44.4
--15.11454,32.3204,48.29048,25.95138,72.492756,44.8625
--14.61984,32.1264,47.77056,25.88736,71.013312,43.6985
--14.3754,32.2525,47.82585,25.89415,70.27359,43.2725
--14.48832,33.49248,49.10976,26.71872,71.745408,42.5664
--14.39424,33.8688,49.58016,27.37728,71.745408,43.9104
--14.798,35.574,51.94,28.42,74.7348,44.15
--14.01792,34.3392,49.392,29.07072,71.745408,43.728
--13.357,32.851,46.7495,29.241,68.82465,42.788
--13.73568,34.15104,48.07488,31.0464,71.745408,44.1392
--14.21,35.476,49.294,31.654,74.7348,44.86
--13.3133,33.6091,46.1776,29.9782,70.99806,41.743
--13.54023,34.28271,46.28646,33.99462,73.232478,44.5896
--13.5828,32.69574,44.53218,34.15104,73.987452,43.5006
--12.9789,30.56625,41.1939,32.44725,71.731935,44.0055
--12.274,28.42875,37.7245,30.324,68.82465,41.667
--12.86802,29.28915,38.50803,31.11372,73.232478,43.4075
--12.768,28.032,36.864,30.528,73.2096,44.24
--12.57993,27.17649,35.43507,29.86533,73.242081,44.1936
--12.38787,26.12016,34.18668,29.00106,73.232478,44.1936
--11.8237,24.3922,31.8402,27.5576,71.00737,43.561
--11.4,23.1648,30.096,26.448,69.54912,42.7776
--11.57307,23.24023,30.01471,26.15702,71.753034,43.0098
--11.0352,21.7968,28.1808,24.9888,69.54912,42.028
--11.781,22.77,29.601,26.532,75.4974,44.24
--11.583,21.978,28.611,25.938,75.4974,44.6985
--11.5,21.5,28.1,25.6,76.26,45.95
--10.73952,19.86336,25.85088,23.66496,72.477504,44.8767
--10.5633,19.49409,25.35192,23.43132,73.232478,43.7955
--10.26432,18.62784,24.42528,22.61952,72.477504,44.1936
--10.6,19,24.9,23.2,76.26,44.85
--10.192,18.13,23.716,22.344,74.7348,44.56
--10.098,17.82,23.364,21.978,75.4974,44.0055
--9.9,17.226,22.671,21.384,75.4974,44.45
--9.31,15.96,21.09,19.95,72.447,41.5625
--9.0288,15.2361,20.40885,19.3743,71.72253,41.743
--8.93376,14.92128,19.9584,19.19808,72.477504,42.288
--8.924,14.841,19.885,19.206,73.9722,42.2241
--8.4681,13.92532,18.72391,18.06528,71.753034,42.1562
--8.36352,13.68576,18.43776,17.77248,72.477504,43.6095
--7.8432,12.768,17.1456,16.6896,69.64032,42.3936
--7.9002,12.69675,17.21115,16.64685,71.81658,42.9264
--7.7273,12.103,16.4787,16.1994,71.09116,43.0612
--7.524,11.8503,16.27065,15.89445,71.81658,43.1046
--7.9,12.2,16.8,16.7,76.35,43.86
--7.7,11.8,16.3,16.3,76.36,43.46
--6.84,10.3968,14.4096,14.4096,69.6312,41.667
--7.008,10.56,14.688,14.784,73.3056,43.06
--6.816,10.176,14.304,14.4,73.3056,43.14
--6.55776,9.59904,13.68576,13.87584,72.572544,42.288
--6.2377,9.0307,13.034,13.4064,71.09116,43.0612
--6.468,9.212,13.328,13.72,74.8328,42.4928
--6.02112,8.56128,12.41856,12.7008,71.839488,42.581
--5.952,8.448,12.192,12.864,73.3056,43.75
--5.529,7.64845,11.2423,11.70305,70.36574,40.907
--5.723,7.76,11.446,12.222,74.0692,41.9525
--5.36085,7.24185,10.81575,11.4741,71.81658,41.192
--5.1216,6.89088,10.33632,11.08128,71.106432,41.232
--5.08032,6.5856,10.06656,10.8192,71.839488,41.0592
--4.8412,6.2377,9.5893,10.5203,71.09116,41.1894
--4.752,6.08256,9.40896,10.4544,72.572544,41.8275
--4.60992,5.73888,9.03168,10.16064,71.933568,40.848
--4.512,5.568,8.928,9.984,73.3056,43.36
--4.2389,4.9761,8.20135,9.215,70.448675,41.6615
--4.0964,4.655,7.9135,9.0307,71.17495,42.1988
--3.96245,4.33105,7.46415,8.75425,70.448675,39.938
--3.97782,4.3659,7.56756,8.92584,74.084472,41.5912
--3.8016,4.08672,7.22304,8.64864,72.667584,42.0156
--3.783,3.977,6.984,8.439,74.1565,40.7012
--3.62637,3.62637,6.66468,8.33085,74.928645,41.6196
--3.3174,3.1331,5.98975,7.27985,70.45789,40.8855
--3.19872,2.91648,5.73888,7.33824,71.933568,40.3584
--3.0723,2.6068,5.3998,7.0756,71.18426,41.5912
--3.104,2.522,5.335,7.275,74.0692,43.06
--2.88,2.4,5.088,7.008,73.4016,43.46
--2.6448,2.0064,4.56,6.2928,69.7224,40.9536
--2.63452,1.78771,4.42223,6.30403,71.941214,41.6712
--2.592,1.44,4.32,6.144,73.3056,42.04
--2.6,1.3,4.1,6.2,76.45,43.14
--2.328,1.067,3.783,5.723,74.1565,42.76
--2.25792,0.9408,3.38688,5.36256,71.92416,41.5128
--2.09,0.76,3.23,5.035,72.6275,39.9285
--1.97505,0.5643,3.0096,4.98465,71.901225,39.862
--1.98,0.396,2.871,5.148,75.6954,41.9364
--1.75104,0.09216,2.39616,4.23936,70.45632,40.56
--1.782,-0.099,2.376,4.455,75.6954,42.2334
--1.64934,-0.38808,2.03742,4.07484,74.181492,42.1245
--1.5048,-0.65835,1.78695,3.9501,71.91063,40.622
--1.4553,-0.77616,1.55232,3.68676,74.181492,41.699
--1.2635,-0.81225,1.2635,3.51975,69.00515,39.938
--1.235,-1.045,1.14,3.42,72.6275,42.25
--1.15236,-1.15236,0.9603,3.36105,73.414935,41.5404
--1.2,-1.4,0.8,3.3,76.45,41.67
--1.01365,-1.56655,0.46075,2.7645,70.45789,39.5865
--0.95,-1.9,0.285,2.47,72.6275,39.862
--0.873,-2.134,0,2.328,74.1565,41.67
--0.76048,-2.28144,-0.09506,2.3765,72.682876,40.0319
--0.7524,-2.35125,-0.28215,2.16315,71.91063,41.2533
--0.65184,-2.42112,-0.4656,1.95552,71.19024,40.3132
--0.57036,-2.66168,-0.66542,1.80614,72.682876,40.621
--0.57618,-2.78487,-0.86427,1.72854,73.424538,41.3226
--0.48,-2.976,-1.056,1.344,73.392,41.26
--0.396,-3.366,-1.287,1.287,75.6954,41.0355
--0.3724,-3.4447,-1.4896,1.1172,71.17495,40.5132
--0.29403,-3.82239,-1.76418,0.88209,74.938446,40.9266
--0.285,-3.895,-1.9,0.855,72.637,39.482
--0.19,-3.895,-1.995,0.855,72.637,41.85
--0.2,-4.2,-2.3,0.5,76.46,42.04
--0.09603,-4.22532,-2.30472,0.38412,73.424538,41.3226
--0.09702,-4.3659,-2.52252,0.29106,74.181492,41.3226
-0,-4.37276,-2.56662,0.09506,72.67337,41.1992
-0,-4.704,-2.842,-0.294,74.9308,41.85
-0,-4.851,-3.00762,-0.19404,74.17179,41.1444
-0.09506,-4.94312,-3.13698,-0.57036,72.67337,41.1992
-0.09216,-4.88448,-3.13344,-0.55296,70.465536,40.176
-0.095,-5.13,-3.42,-0.57,72.637,41.56
-0.19008,-5.2272,-3.51648,-0.9504,72.667584,41.8275
-0.198,-5.643,-3.861,-1.188,75.6855,41.6196
-0.1881,-5.54895,-3.762,-1.3167,71.901225,41.1444
-0.19012,-5.89372,-4.08758,-1.80614,72.682876,40.9052
-0.294,-6.37,-4.41,-1.764,74.9308,41.74
-0.28512,-6.1776,-4.37184,-1.52064,72.667584,41.4315
-0.297,-6.336,-4.653,-1.584,75.6855,41.3226
-0.27645,-5.8976,-4.4232,-1.56655,70.36574,39.3775
-0.388,-6.208,-4.753,-1.746,74.1662,40.2065
-0.38,-6.27,-4.75,-2.28,72.637,39.273
-0.3724,-6.4239,-4.8412,-2.6999,71.18426,40.5132
-0.396,-7.128,-5.346,-2.772,75.6954,41.35
-0.38016,-6.93792,-5.2272,-2.47104,72.667584,39.5136
-0.37636,-6.86857,-5.26904,-2.54043,71.950623,39.9252
-0.38412,-6.91416,-5.47371,-2.49678,73.424538,40.6395
-0.38416,-6.91488,-5.57032,-2.401,73.432184,40.4348
-0.37632,-6.86784,-5.55072,-3.19872,71.933568,39.3024
-0.384,-7.296,-5.856,-3.552,73.4016,41.26
-0.38016,-7.50816,-5.89248,-3.61152,72.667584,40.5306
-0.388,-7.857,-6.208,-3.298,74.1662,39.8185
-0.3724,-7.5411,-6.0515,-3.1654,71.17495,40.1212
-0.3686,-7.46415,-6.0819,-3.3174,70.448675,38.893
-0.37248,-7.54272,-6.23904,-3.35232,71.208864,39.408
-0.38808,-7.95564,-6.59736,-3.58974,74.181492,40.9266
-0.3762,-7.80615,-6.48945,-3.5739,71.901225,38.9975
-0.38808,-8.2467,-6.7914,-3.8808,74.181492,40.229
-0.38412,-8.35461,-6.81813,-4.41738,73.424538,40.0222
-0.3686,-8.2935,-6.72695,-4.2389,70.45789,39.9252
-0.294,-8.918,-7.252,-4.312,74.9308,40.86
-0.28812,-8.83568,-7.29904,-4.22576,73.432184,39.935
-0.285,-8.74,-7.22,-4.37,72.637,40.94
-0.27645,-8.4778,-7.09555,-4.2389,70.45789,39.7215
-0.3,-9.2,-7.8,-4.6,76.46,40.86
-0.18432,-8.57088,-7.28064,-4.51584,70.465536,39.3024
-0.291,-9.118,-7.76,-4.656,74.1662,40.86
-0.198,-9.405,-8.019,-5.148,75.6855,40.86
-0.2,-9.6,-8.2,-5.1,76.46,40.75
-0.19,-9.31,-7.885,-4.94,72.637,38.7125
-0.0931,-9.2169,-7.8204,-5.0274,71.18426,40.4348
-0.09025,-8.93475,-7.67125,-5.054,68.996125,38.608
-0.095,-9.595,-8.17,-5.32,72.637,40.57
-0.09504,-9.78912,-8.26848,-5.51232,72.667584,40.0554
-0,-10.29,-8.722,-5.782,75.019,40.1212
-0,-10.08315,-8.6427,-5.7618,73.424538,40.3425
-0,-9.975,-8.55,-5.51,72.6275,40.94
--0.09216,-9.6768,-8.38656,-5.5296,70.45632,39.3024
--0.09215,-9.9522,-8.56995,-6.17405,70.45789,39.7118
--0.09603,-10.65933,-9.12285,-6.43401,73.414935,39.8185
--0.19,-10.545,-9.025,-6.27,72.637,38.7125
--0.196,-10.78,-9.408,-6.174,74.921,40.86
--0.196,-10.682,-9.408,-6.174,74.9308,40.0428
--0.29106,-10.57518,-9.41094,-6.20928,74.17179,40.6395
--0.288,-10.464,-9.312,-6.24,73.4016,39.5136
--0.396,-10.89,-9.702,-6.732,75.6954,40.94
--0.384,-10.848,-9.504,-7.104,73.392,40.86
--0.3686,-10.6894,-9.30715,-6.72695,70.448675,38.817
--0.495,-11.484,-9.999,-6.93,75.6954,40.86
--0.4656,-10.80192,-9.49824,-6.5184,71.199552,39.7118
--0.588,-11.27,-9.996,-6.86,74.921,40.86
--0.57,-10.925,-9.785,-6.65,72.637,38.532
--0.57,-10.925,-9.785,-6.65,72.6275,40.75
--0.67914,-11.25432,-10.09008,-6.98544,74.17179,40.3425
--0.784,-11.466,-10.29,-6.958,74.921,39.935
--0.7372,-10.96585,-9.67575,-6.8191,70.45789,38.437
--0.73728,-11.0592,-9.76896,-7.00416,70.465536,39.2256
--0.84645,-11.286,-10.06335,-7.1478,71.901225,40.0554
--0.83808,-11.36064,-10.05696,-7.17024,71.199552,38.8416
--0.9702,-11.83644,-10.57518,-7.56756,74.17179,40.1544
--0.9504,-11.68992,-10.4544,-7.41312,72.667584,40.4514
--1.01365,-11.4266,-10.22865,-7.27985,70.45789,39.4208
--1.01376,-11.52,-10.32192,-7.55712,70.557696,39.12
--1.14,-11.97,-10.735,-7.98,72.6275,40.45
--1.188,-12.771,-11.286,-8.514,75.6954,39.9465
--1.24839,-12.4839,-11.04345,-8.16255,73.424538,39.3432
--1.287,-12.87,-11.484,-8.217,75.7944,40.45
--1.358,-12.513,-11.252,-7.954,74.1662,39.2462
--1.2768,-11.7648,-10.6704,-7.8432,69.7224,38.4275
--1.47,-12.838,-11.564,-8.722,74.9308,40.56
--1.3965,-12.4754,-11.0789,-8.6583,71.17495,39.6508
--1.50528,-12.7008,-11.2896,-8.56128,71.933568,38.8416
--1.53648,-12.86802,-11.61963,-8.45064,73.424538,40.3425
--1.7,-13.3,-12.1,-8.7,76.45,40.56
--1.74636,-12.90366,-11.73942,-8.44074,74.181492,40.1643
--1.8,-13.2,-12.1,-8.7,76.46,40.75
--1.71475,-12.00325,-11.0105,-7.7615,69.00515,38.7125
--1.84338,-13.00068,-11.83644,-8.7318,74.181492,40.5306
--1.96,-13.328,-12.152,-9.212,74.921,39.8272
--2.058,-13.524,-12.25,-9.408,75.0288,40.0428
--2.079,-13.761,-12.474,-9.405,75.6954,40.86
--1.9855,-12.54475,-11.3715,-8.39325,68.996125,38.817
--2.0273,-12.80885,-11.6109,-8.56995,70.45789,39.7118
--2.25423,-13.62339,-12.34926,-9.11493,74.938446,40.7484
--2.254,-13.622,-12.446,-9.31,74.9308,41.26
--2.23488,-12.94368,-11.91936,-8.75328,71.28336,39.408
--2.352,-13.1712,-12.04224,-8.9376,71.933568,40.3368
--2.328,-13.0368,-11.91936,-8.93952,71.28336,39.9252
--2.42112,-13.12992,-12.01248,-8.93952,71.28336,39.3024
--2.47,-13.49,-12.255,-9.405,72.732,38.9975
--2.59281,-13.73229,-12.4839,-9.50697,73.510965,40.5306
--2.63452,-13.54896,-12.32579,-9.31491,72.025895,39.6342
--2.6334,-13.63725,-12.4146,-9.405,71.901225,40.2336
--2.6448,-13.224,-12.0384,-9.0288,69.73152,38.608
--2.70048,-13.59552,-12.38496,-9.49824,71.28336,39.408
--2.94,-14.308,-13.132,-10.094,75.019,40.94
--2.976,-14.112,-12.864,-9.792,73.4016,40.75
--2.8861,-13.7788,-12.5685,-9.6824,71.26805,38.608
--3.104,-14.453,-13.095,-10.185,74.2535,39.3432
--3.267,-14.751,-13.464,-10.494,75.7845,40.3425
--3.13698,-14.259,-13.02322,-10.17142,72.76843,39.4208
--3.13344,-13.824,-12.62592,-9.76896,70.557696,38.8416
--3.1008,-13.68,-12.5856,-9.7584,69.82272,38.437
--3.465,-14.949,-13.761,-10.692,75.7845,40.0455
--3.564,-15.147,-13.86,-10.989,75.7845,40.1544
--3.6,-15.5,-14.1,-11.1,76.55,40.45
--3.40955,-14.28325,-12.99315,-10.04435,70.540825,38.4275
--3.648,-14.784,-13.632,-10.176,73.488,38.832
--3.686,-14.841,-13.774,-10.476,74.2535,40.56
--3.74517,-14.69259,-13.63626,-10.46727,73.510965,39.6342
--3.59385,-14.28325,-13.17745,-10.59725,70.540825,39.2365
--3.7248,-14.61984,-13.40928,-10.80192,71.292672,39.2462
--4.059,-15.642,-14.355,-11.286,75.7845,40.2336
--3.85728,-14.77056,-13.6416,-10.44288,72.01824,39.8272
--3.9102,-14.6167,-13.4995,-10.3341,71.27736,38.437
--4.128,-14.976,-13.92,-10.56,73.488,40.35
--3.88075,-14.079,-13.1765,-9.9275,69.086375,38.3325
--4.18176,-14.82624,-13.7808,-10.73952,72.75312,40.1544
--4.1472,-14.37696,-13.45536,-10.41408,70.54848,38.832
--4.23225,-14.76585,-13.7313,-10.9098,71.995275,38.4275
--4.41784,-15.27036,-14.11788,-11.0446,73.528224,39.3568
--4.3757,-14.896,-13.7788,-10.7996,71.27736,39.4352
--4.653,-15.939,-14.751,-11.682,75.7845,40.35
--4.60992,-15.55848,-14.30996,-11.23668,73.51862,39.543
--4.4688,-15.0822,-13.8719,-10.8927,71.26805,39.7488
--4.753,-15.617,-14.453,-11.252,74.2535,39.2365
--4.95,-16.038,-14.85,-11.682,75.7845,40.45
--4.85,-15.714,-14.55,-11.446,74.2535,39.3432
--4.74912,-15.17856,-14.06112,-11.08128,71.292672,39.6342
--5.044,-15.908,-14.744,-11.737,74.2535,39.6342
--4.992,-15.84,-14.688,-11.712,73.488,39.0144
--5.09012,-15.94264,-14.69412,-11.5248,73.51862,40.1212
--5.238,-16.102,-14.841,-11.834,74.2632,40.64
--5.238,-16.005,-14.938,-11.737,74.2535,41.05
--5.17495,-15.61894,-14.48986,-11.38489,72.025895,39.7118
--5.6,-16.7,-15.5,-12.1,76.55,41.05
--5.21472,-15.64416,-14.4336,-11.64,71.28336,39.5275
--5.41842,-15.97008,-14.82936,-11.8825,72.76843,39.7118
--5.47371,-16.22907,-14.98068,-12.09978,73.520568,40.4514
--5.45664,-15.89952,-14.77056,-11.76,72.01824,39.408
--5.43685,-15.57335,-14.46755,-11.4266,70.540825,38.893
--5.7618,-16.3251,-15.17274,-12.09978,73.510965,40.4514
--5.94,-16.83,-15.642,-12.672,75.7845,40.7385
--5.97861,-16.75971,-15.58359,-12.54528,75.026655,40.3425
--5.73705,-16.08255,-14.95395,-12.0384,72.00468,38.893
--5.7722,-16.0132,-14.8029,-11.8237,71.26805,38.817
--5.92704,-16.27584,-15.0528,-12.2304,72.027648,39.3024
--6.237,-17.127,-15.939,-12.771,75.7845,40.64
--6.208,-16.781,-15.617,-12.61,74.2535,39.2365
--6.3063,-16.78446,-15.62022,-12.51558,74.26881,39.7488
--6.11325,-16.3647,-15.2361,-12.2265,72.00468,38.608
--6.27396,-16.54044,-15.39972,-12.45286,72.682876,38.9552
--6.17472,-16.128,-14.92992,-12.07296,70.465536,39.792
--6.30403,-16.46575,-15.33667,-12.04352,71.941214,40.0222
--6.59736,-17.07552,-15.81426,-12.6126,74.17179,39.7488
--6.62607,-16.90128,-15.74892,-12.77199,73.424538,39.3432
--6.42528,-16.38912,-15.27168,-12.38496,71.199552,39.3432
--6.72,-16.992,-15.84,-12.768,73.4016,40.848
--6.74784,-16.72704,-15.6816,-12.54528,72.572544,41.3376
--6.40775,-15.97425,-14.89125,-12.00325,68.9149,38.608
--7.128,-17.523,-16.335,-13.365,75.5964,41.95
--6.77448,-16.74802,-15.61894,-12.70215,71.847124,39.7118
--6.86565,-16.7409,-15.6123,-12.69675,71.81658,41.1444
--7.326,-17.721,-16.533,-13.464,75.5964,41.5404
--7.10696,-17.2872,-16.03868,-13.34956,73.345748,41.1208
--7.2765,-17.56062,-16.29936,-13.38876,74.084472,42.1146
--7.2765,-17.56062,-16.29936,-13.48578,73.997154,42.7086
--7.00416,-16.68096,-15.57504,-12.71808,70.281216,46.6848
--7.47054,-17.56062,-16.39638,-13.48578,73.987452,47.7477
--7.47054,-17.65764,-16.4934,-13.48578,73.997154,47.187
--7.33824,-17.12256,-15.9936,-13.1712,71.754816,47.8464
--7.821,-18.117,-16.929,-13.86,75.4974,45.5697
--7.42995,-17.3052,-16.08255,-13.167,71.72253,47.1636
--7.4496,-17.13408,-16.01664,-13.0368,71.022624,43.3008
--7.69824,-17.48736,-16.34688,-13.3056,72.477504,44.9856
--7.62048,-17.31072,-16.18176,-13.1712,71.745408,44.8252
--7.63584,-17.13408,-16.01664,-13.40928,71.013312,46.4064
--7.7273,-17.2235,-16.1063,-13.4995,71.00737,45.717
--7.885,-17.67,-16.53,-13.585,72.447,47.34
--8.4,-18.6,-17.4,-14.1,76.26,47.24
--7.90272,-17.49888,-16.36992,-13.45344,71.839488,46.3104
--8.33,-18.228,-17.15,-14.014,74.8328,46.3932
--7.83275,-17.23205,-16.12625,-13.2696,70.374955,44.9825
--8.09088,-17.68704,-16.464,-13.82976,71.839488,45.8248
--8.18235,-17.6814,-16.5528,-13.63725,71.81658,42.5125
--8.26848,-17.96256,-16.72704,-13.68576,72.572544,41.8944
--8.0256,-17.1456,-16.0512,-13.3152,69.73152,41.8475
--8.455,-17.86,-16.72,-13.585,72.6275,40.8025
--8.03225,-16.967,-15.97425,-13.08625,69.00515,40.8025
--8.7318,-18.33678,-17.17254,-14.16492,74.181492,41.9832
--8.6436,-18.2476,-17.09512,-14.30996,73.432184,41.7774
--8.65046,-18.15646,-17.01574,-14.06888,72.682876,41.4869
--8.47872,-17.60256,-16.49664,-13.54752,70.54848,40.848
--8.65536,-17.96928,-16.84032,-14.01792,72.027648,41.136
--8.74665,-17.96355,-16.83495,-13.82535,72.00468,40.4225
--8.84058,-18.0614,-17.01574,-14.06888,72.76843,40.8758
--8.93564,-18.15646,-17.1108,-14.06888,72.777936,40.8855
--9.306,-19.008,-17.82,-14.751,75.7944,42.55
--9.12,-18.528,-17.376,-14.4,73.4976,42.44
--9.504,-19.107,-17.919,-14.949,75.7944,42.55
--9.50697,-18.91593,-17.73981,-14.60349,75.134466,42.3324
--9.312,-18.528,-17.376,-14.304,73.584,42.66
--9.22082,-18.34658,-17.20586,-14.259,72.86349,41.9048
--9.1238,-17.9683,-16.9442,-14.0581,71.37046,40.527
--9.504,-18.624,-17.472,-14.496,73.584,40.7424
--9.604,-18.7278,-17.57532,-14.406,73.61466,41.699
--10,-19.5,-18.3,-15.2,76.66,42.55
--9.696,-18.72,-17.664,-14.592,73.5936,40.848
--9.999,-19.305,-18.216,-15.048,75.8934,42.1245
--9.49824,-18.1584,-17.13408,-14.06112,71.37648,40.9536
--9.3024,-17.784,-16.7808,-13.9536,69.9048,40.812
--9.29575,-17.59875,-16.606,-13.80825,69.176625,40.8025
--10.09503,-19.20996,-18.03384,-15.09354,75.124665,42.4215
--10.19304,-19.20996,-18.13185,-15.28956,75.222675,42.3324
--9.87525,-18.52785,-17.39925,-14.4837,72.183375,40.622
--9.975,-18.81,-17.67,-14.63,72.9125,40.8025
--9.8686,-18.3407,-17.3166,-14.3374,71.45425,40.983
--10.07424,-18.72288,-17.67744,-14.63616,72.857664,42.4215
--10.16928,-18.72288,-17.67744,-14.44608,72.9432,42.5304
--10.06656,-18.62784,-17.49888,-14.5824,72.2064,41.4144
--10.476,-19.206,-18.139,-15.132,74.4475,41.8458
--10.46727,-19.10997,-17.95761,-14.98068,73.703025,42.8175
--10.46836,-19.11196,-17.95948,-15.07828,73.7107,42.6692
--10.241,-18.5269,-17.4097,-14.3374,71.45425,41.192
--10.5633,-19.10997,-17.95761,-14.88465,73.703025,42.9264
--10.54944,-18.91296,-17.86752,-14.7312,72.9432,43.0254
--10.54944,-18.91296,-17.86752,-14.7312,72.9432,43.0254
--10.75648,-19.11196,-18.05552,-14.98224,73.7107,42.385
--11.074,-19.502,-18.424,-15.19,75.215,43.25
--10.62765,-18.71595,-17.6814,-14.57775,72.183375,41.0875
--10.61568,-18.53088,-17.50656,-14.4336,71.4696,41.9525
--11.4,-19.9,-18.8,-15.4,76.75,43.25
--10.7065,-18.62,-17.5959,-14.7098,71.45425,41.192
--11.04,-19.2,-18.144,-14.976,73.68,43.06
--10.7996,-18.7131,-17.5959,-14.7098,71.45425,40.983
--10.5792,-18.24,-17.2368,-14.4096,69.996,40.983
--10.78272,-18.52416,-17.41824,-14.37696,70.7328,41.6256
--10.78155,-18.43,-17.41635,-14.5597,70.725125,42.0592
--11.8,-20.1,-19,-15.7,76.75,43.25
--10.9858,-18.7131,-17.689,-14.7098,71.45425,42.1988
--11.781,-19.899,-18.81,-15.741,75.9825,42.6294
--11.424,-19.296,-18.24,-15.264,73.68,42.95
--11.6424,-19.50102,-18.4338,-15.13512,74.46285,42.4116
--12,-20.2,-19,-16,76.75,42.93
--11.73942,-19.69506,-18.53082,-15.42618,74.46285,42.4215
--11.61963,-19.49409,-18.34173,-15.26877,73.703025,42.1245
--11.36064,-18.90336,-17.78592,-14.71296,71.4696,40.848
--11.59732,-19.20212,-18.15646,-15.01948,72.95855,41.1668
--11.931,-19.691,-18.527,-15.423,74.4475,42.55
--11.4266,-18.6143,-17.60065,-14.65185,70.725125,40.527
--11.78496,-19.19808,-18.15264,-15.01632,72.9432,42.1245
--11.51875,-18.70645,-17.60065,-14.744,70.725125,40.4225
--12.1275,-19.69506,-18.62784,-15.5232,74.46285,41.5128
--11.6375,-18.8993,-17.8752,-14.9891,71.45425,41.8068
--12.6,-20.4,-19.2,-16,76.75,42.44
--12.07008,-19.38816,-18.24768,-15.11136,72.9432,42.0156
--12.065,-19.38,-18.24,-15.39,72.903,42.15
--12.04224,-19.19232,-18.06336,-15.0528,72.2064,41.405
--11.6736,-18.6048,-17.5104,-14.4096,69.996,40.033
--12.26274,-19.39224,-18.34658,-15.2096,72.95855,40.9825
--12.13245,-19.1862,-18.15165,-15.14205,72.183375,40.242
--12.48,-19.68,-18.528,-15.456,73.68,40.3584
--12.4852,-19.6882,-18.53572,-15.3664,73.7107,41.1208
--12.32055,-19.28025,-18.2457,-15.33015,72.183375,40.242
--12.707,-19.885,-18.818,-15.52,74.4475,42.45
--12.0384,-18.696,-17.6928,-14.6832,69.996,39.938
--12.80664,-19.8891,-18.82188,-15.81426,74.46285,41.2972
--12.635,-19.475,-18.43,-15.295,72.903,42.04
--12.25728,-18.8928,-17.87904,-14.7456,70.7328,40.3584
--12.90366,-19.98612,-18.82188,-15.5232,74.46285,41.013
--12.6027,-19.3743,-18.2457,-15.2361,72.19278,41.6196
--12.312,-18.7872,-17.6928,-14.8656,69.9048,40.3584
--12.312,-18.7872,-17.6928,-14.8656,69.996,40.3584
--12.825,-19.57,-18.525,-15.58,72.9125,39.9285
--12.92544,-19.57824,-18.5328,-15.58656,72.857664,41.6097
--12.7908,-19.46835,-18.33975,-15.2361,72.183375,40.1375
--12.89033,-19.47663,-18.34755,-15.33667,72.119985,40.5945
--13.15748,-19.88028,-18.7278,-15.75056,73.61466,41.111
--12.9789,-19.46835,-18.4338,-15.4242,72.089325,39.7575
--13.662,-20.493,-19.305,-16.137,75.8934,41.5404
--12.5856,-18.8784,-17.8752,-14.8656,69.9048,39.7575
--12.81024,-19.07712,-18.06336,-15.11424,70.649856,40.176
--12.9409,-19.2717,-18.2476,-15.3615,71.36115,40.8268
--13.72,-20.384,-19.208,-15.974,75.117,41.1208
--13.0368,-19.36896,-18.25152,-15.3648,71.37648,40.176
--13.26105,-19.5624,-18.4338,-15.4242,72.089325,41.2533
--12.72525,-18.772,-17.689,-14.801,69.176625,39.482
--13.08672,-19.16928,-18.06336,-15.11424,70.64064,39.8976
--12.9504,-18.9696,-17.8752,-15.1392,69.9048,39.482
--12.8155,-18.772,-17.77925,-14.71075,69.176625,39.7575
--13.17888,-19.16928,-18.15552,-15.2064,70.64064,39.8976
--13.0416,-19.0608,-17.9664,-14.9568,69.9048,39.7575
--13.40928,-19.46208,-18.34464,-15.17856,71.37648,40.3132
--13.54752,-19.66272,-18.53376,-15.42912,72.121728,40.8366
--14.4,-20.9,-19.8,-16.5,76.65,41.45
--13.224,-19.0608,-18.0576,-15.1392,69.91392,39.482
--13.4995,-19.551,-18.4338,-15.5477,71.36115,39.482
--14.16492,-20.27718,-19.20996,-16.20234,74.375532,40.6308
--14.016,-20.064,-19.008,-15.744,73.584,41.45
--14.26194,-20.27718,-19.20996,-16.10532,74.36583,41.2533
--13.97088,-19.86336,-18.81792,-15.77664,72.84816,39.792
--13.68864,-19.5552,-18.43776,-15.45792,71.37648,40.2065
--14.06592,-19.9584,-18.91296,-15.6816,72.762624,40.0704
--13.92384,-19.38048,-17.96928,-15.24096,72.11232,40.7288
--14.453,-19.303,-16.975,-16.781,74.3602,40.4878
--14.16096,-17.96256,-15.6816,-16.53696,72.84816,40.0704
--14.602,-17.738,-15.288,-17.248,75.0288,41.96
--14.406,-16.807,-14.21392,-16.90304,73.61466,41.013
--14.85,-17.523,-14.553,-13.761,75.7944,41.4315
--14.06112,-17.87904,-15.08544,-14.80608,71.292672,40.0032
--15.1,-19.6,-16.8,-15.8,76.56,41.74
--14.35406,-18.72682,-16.1602,-14.63924,72.777936,40.9052
--14.30168,-18.53573,-16.18348,-14.30168,72.035304,40.4878
--14.44,-18.715,-16.53,-14.44,72.732,41.67
--14.59808,-18.82384,-16.807,-14.50204,73.528224,40.9052
--14.09895,-18.0614,-16.2184,-14.0068,70.55004,40.4878
--14.2443,-18.2476,-16.4787,-14.0581,71.27736,39.6625
--15.147,-19.404,-17.622,-15.048,75.7944,41.2533
--15.09354,-19.20996,-17.54379,-15.09354,75.036456,41.5404
--14.34048,-18.34464,-16.7616,-14.71296,71.292672,40.5945
--14.19264,-18.33984,-16.68096,-14.37696,70.557696,40.0704
--14.136,-18.1488,-16.5984,-14.3184,69.82272,39.862
--14.725,-19,-17.385,-14.725,72.732,39.653
--14.976,-19.2,-17.664,-14.88,73.5072,41.67
--14.67648,-18.816,-17.4048,-14.86464,72.027648,40.0704
--15.132,-19.497,-17.945,-15.132,74.2632,40.2065
--15.132,-19.497,-18.042,-15.423,74.2632,40.3132
--15.7,-20.1,-18.7,-15.8,76.56,41.26
--14.61984,-18.81024,-17.41344,-14.71296,71.292672,39.6096
--15.17274,-19.39806,-17.95761,-15.07671,73.520568,40.0998
--15.01948,-19.10706,-17.87128,-15.01948,72.777936,40.1095
--15.8,-20.2,-18.8,-15.9,76.46,41.34
--15.01632,-19.19808,-17.96256,-15.2064,72.677088,40.9365
--15.01632,-19.29312,-17.96256,-15.2064,72.762624,40.9365
--14.65344,-18.80064,-17.5104,-14.7456,70.557696,39.8976
--14.5008,-18.6048,-17.328,-14.592,69.82272,39.792
--15.9,-20.3,-19,-16,76.56,41.26
--15.3648,-19.59012,-18.34173,-15.46083,73.520568,40.9266
--14.592,-18.696,-17.4192,-14.6832,69.82272,39.8976
--15.84,-20.295,-19.008,-16.038,75.7944,40.7484
--14.83615,-18.89075,-17.6928,-14.83615,70.45789,39.9252
--15.14205,-19.28025,-18.0576,-14.95395,71.91063,40.7484
--15.30466,-19.4873,-18.34658,-15.39972,72.682876,40.0222
--14.83615,-18.89075,-17.78495,-14.83615,70.45789,39.2825
--15.714,-19.982,-18.721,-15.714,74.1662,40.0319
--15.24258,-19.38254,-18.15937,-15.24258,71.941214,39.9252
--14.92992,-18.98496,-17.87904,-14.7456,70.465536,39.6096
--15.811,-20.079,-18.818,-15.908,74.1662,39.9252
--15.65452,-19.88028,-18.63176,-15.46244,73.432184,40.229
--16.137,-20.493,-19.305,-16.137,75.6954,41.26
--15.65289,-19.87821,-18.62982,-15.55686,73.424538,39.9252
--15.27168,-19.27584,-18.06528,-15.27168,71.199552,39.8185
--15.58,-19.665,-18.525,-15.39,72.637,41.05
--15.3615,-19.2717,-18.1545,-15.0822,71.18426,38.9975
--15.58656,-19.76832,-18.5328,-15.58656,72.667584,39.3024
--16.17165,-20.38608,-19.20996,-16.07364,74.938446,40.7484
--15.6816,-19.76832,-18.62784,-15.49152,72.65808,40.6395
--16.17165,-20.38608,-19.20996,-16.07364,74.938446,40.6395
--15.6816,-19.76832,-18.62784,-15.58656,72.667584,39.408
--16.434,-20.592,-19.404,-16.236,75.6954,40.6395
--15.1392,-19.0608,-17.9664,-14.9568,69.73152,38.9975
--15.2304,-19.0608,-17.9664,-15.1392,69.73152,39.273
--15.07175,-18.86225,-17.77925,-14.89125,69.00515,38.9975
--15.07175,-18.86225,-17.77925,-14.801,69.00515,38.9975
--15.07175,-18.86225,-17.77925,-14.89125,69.00515,38.893
--16.366,-20.482,-19.306,-16.268,74.9308,40.229
--16.296,-20.37,-19.206,-16.005,74.1662,40.94
--16.296,-20.37,-19.206,-16.199,74.1759,39.7118
--15.97008,-19.9626,-18.82188,-15.77996,72.682876,40.1212
--16.296,-20.37,-19.206,-16.102,74.1662,39.7118
--16.39638,-20.3742,-19.20996,-16.20234,74.181492,40.5306
--15.4128,-19.2432,-18.1488,-15.1392,69.73152,39.197
--15.4128,-18.6048,-16.7808,-15.048,69.73152,39.6864
--16.06176,-18.5328,-16.25184,-16.25184,72.572544,39.408
--16.66,-18.032,-15.778,-17.248,74.8328,41.05
--15.9953,-16.84211,-14.39577,-16.27757,71.856533,39.9252
--15.9885,-16.27065,-13.63725,-16.64685,71.825985,39.102
--16.1568,-17.48736,-14.44608,-14.16096,72.572544,39.6096
--16.245,-18.525,-15.675,-15.105,72.542,39.102
--16.758,-19.404,-16.562,-15.288,74.8328,41.45
--15.75765,-18.2457,-15.75765,-14.1911,70.36574,39.482
--16.59042,-19.11294,-16.78446,-14.94108,74.084472,40.8474
--16.18176,-18.53376,-16.36992,-14.39424,71.839488,40.621
--16.85772,-19.20996,-17.15175,-14.79951,74.840436,40.7385
--16.68744,-19.01592,-17.07552,-14.74704,74.084472,40.8474
--16.684,-19.109,-17.169,-14.938,74.0789,39.9252
--15.523,-17.77925,-16.15475,-13.8985,68.9149,38.9975
--16.27065,-18.6219,-16.929,-14.57775,71.81658,39.102
--16.781,-19.303,-17.557,-15.229,74.0692,40.0222
--16.781,-19.4,-17.654,-15.326,74.0692,40.0222
--16.44192,-19.10304,-17.39232,-14.82624,72.572544,40.5306
--15.94368,-18.52416,-16.95744,-14.56128,70.373376,40.0704
--16.70922,-19.30203,-17.76555,-14.98068,73.328508,41.7285
--16.53,-19.19,-17.575,-15.01,72.542,39.102
--16.88148,-19.59804,-18.04572,-15.13512,74.094174,40.8366
--16.54044,-19.20212,-17.68116,-15.01948,72.587816,40.9052
--16.53696,-19.19808,-17.77248,-14.92128,72.477504,39.6096
--16.71096,-19.49612,-18.05552,-15.46244,73.249708,40.7288
--16.70922,-19.49409,-18.05364,-15.26877,73.242081,41.3226
--15.96,-18.6048,-17.2368,-14.6832,69.55824,39.8976
--16.12625,-18.7986,-17.5085,-14.83615,70.27359,40.5945
--16.46575,-19.19436,-17.8771,-15.14849,71.753034,40.8758
--16.625,-19.38,-18.05,-15.105,72.447,41.95
--17.15,-20.09,-18.718,-15.68,74.7446,40.9052
--16.3856,-19.0855,-17.7821,-15.0822,70.99806,40.7288
--17.07552,-19.8891,-18.62784,-15.71724,73.987452,42.1245
--16.55808,-19.2864,-18.06336,-15.0528,71.754816,40.8366
--16.896,-19.776,-18.432,-15.456,73.2192,40.848
--17.072,-19.982,-18.721,-15.714,73.9819,42.55
--16.48224,-19.18272,-17.97216,-15.08544,71.013312,40.6656
--16.64685,-19.3743,-18.15165,-15.2361,71.637885,40.318
--16.992,-19.776,-18.528,-15.648,73.1232,42.85
--17.169,-20.079,-18.818,-15.714,73.8849,42.66
--17.169,-20.079,-18.818,-15.714,73.8849,42.76
--16.82562,-19.67742,-18.5367,-15.58984,72.407202,40.9825
--16.74624,-19.47456,-18.3456,-15.33504,71.660736,40.6656
--17.444,-20.384,-19.11,-15.876,74.6466,41.9048
--16.4027,-19.1672,-17.96925,-15.02045,70.190655,41.2735
--16.2336,-18.9696,-17.784,-14.9568,69.46704,40.242
--16.5718,-19.3648,-18.2476,-15.2684,70.91427,40.242
--16.91712,-19.76832,-18.62784,-15.58656,72.391968,40.4544
--17.542,-20.384,-19.208,-16.072,74.6368,42.44
--16.6649,-19.4579,-18.2476,-15.2684,70.91427,40.033
--16.6649,-19.4579,-18.3407,-15.4546,70.91427,42.091
--17.005,-19.855,-18.715,-15.675,72.2665,40.4225
--17.54379,-20.48409,-19.30797,-16.17165,74.654217,42.1245
--16.66848,-19.46208,-18.34464,-15.45792,70.836384,41.2735
--16.84032,-19.66272,-18.53376,-15.61728,71.566656,41.4144
--16.929,-19.65645,-18.52785,-15.6123,71.543835,40.318
--16.929,-19.7505,-18.6219,-15.6123,71.55324,41.8275
--16.416,-19.152,-18.0576,-15.048,69.37584,40.4225
--17.1108,-19.9626,-18.82188,-15.6849,72.312142,41.9525
--16.9362,-19.7589,-18.62982,-15.71303,71.574263,41.3802
--17.2854,-20.26233,-19.01394,-15.74892,73.050021,42.0592
--17.557,-20.467,-19.303,-16.005,73.7879,41.7682
--17.20586,-20.05766,-18.91694,-15.77996,72.312142,42.1988
--16.85472,-19.46208,-17.87904,-15.08544,70.836384,41.0892
--16.5072,-18.24,-16.1424,-15.7776,69.37584,40.1375
--17.919,-18.711,-16.335,-18.018,75.3192,42.96
--16.85472,-16.94784,-14.71296,-17.04096,70.836384,40.7788
--17.38324,-16.90304,-14.30996,-17.19116,73.057628,42.7672
--16.94784,-16.296,-13.59552,-13.5024,70.836384,42.1465
--16.5984,-17.5104,-14.592,-14.4096,69.37584,40.7424
--17.12438,-18.53573,-15.80712,-14.86622,71.574263,40.9825
--17.30092,-18.82188,-16.1602,-14.82936,72.312142,42.385
--16.5984,-18.1488,-15.7776,-14.136,69.37584,40.983
--17.836,-19.404,-17.052,-15.19,74.5486,42.6594
--17.65764,-19.11294,-16.9785,-14.94108,73.803114,42.3423
--17.385,-18.715,-16.72,-14.535,72.2665,43.06
--17.75466,-19.11294,-17.26956,-14.84406,73.803114,42.385
--17.75466,-19.11294,-17.26956,-14.84406,73.803114,44.5896
--17.751,-19.206,-17.46,-15.035,73.7879,43.45
--17.21847,-18.72391,-17.03029,-14.58395,71.574263,41.7682
--17.93583,-19.602,-17.83782,-15.28956,74.556207,43.1046
--16.6896,-18.3312,-16.6896,-14.3184,69.37584,41.3535
--17.39232,-19.10304,-17.48736,-15.01632,72.296928,42.4608
--18.3,-20.1,-18.4,-15.8,75.98,43.06
--17.39598,-19.10706,-17.5861,-14.92442,72.312142,40.9825
--17.49104,-19.20212,-17.68116,-15.01948,72.312142,42.9828
--18.216,-19.998,-18.513,-15.741,75.3093,43.64
--18.032,-19.796,-18.326,-15.484,74.4506,42.7672
--17.31072,-19.09824,-17.68704,-14.95872,71.472576,42.1056
--17.13408,-18.90336,-17.59968,-14.8992,70.752576,42.0592
--18.032,-19.992,-18.522,-15.68,74.3036,44.1392
--18.032,-19.992,-18.62,-15.68,74.3134,45.23
--18.032,-19.992,-18.62,-15.68,74.3232,47.35
--16.69625,-18.50125,-17.1475,-14.6205,68.436575,44.3175
--17.76555,-19.68615,-18.34173,-15.65289,72.819549,42.9264
--18.315,-20.295,-18.909,-15.84,75.0618,44.15
--18.315,-20.295,-19.008,-15.939,75.0618,42.2235
--17.9487,-19.8891,-18.62784,-15.81426,73.560564,42.3324
--17.9487,-19.98612,-18.62784,-15.91128,73.473246,42.8175
--17.04775,-18.9829,-17.78495,-14.9283,69.785195,40.8758
--16.872,-18.8784,-17.6016,-14.7744,69.06576,39.0925
--18.315,-20.493,-19.206,-16.137,74.9727,41.0355
--16.872,-18.8784,-17.6928,-14.9568,69.06576,39.6864
--18.414,-20.493,-19.206,-16.236,74.9727,41.4315
--17.856,-19.872,-18.624,-15.648,72.7008,43.53
--17.856,-19.968,-18.72,-15.744,72.7008,44.34
--17.67,-19.76,-18.525,-15.58,71.9435,45.15
--17.856,-19.968,-18.72,-15.552,72.7008,42.1824
--17.86344,-19.97632,-18.7278,-15.8466,72.731092,41.9832
--17.856,-19.968,-18.816,-15.744,72.7008,40.944
--16.9632,-19.0608,-17.8752,-14.8656,69.06576,41.4144
--17.4933,-19.65645,-18.4338,-15.6123,71.224065,42.408
--18.228,-20.482,-19.306,-16.366,74.2154,45.04
--18.14274,-20.27718,-19.11294,-16.0083,73.473246,43.0155
--17.23392,-19.3536,-18.15552,-15.2064,69.875712,43.056
--18.7,-21,-19.7,-16.6,75.82,45.15
--18.7,-21,-19.8,-16.6,75.83,46.24
--17.95948,-20.1684,-19.01592,-15.94264,72.817528,43.855
--18.139,-20.37,-19.206,-16.199,73.5551,45.1438
--17.77622,-20.05766,-18.82188,-15.87502,72.074492,45.5318
--17.952,-20.16,-19.008,-16.032,72.7968,46.03
--18.424,-20.188,-18.13,-16.17,74.3134,44.7468
--17.5028,-18.3407,-16.0132,-16.3856,70.59773,45.9032
--17.68892,-17.59483,-15.24258,-16.65393,71.348447,46.3175
--17.86752,-17.1072,-14.54112,-17.01216,72.068832,45.8865
--18.424,-17.052,-14.308,-17.346,74.3036,47.187
--18.42588,-17.83782,-14.7015,-14.21145,74.320983,50.6088
--17.6814,-18.2457,-15.33015,-15.048,71.318115,48.5735
--17.68704,-18.62784,-15.80544,-14.86464,71.331456,51.9694
--17.87128,-18.82188,-16.1602,-14.7343,72.217082,49.9841
--17.50656,-18.43776,-16.01664,-14.34048,70.743264,51.0511
--17.86,-18.715,-16.435,-14.345,72.1715,51.05
--17.50656,-18.34464,-16.296,-14.15424,70.752576,50.2751
--18.711,-19.503,-17.424,-15.048,75.2103,52.55
--18.9,-19.7,-17.7,-15.2,76.07,53.03
--18.14967,-19.01394,-17.09334,-14.59656,72.963594,50.4691
--17.78112,-18.62784,-16.84032,-14.48832,71.576064,50.9088
--18.15156,-19.11196,-17.38324,-14.98224,73.057628,53.263
--18.522,-19.6,-17.836,-15.484,74.5584,53.0474
--18.711,-19.899,-18.117,-15.543,75.3093,54.24
--18.14967,-19.206,-17.57349,-14.98068,73.050021,52.7098
--18.14967,-19.30203,-17.66952,-15.17274,73.146051,53.9847
--17.2368,-18.3312,-16.872,-14.2272,69.38496,52.3735
--17.955,-19.19,-17.67,-14.915,72.3615,56.14
--17.78301,-19.00618,-17.50074,-15.0544,71.668353,54.5334
--18.144,-19.392,-17.952,-15.264,73.1328,55.6224
--19,-20.3,-18.8,-15.9,76.07,55.63
--18.144,-19.584,-18.048,-15.264,73.1232,53.5104
--18.05,-19.38,-17.955,-15.01,72.3615,51.908
--18.62,-19.992,-18.522,-15.582,74.6466,56.23
--17.8695,-19.1862,-17.8695,-15.14205,71.62848,54.5688
--17.5104,-18.8928,-17.5104,-14.92992,70.189056,51.6768
--18.43,-19.885,-18.43,-15.714,73.8849,51.8368
--18.24,-19.776,-18.336,-15.456,73.1232,50.5248
--17.5085,-18.9829,-17.6928,-14.9283,70.190655,49.9985
--18.0576,-19.57824,-18.24768,-15.2064,72.391968,50.7276
--17.5085,-18.9829,-17.78495,-15.02045,70.190655,47.7375
--17.8695,-19.3743,-18.15165,-15.2361,71.637885,47.0725
--18.62,-20.286,-18.914,-15.778,74.6466,49.1372
--18.62,-20.286,-18.914,-15.876,74.6466,49.1372
--18.43,-20.079,-18.818,-15.908,73.8849,49.55
--18.336,-19.968,-18.624,-15.648,73.1232,48.6912
--18.34364,-19.88028,-18.63176,-15.65452,73.163272,48.1572
--18.53082,-20.18016,-18.82188,-15.81426,73.900134,50.7934
--18.05,-19.76,-18.525,-15.58,72.3615,51.94
--18.53082,-20.18016,-18.9189,-15.71724,73.900134,47.9655
--18.53082,-20.18016,-18.9189,-15.81426,73.900134,50.4994
--18.909,-20.691,-19.404,-16.137,75.4083,50.9355
--18.145,-19.855,-18.62,-15.77,72.3615,50.54
--17.96355,-19.65645,-18.4338,-15.4242,71.637885,49.6386
--17.4192,-19.0608,-17.8752,-15.048,69.46704,46.7875
--18.909,-20.691,-19.404,-16.335,75.4182,48.8466
--17.60065,-19.25935,-18.15355,-15.1126,70.190655,48.9171
--18.34173,-20.07027,-18.91791,-15.74892,73.146051,50.9355
--17.96355,-19.7505,-18.52785,-15.33015,71.62848,51.2226
--17.96355,-19.7505,-18.52785,-15.51825,71.637885,46.8635
--18.527,-20.273,-19.109,-16.005,73.8849,48.3448
--17.23775,-18.86225,-17.77925,-14.89125,68.743425,47.9085
--18.43776,-20.07027,-18.91791,-15.84495,73.146051,47.7477
--18.432,-20.064,-18.912,-15.936,73.1232,48.24
--18.24768,-19.86336,-18.72288,-15.77664,72.391968,50.2368
--18.81792,-20.48409,-19.40598,-16.46568,74.654217,49.4505
--18.24768,-19.9584,-18.81792,-15.77664,72.391968,47.3517
--17.6928,-19.25935,-18.2457,-15.20475,70.190655,48.6358
--18.816,-20.58,-19.404,-16.366,74.6466,46.501
--17.328,-18.9525,-17.8695,-14.9815,68.743425,44.593
--17.5104,-18.9696,-17.5104,-14.6832,69.46704,46.512
--17.6928,-18.33785,-16.31055,-16.12625,70.190655,44.7735
--18.06336,-17.78112,-15.61728,-16.464,71.660736,46.795
--17.87904,-16.85472,-14.71296,-15.73728,70.929504,45.9295
--18.53572,-16.71096,-14.11788,-16.3268,73.144064,48.7354
--18.0576,-16.5528,-13.7313,-12.9789,71.637885,45.923
--18.53379,-18.43776,-15.46083,-15.17274,73.146051,48.6358
--18.34658,-18.82188,-15.87502,-15.11454,72.407202,48.6358
--17.41825,-17.8695,-15.3425,-13.98875,68.743425,47.8325
--18.15165,-18.6219,-16.1766,-14.38965,71.543835,48.2885
--18.34658,-18.72682,-16.54044,-14.44912,72.312142,49.0294
--17.6016,-17.9664,-15.96,-13.7712,69.37584,48.24
--18.15744,-18.53376,-16.55808,-14.30016,71.660736,49.8624
--18.15165,-18.52785,-16.64685,-14.20155,71.637885,45.8185
--18.15937,-18.53573,-16.65393,-14.20759,71.668353,47.7725
--18.15165,-18.52785,-16.83495,-14.4837,71.543835,50.5395
--18.15937,-18.62982,-16.9362,-14.58395,71.574263,48.0635
--18.914,-19.502,-17.738,-15.288,74.5486,48.6668
--18.15165,-18.81,-17.1171,-14.6718,71.543835,47.633
--18.721,-19.497,-17.751,-14.938,73.7879,51.13
--18.53379,-19.206,-17.66952,-14.98068,73.146051,49.5297
--17.97216,-18.71712,-17.13408,-14.71296,70.836384,48.8395
--18.335,-19.095,-17.575,-15.01,72.2665,46.303
--18.53379,-19.39806,-17.76555,-15.17274,73.050021,48.3448
--17.97216,-18.81024,-17.41344,-14.80608,70.836384,47.9568
--18.335,-19.285,-17.765,-14.915,72.2665,47.348
--18.528,-19.488,-17.952,-15.168,73.0176,50.94
--18.721,-19.691,-18.236,-15.52,73.7879,48.15
--18.34272,-19.29312,-17.86752,-15.11136,72.296928,48.0744
--18.34658,-19.29718,-17.96634,-15.01948,72.312142,46.7831
--18.624,-19.488,-18.144,-15.264,73.0272,49.14
--19.012,-19.992,-18.62,-15.68,74.5486,48.8432
--17.9683,-19.0855,-17.7821,-14.896,70.82117,47.481
--19.3,-20.5,-19,-16.2,76.07,49.95
--17.8771,-18.89075,-17.60065,-14.9283,70.098505,47.6658
--18.43776,-19.4832,-18.15264,-15.30144,72.296928,47.3517
--18.25346,-19.28845,-18.06528,-15.14849,71.574263,48.1605
--18.44164,-19.4873,-18.25152,-15.39972,72.312142,49.1372
--18.818,-19.885,-18.624,-15.617,73.7976,49.85
--18.43,-19.57,-18.24,-15.485,72.2665,47.0725
--18.62982,-19.78218,-18.53379,-15.55686,73.050021,47.1032
--18.06528,-19.27584,-17.97216,-15.3648,70.836384,47.28
--18.25152,-19.47456,-18.25152,-15.42912,71.566656,48.4512
--18.0614,-19.2717,-18.0614,-15.1753,70.82117,46.6872
--17.87904,-19.07712,-17.87904,-15.02208,70.013952,46.6848
--18.25152,-19.47456,-18.25152,-15.42912,71.566656,47.6736
--19.01394,-20.38608,-19.01394,-15.97563,74.556207,49.9257
--18.25152,-19.47456,-18.3456,-15.42912,71.576064,46.7904
--18.25152,-19.56864,-18.3456,-15.5232,71.566656,46.512
--18.0614,-19.3648,-18.1545,-15.1753,70.72807,45.3625
--18.2457,-19.5624,-18.33975,-15.51825,71.449785,48.2526
--18.06528,-19.36896,-18.25152,-15.3648,70.743264,47.2778
--18.06528,-19.36896,-18.25152,-15.17856,70.836384,48.9024
--18.62982,-19.97424,-18.82188,-15.74892,72.953991,47.4621
--19.206,-20.691,-19.404,-16.335,75.2103,46.9755
--18.25152,-19.66272,-18.43968,-15.5232,71.472576,46.6848
--18.25346,-19.66481,-18.44164,-15.80712,71.489582,46.3951
--17.6928,-19.0608,-17.9664,-14.9568,69.28464,46.5785
--18.25152,-19.66272,-18.53376,-15.5232,71.472576,47.0688
--18.34755,-19.66481,-18.53573,-15.52485,71.480173,48.2381
--18.72585,-20.1663,-18.91791,-15.84495,72.953991,48.3448
--18.1545,-19.551,-18.4338,-15.5477,70.73738,45.4385
--19.305,-20.79,-19.602,-16.335,75.2103,47.4606
--18.1545,-19.6441,-18.4338,-15.3615,70.72807,46.132
--18.33975,-19.7505,-18.6219,-15.70635,71.449785,48.6486
--18.5328,-20.05344,-18.81792,-15.77664,72.211392,49.1634
--19.305,-20.889,-19.602,-16.533,75.2103,48.2526
--18.525,-19.855,-18.335,-15.39,72.1715,47.34
--18.3456,-18.72192,-16.55808,-16.18176,71.472576,45.84
--18.7278,-18.15156,-15.75056,-17.2872,72.961588,47.481
--18.1545,-16.8511,-14.4305,-16.4787,70.72807,45.1535
--19.5,-17.6,-14.7,-17.9,75.97,47.94
--19.5,-17.5,-14.5,-14.4,75.97,49.44
--18.1584,-17.78592,-14.8992,-14.80608,70.743264,47.1711
--18.525,-18.715,-15.865,-15.2,72.0385,45.3625
--18.72,-19.008,-16.32,-14.688,72.9312,47.13
--18.1584,-18.43776,-16.01664,-14.4336,70.743264,45.7344
--18.1584,-18.43776,-16.10976,-14.34048,70.743264,46.4064
--19.404,-19.503,-17.226,-14.949,75.2103,48.45
--18.1545,-18.3407,-16.3856,-14.0581,70.59773,44.973
--17.9712,-18.15552,-16.31232,-14.19264,69.875712,46.8864
--18.7278,-18.91988,-17.09512,-14.8862,72.827132,46.2952
--18.44164,-18.53573,-16.84211,-14.48986,71.348447,47.7725
--18.34755,-18.53573,-16.9362,-14.48986,71.339038,45.8228
--18.5367,-18.82188,-17.20586,-14.82936,72.074492,46.9965
--19.404,-19.701,-18.018,-15.543,75.0618,47.3517
--18.9189,-19.404,-17.75466,-15.23214,73.560564,46.5795
--19.01592,-19.404,-17.85168,-15.32916,73.570266,46.403
--19.01592,-19.404,-17.9487,-15.23214,73.560564,46.501
--18.63176,-19.012,-17.5861,-15.01948,72.074492,46.0265
--18.915,-19.497,-18.042,-15.423,73.5551,46.54
--19.11,-19.698,-18.228,-15.68,74.3134,47.24
--17.689,-18.14025,-16.87675,-14.44,68.42755,45.0775
--18.33975,-18.9981,-17.6814,-14.95395,71.318115,47.3517
--18.44164,-19.00618,-17.68892,-15.14849,71.339038,45.6385
--18.1584,-18.90336,-17.59968,-14.8992,70.603584,48.1605
--18.5367,-19.39224,-17.96634,-15.49478,72.083998,45.5014
--18.816,-19.584,-18.144,-15.36,72.7968,48.45
--18.44164,-19.19436,-17.8771,-15.0544,71.348447,47.3845
--19.012,-19.788,-18.43,-15.617,73.5454,46.0265
--18.0614,-18.7986,-17.60065,-14.744,69.877345,46.3951
--18.816,-19.68,-18.432,-15.648,72.7872,49.14
--18.5367,-19.4873,-18.25152,-15.11454,72.074492,48.0494
--19.6,-20.5,-19.2,-16,75.83,48.85
--18.0614,-18.89075,-17.6928,-15.20475,69.86813,46.132
--18.0614,-18.89075,-17.6928,-14.83615,69.86813,46.398
--18.43968,-19.2864,-18.15744,-15.24096,71.340864,46.6848
--18.62,-19.475,-18.335,-15.485,72.029,48.15
--18.0614,-18.89075,-17.78495,-14.9283,69.877345,46.7875
--17.8752,-18.7872,-17.6016,-14.7744,69.15696,46.4075
--19.20996,-20.28807,-19.01394,-15.6816,74.320983,48.3516
--18.816,-19.872,-18.624,-15.552,72.7872,48.04
--18.63176,-19.67742,-18.44164,-15.39972,72.083998,48.1572
--18.82188,-19.87821,-18.62982,-15.55686,72.819549,48.4407
--18.62,-19.76,-18.525,-15.58,72.029,47.75
--18.816,-19.968,-18.72,-15.936,72.7872,46.6176
--18.82188,-19.97424,-18.72585,-15.84495,72.819549,47.5688
--18.82384,-19.97632,-18.7278,-15.75056,72.817528,48.0494
--19.01592,-20.27718,-19.01592,-16.0083,73.570266,49.1634
--18.62,-19.855,-18.62,-15.58,72.029,46.303
--19.208,-20.482,-19.208,-16.072,74.3036,49.95
--18.63176,-19.86754,-18.63176,-15.58984,71.988938,46.8734
--17.8752,-19.0608,-17.9664,-15.1392,69.06576,46.224
--19.208,-20.482,-19.306,-16.17,74.3134,47.2752
--18.63176,-19.86754,-18.72682,-15.87502,71.988938,47.5688
--19.404,-20.691,-19.503,-16.335,74.9727,48.0744
--18.816,-20.064,-18.912,-16.032,72.6912,46.3488
--17.8752,-19.0608,-17.9664,-15.048,69.06576,47.3568
--18.62,-19.855,-18.715,-15.77,71.9435,48.74
--18.4338,-19.65645,-18.6219,-15.8004,71.224065,45.7425
--18.25152,-19.46208,-18.43776,-15.45792,70.519776,47.8464
--18.0614,-19.3515,-18.2457,-15.4812,69.785195,47.0725
--17.8752,-18.9696,-17.6928,-14.6832,69.06576,47.3568
--17.689,-17.95975,-15.884,-15.43275,68.346325,46.398
--18.43968,-17.78112,-15.5232,-16.9344,71.340864,47.1744
--18.91791,-17.18937,-14.88465,-17.47746,72.723519,48.7575
--19.208,-16.954,-14.308,-17.346,74.2154,48.93
--19.208,-16.856,-13.916,-14.994,74.2154,47.83
--19.503,-18.711,-15.642,-15.345,74.9727,49.1535
--19.11294,-19.01592,-16.0083,-15.32916,73.473246,48.7575
--18.3407,-18.2476,-15.6408,-14.6167,70.50463,48.0494
--18.72682,-18.72682,-16.1602,-14.54418,71.988938,48.4515
--18.912,-18.816,-16.512,-14.496,72.7008,49.03
--18.72288,-18.5328,-16.44192,-14.35104,71.973792,49.1535
--18.91988,-18.7278,-16.71096,-14.59808,72.731092,48.4512
--18.912,-18.72,-16.8,-14.688,72.7008,48.45
--18.72288,-18.5328,-16.72704,-14.35104,71.973792,48.4128
--18.15355,-17.96925,-16.31055,-13.91465,69.785195,47.3748
--18.72288,-18.5328,-16.91712,-14.35104,71.973792,45.9168
--18.72682,-18.63176,-17.01574,-14.44912,71.979432,46.795
--17.9664,-17.9664,-16.416,-13.9536,69.06576,46.1985
--18.34464,-18.43776,-16.85472,-14.34048,70.519776,47.1711
--18.3407,-18.4338,-16.9442,-14.2443,70.50463,48.8432
--19.11294,-19.20996,-17.75466,-15.0381,73.482948,48.951
--18.72682,-18.82188,-17.39598,-14.63924,71.988938,47.8501
--18.53376,-18.62784,-17.31072,-14.5824,71.246784,46.6848
--18.912,-19.104,-17.664,-14.688,72.7008,46.896
--18.91791,-19.10997,-17.76555,-14.98068,72.713916,48.3448
--18.715,-19,-17.575,-14.725,71.934,46.474
--18.72288,-19.008,-17.67744,-14.82624,71.964288,47.4624
--19.11294,-19.404,-18.04572,-15.0381,73.473246,48.0744
--19.306,-19.6,-18.228,-15.288,74.2154,48.265
--18.72682,-19.10706,-17.77622,-14.82936,71.998444,46.9965
--18.34464,-18.624,-17.41344,-14.61984,70.519776,47.2778
--17.77925,-18.14025,-16.967,-14.079,68.346325,45.8185
--19.503,-19.899,-18.612,-15.444,74.9727,48.04
--18.91988,-19.30404,-18.15156,-15.07828,72.721488,47.187
--18.52785,-18.90405,-17.77545,-14.8599,71.224065,45.4385
--18.15355,-18.6143,-17.41635,-14.65185,69.785195,48.3448
--18.53376,-18.91008,-17.78112,-14.86464,71.246784,48.1344
--18.72288,-19.10304,-17.96256,-15.01632,71.973792,48.9456
--18.72288,-19.19808,-17.96256,-14.92128,71.973792,46.7904
--19.503,-19.998,-18.81,-15.741,74.9727,48.4308
--17.9664,-18.4224,-17.328,-14.4096,69.06576,45.258
--18.15355,-18.6143,-17.5085,-14.5597,69.77598,47.9568
--18.715,-19.19,-18.05,-14.915,71.934,46.1985
--19.306,-19.796,-18.62,-15.484,74.2154,47.9514
--18.53376,-19.09824,-17.8752,-14.86464,71.246784,48.951
--19.30797,-19.89603,-18.71991,-15.6816,74.222973,48.3516
--19.7,-20.3,-19.1,-15.9,75.72,49.95
--18.52785,-19.09215,-17.96355,-15.048,71.224065,46.303
--19.503,-20.097,-18.909,-15.741,74.9727,47.2725
--18.15355,-18.70645,-17.60065,-14.65185,69.785195,46.7831
--18.53376,-19.09824,-18.06336,-15.0528,71.237376,47.089
--19.503,-20.097,-19.008,-15.741,74.9628,46.6587
--18.15552,-18.80064,-17.69472,-14.65344,69.792768,44.5824
--18.3407,-18.9924,-17.8752,-14.896,70.50463,45.5014
--18.34464,-18.99648,-17.87904,-14.8992,70.519776,45.3572
--18.72288,-19.4832,-18.24768,-15.30144,71.973792,45.6288
--19.30797,-19.99404,-18.91593,-15.6816,74.213172,45.9657
--17.9664,-18.6048,-17.6016,-14.5008,69.06576,44.5728
--18.912,-19.584,-18.528,-15.36,72.6912,44.8896
--18.91791,-19.59012,-18.53379,-15.3648,72.713916,46.5988
--18.34464,-19.0896,-17.97216,-14.8992,70.519776,44.5824
--18.91791,-19.68615,-18.53379,-15.3648,72.713916,46.2108
--18.15355,-18.7986,-17.78495,-14.83615,69.785195,45.0775
--18.91988,-19.6882,-18.53572,-15.55848,72.721488,47.187
--18.53573,-19.28845,-18.15937,-14.96031,71.254357,46.1041
--18.91791,-19.68615,-18.53379,-15.3648,72.723519,46.7831
--19.30797,-20.09205,-19.01394,-15.87762,74.222973,47.4507
--18.52785,-19.28025,-18.2457,-15.048,71.224065,45.258
--17.9664,-18.696,-17.6928,-14.7744,69.06576,45.84
--18.912,-19.68,-18.624,-15.648,72.7008,46.512
--19.109,-19.982,-18.818,-15.52,73.4581,46.3951
--18.912,-19.776,-18.624,-15.36,72.7008,47.83
--18.15552,-18.8928,-17.87904,-14.83776,69.792768,45.3504
--18.53376,-19.38048,-18.25152,-15.14688,71.246784,47.5888
--19.11294,-19.98612,-18.82188,-15.81426,73.473246,47.6574
--19.503,-20.394,-19.206,-15.84,74.9727,48.9456
--19.11294,-19.98612,-18.82188,-15.62022,73.473246,49.1535
--19.7,-20.5,-19.5,-16.2,75.72,48.74
--19.503,-20.394,-19.305,-15.939,74.8836,48.05
--18.15552,-18.98496,-17.9712,-14.65344,69.71904,46.7808
--19.306,-20.188,-19.11,-15.778,74.1272,48.73
--19.30797,-20.19006,-19.11195,-15.6816,74.213172,46.8666
--18.912,-19.776,-18.72,-15.552,72.624,47.94
--18.15355,-18.9829,-17.96925,-14.9283,69.711475,45.0775
--18.52785,-19.3743,-18.33975,-15.4242,71.224065,46.132
--18.912,-19.776,-18.72,-15.552,72.624,47.45
--18.53376,-19.38048,-18.3456,-15.14688,71.237376,46.8636
--18.72288,-19.67328,-18.5328,-15.39648,71.973792,47.2626
--18.715,-19.57,-18.525,-15.485,71.9435,45.638
--18.72288,-19.67328,-18.5328,-15.49152,71.973792,46.224
--18.72288,-19.67328,-18.5328,-15.30144,71.935776,45.552
--17.77925,-18.68175,-17.59875,-14.71075,68.346325,47.2435
--18.72682,-19.67742,-18.63176,-15.30466,71.988938,47.481
--19.30797,-20.28807,-19.11195,-15.97563,74.134764,48.4308
--19.503,-20.493,-19.404,-16.038,74.8935,47.3517
--17.9664,-18.8784,-17.8752,-14.7744,68.9928,46.683
--18.72682,-19.67742,-18.63176,-15.39972,71.91289,47.8501
--18.72288,-19.67328,-18.62784,-15.58656,71.973792,48.3516
--18.912,-19.872,-18.816,-15.456,72.7008,46.224
--19.306,-20.286,-19.208,-15.974,74.1272,49.33
--19.306,-20.286,-19.208,-15.778,74.137,48.0494
--18.15355,-19.1672,-18.0614,-14.9283,69.711475,46.683
--19.11294,-20.08314,-19.01592,-15.81426,73.385928,47.9514
--19.503,-20.493,-19.404,-16.236,74.8935,47.8566
--17.77925,-18.68175,-17.689,-14.6205,68.274125,47.5285
--19.20996,-20.08314,-19.01592,-15.62022,73.385928,47.9655
--18.72682,-19.67742,-18.63176,-15.39972,71.903384,46.9812
--19.602,-20.592,-19.404,-16.137,74.8935,48.04
--18.53376,-19.47456,-18.43968,-15.24096,71.246784,46.795
--19.503,-20.592,-19.503,-16.137,74.9727,47.6784
--17.9664,-18.9696,-17.8752,-15.048,68.9928,46.4064
--18.52785,-19.5624,-18.52785,-15.33015,71.224065,45.258
--18.81,-19.76,-18.715,-15.675,71.9435,45.923
--19.206,-20.176,-19.109,-15.811,73.3805,46.76
--19.602,-20.592,-19.503,-16.137,74.9727,47.5596
--18.0576,-18.9696,-17.9664,-14.9568,69.06576,46.224
--19.503,-20.592,-19.503,-16.236,74.9727,47.23
--18.62784,-19.56864,-18.53376,-15.42912,71.246784,46.224
--19.008,-19.968,-18.912,-15.648,72.7008,48.85
--19.008,-19.968,-18.912,-15.552,72.624,47.13
--19.602,-20.592,-19.503,-16.236,74.8935,48.7575
--19.206,-20.176,-19.109,-15.908,73.4581,46.7831
--18.2457,-19.1672,-18.15355,-15.20475,69.785195,46.0265
--18.6219,-19.5624,-18.52785,-15.33015,71.148825,47.1636
--19.602,-20.691,-19.503,-16.335,74.9727,46.4706
--18.2457,-19.25935,-18.15355,-15.1126,69.711475,45.3625
--18.6219,-19.65645,-18.6219,-15.4242,71.23347,44.042
--19.404,-20.482,-19.404,-16.17,74.137,47.04
--18.0576,-19.0608,-18.0576,-15.048,69.06576,45.4464
--18.81792,-19.76832,-18.72288,-15.58656,71.89776,46.6752
--19.8,-20.9,-19.8,-16.4,75.65,48.15
--18.81,-19.855,-18.81,-15.39,71.8675,48.23
--18.81792,-19.86336,-18.81792,-15.58656,71.89776,47.3517
--19.8,-20.9,-19.8,-16.5,75.65,48.84
--19.20996,-20.27718,-19.20996,-15.81426,73.39563,46.1874
--18.0576,-19.0608,-18.0576,-14.9568,69.06576,46.512
--19.20996,-19.98612,-18.53082,-15.5232,73.39563,46.6587
--18.62784,-18.53376,-16.18176,-16.18176,71.17152,45.4464
--18.62982,-17.50074,-14.96031,-16.65393,71.254357,46.1041
--18.6219,-16.64685,-14.01345,-16.3647,71.224065,47.8566
--18.43776,-16.01664,-13.22304,-16.48224,70.519776,46.2108
--19.404,-16.268,-13.034,-17.346,74.137,46.84
--18.81,-15.485,-11.97,-16.815,71.8675,48.56
--19.206,-15.52,-11.737,-16.49,73.3805,46.5988
--18.82188,-15.01948,-10.83684,-16.06514,71.91289,44.9692
--18.62784,-14.48832,-10.06656,-15.24096,71.246784,46.795
--19.008,-14.4,-9.696,-15.36,72.7008,48.45
--19.20996,-14.26194,-9.31392,-15.42618,73.39563,45.9032
--19.404,-14.112,-8.918,-15.386,74.137,46.6872
--18.43776,-13.22304,-7.9152,-14.71296,70.44528,45.5318
--18.6219,-12.9789,-7.524,-14.6718,71.148825,46.2924
--19.40598,-13.32936,-7.35075,-15.19155,74.144565,47.5596
--18.43776,-12.38496,-6.61152,-14.52672,70.44528,46.224
--19.008,-12.48,-6.432,-14.88,72.624,45.5616
--18.81,-12.16,-5.89,-14.82,71.8675,45.7425
--19.404,-12.152,-5.684,-15.092,74.137,47.13
--19.008,-11.712,-5.28,-14.784,72.624,47.64
--19.602,-11.781,-4.95,-15.246,74.8935,46.14
--19.404,-11.368,-4.508,-15.092,74.137,46.54
--18.81792,-10.83456,-3.99168,-14.63616,71.89776,46.1835
--19.40598,-10.68309,-3.72438,-14.79951,74.144565,46.4706
--19.40598,-10.68309,-3.52836,-14.89752,74.144565,46.0251
--18.2457,-9.86005,-2.9488,-14.0068,69.711475,45.1535
--19.008,-11.616,-3.648,-9.312,72.624,45.95
--18.24768,-12.9024,-5.43744,-10.32192,69.709824,44.496
--18.2457,-13.73035,-6.4505,-9.9522,69.711475,44.973
--19.306,-14.798,-7.84,-10.486,74.2154,46.0012
--18.3407,-14.0581,-8.0997,-9.8686,70.43015,45.1535
--18.15552,-14.00832,-8.57088,-9.6768,69.71904,44.496
--19.306,-14.896,-9.604,-10.388,74.137,46.65
--18.72288,-14.44608,-9.78912,-10.26432,71.888256,46.3716
--19.306,-15.092,-10.486,-11.074,74.2154,46.109
--18.53573,-14.67804,-10.53808,-11.10262,71.254357,45.5318
--18.816,-15.264,-11.232,-11.328,72.7008,44.0064
--19.012,-15.423,-11.737,-11.058,73.3805,44.9595
--19.01592,-15.42618,-12.03048,-10.96326,73.463544,46.2952
--19.01592,-15.32916,-12.22452,-10.96326,73.473246,46.109
--18.0614,-14.46755,-11.7952,-10.41295,69.785195,44.498
--18.4338,-14.76585,-12.2265,-10.62765,71.224065,45.9657
--18.3456,-14.86464,-12.51264,-10.8192,71.246784,44.8896
--18.72585,-15.3648,-12.96405,-11.33154,72.646695,46.6587
--18.5367,-15.39972,-13.11828,-11.4072,71.988938,45.2172
--18.5328,-15.58656,-13.3056,-11.49984,71.973792,46.7577
--18.1584,-15.3648,-13.12992,-10.98816,70.519776,44.4
--19.11195,-16.17165,-14.01543,-11.85921,74.222973,45.9657
--18.3456,-15.42912,-13.54752,-11.10144,71.246784,46.795
--17.96925,-15.1126,-13.36175,-10.96585,69.711475,43.8235
--18.62982,-15.74892,-14.02038,-11.5236,72.723519,44.1738
--18.25152,-15.42912,-13.82976,-11.19552,71.256192,45.5112
--18.43,-15.675,-14.06,-11.495,71.9435,46.14
--17.6928,-15.1392,-13.5888,-11.0352,69.06576,44.9664
--18.82188,-16.20234,-14.553,-11.83644,73.39563,46.0746
--17.6016,-15.3216,-13.7712,-11.3088,69.06576,44.973
--17.97216,-15.73728,-14.15424,-11.73312,70.44528,43.7955
--18.528,-16.32,-14.688,-11.904,72.624,42.7776
--18.15165,-15.89445,-14.38965,-11.6622,71.13942,42.9875
--17.78495,-15.6655,-14.1911,-11.51875,69.711475,43.6525
--18.91593,-16.6617,-15.19155,-12.25125,74.144565,44.4906
--17.6928,-15.75765,-14.3754,-11.6109,69.711475,43.548
--18.335,-16.34,-14.82,-12.16,71.9435,44.973
--18.25152,-16.35032,-14.92442,-12.07262,71.988938,45.717
--18.816,-16.954,-15.484,-12.544,74.2154,46.54
--17.69472,-15.94368,-14.65344,-11.79648,69.71904,44.5824
--18.24768,-16.44192,-15.11136,-12.3552,71.973792,46.3716
--17.87904,-16.20288,-14.8992,-11.91936,70.44528,46.0265
--19.1,-17.5,-16,-13,75.65,46.43
--18.527,-16.975,-15.617,-12.513,73.3805,44.6588
--18.34173,-16.80525,-15.46083,-12.38787,72.646695,44.6491
--18.145,-16.72,-15.39,-12.445,71.8675,44.0325
--18.145,-16.72,-15.39,-12.54,71.858,45.65
--17.328,-16.0512,-14.7744,-11.9472,68.9928,43.3675
--18.43,-17.072,-15.811,-12.707,73.3805,45.54
--19,-17.7,-16.3,-13.2,75.65,46.35
--18.81,-17.523,-16.236,-12.969,74.8935,46.94
--18.0614,-16.82562,-15.58984,-12.54792,71.91289,46.0012
--18.2457,-17.09334,-15.84495,-12.77199,72.646695,46.7676
--19,-17.9,-16.5,-13.3,75.65,47.23
--17.5085,-16.49485,-15.20475,-12.3481,69.711475,45.7161
--18.333,-17.363,-16.102,-13.095,73.3805,48.23
--17.59968,-16.66848,-15.45792,-12.47808,70.44528,46.4064
--18.711,-17.721,-16.434,-13.365,74.8935,46.6587
--17.96256,-17.1072,-15.87168,-13.02048,71.888256,45.168
--17.78112,-17.02848,-15.71136,-12.60672,71.162112,45.3408
--17.3242,-16.67915,-15.38905,-12.5324,69.711475,45.6385
--17.59968,-16.85472,-15.64416,-12.94368,70.44528,45.5318
--17.68704,-17.12256,-15.80544,-12.98304,71.162112,44.5728
--18.612,-17.919,-16.731,-13.563,74.8836,46.76
--17.50656,-16.85472,-15.73728,-12.75744,70.44528,45.9198
--18.048,-17.472,-16.32,-13.344,72.624,45.168
--17.50656,-17.04096,-15.73728,-12.85056,70.44528,46.5018
--18.05364,-17.66952,-16.3251,-13.25214,72.637092,46.3716
--17.41344,-17.13408,-15.92352,-12.94368,70.44528,44.2944
--17.77248,-17.48736,-16.25184,-13.21056,71.89776,44.9856
--17.59296,-17.31072,-16.08768,-13.07712,71.17152,45.2172
--17.765,-17.48,-16.245,-13.205,71.8675,46.03
--18.139,-17.848,-16.587,-13.289,73.3805,46.03
--17.952,-17.76,-16.512,-13.344,72.624,43.5168
--18.326,-18.13,-16.954,-13.916,74.137,45.15
--17.59483,-17.50074,-16.27757,-13.07851,71.169676,44.8528
--17.32032,-17.32032,-16.10976,-13.12992,70.44528,42.384
--16.9632,-16.9632,-15.7776,-12.6768,68.9928,44.1888
--16.7865,-16.7865,-15.7035,-12.72525,68.28315,45.7425
--16.9632,-16.9632,-15.8688,-13.0416,68.9928,45.7344
--17.50074,-17.59483,-16.46575,-13.36078,71.169676,46.7055
--17.3166,-17.5028,-16.2925,-13.2202,70.42084,45.717
--16.9632,-17.1456,-15.96,-12.9504,68.9928,44.784
--17.68116,-17.87128,-16.6355,-13.49852,71.91289,45.423
--17.14176,-17.23392,-16.128,-13.08672,69.709824,44.8896
--17.945,-18.139,-16.975,-13.968,73.3805,46.1041
--17.2235,-17.5028,-16.3856,-13.5926,70.43015,45.4385
--17.5861,-17.96634,-16.82562,-13.7837,71.91289,44.8625
--17.39925,-17.8695,-16.64685,-13.44915,71.148825,45.0775
--18.315,-18.711,-17.523,-14.058,74.8935,47.3517
--17.04775,-17.3242,-16.31055,-13.0853,69.711475,44.973
--17.2272,-17.50656,-16.48224,-13.22304,70.435968,45.6385
--17.2272,-17.50656,-16.48224,-13.59552,70.435968,44.8625
--17.5861,-17.96634,-16.92068,-13.87876,71.81783,43.5045
--17.76555,-14.02038,-14.78862,0.76824,72.550665,46.0746
--17.9487,-13.38876,-14.35896,-8.2467,73.29861,45.5014
--17.76555,-15.26877,-15.07671,-11.23551,72.560268,46.1934
--17.31256,-15.52485,-14.96031,-11.57307,71.179085,45.5318
--17.66952,-16.03701,-15.3648,-12.00375,72.637092,44.7558
--17.13408,-15.73728,-14.8992,-12.29184,70.435968,43.6224
--16.9556,-15.94195,-14.83615,-12.62455,69.711475,44.1085
--17.48736,-16.53696,-15.39648,-12.64032,71.89776,44.4
--17.13408,-16.20288,-15.08544,-12.1056,70.44528,44.9595
--16.7808,-15.8688,-14.7744,-11.856,68.9928,44.6784
--17.66952,-16.61319,-15.55686,-12.67596,72.637092,46.0746
--17.848,-16.781,-15.714,-12.707,73.3805,45.0468
--17.67136,-16.61492,-15.65452,-12.58124,72.65426,45.8248
--17.664,-16.608,-15.552,-12.768,72.624,46.35
--16.7808,-15.8688,-14.8656,-12.1296,68.98368,44.2944
--17.21115,-16.5528,-15.4242,-12.69675,71.148825,45.9657
--16.6896,-16.1424,-14.9568,-12.4944,68.9928,44.1888
--17.39598,-16.92068,-15.6849,-12.92816,71.91289,44.0768
--17.0373,-16.5718,-15.3615,-12.8478,70.43015,44.213
--17.39598,-16.92068,-15.77996,-12.92816,71.91289,44.9595
--17.751,-17.363,-16.102,-13.192,73.3805,46.55
--17.934,-17.542,-16.366,-13.622,74.137,44.8154
--17.0373,-16.758,-15.5477,-12.9409,70.42084,42.0185
--16.6896,-16.416,-15.3216,-12.768,68.9928,44.422
--17.0373,-16.8511,-15.6408,-13.034,70.43015,44.6292
--16.77312,-16.68096,-15.57504,-12.81024,69.71904,44.3904
--17.836,-17.738,-16.562,-13.524,74.137,46.94
--17.472,-17.472,-16.224,-13.344,72.6144,45.95
--17.1171,-17.1171,-15.9885,-13.26105,71.148825,45.2727
--17.29,-17.385,-16.15,-13.3,71.8675,42.8925
--16.94784,-17.04096,-15.8304,-13.22304,70.519776,43.824
--17.654,-17.751,-16.587,-13.774,73.4581,44.93
--17.29,-17.48,-16.245,-13.49,71.9435,43.168
--17.654,-17.848,-16.587,-13.677,73.4581,44.94
--17.1171,-17.39925,-16.1766,-13.3551,71.224065,42.788
--18.018,-18.315,-17.028,-14.058,74.9727,44.85
--17.1171,-17.39925,-16.1766,-13.5432,71.224065,44.1144
--17.47928,-17.86344,-16.61492,-13.82976,72.731092,44.5312
--17.29,-17.67,-16.53,-13.585,71.9435,45.33
--17.03029,-17.59483,-16.37166,-13.36078,71.339038,43.5045
--17.195,-17.67,-16.53,-13.585,72.0385,45.05
--17.20586,-17.77622,-16.54044,-13.68864,72.083998,43.4532
--17.02305,-17.6814,-16.45875,-13.7313,71.318115,44.3025
--17.02305,-17.6814,-16.45875,-13.5432,71.318115,43.7085
--17.02305,-17.77545,-16.5528,-13.63725,71.30871,41.9425
--17.195,-17.86,-16.625,-13.585,72.029,42.028
--16.85472,-17.41344,-16.296,-13.31616,70.612896,42.7776
--17.20586,-17.87128,-16.73056,-13.87876,72.074492,43.7472
--17.195,-17.955,-16.815,-13.775,72.029,41.9425
--16.85472,-17.59968,-16.48224,-13.5024,70.603584,42.1465
--16.8511,-17.5959,-16.4787,-13.4995,70.58842,43.2725
--17.195,-17.955,-16.815,-13.68,72.1715,43.3675
--16.67915,-17.41635,-16.31055,-13.2696,69.86813,43.1165
--17.20586,-17.87128,-16.82562,-13.97382,72.083998,42.7285
--17.376,-18.24,-17.088,-14.208,72.7872,42.4608
--17.56062,-18.53082,-17.26956,-14.35896,73.570266,43.4532
--18.1,-19.1,-17.9,-14.5,75.82,44.04
--16.33525,-17.23775,-16.15475,-12.996,68.42755,42.123
--16.5072,-17.328,-16.2336,-13.1328,69.28464,42.672
--16.85472,-17.59968,-16.57536,-13.31616,70.743264,42.5664
--16.8511,-17.5959,-16.5718,-13.4064,70.72807,42.5125
--16.8511,-17.5959,-16.5718,-13.4064,70.72807,43.2768
--17.03029,-17.8771,-16.84211,-13.73714,71.480173,43.1165
--16.67915,-17.60065,-16.49485,-13.54605,70.006355,42.2275
--17.20586,-18.15646,-17.01574,-13.87876,72.217082,43.5918
--16.5888,-17.69472,-16.5888,-13.3632,70.013952,42.672
--17.738,-18.816,-17.64,-14.21,74.4506,43.4532
--17.02305,-17.96355,-16.929,-13.5432,71.449785,43.7976
--17.38143,-18.2457,-17.2854,-14.11641,73.050021,43.7877
--16.67915,-17.5085,-16.49485,-13.6382,70.08929,42.7285
--16.8511,-17.8752,-16.758,-13.8719,70.81186,41.838
--17.1072,-18.34272,-17.20224,-13.97088,72.296928,43.7976
--17.1072,-18.34272,-17.1072,-13.87584,72.287424,42.1824
--16.67915,-17.6928,-16.587,-13.36175,70.098505,42.7285
--16.68096,-17.60256,-16.5888,-13.3632,70.106112,42
--17.02848,-17.96928,-16.9344,-13.6416,71.566656,42.6594
--16.85472,-17.87904,-16.85472,-13.78176,70.836384,42.2338
--16.8511,-17.9683,-16.8511,-14.1512,70.82117,41.287
--16.8511,-17.9683,-16.8511,-13.7788,70.82117,42.2275
--17.38143,-18.53379,-17.38143,-14.02038,73.050021,44.1144
--16.5072,-17.6016,-16.5072,-13.3152,69.45792,41.7984
--17.64,-18.816,-17.738,-14.406,74.6368,43.94
--16.85472,-17.87904,-16.85472,-13.59552,70.920192,42.4375
--18,-19.3,-18.2,-15,76.16,43.75
--17.02848,-18.25152,-17.12256,-14.112,71.651328,42.1056
--17.919,-19.305,-18.018,-14.85,75.3984,43.1046
--17.28,-18.624,-17.472,-14.304,73.1136,43.54
--16.33525,-17.5085,-16.4255,-13.357,68.7344,41.667
--17.38143,-18.53379,-17.47746,-14.30847,73.146051,42.2338
--17.20586,-18.34658,-17.30092,-14.259,72.397696,41.8458
--17.195,-18.335,-17.29,-14.25,72.3615,43.14
--17.02848,-18.3456,-17.21664,-14.112,71.660736,41.3376
--17.38143,-18.72585,-17.57349,-14.4045,73.232478,41.9525
--16.5072,-17.784,-16.6896,-13.5888,69.54912,41.0875
--17.56062,-18.9189,-17.75466,-14.553,73.987452,42.1988
--17.46,-18.818,-17.751,-14.453,73.9722,43.14
--17.557,-18.818,-17.751,-14.55,73.9722,43.46
--17.20224,-18.43776,-17.39232,-14.256,72.477504,41.7984
--17.738,-19.11,-17.934,-14.994,74.7348,42.483
--17.02305,-18.4338,-17.21115,-14.01345,71.731935,40.812
--16.67915,-18.0614,-16.9556,-13.8225,70.27359,40.8025
--16.68096,-18.06336,-16.95744,-13.824,70.281216,41.1264
--17.919,-19.404,-18.216,-14.751,75.5073,42.6294
--17.20586,-18.63176,-17.49104,-14.259,72.492756,41.7682
--17.20586,-18.63176,-17.49104,-14.16394,72.492756,41.8458
--16.67915,-18.0614,-16.9556,-13.8225,70.27359,41.8458
--17.02848,-18.53376,-17.4048,-14.20608,71.745408,42.2772
--17.56062,-19.11294,-17.9487,-14.65002,73.987452,42.5205
--16.85472,-18.34464,-17.2272,-13.968,71.022624,41.3376
--17.56062,-19.11294,-17.9487,-14.553,73.987452,42.8175
--17.20586,-18.63176,-17.5861,-14.35406,72.492756,41.9525
--16.8511,-18.2476,-17.2235,-13.965,71.00737,42.1988
--16.33525,-17.689,-16.69625,-13.62775,68.905875,41.0875
--17.738,-19.306,-18.13,-14.896,74.8328,43.25
--17.02848,-18.53376,-17.49888,-14.20608,71.839488,41.4144
--17.20224,-18.81792,-17.67744,-14.44608,72.56304,42.8175
--16.68096,-18.15552,-17.0496,-14.10048,70.373376,41.6256
--17.20224,-18.72288,-17.67744,-14.35104,72.572544,42.6294
--16.9442,-18.3407,-17.3166,-14.1512,71.09116,41.993
--17.56062,-19.11294,-18.04572,-14.65002,74.084472,42.6294
--17.12438,-18.53573,-17.50074,-14.48986,71.847124,41.5645
--17.29728,-18.81792,-17.67744,-14.54112,72.572544,42.7086
--17.29728,-18.81792,-17.67744,-14.44608,72.572544,41.136
--17.29728,-18.81792,-17.67744,-14.44608,72.572544,42.7086
--17.83782,-19.40598,-18.22986,-14.79951,74.840436,42.6294
--16.7713,-18.2457,-17.1399,-14.09895,70.36574,41.6615
--17.12256,-18.53376,-17.49888,-14.20608,71.848896,41.52
--16.7713,-18.2457,-17.1399,-14.09895,70.36574,41.9525
--17.29728,-18.81792,-17.67744,-14.54112,72.572544,42.6294
--17.472,-19.008,-17.856,-14.688,73.392,41.232
--17.47928,-19.01592,-17.95948,-14.59808,73.32654,42.1988
--17.12256,-18.72192,-17.59296,-14.39424,71.839488,42.2772
--16.7713,-18.33785,-17.23205,-14.09895,70.45789,40.7075
--16.5984,-18.1488,-17.0544,-14.0448,69.73152,41.0496
--16.7713,-18.33785,-17.23205,-14.09895,70.45789,41.5548
--17.1171,-18.71595,-17.58735,-14.38965,71.91063,42.5304
--17.65764,-19.30698,-18.14274,-14.94108,74.181492,42.6294
--17.654,-19.303,-18.139,-15.035,74.1662,41.6615
--16.77312,-18.33984,-17.32608,-14.10048,70.465536,40.848
--18.2,-19.9,-18.7,-15.3,76.46,42.84
--16.4255,-17.95975,-16.967,-13.80825,69.00515,40.622
--17.57349,-19.10997,-18.05364,-14.88465,73.424538,42.4215
--17.568,-19.104,-18.048,-14.592,73.4016,41.3376
--17.0373,-18.5269,-17.5028,-14.3374,71.18426,40.983
--18.3,-19.9,-18.8,-15.4,76.45,43.25
--16.86345,-18.33785,-17.3242,-14.28325,70.45789,41.2735
--17.21115,-18.71595,-17.6814,-14.38965,71.901225,42.5205
--17.568,-19.104,-18.048,-14.688,73.4016,43.06
--17.385,-18.905,-17.86,-14.63,72.637,42.76
--18.3,-20,-18.8,-15.4,76.46,42.85
--18.117,-19.8,-18.612,-15.444,75.6954,42.3423
--17.385,-19,-17.86,-14.63,72.637,42.55
--17.57349,-19.206,-18.05364,-14.78862,73.424538,41.6615
--16.86345,-18.43,-17.3242,-14.1911,70.45789,40.907
--17.57349,-19.206,-18.14967,-14.59656,73.424538,42.3324
--17.0373,-18.5269,-17.5028,-14.3374,71.17495,41.797
--17.31256,-18.818,-17.68892,-14.48986,71.941214,41.7682
--17.3052,-18.81,-17.77545,-14.57775,71.91063,42.6294
--17.21115,-18.81,-17.77545,-14.57775,71.91063,40.907
--17.3052,-18.81,-17.77545,-14.38965,71.91063,42.9264
--18.03384,-19.50399,-18.42588,-14.99553,74.938446,42.8175
--18.032,-19.6,-18.424,-15.19,75.0288,43.06
--17.48,-19,-17.86,-14.82,72.7225,42.76
--16.7808,-18.24,-17.2368,-13.9536,69.8136,41.192
--17.3052,-18.81,-17.77545,-14.20155,72.00468,43.0254
--17.664,-19.2,-18.144,-14.4,73.488,41.4144
--17.66952,-19.206,-18.14967,-14.59656,73.510965,42.5304
--18.4,-20,-18.9,-15.5,76.55,43.54
--17.3052,-18.71595,-17.77545,-14.57775,71.995275,41.192
--18.032,-19.502,-18.424,-15.288,75.019,43.25
--17.13408,-18.53088,-17.50656,-14.52672,71.199552,41.7682
--18.032,-19.502,-18.424,-15.288,74.9308,43.64
--17.39925,-18.81,-17.6814,-14.6718,71.995275,41.192
--17.04775,-18.43,-17.41635,-14.3754,70.448675,41.667
--17.7674,-19.40008,-18.15156,-15.17432,73.42258,42.875
--18.315,-19.899,-18.711,-15.246,75.6954,42.36
--16.872,-18.4224,-17.328,-14.2272,69.73152,42.617
--17.40665,-18.91209,-17.8771,-14.77213,71.941214,42.8352
--17.2235,-18.7131,-17.5959,-14.5236,71.09116,42.6075
--18.5,-20.1,-19,-15.6,76.36,44.45
--17.04775,-18.52215,-17.5085,-14.46755,70.36574,42.7285
--17.2235,-18.7131,-17.689,-14.6167,71.10047,42.1325
--17.5824,-19.10304,-18.0576,-14.92128,72.572544,42.3936
--17.9487,-19.59804,-18.4338,-15.5232,74.181492,43.4214
--17.04775,-18.6143,-17.5085,-14.3754,70.45789,41.458
--17.9487,-19.59804,-18.4338,-15.42618,74.094174,43.2135
--17.9487,-19.59804,-18.4338,-15.13512,74.084472,43.3125
--17.40665,-19.10027,-17.97119,-14.86622,71.941214,42.3308
--17.945,-19.691,-18.527,-15.132,74.1662,43.86
--17.67744,-19.29312,-18.15264,-14.7312,72.667584,43.2036
--17.2235,-18.8993,-17.7821,-14.7098,71.18426,42.6692
--17.1399,-18.70645,-17.60065,-14.46755,70.45789,41.192
--17.4933,-19.09215,-17.96355,-15.048,71.91063,43.2036
--18.042,-19.691,-18.527,-15.326,74.1662,42.6218
--17.14176,-18.70848,-17.60256,-14.7456,70.465536,42
--17.1399,-18.70645,-17.60065,-14.65185,70.45789,42.4375
--17.49888,-19.09824,-17.96928,-14.95872,71.933568,41.7888
--18.414,-20.097,-19.008,-15.642,75.6954,43.3125
--17.856,-19.488,-18.336,-15.36,73.4016,43.75
--17.86158,-19.49409,-18.43776,-15.17274,73.424538,42.5442
--18.04572,-19.69506,-18.62784,-15.23214,74.181492,43.4214
--17.95761,-19.49409,-18.43776,-15.3648,73.424538,43.0098
--17.67744,-19.29312,-18.24768,-15.30144,72.667584,43.7481
--18.04572,-19.79208,-18.62784,-15.5232,74.181492,43.8966
--17.59483,-19.19436,-18.06528,-14.86622,71.941214,42.6218
--17.77248,-19.38816,-18.24768,-15.30144,72.667584,43.1046
--17.765,-19.38,-18.335,-15.2,72.6275,43.94
--17.77622,-19.39224,-18.34658,-14.92442,72.67337,44.0768
--18.139,-19.788,-18.721,-15.423,74.1662,43.3008
--17.95948,-19.59216,-18.53572,-15.3664,73.51862,43.9628
--17.0544,-18.6048,-17.6016,-14.592,69.73152,43.168
--17.41344,-18.99648,-17.97216,-14.80608,71.19024,43.0098
--17.765,-19.38,-18.335,-15.2,72.732,42.0185
--18.326,-19.992,-18.914,-15.68,75.0288,43.3552
--17.77622,-19.39224,-18.34658,-15.2096,72.682876,42.9128
--17.23205,-18.70645,-17.78495,-14.65185,70.55004,41.743
--18.236,-19.788,-18.721,-15.52,74.2535,42.8352
--17.3242,-18.7986,-17.78495,-14.5597,70.55004,43.2232
--18.05552,-19.6882,-18.53572,-15.3664,73.528224,43.561
--17.6814,-19.28025,-18.15165,-15.14205,71.995275,43.7976
--17.68704,-19.2864,-18.15744,-15.0528,72.027648,44.933
--17.86752,-19.4832,-18.34272,-15.2064,72.762624,42.5664
--18.23976,-19.79208,-18.72486,-15.42618,74.26881,44.3025
--17.1456,-18.696,-17.6016,-14.592,69.8136,42.7776
--17.68704,-19.19232,-18.15744,-15.14688,72.01824,44.0412
--18.048,-19.68,-18.624,-15.36,73.4976,42.3936
--17.1456,-18.696,-17.6928,-14.592,69.8136,42.408
--17.86,-19.475,-18.43,-15.2,72.732,44.64
--18.236,-19.885,-18.818,-15.714,74.2535,43.4075
--17.5959,-19.0855,-18.0614,-14.9891,71.27736,42.693
--17.96634,-19.58236,-18.44164,-15.2096,72.76843,43.7472
--18.333,-19.885,-18.818,-15.423,74.2535,44.4648
--17.5959,-19.0855,-18.0614,-14.896,71.26805,45.2172
--18.52389,-20.09205,-19.01394,-15.6816,75.026655,45.5697
--17.78112,-19.2864,-18.25152,-15.0528,72.01824,44.9232
--18.33678,-19.79208,-18.82188,-15.32916,74.26881,46.5795
--18.333,-19.788,-18.818,-15.423,74.2535,46.14
--18.9,-20.5,-19.4,-16.1,76.55,46.65
--17.955,-19.475,-18.43,-15.105,72.732,45.44
--18.15156,-19.6882,-18.63176,-15.3664,73.51862,45.031
--17.96634,-19.4873,-18.44164,-14.92442,72.777936,44.5715
--17.41635,-18.89075,-17.8771,-14.65185,70.55004,44.2902
--17.2368,-18.696,-17.6928,-14.592,69.82272,43.6224
--17.41635,-18.7986,-17.8771,-14.744,70.55004,43.168
--18.81,-20.295,-19.206,-15.84,75.7845,45.04
--17.328,-18.696,-17.6928,-14.5008,69.8136,43.44
--17.41635,-18.89075,-17.8771,-14.5597,70.540825,43.548
--18.9,-20.5,-19.4,-16,76.56,45.85
--18.43,-19.885,-18.818,-15.52,74.2535,44.0768
--17.328,-18.696,-17.6928,-14.5008,69.8136,43.1424
--18.4338,-19.8891,-18.82188,-15.42618,74.26881,44.0412
--17.8695,-19.1862,-18.2457,-14.76585,72.00468,44.3025
--18.2476,-19.59216,-18.53572,-15.27036,73.51862,43.9628
--18.0614,-19.39224,-18.34658,-15.11454,72.76843,43.9628
--17.5085,-18.7986,-17.78495,-14.744,70.45789,43.3008
--18.43,-19.885,-18.818,-15.52,74.2535,45.04
--18.62,-20.09,-18.914,-15.484,74.9406,44.86
--18.0614,-19.4873,-18.44164,-15.30466,72.682876,43.5918
--18.24,-19.68,-18.624,-15.36,73.4016,42.7776
--17.96355,-19.28025,-18.15165,-14.95395,71.91063,44.4114
--18.336,-19.68,-18.528,-15.168,73.4016,44.45
--18.15646,-19.4873,-18.34658,-15.11454,72.682876,43.5142
--18.336,-19.68,-18.528,-15.36,73.4016,43.344
--18.71991,-20.09205,-19.01394,-15.6816,74.938446,44.7975
--18.909,-20.196,-19.107,-15.84,75.6855,44.94
--19.1,-20.5,-19.3,-15.8,76.46,45.16
--17.78592,-19.0896,-17.97216,-14.61984,71.19024,43.4075
--17.23775,-18.50125,-17.5085,-14.2595,69.00515,42.2275
--18.53082,-19.8891,-18.82188,-15.5232,74.181492,43.6688
--18.15646,-19.4873,-18.44164,-15.11454,72.682876,43.5708
--17.78592,-19.0896,-17.97216,-14.8992,71.199552,43.4075
--17.4192,-18.696,-17.6016,-14.6832,69.73152,42.028
--17.4192,-18.696,-17.6928,-14.5008,69.73152,42.332
--17.4192,-18.696,-17.6928,-14.592,69.73152,42.332
--18.24768,-19.4832,-18.43776,-15.2064,72.65808,43.0656
--18.24,-19.475,-18.43,-15.295,72.6275,44.56
--17.4192,-18.696,-17.6928,-14.592,69.73152,42.7975
--19.008,-20.394,-19.206,-15.741,75.6954,44.16
--18.25152,-19.4873,-18.44164,-15.11454,72.682876,42.9128
--17.6928,-18.89075,-17.8771,-14.83615,70.45789,42.8352
--18.24768,-19.4832,-18.43776,-15.30144,72.667584,43.9065
--17.328,-18.5915,-17.5085,-14.53025,69.00515,43.2725
--18.0576,-18.9981,-17.3052,-14.2956,71.920035,44.8074
--18.43776,-18.53379,-16.22907,-14.11641,73.424538,44.9856
--18.624,-17.751,-15.035,-13.192,74.1662,43.4075
--17.8752,-16.1994,-13.4995,-11.3582,71.17495,43.0635
--17.5104,-15.3216,-12.4944,-9.9408,69.73152,43.2384
--18.62784,-15.62022,-12.6126,-9.60498,74.181492,44.1936
--18.432,-15.072,-11.808,-8.544,73.4016,45.15
--17.8752,-14.1512,-10.7065,-7.2618,71.09116,43.7285
--18.816,-14.602,-10.682,-6.468,74.8328,43.9628
--18.432,-13.728,-9.696,-5.856,73.3152,42.576
--18.24,-13.11,-8.93,-5.13,72.542,45.44
--18.24768,-12.64032,-8.36352,-4.56192,72.572544,43.248
--18.06336,-11.94816,-7.62048,-4.51584,71.839488,43.0656
--18.43776,-11.42757,-7.29828,-5.18562,73.328508,44.8767
--18.24,-10.545,-6.935,-5.605,72.5325,42.693
--19.008,-10.296,-6.93,-5.643,75.5964,45.55
--18.62784,-9.50796,-6.11226,-5.04504,74.084472,45.4905
--18.25152,-8.65046,-5.41842,-4.56288,72.549792,44.345
--17.97216,-7.4496,-4.656,-4.46976,71.115744,43.248
--18.816,-7.154,-4.116,-3.724,74.8328,45.25
--19.008,-6.435,-3.267,-3.465,75.5073,45.2034
--18.432,-5.472,-2.208,-2.88,73.2096,46.14
--17.6928,-4.6075,-1.1058,-2.5802,70.27359,43.453
--18.432,-3.936,0,-2.208,73.2096,46.03
--18.624,-3.201,0.873,-1.455,73.9722,46.36
--18.06336,-2.352,1.78752,-1.03488,71.754816,43.824
diff --git a/tests/integration/models/refrig_case_osw/python/mt-door_data.csv b/tests/integration/models/refrig_case_osw/python/mt-door_data.csv
deleted file mode 100644
index fb786211..00000000
--- a/tests/integration/models/refrig_case_osw/python/mt-door_data.csv
+++ /dev/null
@@ -1,8187 +0,0 @@
-1,2,3,4,5,6
-prod,case,supply,return,zone,rh
-degF,degF,degF,degF,degF,pct
--5.79744,-14.7312,-13.97088,-10.64448,68.85648,52.6272
--5.952,-14.88,-14.016,-10.944,69.5616,54.63
--5.80545,-14.28325,-13.4539,-10.5051,66.77189,52.9911
--6.08,-14.82,-13.965,-11.115,68.837,51.984
--6.08,-15.105,-13.965,-11.21,68.837,54.72
--6.37,-15.68,-14.504,-11.662,71.1088,54.72
--5.928,-14.592,-13.5888,-10.7616,66.09264,52.7328
--6.20994,-15.0544,-14.01941,-11.10262,68.177614,53.2821
--6.17405,-14.65185,-13.73035,-10.6894,66.77189,53.2821
--6.499,-15.326,-14.356,-11.252,70.2862,53.0008
--6.53072,-15.17432,-14.21392,-10.85252,69.686624,53.6158
--6.39812,-14.86622,-13.92532,-10.91444,68.271704,53.0687
--6.55914,-15.01948,-14.06888,-10.9319,68.975536,53.1754
--6.42528,-14.80608,-13.87488,-10.98816,67.55856,53.0687
--6.65,-15.105,-14.155,-11.115,68.932,54.64
--6.74784,-15.2064,-14.16096,-11.21472,68.961024,52.7328
--6.816,-15.456,-14.4,-11.328,69.648,52.5312
--6.77376,-15.14688,-14.112,-11.00736,68.264448,52.4448
--6.84432,-15.30466,-14.259,-11.31214,69.051584,53.2532
--7.081,-15.617,-14.647,-11.446,70.4608,54.33
--6.935,-15.295,-14.345,-11.305,68.9985,54.23
--7.17948,-15.62022,-14.65002,-11.54538,70.475328,53.9847
--7.125,-15.295,-14.345,-11.4,69.0935,51.6135
--7.2765,-15.71724,-14.65002,-11.73942,70.572348,52.8514
--7.448,-15.974,-14.896,-11.858,71.2852,53.94
--7.07712,-15.17856,-14.15424,-11.26752,67.726176,52.2151
--7.0224,-14.8656,-13.8624,-10.944,66.42096,51.2928
--7.623,-16.137,-15.048,-11.979,72.1017,53.54
--7.722,-16.137,-15.048,-11.979,72.2007,52.8957
--7.584,-15.648,-14.688,-11.712,70.0128,51.0048
--7.43232,-15.42912,-14.39424,-11.57184,68.612544,50.7168
--7.58716,-15.75056,-14.69412,-11.71688,70.041972,52.3614
--7.5264,-15.5232,-14.48832,-11.47776,68.753664,50.8992
--7.776,-15.744,-14.784,-11.808,70.1472,52.43
--7.857,-15.908,-14.938,-12.125,70.8779,51.5361
--7.5563,-15.20475,-14.1911,-11.33445,67.426155,49.704
--7.5563,-15.20475,-14.1911,-11.4266,67.426155,49.989
--7.80615,-15.6123,-14.57775,-11.6622,68.816385,50.654
--7.98504,-15.77996,-14.7343,-11.8825,69.555402,51.5676
--8.316,-16.434,-15.345,-12.375,72.4383,53.32
--7.98,-15.77,-14.725,-11.97,69.6065,52.62
--8.0801,-15.77996,-14.7343,-11.78744,69.659968,50.8571
--7.9968,-15.5232,-14.5824,-11.66592,68.932416,49.9392
--8.17344,-15.77664,-14.7312,-11.78496,69.721344,49.5648
--8.6,-16.7,-15.6,-12.6,73.37,51.93
--8.26848,-15.96672,-14.82624,-12.07008,69.730848,50.1312
--8.439,-16.199,-15.132,-12.028,71.1689,51.0414
--8.2764,-15.8004,-14.76585,-11.75625,69.08913,52.3116
--8.722,-16.464,-15.386,-12.348,71.9908,51.0874
--8.20135,-15.4812,-14.46755,-11.51875,67.69339,54.2424
--8.208,-15.3216,-14.3184,-11.4,67.00464,53.4048
--8.208,-15.3216,-14.3184,-11.4,66.99552,52.7328
--8.918,-16.464,-15.386,-12.25,71.9908,52.4692
--8.918,-16.464,-15.386,-12.446,72.0888,53.93
--9.016,-16.464,-15.386,-12.25,72.0888,52.6554
--8.3904,-15.3216,-14.3184,-11.5824,67.08672,51.0435
--8.928,-16.224,-15.168,-12.288,70.6176,52.0608
--8.39325,-15.25225,-14.2595,-11.3715,66.47815,52.079
--8.84352,-15.89952,-14.86464,-12.04224,69.299328,52.7328
--8.75328,-15.73728,-14.71296,-11.91936,68.592192,53.2918
--9.215,-16.393,-15.326,-12.222,71.5472,53.1754
--9.31,-16.562,-15.484,-12.348,72.2848,55.23
--8.9376,-15.89952,-14.95872,-12.2304,69.384,53.9392
--8.93952,-15.8304,-14.80608,-12.01248,68.676,52.5312
--9.0288,-15.9885,-14.95395,-12.0384,69.37128,54.3807
--9.0307,-15.827,-14.8029,-11.9168,68.67056,54.1254
--9.604,-16.66,-15.582,-12.544,72.2848,54.42
--9.31392,-16.1568,-15.11136,-12.3552,70.101504,51.7824
--9.1238,-15.827,-14.896,-12.103,68.75435,51.528
--9.31095,-16.08255,-15.048,-12.2265,69.455925,53.6877
--9.50697,-16.42113,-15.3648,-12.38787,70.918155,52.7098
--9.215,-15.75765,-14.744,-11.7952,68.052775,52.573
--9.603,-16.42113,-15.3648,-12.57993,71.014185,54.1728
--9.59904,-16.25184,-15.30144,-12.26016,70.28208,54.0936
--9.69903,-16.42113,-15.46083,-12.38787,71.004582,54.2817
--9.3024,-15.5952,-14.592,-11.7648,67.4424,51.984
--9.69612,-16.35032,-15.30466,-12.16768,70.287364,52.7098
--9.78912,-16.34688,-15.30144,-12.16512,70.28208,51.9648
--9.69024,-16.18176,-15.14688,-12.13632,69.57216,53.4394
--9.68715,-16.1766,-15.14205,-12.13245,69.54057,52.573
--10.19304,-16.85772,-15.77961,-12.7413,72.478395,53.8758
--10.296,-17.028,-15.939,-13.068,73.2996,54.82
--9.7776,-16.01664,-14.99232,-12.19872,68.946048,52.7424
--10.08,-16.608,-15.456,-12.48,71.088,53.94
--10.07636,-16.44538,-15.39972,-12.45286,70.382424,52.6031
--10.6,-17.2,-16.2,-13.1,74.05,54.53
--9.87072,-16.10976,-15.08544,-12.29184,68.95536,52.3994
--10.486,-16.954,-15.876,-12.936,72.569,52.9396
--10.593,-17.127,-16.038,-12.969,73.2996,53.0046
--10.0548,-16.1063,-15.0822,-12.2892,68.94055,51.1385
--10.37124,-16.61319,-15.55686,-12.86802,71.110215,51.8271
--10.25581,-16.27757,-15.24258,-12.2317,69.664236,52.0405
--10.25145,-16.3647,-15.2361,-12.4146,69.63462,53.1927
--10.791,-17.226,-16.137,-13.068,73.3095,53.6877
--10.2432,-16.20288,-15.17856,-12.38496,69.04848,51.7301
--10.1365,-16.12625,-15.02045,-12.25595,68.32001,51.243
--10.44288,-16.36992,-15.33504,-12.51264,69.750912,52.3614
--11.1,-17.4,-16.3,-13.5,74.14,53.25
--10.545,-16.53,-15.58,-12.635,70.433,50.863
--10.75536,-16.70922,-15.74892,-12.86802,71.196642,53.1927
--10.976,-17.15,-16.072,-13.034,72.6572,51.5676
--10.85139,-16.80525,-15.74892,-12.86802,71.196642,52.2027
--11.187,-17.325,-16.236,-13.167,73.4877,51.9057
--11.3,-17.5,-16.4,-13.5,74.25,52.44
--10.61568,-16.296,-15.27168,-12.5712,69.132288,51.2548
--10.3968,-15.96,-14.9568,-12.1296,67.69776,50.6208
--10.59725,-16.2184,-15.1126,-12.3481,68.41216,50.6534
--11.27,-17.248,-16.072,-13.132,72.7552,52.22
--11.1573,-17.07552,-16.0083,-13.00068,72.027648,50.7836
--10.5792,-16.0512,-15.048,-12.1296,67.70688,49.153
--11.6,-17.6,-16.5,-13.5,74.24,51.93
--10.89504,-16.38912,-15.3648,-12.47808,69.132288,50.2368
--11.466,-17.248,-16.17,-13.23,72.7552,50.4994
--11.115,-16.72,-15.675,-12.92,70.623,49.153
--11.21708,-16.73056,-15.6849,-12.73804,70.572544,51.0972
--10.7616,-16.0512,-15.048,-12.1296,67.70688,50.2368
--11.446,-17.072,-16.005,-12.998,72.1098,51.05
--11.54538,-17.07552,-16.0083,-13.29174,72.124668,50.7177
--11.54538,-17.07552,-16.0083,-13.29174,72.124668,51.2325
--11.286,-16.5528,-15.6123,-12.88485,69.91677,50.8266
--11.52,-16.896,-15.936,-13.152,71.3664,49.9488
--11.88,-17.523,-16.434,-13.464,73.5867,51.3018
--11.15015,-16.31055,-15.2969,-12.5324,68.50431,49.4285
--11.49984,-16.91712,-15.77664,-13.02048,70.652736,49.6704
--11.50226,-16.92068,-15.77996,-12.92816,70.667604,49.9065
--11.95722,-17.34777,-16.26966,-13.42737,72.860634,51.4107
--11.83644,-17.26956,-16.20234,-13.0977,72.124668,50.5395
--11.24352,-16.31232,-15.29856,-12.71808,68.640768,49.5648
--11.2176,-16.2336,-15.2304,-12.4032,67.92576,48.108
--11.93346,-17.26956,-16.20234,-13.0977,72.270198,50.7052
--11.191,-16.0645,-15.07175,-12.36425,67.227225,49.3335
--11.54688,-16.57536,-15.55104,-12.75744,69.458208,49.9584
--11.90772,-17.18937,-16.03701,-13.15611,71.619174,52.0146
--11.875,-17.005,-15.865,-13.015,70.851,52.03
--12.1275,-17.36658,-16.20234,-13.29174,72.347814,50.7177
--11.76,-16.74624,-15.71136,-12.88896,70.164864,49.6272
--11.7306,-16.5718,-15.5477,-12.7547,69.42467,48.2885
--11.73312,-16.66848,-15.55104,-12.85056,69.458208,49.2864
--12.222,-17.363,-16.296,-13.289,72.3426,50.94
--12.19708,-17.19116,-16.13472,-13.15748,71.626632,50.8914
--12.07262,-17.01574,-15.97008,-13.02322,70.895748,50.1074
--11.94816,-16.84032,-15.80544,-12.98304,70.164864,50.4994
--12.29312,-17.19116,-16.13472,-13.34956,71.722672,50.421
--11.6736,-16.3248,-15.3216,-12.5856,68.01696,48.4975
--12.16,-17.005,-15.96,-13.015,70.946,51.23
--12.38787,-17.18937,-16.13304,-13.15611,71.715204,48.9171
--11.88735,-16.49485,-15.4812,-12.62455,68.81762,47.2435
--11.88735,-16.49485,-15.4812,-12.62455,68.81762,48.5291
--12.35,-17.005,-15.96,-13.3,70.946,50.43
--12.1056,-16.66848,-15.64416,-12.85056,69.542016,48.7968
--12.61,-17.46,-16.296,-13.386,72.4299,48.7328
--12.57993,-17.2854,-16.13304,-13.06008,71.715204,50.1878
--12.45286,-17.01574,-15.97008,-13.11828,70.981302,49.5194
--11.82275,-16.245,-15.25225,-12.54475,67.389675,47.6235
--13.068,-17.82,-16.632,-13.761,74.0223,49.4505
--12.29184,-16.7616,-15.73728,-12.75744,69.542016,47.8464
--12.54792,-17.1108,-16.06514,-13.02322,70.990808,48.1702
--12.54792,-17.20586,-16.06514,-13.21334,70.990808,48.7354
--12.901,-17.46,-16.393,-13.483,72.5366,49.95
--12.1296,-16.416,-15.4128,-12.4944,68.19936,47.348
--12.25595,-16.587,-15.57335,-12.7167,68.900555,49.4118
--12.86802,-17.2854,-16.22907,-13.25214,71.801631,47.9568
--13.266,-17.82,-16.731,-13.662,74.0322,51.13
--12.73,-17.1,-16.055,-13.3,71.0315,49.153
--12.44025,-16.67915,-15.57335,-12.80885,68.992705,47.633
--12.7008,-16.9344,-15.89952,-12.98304,70.437696,47.28
--12.312,-16.5072,-15.4128,-12.768,68.28144,49.0752
--13.06008,-17.2854,-16.22907,-13.15611,71.897661,49.3416
--12.79488,-17.02848,-15.9936,-13.1712,70.447104,48.5184
--12.4032,-16.5072,-15.504,-12.6768,68.28144,47.28
--12.92816,-17.20586,-16.1602,-13.3084,71.171422,48.0538
--13.15611,-17.38143,-16.3251,-13.4442,71.897661,48.1605
--12.88485,-17.02305,-15.9885,-13.3551,70.415235,47.063
--12.62592,-16.77312,-15.6672,-12.9024,69.000192,47.3568
--13.152,-17.376,-16.32,-13.344,71.8848,48.1344
--13.386,-17.557,-16.49,-13.58,72.6239,48.8298
--12.4545,-16.4255,-15.3425,-12.635,67.570175,47.6235
--13.662,-18.018,-16.83,-13.959,74.1213,49.44
--12.5856,-16.5072,-15.504,-12.768,68.28144,46.5785
--13.205,-17.195,-16.15,-13.49,71.1265,46.303
--12.6768,-16.5984,-15.5952,-12.8592,68.28144,46.7904
--12.94368,-16.94784,-15.92352,-13.0368,69.718944,47.4621
--13.3056,-17.29728,-16.25184,-13.3056,71.156448,49.0446
--13.86,-18.018,-16.929,-13.959,74.2203,47.8566
--13.4456,-17.47928,-16.3268,-13.34956,72.001188,51.6754
--13.034,-16.8511,-15.9201,-13.1271,69.78776,49.153
--13.67982,-17.65764,-16.59042,-13.67982,72.735894,50.7934
--13.40064,-17.29728,-16.25184,-13.3056,71.260992,49.1535
--12.8592,-16.5984,-15.5952,-12.768,68.37264,47.3568
--13.3551,-17.1171,-16.08255,-13.167,70.509285,49.3416
--13.77684,-17.65764,-16.59042,-13.5828,72.735894,47.5888
--13.2202,-17.0373,-15.9201,-13.2202,69.78776,47.6574
--12.9504,-16.6896,-15.5952,-12.8592,68.36352,47.7408
--13.45487,-17.21847,-16.18348,-13.26669,70.548682,47.5591
--13.17888,-16.77312,-15.85152,-12.99456,69.092352,47.5584
--12.90575,-16.4255,-15.43275,-12.72525,67.660425,47.063
--12.90575,-16.51575,-15.523,-12.8155,67.660425,47.5285
--13.59358,-17.39598,-16.35032,-13.49852,71.266482,49.0294
--13.97088,-17.75466,-16.68744,-13.77684,72.735894,49.0446
--14.11344,-17.93583,-16.85772,-13.81941,73.576107,49.2426
--13.1328,-16.6896,-15.6864,-12.8592,68.37264,47.4525
--13.82832,-17.66952,-16.51716,-13.4442,72.089721,53.2917
--13.5024,-17.13408,-16.01664,-13.22304,69.905184,47.4621
--13.63725,-17.3052,-16.1766,-13.3551,70.603335,49.5297
--14.355,-18.216,-17.028,-14.157,74.3193,50.34
--14.02038,-17.66952,-16.51716,-13.63626,72.089721,48.1437
--14.162,-17.848,-16.781,-14.065,72.8082,47.6658
--14.16492,-17.85168,-16.78446,-13.97088,72.823212,49.2352
--13.3152,-16.7808,-15.7776,-12.8592,68.46384,46.6848
--13.4539,-16.86345,-15.94195,-12.99315,69.16779,47.1711
--14.02184,-17.67136,-16.51888,-13.73372,72.087624,47.6574
--13.83123,-17.31256,-16.27757,-13.54896,70.623954,47.4621
--14.26194,-17.85168,-16.78446,-13.87386,72.823212,49.0545
--14.259,-17.945,-16.781,-13.774,72.8179,48.55
--13.54605,-16.9556,-15.94195,-12.99315,69.177005,48.1605
--14.21392,-17.67136,-16.61492,-13.54164,72.183664,48.8432
--14.06,-17.385,-16.435,-13.585,71.3165,49.14
--13.9194,-17.39925,-16.27065,-13.44915,70.68798,48.7575
--14.453,-18.042,-16.878,-13.968,72.9149,47.7725
--14.16394,-17.68116,-16.54044,-13.7837,71.447096,49.3332
--14.751,-18.315,-17.226,-14.157,74.4084,49.84
--14.9,-18.4,-17.4,-14.3,75.16,50.03
--14.01792,-17.31072,-16.27584,-13.45344,70.710528,48.8432
--13.68,-16.872,-15.8688,-13.1328,68.54592,46.8864
--14.7015,-18.13185,-17.05374,-14.11344,73.674117,50.0346
--14.553,-17.9487,-16.88148,-13.87386,72.920232,47.8632
--13.968,-17.2272,-16.20288,-13.31616,69.988992,48.9024
--14.553,-17.9487,-16.88148,-13.97088,72.929934,48.9357
--14.35406,-17.5861,-16.54044,-13.68864,71.447096,46.7055
--14.20608,-17.49888,-16.36992,-13.54752,70.710528,47.7652
--14.949,-18.414,-17.226,-14.157,74.4183,48.63
--14.0581,-17.3166,-16.1994,-13.4064,69.97396,48.7354
--13.91465,-17.04775,-16.0341,-13.2696,69.25994,49.5088
--14.44912,-17.5861,-16.54044,-13.7837,71.447096,47.4524
--14.44912,-17.5861,-16.54044,-13.68864,71.447096,48.1572
--15.2,-18.7,-17.5,-14.7,75.16,48.04
--14.744,-18.139,-16.975,-14.065,72.9052,46.7831
--14.1512,-17.4097,-16.2925,-13.4995,69.97396,47.579
--14.59808,-17.86344,-16.807,-13.9258,72.183664,47.3732
--13.9536,-16.9632,-15.96,-13.1328,68.63712,46.6848
--14.38965,-17.4933,-16.3647,-13.63725,70.78203,48.3516
--14.69259,-17.76555,-16.70922,-13.82832,72.176148,46.7055
--14.38965,-17.4933,-16.45875,-13.7313,70.68798,47.7477
--14.0448,-17.0544,-15.96,-13.224,68.63712,46.968
--14.3374,-17.4097,-16.2925,-13.4064,70.06706,46.398
--15.09354,-18.22986,-17.15175,-14.21145,73.762326,49.3416
--14.0448,-16.9632,-15.96,-13.1328,68.628,46.6848
--14.94108,-18.04572,-16.9785,-13.87386,73.017252,47.7477
--14.725,-17.67,-16.625,-13.775,71.497,45.638
--14.4305,-17.4097,-16.2925,-13.4995,70.06706,47.481
--14.5824,-17.59296,-16.464,-13.54752,70.804608,46.8864
--14.4305,-17.4097,-16.2925,-13.4064,70.06706,47.7554
--14.7312,-17.67744,-16.632,-13.68576,71.527104,47.1744
--15.19,-18.228,-17.15,-14.21,73.7548,46.795
--14.3754,-17.23205,-16.2184,-13.4539,69.35209,46.1985
--14.67804,-17.59483,-16.55984,-13.92532,70.821543,46.6085
--14.6718,-17.6814,-16.5528,-13.82535,70.78203,48.4308
--14.52672,-17.41344,-16.38912,-13.40928,70.082112,46.5018
--14.976,-17.952,-16.896,-13.632,72.3456,47.664
--14.67648,-17.49888,-16.55808,-13.6416,70.898688,46.7808
--14.6167,-17.3166,-16.3856,-13.3133,70.06706,46.1985
--14.77056,-17.59296,-16.55808,-13.6416,70.898688,46.4064
--14.16925,-16.87675,-15.884,-13.08625,68.003375,47.2435
--15.23214,-18.23976,-17.07552,-14.16492,73.10457,47.4606
--15.229,-18.139,-17.072,-13.968,73.0895,48.4515
--14.2595,-16.7865,-15.884,-12.8155,68.0124,46.5785
--14.86464,-17.49888,-16.55808,-13.6416,70.898688,47.8464
--14.56128,-17.14176,-16.22016,-13.27104,69.451776,48.1344
--14.71296,-17.41344,-16.38912,-13.59552,70.16592,48.0538
--15.168,-18.048,-16.896,-14.112,72.3456,50.14
--14.80608,-17.50656,-16.38912,-13.5024,70.16592,46.3008
--14.65344,-17.23392,-16.22016,-13.27104,69.44256,47.28
--15.26877,-17.86158,-16.90128,-13.82832,72.368208,47.9568
--15.11136,-17.67744,-16.72704,-13.68576,71.61264,46.8864
--14.8029,-17.4097,-16.3856,-13.4995,70.16016,46.588
--14.95872,-17.68704,-16.55808,-13.92384,70.88928,48.6144
--14.7456,-17.32608,-16.22016,-13.45536,69.44256,47.5584
--15.3664,-17.95948,-16.90304,-13.9258,72.36614,47.3732
--14.8992,-17.32032,-16.38912,-13.40928,70.16592,47.9568
--15.2064,-17.67744,-16.72704,-13.68576,71.61264,47.4528
--14.896,-17.3166,-16.3856,-13.4064,70.16016,48.7452
--15.2096,-17.77622,-16.73056,-13.87876,71.62771,47.4524
--14.592,-17.1456,-16.0512,-13.224,68.7192,46.7808
--15.295,-17.86,-16.72,-13.68,71.6775,46.683
--14.9891,-17.4097,-16.3856,-13.5926,70.24395,48.8432
--14.83615,-17.1399,-16.2184,-13.2696,69.435025,46.9965
--14.99232,-17.41344,-16.38912,-13.5024,70.268352,46.3175
--15.62022,-18.23976,-17.07552,-14.26194,73.211292,47.9514
--15.617,-18.333,-17.169,-14.162,73.0992,48.84
--15.55686,-18.05364,-16.90128,-13.92435,72.358605,47.9655
--15.71724,-18.14274,-17.07552,-13.97088,73.114272,48.0744
--15.552,-17.952,-16.896,-13.824,72.336,48.92
--15.71724,-18.14274,-17.07552,-13.97088,73.20159,47.3517
--15.0822,-17.5028,-16.3856,-13.5926,70.24395,46.1985
--14.6205,-16.967,-15.884,-13.26675,68.093625,45.638
--15.55848,-18.05552,-16.90304,-14.11788,72.46218,47.2654
--15.97563,-18.32787,-17.24976,-14.30946,73.948545,47.8566
--15.974,-18.326,-17.248,-14.21,73.941,47.8632
--15.49152,-17.86752,-16.82208,-13.97088,71.70768,46.8666
--15.1753,-17.5959,-16.4787,-13.5926,70.24395,47.481
--15.49152,-17.96256,-16.82208,-13.97088,71.70768,45.84
--16.137,-18.612,-17.523,-14.256,74.7054,47.64
--16.137,-18.612,-17.523,-14.355,74.6955,48.15
--15.908,-18.236,-17.169,-14.065,73.1865,47.4524
--15.744,-18.048,-16.992,-14.304,72.4416,47.64
--15.74892,-18.14967,-16.99731,-14.21244,72.464238,48.5397
--15.744,-18.144,-16.992,-14.112,72.432,46.6848
--14.801,-17.05725,-15.97425,-13.1765,68.093625,45.923
--16.07364,-18.42588,-17.34777,-14.30946,73.948545,46.3716
--15.42912,-17.68704,-16.65216,-13.6416,70.98336,46.8636
--15.048,-17.1456,-16.1424,-13.3152,68.91072,46.5785
--15.84,-18.144,-16.992,-14.112,72.432,45.84
--15.6849,-17.96634,-16.92068,-13.97382,71.72277,46.2108
--15.5232,-17.78112,-16.74624,-13.82976,70.98336,46.4064
--15.3648,-17.50656,-16.48224,-13.5024,70.268352,46.8898
--15.84,-18.048,-16.992,-14.112,72.432,48.15
--15.51825,-17.77545,-16.7409,-14.01345,70.960725,45.3625
--15.936,-18.24,-17.088,-14.304,72.432,45.4464
--15.94098,-18.2457,-17.09334,-14.30847,72.454635,45.6385
--15.61894,-17.8771,-16.74802,-13.73714,71.094404,46.3175
--16.102,-18.333,-17.169,-14.162,73.1865,46.1041
--15.77,-17.86,-16.91,-13.775,71.6775,47.05
--15.77664,-17.86752,-16.82208,-13.87584,71.80272,46.6587
--15.94264,-18.05552,-16.99908,-14.11788,72.567824,46.795
--16.6,-18.9,-17.8,-14.7,75.55,47.04
--15.61728,-17.8752,-16.74624,-14.01792,70.98336,48.0494
--15.865,-17.955,-16.91,-13.965,71.7725,44.973
--16.03701,-18.14967,-17.09334,-14.02038,72.454635,46.6587
--15.70635,-17.6814,-16.7409,-13.7313,71.06418,47.4606
--15.55104,-17.50656,-16.57536,-13.68864,70.35216,46.7831
--15.87502,-17.96634,-16.92068,-13.97382,71.81783,45.717
--15.39072,-17.5104,-16.40448,-13.824,69.62688,45.552
--15.71136,-17.8752,-16.74624,-14.01792,71.07744,45.4464
--15.97008,-18.0614,-16.92068,-13.87876,71.81783,46.1874
--15.8004,-17.77545,-16.7409,-13.82535,71.054775,44.498
--15.96,-17.86,-16.91,-14.06,71.7725,47.13
--15.96,-17.86,-16.91,-14.06,71.7725,47.74
--15.80544,-17.78112,-16.74624,-13.82976,71.086848,46.9812
--15.4812,-17.5085,-16.4027,-13.54605,69.619325,44.498
--16.13304,-18.2457,-17.09334,-14.30847,72.550665,46.3716
--16.06514,-18.0614,-16.92068,-13.68864,71.81783,47.4712
--15.25225,-17.05725,-16.0645,-13.08625,68.183875,45.5335
--15.89445,-17.6814,-16.7409,-13.82535,71.054775,47.348
--15.73728,-17.6928,-16.57536,-14.06112,70.35216,45.6288
--16.22907,-18.43776,-17.18937,-14.50053,72.550665,46.2108
--16.39638,-18.53082,-17.36658,-14.45598,73.29861,47.7477
--16.224,-18.24,-17.184,-14.112,72.528,47.05
--15.73728,-17.59968,-16.66848,-13.68864,70.35216,46.9868
--16.393,-18.236,-17.266,-14.065,73.2835,46.7055
--15.73728,-17.50656,-16.57536,-13.68864,70.35216,46.5018
--16.1568,-17.86752,-16.91712,-13.7808,71.80272,46.7676
--16.3251,-18.14967,-17.09334,-14.21244,72.550665,47.5596
--16.66,-18.522,-17.444,-14.504,74.039,46.0012
--16.1602,-17.96634,-16.92068,-14.259,71.81783,46.3175
--15.827,-17.689,-16.5718,-13.7788,70.34636,46.1874
--16.1568,-18.0576,-16.91712,-13.97088,71.793216,46.4706
--16.1568,-18.0576,-16.91712,-14.06592,71.80272,46.0746
--16.6617,-18.52389,-17.44578,-14.40747,74.046555,46.1835
--15.9885,-17.77545,-16.7409,-13.7313,71.054775,46.9755
--16.4934,-18.4338,-17.26956,-14.45598,73.29861,46.4706
--15.9201,-17.7821,-16.5718,-13.5926,70.33705,46.8734
--16.245,-18.05,-16.91,-13.68,71.7725,43.3675
--16.587,-18.43,-17.266,-14.065,73.2835,46.84
--16.08768,-17.78112,-16.74624,-13.82976,71.086848,44.9664
--16.758,-18.522,-17.444,-14.504,74.039,46.795
--16.25526,-17.96634,-16.92068,-14.06888,71.81783,46.109
--16.59042,-18.4338,-17.26956,-14.45598,73.29861,45.0945
--16.25526,-18.15646,-16.92068,-14.16394,71.91289,46.1874
--16.34688,-18.15264,-17.01216,-14.16096,71.80272,45.6786
--15.5952,-17.4192,-16.3248,-13.5888,68.9928,44.422
--15.9201,-17.7821,-16.6649,-13.7788,70.43015,47.0792
--16.856,-18.62,-17.542,-14.7,74.137,47.45
--16.51716,-18.2457,-17.18937,-14.21244,72.560268,45.9198
--16.684,-18.43,-17.363,-14.453,73.2835,46.35
--16.856,-18.718,-17.542,-14.798,74.039,46.24
--16.684,-18.624,-17.363,-14.55,73.3708,46.94
--16.35032,-18.25152,-17.1108,-14.259,71.91289,46.3078
--16.34,-18.24,-17.1,-14.25,71.858,47.45
--15.6864,-17.4192,-16.416,-13.68,68.9928,43.833
--16.51888,-18.34364,-17.2872,-14.21392,72.644656,44.737
--17.028,-18.909,-17.82,-14.85,74.8935,46.84
--15.7776,-17.5104,-16.416,-13.8624,68.9928,44.0064
--17.127,-19.107,-17.919,-15.246,74.8836,45.8865
--15.94195,-17.78495,-16.67915,-13.91465,69.711475,44.593
--16.781,-18.721,-17.557,-14.744,73.3805,45.9198
--16.27065,-18.15165,-17.02305,-14.1075,71.13942,45.543
--16.781,-18.527,-17.557,-14.647,73.3805,46.76
--15.7776,-17.4192,-16.416,-13.8624,68.9928,44.4125
--16.10976,-17.78592,-16.7616,-13.87488,70.44528,44.8896
--16.61492,-18.43968,-17.38324,-14.50204,72.644656,46.5794
--16.95573,-18.91593,-17.73981,-14.99553,74.154366,46.5795
--17.052,-18.914,-17.738,-14.994,74.1272,46.43
--16.88148,-18.82188,-17.56062,-14.74704,73.385928,46.1874
--16.53,-18.335,-17.195,-14.345,71.8675,44.593
--16.3647,-18.15165,-17.02305,-14.20155,71.13942,45.9756
--16.20288,-17.87904,-16.85472,-13.968,70.44528,45.168
--16.0341,-17.6928,-16.67915,-13.91465,69.711475,44.9595
--16.37166,-18.06528,-17.03029,-14.30168,71.179085,44.6491
--16.53696,-18.34272,-17.20224,-14.63616,71.89776,44.496
--15.8688,-17.6928,-16.5984,-13.8624,68.9928,44.2944
--17.052,-19.012,-17.836,-14.896,74.137,44.5312
--17.4,-19.4,-18.2,-15.2,75.55,46.35
--16.704,-18.528,-17.472,-14.496,72.528,44.6784
--16.6355,-18.25152,-17.20586,-14.35406,71.91289,45.0371
--16.464,-18.15744,-17.12256,-14.30016,71.17152,44.9232
--16.296,-18.06528,-16.94784,-14.24736,70.35216,44.496
--16.45875,-18.33975,-17.1171,-14.38965,71.054775,46.3716
--16.128,-17.9712,-16.77312,-14.00832,69.636096,44.5824
--16.8,-18.624,-17.472,-14.784,72.624,47.34
--16.975,-18.818,-17.654,-14.647,73.3805,45.3572
--16.632,-18.34272,-17.29728,-14.256,71.89776,46.4706
--16.632,-18.43776,-17.29728,-14.44608,71.80272,45.552
--16.128,-17.87904,-16.86528,-14.19264,69.636096,45.2448
--16.72704,-18.5328,-17.39232,-14.63616,71.89776,45.84
--16.3856,-18.1545,-17.0373,-14.2443,70.43015,46.1874
--17.424,-19.305,-18.117,-15.048,74.8935,47.24
--16.90128,-18.62982,-17.57349,-14.59656,72.560268,47.1735
--17.072,-18.818,-17.751,-14.841,73.3805,47.75
--17.07552,-18.82188,-17.65764,-14.94108,73.39563,46.7577
--16.72704,-18.5328,-17.39232,-14.7312,71.89776,46.6587
--16.5528,-18.4338,-17.3052,-14.4837,71.148825,47.8566
--15.884,-17.689,-16.606,-13.80825,68.274125,46.0275
--16.38912,-18.25152,-17.13408,-14.24736,70.44528,46.0224
--16.65216,-18.3456,-17.31072,-14.39424,71.17152,47.481
--15.97425,-17.59875,-16.606,-13.80825,68.274125,46.0275
--17.523,-19.305,-18.117,-15.147,74.9034,47.9655
--17.17254,-18.9189,-17.75466,-14.84406,73.39563,48.3615
--16.99731,-18.72585,-17.57349,-14.59656,72.646695,47.9655
--16.1424,-17.784,-16.7808,-14.0448,68.9928,45.3625
--16.1424,-17.784,-16.7808,-14.0448,68.9928,46.512
--17.34777,-19.20996,-18.03384,-14.99553,74.144565,47.6685
--16.64685,-18.33975,-17.3052,-14.38965,71.148825,47.0547
--17.346,-19.11,-18.032,-14.994,74.137,47.64
--16.1424,-17.6928,-16.6896,-13.7712,68.9928,45.258
--16.48224,-18.06528,-17.04096,-13.87488,70.44528,45.3504
--16.31055,-17.96925,-16.86345,-14.09895,69.711475,46.1041
--16.2336,-17.8752,-16.6896,-14.2272,68.9928,45.7344
--16.57536,-18.25152,-17.13408,-14.15424,70.44528,47.1711
--16.74624,-18.3456,-17.21664,-14.20608,71.17152,46.224
--16.4027,-17.96925,-16.86345,-14.09895,69.711475,45.4385
--16.74802,-18.25346,-17.21847,-14.30168,71.084995,46.7055
--17.266,-18.818,-17.751,-14.647,73.3708,48.24
--16.40448,-17.87904,-16.86528,-13.91616,69.71904,47.1744
--16.91,-18.43,-17.385,-14.63,71.8675,49.34
--17.622,-19.305,-18.117,-15.345,74.8935,48.8367
--17.088,-18.72,-17.568,-14.784,72.624,47.1744
--16.2336,-17.784,-16.6896,-14.0448,68.9928,46.1184
--17.622,-19.305,-18.117,-15.048,74.8836,48.15
--16.66848,-18.1584,-17.13408,-14.24736,70.44528,46.3175
--17.184,-18.624,-17.568,-14.688,72.6144,47.45
--16.6649,-18.0614,-17.0373,-14.3374,70.43015,46.683
--17.54379,-19.01394,-17.93583,-14.79951,74.144565,48.2526
--17.01216,-18.5328,-17.39232,-14.54112,71.89776,47.1636
--16.66848,-18.25152,-17.04096,-14.24736,70.44528,46.6085
--17.18937,-18.72585,-17.57349,-14.69259,72.646695,45.8228
--17.184,-18.72,-17.664,-14.688,72.624,45.84
--17.18937,-18.62982,-17.57349,-14.50053,72.637092,47.1636
--17.542,-19.012,-17.934,-14.896,74.137,47.83
--17.005,-18.335,-17.385,-14.345,71.8675,45.8185
--16.6649,-18.0614,-17.0373,-14.2443,70.43015,45.1535
--17.005,-18.525,-17.385,-14.535,71.9435,47.75
--17.363,-19.012,-17.751,-14.744,73.3805,46.5018
--17.363,-18.818,-17.751,-14.841,73.3805,46.7831
--17.1,-18.525,-17.385,-14.345,71.9435,47.94
--17.46,-18.818,-17.751,-14.647,73.4581,46.3951
--17.28,-18.624,-17.568,-14.592,72.7008,47.64
--17.1072,-18.43776,-17.39232,-14.63616,71.973792,46.0128
--16.9362,-18.34755,-17.21847,-14.58395,71.254357,46.3175
--16.7616,-18.25152,-17.04096,-14.24736,70.519776,46.7831
--17.2872,-18.82384,-17.57532,-14.69412,72.740696,46.403
--17.2872,-18.7278,-17.57532,-14.79016,72.731092,47.187
--16.9344,-18.3456,-17.21664,-14.20608,71.246784,46.9812
--16.758,-18.0614,-17.0373,-14.0581,70.50463,46.5794
--17.2872,-18.53572,-17.57532,-14.69412,72.731092,46.109
--17.2854,-18.62982,-17.57349,-14.98068,72.723519,46.1041
--16.67915,-18.0614,-16.9556,-14.1911,69.785195,45.8228
--17.64,-19.208,-18.032,-14.896,74.2154,46.5794
--17.376,-18.72,-17.664,-14.688,72.7008,45.552
--17.919,-19.305,-18.117,-15.147,74.9826,46.4805
--17.195,-18.43,-17.385,-14.44,71.9435,47.83
--17.738,-18.914,-17.934,-14.798,74.2154,48.23
--17.56062,-18.82188,-17.75466,-14.74704,73.473246,46.0012
--17.38143,-18.72585,-17.57349,-14.98068,72.723519,45.5318
--17.02305,-18.4338,-17.3052,-14.4837,71.224065,45.1535
--16.67915,-18.0614,-16.86345,-14.1911,69.785195,46.7928
--17.02848,-18.3456,-17.21664,-14.48832,71.340864,47.187
--17.20224,-18.43776,-17.39232,-14.54112,71.973792,46.7676
--17.20224,-18.43776,-17.39232,-14.44608,72.068832,45.456
--17.738,-19.012,-17.934,-14.896,74.3134,48.05
--17.38143,-18.62982,-17.57349,-14.4045,72.809946,47.1636
--17.20586,-18.5367,-17.39598,-14.7343,72.083998,46.8734
--16.67915,-18.0614,-16.86345,-14.1911,69.877345,44.973
--16.94784,-18.1584,-17.04096,-14.4336,70.612896,46.1184
--17.30092,-18.5367,-17.49104,-14.63924,71.988938,46.501
--17.47746,-18.72585,-17.57349,-14.69259,72.819549,47.0547
--17.29,-18.43,-17.385,-14.44,72.0385,45.923
--16.4255,-17.5085,-16.51575,-13.62775,68.436575,44.498
--16.7713,-17.8771,-16.86345,-14.0068,69.877345,46.0265
--17.65764,-18.82188,-17.75466,-15.0381,73.570266,46.4706
--17.29728,-18.5328,-17.39232,-14.7312,72.068832,44.9664
--17.12256,-18.43968,-17.21664,-14.39424,71.340864,45.2448
--17.654,-19.012,-17.848,-14.744,73.5454,45.3572
--18.2,-19.5,-18.3,-15.3,75.82,47.64
--17.83782,-19.11195,-17.93583,-14.79951,74.320983,47.3517
--17.65764,-18.82188,-17.75466,-14.94108,73.570266,47.285
--16.4255,-17.59875,-16.51575,-13.8985,68.436575,45.2675
--16.9442,-18.1545,-17.1304,-14.4305,70.59773,45.4385
--17.654,-18.915,-17.848,-14.938,73.5454,46.5988
--16.9442,-18.1545,-17.0373,-14.1512,70.59773,45.543
--16.5984,-17.8752,-16.7808,-14.136,69.15696,45.3625
--17.04096,-18.1584,-17.13408,-14.15424,70.612896,46.6848
--17.93583,-19.11195,-17.93583,-14.79951,74.311182,48.4407
--17.57349,-18.72585,-17.66952,-14.69259,72.819549,47.1711
--17.57349,-18.72585,-17.66952,-14.78862,72.819549,46.3951
--17.39598,-18.63176,-17.49104,-14.44912,72.074492,47.481
--17.04096,-18.34464,-17.13408,-14.52672,70.612896,46.5018
--17.568,-18.816,-17.664,-14.688,72.7968,45.6288
--18.117,-19.404,-18.216,-15.147,75.0717,47.53
--16.86345,-18.0614,-16.9556,-14.1911,70.006355,44.878
--17.385,-18.525,-17.48,-14.25,72.0385,48.45
--17.385,-18.525,-17.48,-14.63,72.029,45.087
--17.57349,-18.72585,-17.66952,-14.59656,72.819549,46.2108
--17.57349,-18.72585,-17.66952,-14.69259,72.829152,46.2108
--17.751,-19.109,-17.848,-15.035,73.5551,45.7161
--17.21115,-18.52785,-17.3052,-14.38965,71.30871,45.163
--17.57349,-18.82188,-17.66952,-14.78862,72.819549,45.6786
--16.86528,-18.06336,-16.95744,-14.10048,70.013952,45.7344
--17.93583,-19.20996,-18.03384,-15.19155,74.467998,47.7477
--18.032,-19.208,-18.032,-15.092,74.4604,48.63
--17.664,-18.72,-17.664,-14.88,72.9312,45.9168
--17.39598,-18.5367,-17.49104,-14.7343,72.083998,46.0012
--17.85168,-18.9189,-17.85168,-14.94108,73.570266,46.109
--17.1304,-18.2476,-17.1304,-14.2443,70.72807,45.258
--17.13408,-18.25152,-17.13408,-14.4336,70.612896,46.1138
--16.606,-17.689,-16.606,-14.079,68.562925,45.4385
--17.85168,-19.01592,-17.85168,-14.94108,73.570266,46.9854
--17.67136,-18.91988,-17.7674,-14.98224,72.827132,46.109
--16.95744,-18.15552,-17.0496,-14.19264,70.013952,45.4464
--17.66952,-18.82188,-17.76555,-14.78862,72.953991,45.8228
--17.49104,-18.63176,-17.5861,-14.54418,72.217082,45.6385
--18.032,-19.208,-18.13,-15.092,74.3232,46.36
--16.7808,-17.8752,-16.872,-14.136,69.29376,45.0775
--16.7808,-17.8752,-16.872,-14.136,69.28464,46.1985
--16.9556,-18.15355,-17.04775,-14.28325,70.006355,46.2108
--17.67136,-18.91988,-17.7674,-14.69412,72.961588,46.2952
--17.848,-19.109,-17.945,-15.035,73.6909,47.05
--17.848,-19.012,-17.945,-14.841,73.6909,49.14
--16.9556,-18.0614,-17.04775,-14.28325,70.006355,47.633
--17.66952,-18.82188,-17.76555,-14.59656,72.953991,46.8898
--16.7808,-17.9664,-16.872,-14.0448,69.29376,45.9168
--17.76555,-18.91791,-17.76555,-14.78862,72.953991,49.2327
--17.945,-19.109,-17.945,-15.035,73.6909,47.2778
--17.39925,-18.4338,-17.39925,-14.57775,71.318115,47.2725
--17.2272,-18.25152,-17.2272,-14.24736,70.743264,46.5988
--17.9487,-19.01592,-17.9487,-14.84406,73.706094,47.6685
--17.39925,-18.4338,-17.39925,-14.57775,71.318115,47.6685
--16.69625,-17.689,-16.69625,-14.079,68.562925,45.543
--17.40665,-18.53573,-17.40665,-14.67804,71.348447,46.0944
--17.39925,-18.52785,-17.39925,-14.38965,71.45919,47.0646
--17.4048,-18.62784,-17.4048,-14.5824,71.331456,46.5794
--17.2235,-18.3407,-17.2235,-14.5236,70.72807,45.8248
--18.13,-19.306,-18.13,-15.288,74.4506,47.53
--18.13,-19.306,-18.13,-15.092,74.4604,46.501
--17.40665,-18.44164,-17.40665,-14.58395,71.489582,46.2108
--18.13185,-19.30797,-18.13185,-14.99553,74.458197,47.5596
--17.2272,-18.34464,-17.2272,-14.52672,70.743264,45.9295
--17.40665,-18.53573,-17.40665,-14.77213,71.489582,46.2108
--16.69625,-17.77925,-16.69625,-13.98875,68.562925,45.638
--17.5824,-18.81792,-17.67744,-14.92128,72.201888,48.3615
--16.872,-17.9664,-16.9632,-14.3184,69.28464,46.512
--18.13,-19.306,-18.13,-14.994,74.4506,47.2654
--17.39925,-18.52785,-17.39925,-14.57775,71.449785,46.8765
--17.2235,-18.2476,-17.2235,-14.4305,70.72807,45.923
--17.1399,-18.0614,-17.04775,-14.3754,70.006355,47.348
--16.9632,-17.9664,-16.872,-14.136,69.28464,45.7425
--17.856,-18.912,-17.76,-15.072,72.9408,48.35
--17.3166,-18.4338,-17.3166,-14.6167,70.72807,44.422
--18.6,-19.7,-18.6,-15.6,75.97,48.34
--17.68116,-18.72682,-17.5861,-14.7343,72.217082,48.1572
--17.49888,-18.53376,-17.49888,-14.5824,71.472576,46.4064
--17.67744,-18.72288,-17.67744,-14.63616,72.201888,45.84
--18.414,-19.602,-18.414,-15.345,75.2103,48.93
--17.4933,-18.52785,-17.4933,-14.57775,71.318115,45.923
--17.67744,-18.72288,-17.5824,-14.82624,72.059328,46.6176
--17.1399,-18.15355,-17.1399,-14.3754,69.877345,46.7152
--17.3166,-18.4338,-17.3166,-14.6167,70.59773,45.258
--18.04572,-19.20996,-18.04572,-15.13512,73.570266,47.2725
--18.22986,-19.40598,-18.22986,-15.28956,74.311182,48.3516
--17.86158,-19.01394,-17.86158,-15.07671,72.963594,46.6085
--17.86344,-19.01592,-17.86344,-14.8862,72.961588,47.873
--17.68116,-18.82188,-17.68116,-14.92442,72.074492,46.2952
--17.67744,-18.81792,-17.67744,-14.63616,72.201888,47.7477
--17.856,-19.008,-17.952,-14.976,72.9312,48.85
--17.4933,-18.6219,-17.58735,-14.76585,71.318115,46.4835
--17.23392,-18.24768,-17.23392,-14.46912,70.023168,46.512
--18.04572,-19.20996,-18.14274,-15.0381,73.706094,47.5888
--17.68116,-18.72682,-17.68116,-14.7343,72.217082,47.9514
--17.765,-18.715,-17.67,-14.82,72.029,47.05
--17.765,-18.715,-17.67,-14.63,72.0385,46.4075
--18.139,-19.206,-18.042,-15.035,73.5551,48.63
--17.41344,-18.43776,-17.41344,-14.52672,70.612896,46.0224
--17.58735,-18.71595,-17.58735,-14.57775,71.318115,47.4606
--17.58735,-18.6219,-17.4933,-14.8599,71.318115,48.0744
--17.95948,-19.01592,-17.95948,-15.07828,72.827132,48.0494
--17.0544,-18.0576,-17.0544,-14.136,69.15696,46.0128
--17.952,-19.008,-17.856,-14.976,72.7968,45.7344
--17.95761,-19.01394,-17.86158,-15.07671,72.819549,47.5591
--17.0544,-18.0576,-16.9632,-14.0448,69.15696,46.224
--17.41344,-18.43776,-17.32032,-14.4336,70.612896,47.0688
--18.32787,-19.40598,-18.32787,-15.38757,74.311182,46.8666
--17.952,-19.104,-17.952,-14.88,72.7968,48.91
--17.41344,-18.53088,-17.41344,-14.4336,70.612896,46.3175
--17.0544,-18.1488,-17.0544,-14.3184,69.14784,45.552
--17.77248,-18.91296,-17.77248,-14.7312,72.068832,45.168
--17.58735,-18.6219,-17.58735,-14.6718,71.318115,48.7575
--17.23205,-18.2457,-17.1399,-14.3754,69.877345,46.8898
--18.513,-19.602,-18.513,-15.444,75.0717,47.9655
--17.95761,-19.01394,-17.95761,-14.98068,72.809946,47.6685
--17.95761,-19.01394,-17.95761,-15.07671,72.819549,48.0744
--18.048,-19.104,-17.952,-15.072,72.7968,48.34
--17.4097,-18.5269,-17.4097,-14.6167,70.59773,45.4385
--17.0544,-18.1488,-17.0544,-14.3184,69.14784,47.4624
--17.58735,-18.71595,-17.58735,-14.76585,71.30871,48.0744
--17.50656,-18.43776,-17.41344,-14.61984,70.612896,45.0624
--17.77622,-18.82188,-17.77622,-14.92442,72.074492,46.7055
--18.23976,-19.20996,-18.14274,-15.32916,73.706094,46.795
--18.612,-19.602,-18.513,-15.642,75.0717,48.1437
--18.612,-19.701,-18.513,-15.543,75.0717,47.83
--17.5028,-18.5269,-17.4097,-14.7098,70.60704,45.2675
--17.5028,-18.5269,-17.4097,-14.4305,70.59773,45.543
--17.1456,-18.1488,-17.0544,-14.3184,69.15696,46.683
--17.87128,-18.82188,-17.77622,-15.01948,72.217082,46.5018
--18.8,-19.8,-18.7,-15.7,75.97,47.45
--18.8,-19.8,-18.7,-15.9,75.98,48.15
--18.23976,-19.30698,-18.14274,-15.23214,73.706094,47.8566
--17.3242,-18.33785,-17.23205,-14.5597,70.006355,45.828
--17.5028,-18.5269,-17.4097,-14.6167,70.72807,45.1535
--17.86752,-18.91296,-17.77248,-14.92128,72.068832,45.552
--17.87128,-18.82188,-17.77622,-14.82936,72.217082,46.2952
--17.5028,-18.5269,-17.4097,-14.6167,70.72807,45.8185
--17.5028,-18.5269,-17.4097,-14.6167,70.72807,47.5888
--17.86752,-18.91296,-17.77248,-14.92128,72.201888,46.4064
--18.236,-19.303,-18.139,-15.326,73.7006,47.53
--17.5028,-18.5269,-17.4097,-14.6167,70.72807,45.638
--17.68704,-18.72192,-17.59296,-14.67648,71.472576,45.9032
--17.6814,-18.71595,-17.58735,-14.8599,71.45919,46.2924
--17.2368,-18.1488,-17.1456,-14.2272,69.29376,44.8896
--17.41635,-18.33785,-17.23205,-14.3754,70.006355,46.1138
--17.5959,-18.5269,-17.4097,-14.6167,70.72807,46.6872
--17.78112,-18.72192,-17.59296,-14.77056,71.481984,46.0224
--17.41635,-18.33785,-17.23205,-14.28325,70.006355,46.5785
--18.711,-19.701,-18.612,-15.444,75.2103,48.23
--17.2368,-18.1488,-17.1456,-14.3184,69.28464,45.6475
--18.333,-19.303,-18.139,-15.326,73.6909,47.94
--18.333,-19.303,-18.236,-15.326,73.7006,46.9965
--17.2368,-18.1488,-17.1456,-14.5008,69.29376,45.5616
--17.96256,-18.91296,-17.86752,-14.92128,72.201888,45.552
--17.77545,-18.81,-17.6814,-14.76585,71.449785,45.4385
--17.2368,-18.1488,-17.1456,-14.3184,69.29376,44.6975
--18.711,-19.8,-18.612,-15.444,75.2103,47.4606
--18.144,-19.2,-18.048,-14.976,72.9312,45.0624
--18.144,-19.2,-18.048,-15.168,72.9312,48.63
--17.59968,-18.53088,-17.41344,-14.52672,70.743264,47.7725
--18.522,-19.502,-18.424,-15.288,74.4604,47.81
--18.15156,-19.208,-18.05552,-14.98224,72.961588,46.6872
--18.711,-19.8,-18.612,-15.642,75.2103,48.23
--17.78112,-18.816,-17.68704,-14.86464,71.481984,45.4464
--17.955,-19,-17.86,-15.01,72.1715,44.8685
--17.78301,-18.72391,-17.68892,-14.96031,71.489582,45.5318
--17.41635,-18.33785,-17.3242,-14.46755,70.006355,44.422
--18.522,-19.502,-18.424,-15.582,74.4506,47.24
--17.41635,-18.33785,-17.3242,-14.46755,70.006355,46.132
--18.522,-19.502,-18.424,-15.484,74.4604,47.2654
--17.78301,-18.818,-17.68892,-15.14849,71.480173,47.7725
--18.33678,-19.404,-18.23976,-15.23214,73.706094,47.0792
--18.711,-19.8,-18.612,-15.741,75.2103,48.2526
--18.2457,-19.206,-18.05364,-15.17274,72.953991,47.7477
--17.5104,-18.432,-17.32608,-14.65344,70.013952,46.4064
--17.96256,-19.008,-17.86752,-14.82624,72.211392,45.7344
--18.43,-19.4,-18.236,-15.326,73.7006,46.1138
--18.0614,-19.012,-17.87128,-15.01948,72.217082,45.8248
--18.24,-19.2,-18.048,-15.168,72.9408,47.83
--18.05,-19,-17.86,-14.915,72.1715,47.83
--19,-19.9,-18.8,-15.9,75.97,48.56
--18.81,-19.8,-18.612,-15.84,75.2103,48.05
--18.0576,-19.008,-17.86752,-14.92128,72.201888,46.6587
--17.689,-18.62,-17.5028,-14.6167,70.72807,45.325
--18.0576,-19.008,-17.86752,-15.30144,72.201888,46.9728
--18.0614,-19.012,-17.87128,-15.01948,72.217082,47.2654
--18.05,-19,-17.86,-15.01,72.1715,45.4385
--17.328,-18.24,-17.1456,-14.5008,69.29376,46.8635
--18.05,-19,-17.86,-15.105,72.181,51.05
--17.6928,-18.624,-17.50656,-14.80608,70.612896,48.1344
--18.0614,-19.012,-17.87128,-15.01948,72.083998,46.8734
--18.24,-19.2,-18.048,-15.072,72.9312,48.45
--18.0576,-19.008,-17.86752,-15.01632,72.201888,48.2526
--17.8695,-18.90405,-17.6814,-15.048,71.45919,46.0746
--18.05,-19,-17.86,-15.2,72.0385,44.878
--17.8752,-18.91008,-17.78112,-15.0528,71.40672,46.9728
--18.05,-19.095,-17.955,-15.2,72.048,46.84
--17.8752,-18.91008,-17.78112,-14.86464,71.472576,46.795
--18.0576,-19.10304,-17.96256,-15.11136,72.068832,44.5824
--18.6219,-19.70001,-18.52389,-15.58359,74.320983,46.0746
--18.24,-19.2,-18.144,-15.264,72.7968,48.15
--17.8695,-18.81,-17.77545,-15.048,71.318115,45.7425
--18.15264,-19.008,-17.86752,-15.11136,72.068832,44.2944
--17.328,-18.3312,-17.2368,-14.592,69.15696,44.6975
--17.96928,-18.91008,-17.78112,-14.95872,71.340864,47.0688
--19.1,-20,-18.9,-15.8,75.83,47.94
--19.1,-20.1,-18.9,-16,75.97,45.84
--17.7821,-18.7131,-17.5959,-14.8029,70.59773,46.8734
--19.1,-20.1,-18.9,-15.8,75.83,47.94
--17.78592,-18.71712,-17.59968,-14.80608,70.612896,46.0265
--17.96355,-18.90405,-17.77545,-14.8599,71.318115,46.5785
--18.71991,-19.70001,-18.52389,-15.58359,74.320983,46.6587
--17.78592,-18.71712,-17.59968,-14.8992,70.612896,46.5018
--17.4192,-18.3312,-17.2368,-14.6832,69.15696,45.7344
--18.53082,-19.50102,-18.33678,-15.5232,73.570266,46.7676
--17.60065,-18.52215,-17.41635,-14.744,69.877345,43.7285
--17.78592,-18.71712,-17.59968,-14.80608,70.603584,46.224
--18.145,-19.095,-17.955,-15.2,72.0385,44.422
--18.145,-19.095,-17.955,-15.105,72.0385,47.34
--18.336,-19.296,-18.144,-15.36,72.7968,46.54
--17.78592,-18.71712,-17.59968,-14.99232,70.612896,44.5056
--17.7821,-18.7131,-17.5959,-15.0822,70.59773,44.6975
--17.78592,-18.71712,-17.59968,-14.8992,70.603584,46.2108
--17.60065,-18.52215,-17.5085,-14.65185,69.877345,46.3175
--18.145,-19.095,-17.955,-15.01,72.0385,43.738
--17.96928,-18.91008,-17.78112,-15.0528,71.340864,45.913
--18.718,-19.698,-18.522,-15.68,74.3134,45.85
--18.336,-19.296,-18.144,-15.264,72.7872,45.168
--19.1,-20.1,-18.9,-15.9,75.83,47.35
--17.23775,-18.14025,-17.05725,-14.53025,68.436575,44.7735
--17.78592,-18.71712,-17.59968,-14.99232,70.612896,45.84
--18.34364,-19.30404,-18.15156,-15.46244,72.817528,45.717
--18.53082,-19.59804,-18.33678,-15.42618,73.570266,45.1094
--17.97119,-18.91209,-17.8771,-14.96031,71.348447,44.8625
--17.78592,-18.71712,-17.59968,-14.71296,70.612896,45.5318
--19.008,-19.899,-18.711,-15.939,75.0618,47.05
--18.909,-19.899,-18.711,-15.741,75.0618,46.14
--17.60065,-18.52215,-17.41635,-14.83615,69.877345,43.833
--18.34173,-19.30203,-18.14967,-15.26877,72.819549,45.3816
--19.008,-19.899,-18.711,-15.84,75.0717,46.25
--18.527,-19.594,-18.43,-15.617,73.5551,46.1041
--18.432,-19.392,-18.144,-15.36,72.7968,45.66
--17.6928,-18.6143,-17.41635,-14.65185,69.877345,43.833
--18.15264,-19.19808,-18.0576,-15.11136,72.068832,45.9657
--17.328,-18.14025,-17.1475,-14.44,68.436575,43.738
--18.432,-19.296,-18.144,-15.264,72.7968,43.6224
--17.87904,-18.71712,-17.59968,-14.80608,70.612896,44.1835
--17.87904,-18.71712,-17.6928,-14.8992,70.603584,44.7558
--18.43968,-19.30404,-18.15156,-15.46244,72.817528,45.2172
--17.328,-18.2305,-17.1475,-14.53025,68.436575,44.213
--18.43968,-19.40008,-18.2476,-15.46244,72.827132,46.109
--18.24,-19.19,-18.05,-15.295,72.0385,46.14
--18.43776,-19.30203,-18.2457,-15.26877,72.819549,44.5715
--19.2,-20.1,-19,-16,75.83,47.13
--18.43968,-19.30404,-18.2476,-15.27036,72.731092,45.2172
--17.8752,-18.7131,-17.689,-14.9891,70.51394,44.933
--18.432,-19.296,-18.24,-15.264,72.7968,44.4
--18.06528,-18.91209,-17.8771,-14.96031,71.339038,44.8625
--18.24,-19.095,-18.05,-15.295,71.9435,43.7285
--18.24768,-19.19808,-18.0576,-15.30144,72.068832,43.9008
--18.62784,-19.50102,-18.4338,-15.62022,73.473246,45.5697
--18.624,-19.594,-18.43,-15.714,73.4581,46.54
--17.5104,-18.4224,-17.328,-14.6832,69.15696,45.168
--18.06336,-19.00416,-17.8752,-15.24096,71.246784,45.717
--18.0576,-18.9981,-17.8695,-15.2361,71.23347,45.163
--19.2,-20.2,-19,-16.1,75.83,45.73
--18.43776,-19.39806,-18.2457,-15.46083,72.723519,45.5697
--18.06336,-19.00416,-17.8752,-14.95872,71.246784,44.112
--18.43776,-19.39806,-18.2457,-15.65289,72.723519,45.1935
--18.34272,-19.19808,-18.0576,-15.39648,71.973792,45.5697
--18.0576,-18.90405,-17.8695,-15.14205,71.224065,46.0746
--18.432,-19.296,-18.24,-15.36,72.7008,48.85
--19.008,-19.899,-18.81,-15.84,74.9727,47.75
--17.9683,-18.8062,-17.689,-14.9891,70.50463,46.109
--17.9683,-18.8062,-17.689,-14.896,70.50463,46.5794
--18.432,-19.296,-18.24,-15.264,72.7008,44.112
--18.34272,-19.10304,-18.0576,-15.2064,71.973792,43.9104
--18.72486,-19.50102,-18.4338,-15.5232,73.473246,45.7875
--18.34272,-19.10304,-18.0576,-15.2064,71.973792,44.016
--17.78688,-18.61632,-17.5104,-14.83776,69.792768,44.5824
--18.72486,-19.69506,-18.4338,-15.71724,73.473246,45.8248
--18.72486,-19.69506,-18.4338,-15.62022,73.473246,45.8248
--17.78495,-18.6143,-17.60065,-14.83615,69.785195,43.453
--17.6016,-18.4224,-17.328,-14.592,69.06576,43.548
--18.34658,-19.20212,-18.0614,-15.11454,71.988938,45.6385
--18.528,-19.392,-18.24,-15.36,72.7008,44.688
--17.78688,-18.61632,-17.60256,-14.83776,69.792768,44.4
--18.34272,-19.19808,-18.0576,-15.11136,71.973792,47.1636
--18.53379,-19.39806,-18.2457,-15.26877,72.723519,47.0547
--18.15744,-19.00416,-17.8752,-15.0528,71.246784,44.639
--17.41825,-18.2305,-17.1475,-14.71075,68.346325,43.453
--18.528,-19.392,-18.336,-15.36,72.7008,44.8896
--18.53379,-19.39806,-18.2457,-15.46083,72.723519,45.1438
--17.97216,-18.81024,-17.78592,-15.08544,70.519776,44.8896
--17.41825,-18.2305,-17.1475,-14.53025,68.346325,43.2725
--18.15937,-19.00618,-17.8771,-15.0544,71.254357,44.6491
--17.78688,-18.70848,-17.5104,-14.7456,69.792768,44.8896
--17.97216,-18.90336,-17.78592,-15.08544,70.519776,45.8228
--18.914,-19.894,-18.718,-15.68,74.2154,45.4328
--18.721,-19.691,-18.527,-15.617,73.4678,45.15
--18.335,-19.285,-18.145,-15.295,71.934,43.168
--18.914,-19.796,-18.718,-15.876,74.2056,45.85
--17.9683,-18.8062,-17.7821,-14.9891,70.50463,45.1094
--19.3,-20.3,-19.1,-16,75.73,46.54
--18.34272,-19.19808,-18.15264,-15.30144,71.973792,46.0746
--18.528,-19.392,-18.336,-15.552,72.7008,45.3504
--18.335,-19.19,-18.145,-15.105,71.9435,46.84
--17.97216,-18.81024,-17.78592,-14.99232,70.519776,44.2944
--19.107,-19.998,-18.909,-15.84,74.9727,45.85
--18.34658,-19.29718,-18.15646,-15.2096,71.979432,45.1438
--18.25152,-19.09824,-17.96928,-15.24096,71.246784,45.031
--17.6928,-18.5136,-17.4192,-14.7744,69.06576,44.0325
--18.44164,-19.29718,-18.15646,-15.39972,71.988938,46.795
--19.206,-20.097,-18.909,-16.038,74.9727,46.1835
--19.012,-19.894,-18.718,-15.876,74.2154,46.65
--18.82188,-19.69506,-18.53082,-15.62022,73.473246,45.6786
--19.012,-19.894,-18.718,-15.778,74.2154,46.54
--18.818,-19.691,-18.527,-15.617,73.4678,45.5318
--18.624,-19.488,-18.336,-15.456,72.7008,45.0624
--19.01394,-19.79802,-18.71991,-15.77961,74.222973,46.5795
--18.2457,-19.09215,-17.96355,-15.14205,71.224065,44.593
--18.82188,-19.69506,-18.53082,-15.81426,73.473246,46.8666
--18.43776,-19.29312,-18.15264,-15.39648,71.973792,44.4
--17.8771,-18.70645,-17.60065,-14.83615,69.785195,45.258
--18.43,-19.285,-18.145,-15.39,71.9435,45.66
--18.624,-19.488,-18.336,-15.552,72.7008,46.416
--18.624,-19.584,-18.432,-15.456,72.7104,44.4
--17.6928,-18.6048,-17.4192,-14.7744,69.06576,44.498
--18.0614,-18.9924,-17.8752,-14.9891,70.50463,45.4385
--18.06528,-18.90336,-17.78592,-14.8992,70.519776,45.6288
--18.43776,-19.29312,-18.15264,-15.30144,71.964288,44.5824
--18.0614,-18.9924,-17.8752,-15.0822,70.50463,43.7285
--18.06528,-18.99648,-17.87904,-14.99232,70.519776,45.1438
--18.63176,-19.49612,-18.43968,-15.55848,72.731092,46.3932
--18.2457,-19.09215,-18.0576,-15.33015,71.224065,47.1636
--19.206,-20.097,-19.008,-15.939,74.9727,46.14
--19.4,-20.3,-19.2,-16.3,75.73,47.13
--18.43,-19.285,-18.24,-15.295,71.953,44.973
--18.44164,-19.29718,-18.25152,-15.11454,71.988938,45.7161
--18.2457,-19.09215,-18.0576,-14.8599,71.224065,44.422
--18.43,-19.38,-18.24,-15.295,71.9435,46.76
--17.6928,-18.6048,-17.5104,-14.6832,69.06576,44.6784
--18.62982,-19.49409,-18.43776,-15.46083,72.723519,46.0746
--18.2457,-19.09215,-18.0576,-15.2361,71.224065,46.5795
--19.206,-20.097,-19.008,-16.038,74.9727,46.03
--18.624,-19.488,-18.432,-15.456,72.7008,45.3408
--18.63176,-19.49612,-18.43968,-15.55848,72.731092,46.3932
--18.82188,-19.69506,-18.62784,-15.62022,73.473246,48.5496
--18.818,-19.788,-18.624,-15.811,73.4581,44.8625
--18.43,-19.38,-18.24,-15.58,71.953,47.75
--18.1584,-19.0896,-17.87904,-15.17856,70.519776,44.1888
--19.11,-20.09,-18.816,-16.17,74.2154,47.089
--19.11,-20.09,-18.914,-16.072,74.2154,47.3732
--18.9189,-19.8891,-18.72486,-15.81426,73.473246,45.2034
--17.784,-18.696,-17.6016,-14.6832,69.06576,44.878
--18.525,-19.38,-18.335,-15.485,71.9435,47.45
--18.915,-19.788,-18.721,-15.811,73.4581,45.5318
--18.34755,-19.28845,-18.15937,-15.52485,71.254357,45.1632
--18.525,-19.475,-18.335,-15.58,71.9435,45.163
--18.525,-19.475,-18.335,-15.77,71.9435,44.878
--18.0614,-19.1786,-17.9683,-15.3615,70.50463,44.6975
--18.33975,-19.3743,-18.2457,-15.51825,71.224065,46.9755
--18.9189,-19.98612,-18.72486,-16.10532,73.473246,45.5112
--18.9189,-19.8891,-18.82188,-15.81426,73.473246,45.9756
--18.915,-19.982,-18.721,-15.811,73.4581,45.0468
--18.33975,-19.3743,-18.2457,-15.51825,71.224065,46.9755
--18.5328,-19.57824,-18.43776,-15.77664,71.973792,44.1984
--17.96925,-18.9829,-17.8771,-15.20475,69.785195,45.1535
--17.9712,-18.98496,-17.87904,-15.39072,69.792768,44.4
--18.1584,-19.18272,-18.06528,-15.45792,70.529088,44.304
--17.784,-18.7872,-17.6928,-15.2304,69.06576,43.9375
--18.5367,-19.67742,-18.5367,-15.6849,71.988938,44.7558
--17.784,-18.8784,-17.784,-15.048,69.06576,45.0775
--18.9189,-20.08314,-18.9189,-15.91128,73.473246,46.109
--18.72,-19.776,-18.72,-15.936,72.7008,45.6288
--17.96925,-18.9829,-17.96925,-15.2969,69.785195,45.4348
--17.96925,-18.9829,-17.96925,-15.20475,69.785195,44.6975
--18.33975,-19.46835,-18.33975,-15.70635,71.224065,44.7735
--17.9712,-19.07712,-17.9712,-15.2064,69.792768,45.7344
--17.96925,-19.07505,-17.96925,-15.20475,69.785195,44.8625
--18.9189,-20.08314,-18.9189,-16.0083,73.473246,46.9755
--18.33975,-19.46835,-18.33975,-15.51825,71.224065,46.2924
--18.3456,-19.47456,-18.3456,-15.61728,71.246784,47.2752
--18.525,-19.665,-18.525,-15.865,71.9435,46.5785
--17.8752,-18.8784,-17.784,-15.048,69.06576,45.9168
--18.3456,-19.47456,-18.3456,-15.71136,71.246784,45.7344
--19.404,-20.493,-19.305,-16.434,74.9727,47.83
--18.62,-19.76,-18.525,-15.77,71.9435,45.0775
--18.816,-19.872,-18.816,-15.936,72.7008,47.24
--18.62,-19.665,-18.525,-15.865,71.953,45.258
--18.816,-19.872,-18.816,-15.936,72.7008,46.128
--18.82188,-19.97424,-18.82188,-16.13304,72.723519,46.2924
--18.62,-19.76,-18.62,-15.675,71.9435,44.6975
--18.816,-19.968,-18.816,-16.128,72.7968,46.65
--18.43968,-19.47456,-18.43968,-15.61728,71.340864,45.0624
--19.208,-20.384,-19.208,-16.366,74.3134,45.619
--18.62,-19.665,-18.62,-15.96,72.0385,46.94
--19.208,-20.384,-19.208,-16.366,74.3134,45.5112
--19.20996,-20.28807,-19.20996,-16.26966,74.320983,45.9657
--18.2476,-19.3648,-18.2476,-15.7339,70.59773,44.737
--18.4338,-19.5624,-18.4338,-15.70635,71.30871,46.0746
--18.43968,-19.56864,-18.43968,-15.61728,71.340864,44.5824
--19.6,-20.8,-19.6,-16.5,75.82,46.25
--18.43968,-19.56864,-18.43968,-15.5232,71.331456,44.9232
--19.012,-20.176,-19.012,-16.102,73.5454,44.6491
--17.689,-18.68175,-17.689,-14.89125,68.436575,43.6525
--18.4338,-19.46835,-18.4338,-15.51825,71.30871,46.1835
--18.2476,-19.2717,-18.2476,-15.3615,70.59773,45.9032
--18.2476,-19.3648,-18.2476,-15.3615,70.58842,43.548
--18.82384,-19.88028,-18.82384,-15.75056,72.817528,45.3152
--19.109,-20.079,-19.012,-16.005,73.5551,44.6491
--19.6,-20.7,-19.6,-16.3,75.83,45.95
--18.0614,-19.07505,-18.0614,-15.1126,70.01557,44.7655
--18.25152,-19.18272,-18.1584,-15.3648,70.612896,44.2902
--18.25152,-19.18272,-18.1584,-15.45792,70.743264,44.6588
--19.208,-20.286,-19.11,-16.17,74.3134,45.325
--18.91791,-19.87821,-18.72585,-16.03701,72.953991,44.8625
--18.816,-19.872,-18.816,-15.936,72.9312,44.5824
--19.01592,-20.08314,-19.01592,-16.0083,73.715796,45.2826
--18.72682,-19.67742,-18.5367,-15.49478,72.217082,45.1094
--18.53376,-19.47456,-18.3456,-15.5232,71.472576,44.1888
--18.3407,-19.2717,-18.1545,-15.2684,70.73738,43.662
--19.503,-20.493,-19.305,-16.137,75.2103,46.03
--18.3407,-19.1786,-18.1545,-15.3615,70.72807,43.453
--19.503,-20.493,-19.305,-16.137,75.2103,45.55
--18.91988,-19.88028,-18.7278,-15.94264,72.961588,44.639
--18.52785,-19.46835,-18.33975,-15.51825,71.449785,45.5697
--19.30797,-20.28807,-19.11195,-16.07364,74.458197,45.2034
--18.72288,-19.67328,-18.5328,-15.6816,72.201888,43.5168
--19.306,-20.188,-19.11,-15.974,74.4506,45.25
--18.52785,-19.46835,-18.33975,-15.4242,71.449785,42.8925
--18.15355,-18.9829,-17.96925,-15.02045,70.006355,43.2725
--18.72682,-19.58236,-18.5367,-15.6849,72.217082,43.9701
--17.9664,-18.7872,-17.784,-15.1392,69.28464,43.1424
--19.30797,-20.09205,-19.11195,-16.17165,74.458197,44.7975
--18.53376,-19.38048,-18.3456,-15.42912,71.472576,44.0412
--18.53573,-19.47663,-18.34755,-15.61894,71.480173,43.7955
--19.109,-20.079,-18.915,-16.005,73.6909,43.4075
--18.34464,-19.27584,-18.1584,-15.27168,70.743264,42.96
--19.11294,-19.98612,-18.9189,-15.81426,73.706094,44.4114
--19.503,-20.394,-19.305,-16.236,75.2103,44.56
--18.715,-19.57,-18.525,-15.58,72.1715,44.34
--17.9664,-18.8784,-17.784,-15.048,69.28464,42.2275
--18.53376,-19.47456,-18.3456,-15.61728,71.472576,43.7472
--18.72288,-19.67328,-18.5328,-15.58656,72.211392,44.4906
--18.53376,-19.38048,-18.3456,-15.5232,71.472576,44.0412
--18.91791,-19.87821,-18.72585,-15.74892,72.953991,44.1144
--19.11294,-20.08314,-18.9189,-15.81426,73.706094,44.4114
--18.6219,-19.3743,-18.33975,-15.4242,71.449785,44.1144
--19.11294,-19.98612,-18.9189,-15.91128,73.706094,43.7472
--19.602,-20.394,-19.305,-16.335,75.2103,44.64
--18.4338,-19.1786,-18.1545,-15.3615,70.72807,43.4532
--17.8695,-18.5915,-17.59875,-14.9815,68.562925,42.123
--19.01592,-19.78424,-18.7278,-15.8466,72.971192,43.3552
--18.81,-19.57,-18.525,-15.77,72.181,44.35
--18.0576,-18.7872,-17.784,-15.048,69.28464,42.384
--18.43776,-18.53088,-16.48224,-14.34048,70.743264,42.8544
--18.4338,-17.5959,-15.0822,-13.034,70.72807,42.123
--19.404,-17.64,-14.896,-12.74,74.4506,44.45
--17.8695,-15.61325,-12.90575,-10.55925,68.562925,41.9425
--18.62982,-15.61894,-12.60806,-9.69127,71.480173,42.5442
--18.24768,-14.83776,-11.61216,-8.66304,70.013952,42.4704
--18.43776,-14.61984,-11.08128,-7.9152,70.752576,42.8352
--18.82188,-14.44912,-10.64672,-7.41468,72.217082,43.4532
--18.0576,-13.3152,-9.6672,-6.1104,69.29376,42
--19.20996,-13.67982,-9.60498,-5.91822,73.715796,43.561
--18.4338,-12.6616,-8.4721,-6.1446,70.72807,41.5625
--19.008,-12.384,-8.256,-7.008,72.9312,44.34
--19.20996,-11.83644,-7.7616,-6.7914,73.706094,44.0055
--18.4338,-10.5203,-7.2618,-6.7963,70.72807,43.0612
--18.82188,-10.17142,-7.03444,-6.74926,72.217082,43.0612
--18.6219,-9.2169,-6.3954,-6.3954,71.449785,41.743
--18.81,-8.645,-5.795,-5.605,72.162,43.86
--18.2457,-7.64845,-4.88395,-4.88395,70.01557,42.7285
--19.206,-7.275,-4.171,-4.656,73.6909,44.05
--19.008,-6.432,-3.168,-3.936,72.9312,43.94
--18.715,-5.51,-2.185,-3.515,72.181,43.86
--18.82188,-4.84806,-1.04566,-3.3271,72.217082,42.5442
--18.53573,-3.95178,-0.18818,-2.72861,71.489582,42.8255
--17.9664,-3.192,0.912,-2.0976,69.28464,42.1056
--18.15552,-2.58048,2.11968,-1.75104,70.013952,42.1824
--18.53376,-2.352,3.10464,-1.31712,71.472576,42.9828
--18.34464,-1.3968,4.09728,-1.21056,70.743264,41.8944
--18.53573,-0.9409,5.17495,-0.37636,71.480173,42.1465
--18.53376,-0.37632,6.20928,-0.09408,71.472576,42.63
--18.62,0.285,7.505,0.57,72.1715,43.65
--18.62,1.045,8.455,0.95,72.1715,43.75
--19.404,1.485,9.9,1.386,75.2103,43.64
--19.208,1.96,11.074,2.058,74.4506,42.777
--19.305,2.871,12.177,2.376,75.2103,43.4214
--17.96925,3.5017,12.62455,2.85665,70.006355,41.363
--17.96925,4.0546,13.54605,3.22525,70.006355,41.9425
--18.5328,4.94208,15.30144,3.51648,72.201888,42.1824
--18.63176,5.57032,16.61492,4.22576,72.961588,43.169
--19.206,6.336,18.315,4.851,75.2103,43.7085
--19.012,7.35,19.306,5.194,74.4506,43.463
--18.72486,7.95564,20.08314,5.62716,73.715796,43.5708
--18.72486,8.44074,21.05334,6.40332,73.706094,43.7184
--18.816,9.408,22.246,6.664,74.4506,44.56
--18.06336,9.59616,22.29696,7.15008,71.472576,42.8544
--17.60065,10.04435,22.76105,7.1877,70.006355,41.8475
--18.53082,11.44836,24.93414,7.85862,73.706094,42.9828
--17.5085,11.4266,24.6962,8.1092,70.006355,42.3308
--18.24,12.576,26.4,8.832,72.9312,43.94
--17.77545,13.07295,26.80425,9.31095,71.449785,43.5006
--17.78301,13.83123,27.47428,9.69127,71.489582,42.3405
--17.1456,14.0448,27.36,9.7584,69.29376,41.667
--18.14274,15.5232,29.97918,10.96326,73.706094,42.9828
--17.41344,15.73728,29.51904,11.08128,70.743264,41.7984
--17.67,16.53,30.97,11.59,72.1715,43.86
--18.6,18,33.2,12.7,75.97,43.94
--18.315,18.414,33.462,12.87,75.2103,43.64
--17.49104,18.25152,32.89076,13.3084,72.217082,42.7672
--17.21115,18.71595,33.38775,13.26105,71.449785,41.2775
--17.04096,19.0896,33.70944,13.59552,70.743264,42.4472
--17.38143,20.26233,35.43507,14.30847,72.953991,43.4214
--16.67915,20.0887,34.8327,14.46755,70.006355,41.743
--16.5888,20.64384,35.38944,14.83776,70.013952,42.1824
--17.54379,22.5423,38.41992,16.17165,74.458197,43.0947
--16.2336,21.432,36.48,15.6864,69.28464,41.3535
--16.31232,22.21056,37.50912,16.22016,70.013952,42
--16.5528,23.23035,39.1248,17.1171,71.449785,42.9264
--17.15175,24.79653,41.36022,18.32787,74.458197,42.6294
--16.53,24.7,40.755,18.145,72.1715,43.25
--15.94195,24.5119,39.9931,18.0614,70.006355,41.287
--16.01664,25.23552,40.9728,18.71712,70.743264,41.9525
--16.758,27.244,43.61,19.796,74.4506,43.75
--16.3251,27.17649,43.50159,20.07027,72.963594,42.4375
--16.06514,27.47234,43.53748,20.4379,72.217082,42.875
--16.8,29.4,46.3,22,75.97,43.65
--15.4546,27.93,43.6639,20.9475,70.72807,42.6692
--16.17,29.792,46.55,22.54,74.4506,42.9828
--15.91128,30.0762,46.66662,22.89672,73.706094,42.6692
--15.1753,29.2334,45.1535,22.344,70.72807,40.983
--16.038,31.383,48.411,24.255,75.2103,43.2135
--15.2064,30.69792,46.94976,23.66496,72.201888,43.1046
--15.423,31.913,48.5,24.444,73.6909,43.75
--14.86464,31.42272,47.5104,24.27264,71.472576,41.4144
--14.52672,31.56768,47.39808,24.49056,70.743264,41.0592
--15.0381,33.27786,49.77126,25.90434,73.706094,42.4116
--14.3374,32.4919,48.2258,25.3232,70.73738,40.812
--14.744,34.338,50.828,26.869,73.6909,41.7682
--13.62775,32.3095,47.652,25.4505,68.562925,41.192
--14.9,36.3,53.3,28.7,75.97,43.25
--13.9194,34.6104,50.50485,27.4626,71.449785,42.9264
--14.308,36.554,53.116,29.008,74.4506,43.3552
--13.968,36.666,52.962,29.1,73.6909,43.25
--14.3,38.2,54.5,30.6,75.97,43.06
--13.959,37.818,53.262,32.274,75.2103,43.25
--13.48578,36.8676,51.51762,32.88978,73.706094,42.777
--12.98442,35.7542,49.30316,31.42606,71.470764,42.2241
--13.328,37.142,50.666,32.536,74.4506,43.94
--12.96,36.384,48.96,31.68,72.9312,43.46
--12.77332,35.15064,46.96356,35.63084,72.951984,43.3552
--12.19872,32.49888,43.11456,34.54752,70.743264,42.3405
--12.51558,32.88978,42.78582,35.21826,73.706094,42.581
--12.04224,30.95232,40.36032,32.73984,71.472576,42.2772
--11.85408,29.6352,38.76096,31.89312,71.472576,41.8944
--12.03048,29.20302,38.12886,32.5017,73.706094,43.4214
--11.834,28.421,36.569,31.816,73.6909,43.64
--11.1744,26.5392,33.70944,29.51904,70.743264,42.5442
--11.0979,25.7697,32.82345,29.1555,71.449785,44.0055
--11.36916,25.97265,33.12738,29.89305,74.458197,43.6095
--10.3968,23.4384,29.8224,26.904,69.28464,41.287
--10.864,24.25,30.652,28.033,73.6909,43.14
--10.89,23.958,30.096,28.017,75.2103,42.9264
--10.692,23.265,29.304,27.522,75.2103,42.8175
--10.29,22.344,28.126,26.558,74.5486,42.5908
--9.888,21.216,26.688,25.44,72.9312,41.8944
--9.4031,19.9234,25.137,24.1129,70.72807,41.192
--9.2169,19.3648,24.3922,23.5543,70.71876,41.363
--9.0307,18.8993,23.7405,22.9957,70.72807,41.2775
--9.215,18.915,24.056,23.28,73.6909,42.0495
--8.56995,17.5085,22.20815,21.83955,70.006355,42.1562
--8.56128,17.4048,22.01472,21.73248,71.472576,42.5908
--8.544,17.28,21.888,21.6,73.0272,41.7888
--8.18235,16.45875,20.78505,20.59695,71.543835,42.9264
--8.0784,16.06176,20.52864,20.4336,72.296928,42.6294
--8.134,16.072,20.58,20.58,74.5388,43.25
--7.5272,14.96031,19.19436,19.28845,71.574263,41.9525
--7.644,15.288,19.502,19.698,74.5486,43.46
--7.623,14.949,19.206,19.503,75.3093,44.24
--6.8894,13.5926,17.5959,17.7821,70.82117,42.5908
--6.935,13.3,17.385,17.86,72.257,41.5625
--6.54265,12.5324,16.4027,16.9556,70.098505,41.3705
--6.831,13.068,17.127,17.82,75.2994,42.8175
--6.499,12.513,16.49,17.072,73.7782,41.9525
--6.0515,11.5444,15.2684,16.0132,70.82117,40.907
--5.8653,11.172,14.8029,15.6408,70.82117,40.527
--5.73949,10.82035,14.67804,15.33667,71.574263,41.4772
--5.7024,10.64448,14.35104,15.11136,72.296928,43.0254
--5.51232,10.26432,13.97088,14.82624,72.296928,43.0254
--5.1604,9.5836,13.0853,14.0068,70.08929,40.8025
--5.29254,9.801,13.52538,14.60349,74.566008,42.3324
--4.8906,9.12285,12.6027,13.5432,71.543835,41.192
--4.79808,8.74944,12.2304,13.26528,71.566656,41.8944
--4.4688,8.1168,11.4,12.4032,69.37584,41.7984
--4.42035,7.99425,11.38005,12.69675,71.543835,42.5205
--4.41045,8.13483,11.46717,12.93732,74.556207,42.9165
--4.0128,7.2048,10.3968,11.6736,69.37584,40.7075
--4.158,7.524,10.89,12.375,75.3093,42.5205
--3.8412,6.91416,10.27521,11.42757,73.050021,41.7682
--3.63168,6.33216,9.59136,11.08128,70.845696,40.9536
--3.663,6.435,9.801,11.385,75.3093,42.76
--3.45708,6.14592,9.21888,10.85139,73.050021,41.3802
--3.298,5.917,9.021,10.67,73.7879,41.2735
--3.267,5.742,8.811,10.791,75.3093,42.66
--2.8861,5.1205,8.0066,9.6824,70.82117,40.698
--2.88,4.992,7.872,9.504,73.0272,42.66
--2.744,4.704,7.742,9.506,74.5486,41.699
--2.54016,4.2336,7.056,8.84352,71.566656,42.091
--2.3765,4.18264,6.84432,8.93564,72.321648,41.5912
--2.1888,3.7392,6.384,8.2992,69.37584,40.9536
--2.23146,3.78378,6.50034,8.53776,73.803114,42.091
--2.04864,3.35232,5.95968,8.00832,70.836384,41.6712
--1.96,3.332,5.978,7.938,74.5486,41.9048
--1.80576,2.8512,5.51232,7.31808,72.296928,41.232
--1.764,2.548,5.39,7.35,74.5486,42.1988
--1.64934,2.32848,5.04504,7.2765,73.803114,42.2772
--1.47,2.254,4.9,7.35,74.5486,42.77
--1.37214,2.05821,4.60647,6.95871,74.566008,42.5304
--1.19795,1.843,4.0546,6.2662,70.006355,41.3802
--1.1058,1.6587,3.8703,5.98975,70.098505,41.7682
--1.05644,1.34456,3.74556,5.95448,73.057628,41.5912
--0.95,1.045,3.42,5.7,72.1715,40.907
--0.855,0.76,3.135,5.51,72.1715,40.622
--0.7372,0.64505,2.9488,5.3447,70.098505,41.7682
--0.66528,0.4752,2.75616,5.32224,72.296928,41.7984
--0.576,0.48,2.592,5.184,73.0272,42.76
--0.4704,0.28224,2.352,4.89216,71.576064,41.9146
--0.384,0.096,2.208,4.608,72.9408,42.44
--0.291,-0.194,2.037,4.268,73.6909,41.3705
--0.18816,-0.56448,1.69344,4.13952,71.481984,41.3376
--0.09603,-0.67221,1.53648,4.12929,72.953991,42.4116
--0.09504,-0.76032,1.33056,3.8016,72.201888,41.1264
-0,-0.83808,1.11744,3.7248,70.743264,41.0496
-0.09216,-1.01376,0.9216,3.40992,70.013952,41.4144
-0.19404,-1.26126,0.77616,3.49272,73.706094,42.7086
-0.1862,-1.3965,0.5586,2.9792,70.72807,41.993
-0.285,-1.615,0.38,3.135,72.1715,42.84
-0.3648,-1.7328,0.1824,2.736,69.28464,40.622
-0.4851,-2.03742,-0.09702,2.61954,73.706094,42.3324
-0.4608,-2.11968,-0.27648,2.304,70.013952,40.848
-0.57036,-2.28144,-0.38024,2.3765,72.217082,41.9525
-0.55872,-2.42112,-0.55872,2.04864,70.743264,41.3376
-0.66528,-2.56608,-0.76032,1.99584,72.201888,43.1046
-0.686,-2.842,-0.98,1.96,74.4506,42.091
-0.75264,-2.91648,-1.03488,1.59936,71.472576,41.4144
-0.78408,-3.23433,-1.27413,1.47015,74.458197,43.3125
-0.85554,-3.3271,-1.4259,1.33084,72.217082,42.581
-0.9405,-3.3858,-1.59885,1.22265,71.449785,42.7086
-1,-3.7,-1.9,1,75.97,42.76
-0.9603,-3.74517,-1.9206,0.76824,72.953991,42.2241
-1.0241,-3.8171,-2.0482,0.5586,70.72807,41.0875
-0.99275,-3.88075,-2.166,0.5415,68.562925,41.2775
-1.06722,-4.26888,-2.4255,0.29106,73.570266,42.091
-1.10592,-4.1472,-2.48832,0.27648,69.884928,41.616
-1.15236,-4.51341,-2.78487,0.19206,72.809946,42.6294
-1.15248,-4.60992,-2.8812,-0.38416,72.961588,42.6692
-1.2103,-4.7481,-3.0723,-0.6517,70.72807,42.385
-1.24839,-5.18562,-3.36105,-0.28809,72.809946,42.0495
-1.22304,-4.98624,-3.38688,-0.37632,71.340864,41.6256
-1.274,-5.096,-3.528,-0.49,74.4506,42.1988
-1.248,-4.992,-3.648,-0.384,72.7968,41.3376
-1.30368,-5.02848,-3.53856,-0.65184,70.752576,41.2416
-1.372,-5.39,-3.92,-1.862,74.3134,42.385
-1.33084,-5.60854,-3.99252,-1.61602,72.083998,41.7682
-1.31712,-5.73888,-4.13952,-1.50528,71.472576,41.4144
-1.31712,-5.73888,-4.2336,-1.31712,71.340864,42.1988
-1.386,-6.039,-4.554,-1.386,75.0717,42.7086
-1.37214,-5.97861,-4.60647,-1.37214,74.311182,43.3125
-1.37214,-6.07662,-4.70448,-1.66617,74.311182,42.9264
-1.372,-6.272,-4.802,-2.45,74.3134,42.385
-1.4,-6.8,-5.1,-2.6,75.83,43.25
-1.344,-6.72,-5.088,-2.4,72.7872,42.95
-1.35828,-6.7914,-5.23908,-2.13444,73.570266,42.1988
-1.41075,-6.5835,-5.17275,-2.0691,71.30871,43.0155
-1.386,-6.831,-5.544,-2.079,75.0717,42.8175
-1.33,-6.65,-5.415,-2.185,72.029,43.14
-1.5,-7.1,-5.8,-2.5,75.82,43.14
-1.34442,-7.01019,-5.66577,-2.59281,72.819549,42.5205
-1.372,-7.35,-5.88,-2.744,74.3036,42.2772
-1.37214,-7.44876,-5.97861,-3.03831,74.320983,43.1046
-1.3167,-7.3359,-5.92515,-2.8215,71.30871,43.0155
-1.33084,-7.50974,-6.08384,-3.04192,72.074492,41.9525
-1.19795,-7.27985,-5.98975,-3.04095,69.86813,41.7682
-1.2768,-7.296,-6.0192,-3.192,69.15696,40.907
-1.17325,-7.31025,-6.04675,-3.33925,68.436575,41.1825
-1.23552,-7.88832,-6.46272,-3.70656,72.068832,41.232
-1.21056,-7.9152,-6.5184,-3.7248,70.612896,41.4144
-1.235,-8.265,-6.745,-3.8,72.0385,43.86
-1.1172,-8.0997,-6.7032,-3.724,70.59773,42.385
-1.22304,-8.18496,-6.86784,-3.7632,71.331456,42.091
-1.0944,-8.0256,-6.7488,-3.8304,69.14784,41.232
-1.16424,-8.63478,-7.2765,-4.17186,73.570266,42.5205
-1.2,-9.2,-7.7,-4.7,75.83,43.14
-1.0032,-8.664,-7.2048,-4.2864,69.15696,41.0875
-1.0241,-8.7514,-7.3549,-4.3757,70.59773,40.8025
-1.06722,-9.11988,-7.7616,-4.65696,73.570266,42.2235
-0.9506,-8.93564,-7.69986,-4.37276,72.083998,42.0495
-0.9408,-8.84352,-7.62048,-4.2336,71.340864,41.6256
-0.9405,-8.93475,-7.7121,-4.60845,71.318115,42.4215
-0.87318,-9.31392,-8.05266,-4.94802,73.570266,42.4215
-0.84672,-9.12576,-7.90272,-5.1744,71.331456,41.4144
-0.855,-9.405,-8.17,-5.225,72.0385,40.8025
-0.76032,-9.59904,-8.26848,-5.2272,72.068832,41.3376
-0.76032,-9.59904,-8.26848,-5.13216,72.059328,42.3324
-0.7524,-9.5931,-8.2764,-5.0787,71.318115,42.5205
-0.65856,-9.59616,-8.37312,-5.26848,71.340864,41.9146
-0.6517,-9.5893,-8.379,-5.2136,70.58842,40.242
-0.576,-9.984,-8.736,-5.664,72.7968,41.1264
-0.6,-10.5,-9.2,-5.8,75.83,42.44
-0.45125,-9.5665,-8.39325,-5.5955,68.436575,40.4225
-0.48015,-10.27521,-9.02682,-5.95386,72.809946,41.4772
-0.4802,-10.37232,-9.1238,-6.14656,72.817528,41.5912
-0.3648,-9.8496,-8.7552,-5.5632,69.15696,40.4225
-0.36864,-10.1376,-8.84736,-5.80608,69.884928,40.56
-0.27648,-10.1376,-8.93952,-5.9904,69.894144,41.4144
-0.291,-10.864,-9.603,-6.305,73.5454,41.2638
-0.18818,-10.63217,-9.31491,-6.30403,71.348447,42.2338
-0.18818,-10.72626,-9.409,-6.20994,71.348447,41.8458
-0.2,-11.4,-10.1,-6.9,75.82,43.14
-0.095,-10.83,-9.69,-6.555,72.029,40.622
-0.099,-11.385,-10.197,-7.029,75.0717,42.6294
-0,-11.21708,-9.88624,-6.93938,72.074492,41.4772
-0,-11.305,-9.975,-6.84,72.029,40.4225
--0.1,-11.9,-10.6,-7.2,75.83,42.95
--0.09408,-11.10144,-9.97248,-6.96192,71.331456,42.483
--0.19208,-11.33272,-10.27628,-6.91488,72.817528,41.9048
--0.28224,-11.19552,-10.06656,-6.96192,71.331456,41.797
--0.297,-11.979,-10.791,-7.92,75.0618,42.0156
--0.3648,-11.3088,-10.032,-7.296,69.15696,40.983
--0.36864,-11.52,-10.22976,-7.18848,69.875712,40.9536
--0.4655,-11.4513,-10.3341,-7.1687,70.58842,40.622
--0.4608,-11.24352,-10.22976,-7.00416,69.884928,41.232
--0.5643,-11.4741,-10.43955,-7.24185,71.318115,42.3423
--0.55872,-11.36064,-10.42944,-7.35648,70.603584,41.1668
--0.672,-11.904,-10.752,-7.776,72.7968,42.36
--0.76032,-11.97504,-10.83456,-7.88832,72.068832,42.3324
--0.75272,-12.04352,-10.82035,-7.90356,71.348447,41.2735
--0.83808,-11.91936,-10.7088,-7.54272,70.612896,40.9536
--0.84645,-11.94435,-10.9098,-7.61805,71.30871,42.5205
--0.98,-12.446,-11.368,-8.134,74.3036,42.76
--0.9312,-11.82624,-10.80192,-7.72896,70.612896,40.9825
--1.05644,-12.19708,-11.23668,-7.97132,72.827132,41.8068
--1.1,-12.8,-11.7,-8.4,75.82,42.65
--1.14072,-12.16768,-11.21708,-7.98504,72.083998,41.5912
--1.22265,-12.13245,-11.0979,-8.0883,71.318115,40.1375
--1.235,-12.445,-11.305,-8.36,72.029,42.25
--1.37214,-12.93732,-11.7612,-8.8209,74.311182,42.6294
--1.33,-12.73,-11.495,-8.455,72.029,42.65
--1.4256,-12.73536,-11.49984,-8.26848,72.059328,42.3324
--1.52064,-12.73536,-11.59488,-8.5536,72.068832,40.848
--1.683,-13.266,-12.078,-8.811,75.0618,43.14
--1.5827,-12.5685,-11.4513,-8.1928,70.59773,40.4225
--1.6929,-12.6027,-11.56815,-8.2764,71.318115,42.3324
--1.67616,-12.5712,-11.54688,-8.3808,70.603584,41.2735
--1.78752,-12.7008,-11.66592,-8.56128,71.331456,40.4544
--1.75104,-12.53376,-11.52,-8.47872,69.875712,40.6656
--1.824,-12.4944,-11.4912,-8.4816,69.15696,40.318
--1.95552,-12.94368,-11.82624,-8.8464,70.603584,40.8384
--2.03742,-13.48578,-12.32154,-9.2169,73.570266,41.2972
--2.11266,-13.4442,-12.29184,-9.21888,72.809946,40.8758
--2.18592,-13.3056,-12.26016,-9.21888,72.059328,40.272
--2.0976,-12.8592,-11.7648,-8.8464,69.15696,40.4544
--2.304,-13.536,-12.48,-9.312,72.7872,42.25
--2.4255,-13.77684,-12.6126,-9.50796,73.570266,41.8275
--2.35225,-13.54896,-12.32579,-9.409,71.339038,41.1668
--2.3959,-13.36175,-12.1638,-9.215,69.877345,40.033
--2.51424,-13.40928,-12.29184,-9.312,70.612896,40.7691
--2.48805,-13.36175,-12.25595,-9.12285,69.877345,40.1375
--2.527,-13.08625,-12.00325,-9.2055,68.436575,40.6315
--2.871,-14.553,-13.365,-10.395,75.0618,42.03
--2.70048,-13.87488,-12.66432,-9.7776,70.612896,40.3584
--2.9403,-14.60349,-13.32936,-9.99702,74.311182,41.7186
--2.793,-13.6857,-12.6616,-9.4962,70.58842,41.013
--3.007,-14.162,-13.192,-9.894,73.5454,42.14
--3.04128,-13.7808,-12.92544,-9.59904,72.059328,41.7186
--3.04192,-13.7837,-12.92816,-9.79118,72.074492,40.7788
--3.234,-14.406,-13.426,-10.486,74.3134,40.9052
--3.23136,-14.256,-13.11552,-10.35936,72.059328,40.176
--3.1977,-14.20155,-13.07295,-9.9693,71.318115,41.9364
--3.3264,-14.35104,-13.21056,-9.9792,72.059328,40.3584
--3.2832,-13.68,-12.6768,-9.7584,69.14784,39.862
--3.492,-14.453,-13.483,-10.185,73.5454,41.95
--3.589,-14.453,-13.483,-10.185,73.5551,40.5945
--3.5378,-13.965,-12.9409,-9.6824,70.58842,41.2972
--3.8,-15,-14,-10.6,75.82,42.25
--3.783,-14.55,-13.58,-10.379,73.5551,41.96
--3.762,-14.20155,-13.26105,-10.1574,71.318115,41.2533
--3.7632,-14.30016,-13.26528,-10.3488,71.340864,40.5132
--3.8171,-14.2443,-13.1271,-10.241,70.58842,41.111
--3.8171,-14.3374,-13.2202,-10.1479,70.50463,41.1992
--3.8304,-14.0448,-13.0416,-10.1232,69.15696,40.242
--4.0033,-14.4305,-13.3133,-10.241,70.50463,41.192
--4.08758,-14.82936,-13.68864,-10.74178,72.074492,41.9048
--4.22532,-14.98068,-13.82832,-10.85139,72.723519,40.8758
--4.32,-14.976,-13.92,-10.848,72.7008,44.05
--4.462,-15.229,-14.065,-11.058,73.4581,41.7682
--4.37276,-15.01948,-13.87876,-10.83684,71.988938,41.5128
--4.3757,-14.8029,-13.6857,-10.6134,70.50463,39.7575
--4.33105,-14.65185,-13.54605,-10.59725,69.785195,40.7788
--4.4232,-14.65185,-13.54605,-10.5051,69.785195,39.9285
--4.65696,-15.11136,-14.06592,-11.02464,71.973792,41.3226
--4.56288,-14.80608,-13.78176,-10.89504,70.519776,40.5945
--5,-16.1,-14.9,-11.8,75.73,41.74
--4.74912,-15.08544,-13.87488,-10.98816,70.519776,40.2816
--5.049,-16.038,-14.85,-11.583,74.9727,42.55
--4.8412,-15.0822,-13.965,-11.0789,70.50463,40.4225
--5.141,-15.714,-14.647,-11.737,73.4581,40.2065
--5.03818,-15.39972,-14.35406,-11.4072,71.988938,40.5945
--5.0787,-15.33015,-14.2956,-11.0979,71.224065,41.4315
--5.225,-15.485,-14.44,-11.305,71.934,39.9285
--5.39055,-16.07364,-14.99553,-11.85921,74.222973,42.5205
--5.488,-16.17,-14.994,-11.956,74.2154,43.53
--5.1984,-15.1392,-14.0448,-11.0352,69.06576,41.3376
--5.30784,-15.3648,-14.34048,-11.26752,70.519776,41.712
--5.684,-16.17,-15.092,-11.662,74.2154,41.2972
--5.45722,-15.61894,-14.58395,-11.2908,71.254357,41.4772
--5.55131,-15.61894,-14.58395,-11.57307,71.254357,41.1668
--5.7624,-16.03868,-14.8862,-11.90896,72.731092,41.1992
--5.5872,-15.64416,-14.52672,-11.64,70.519776,40.0032
--5.917,-16.296,-15.229,-11.931,73.4581,40.4878
--5.7722,-15.6408,-14.6167,-11.5444,70.43946,39.653
--5.7722,-15.6408,-14.6167,-11.7306,70.50463,41.405
--5.80545,-15.57335,-14.5597,-11.70305,69.785195,40.9825
--5.95968,-15.73728,-14.71296,-11.91936,70.519776,41.4144
--6.08256,-16.1568,-15.11136,-12.07008,71.89776,42.0156
--6.1152,-15.9936,-14.95872,-12.2304,71.17152,41.232
--6.2426,-16.42284,-15.27036,-12.29312,72.65426,41.9832
--6.534,-17.028,-15.84,-12.87,74.8935,42.5205
--6.23904,-16.01664,-14.8992,-12.1056,70.435968,40.6656
--6.1104,-15.7776,-14.6832,-11.856,69.00192,41.232
--6.46272,-16.44192,-15.30144,-12.3552,71.89776,42.0156
--6.4239,-16.1063,-14.9891,-12.1961,70.43015,41.1894
--6.2928,-15.8688,-14.7744,-11.856,68.9928,40.8025
--6.8607,-17.05374,-15.87762,-12.83931,74.144565,41.7186
--7.029,-17.226,-16.137,-13.068,74.8836,42.44
--6.887,-16.975,-15.811,-13.095,73.3805,43.86
--6.63552,-16.22016,-15.11424,-12.25728,69.62688,42.7776
--6.86565,-16.5528,-15.4242,-12.50865,71.148825,42.4116
--7.01092,-16.90304,-15.8466,-12.86936,72.567824,43.2768
--6.7488,-16.1424,-15.048,-12.1296,68.9016,41.2775
--7.275,-17.169,-16.005,-12.901,73.2835,40.9825
--6.91125,-16.4027,-15.2969,-12.5324,69.619325,41.1825
--7.524,-17.622,-16.434,-13.365,74.7945,42.4116
--7.00416,-16.40448,-15.39072,-12.53376,69.62688,41.232
--7.1687,-16.6649,-15.5477,-12.6616,70.33705,41.9425
--7.17024,-16.66848,-15.55104,-12.5712,70.35216,41.4772
--7.1877,-16.49485,-15.4812,-12.62455,69.619325,40.413
--7.742,-17.64,-16.464,-13.426,74.0488,42.77
--7.9,-18,-16.8,-13.7,75.55,42.95
--7.6824,-17.2854,-16.22907,-13.25214,72.550665,42.8175
--7.77843,-17.2854,-16.22907,-13.34817,72.560268,42.2241
--7.46496,-16.68096,-15.6672,-12.62592,69.62688,41.616
--7.71538,-17.12438,-15.9953,-13.07851,71.084995,42.0495
--7.80615,-17.1171,-15.9885,-13.26105,71.054775,43.5006
--7.80864,-17.21664,-16.08768,-13.07712,71.07744,42.384
--8.14968,-17.75466,-16.59042,-13.48578,73.29861,42.8652
--7.9002,-17.1171,-16.08255,-13.07295,71.054775,42.9264
--7.752,-16.6896,-15.6864,-12.768,68.9016,42.7776
--8.17,-17.48,-16.435,-13.395,71.7725,44.15
--8.25944,-17.67136,-16.61492,-13.4456,72.55822,42.4928
--8.7,-18.4,-17.3,-14.1,75.55,44.56
--7.9344,-16.7808,-15.7776,-12.9504,68.9016,41.8944
--8.36352,-17.39232,-16.44192,-13.40064,71.80272,43.4214
--8.0256,-16.6896,-15.7776,-12.768,68.89248,41.712
--8.37312,-17.31072,-16.36992,-13.45344,71.07744,42.6692
--8.2935,-17.1399,-16.0341,-13.17745,69.619325,41.9525
--8.6427,-17.95761,-16.80525,-13.63626,72.550665,43.4214
--8.82882,-18.14274,-16.9785,-13.97088,73.29861,44.1144
--8.2992,-16.9632,-15.96,-12.9504,68.9016,42
--9.016,-18.228,-17.15,-13.916,74.039,43.6688
--9.207,-18.414,-17.325,-14.157,74.7945,44.93
--8.66016,-17.32032,-16.38912,-13.31616,70.35216,43.6224
--8.75328,-17.32032,-16.38912,-13.5024,70.35216,45.3504
--9.306,-18.612,-17.523,-14.355,74.7054,44.16
--9.025,-17.955,-16.815,-13.965,71.6775,43.75
--9.2169,-18.23976,-17.17254,-14.0679,73.20159,43.4532
--9.12,-17.86,-16.815,-13.68,71.6775,44.74
--9.40896,-18.42588,-17.34777,-14.01543,73.948545,44.6985
--9.22082,-17.87128,-16.82562,-13.59358,71.72277,42.8255
--9.506,-18.333,-17.266,-14.162,73.1865,44.1835
--9.22082,-17.8771,-16.74802,-13.83123,71.000314,45.7161
--9.31491,-17.8771,-16.84211,-13.54896,70.990905,45.2505
--9.7,-18.333,-17.266,-14.162,73.1962,45.55
--9.504,-17.96256,-17.01216,-13.7808,71.70768,42.8544
--9.49905,-17.77545,-16.83495,-13.44915,70.960725,42.332
--9.898,-18.522,-17.542,-14.21,73.843,45.66
--9.3024,-17.2368,-16.3248,-13.3152,68.8104,42.123
--9.3993,-17.60065,-16.49485,-13.36175,69.53639,42.332
--9.29575,-17.23775,-16.15475,-13.26675,68.093625,43.168
--9.49145,-17.60065,-16.587,-13.4539,69.44424,44.2805
--9.7812,-17.96355,-16.929,-13.7313,70.866675,44.3175
--10.192,-18.62,-17.64,-14.308,73.8528,46.109
--9.9792,-17.96256,-17.1072,-13.7808,71.61264,43.344
--9.97248,-17.8752,-16.9344,-13.6416,70.898688,43.2384
--10.388,-18.718,-17.64,-14.7,73.8528,46.76
--10.379,-18.624,-17.557,-14.356,73.0895,45.15
--9.86005,-17.6928,-16.67915,-13.73035,69.435025,43.168
--10.26432,-18.24768,-17.20224,-13.97088,71.61264,45.2727
--9.9522,-17.60065,-16.67915,-13.4539,69.435025,44.2225
--9.9408,-17.4192,-16.5072,-13.224,68.72832,44.498
--10.25581,-17.97119,-17.03029,-13.73714,70.906224,44.5715
--10.3455,-17.8695,-17.02305,-13.7313,70.866675,44.8767
--10.78,-18.62,-17.738,-14.406,73.8528,44.5312
--10.54944,-18.24768,-17.20224,-14.35104,71.61264,43.344
--10.44288,-18.15744,-17.12256,-14.30016,70.88928,43.056
--10.64672,-18.34658,-17.30092,-14.16394,71.637216,43.8925
--10.63217,-18.15937,-17.12438,-14.01941,70.896815,44.0768
--10.85139,-18.53379,-17.47746,-14.21244,72.358605,44.8767
--10.74178,-18.25152,-17.30092,-14.16394,71.637216,43.7472
--10.6134,-17.8752,-16.9442,-13.7788,70.16016,43.6688
--10.7088,-17.87904,-16.94784,-13.968,70.175232,43.44
--11.385,-19.107,-18.018,-14.751,74.5965,46.25
--10.9098,-18.2457,-17.21115,-14.20155,70.87608,44.5896
--10.80192,-18.06528,-17.04096,-14.06112,70.175232,43.3008
--11.00736,-18.25152,-17.21664,-14.01792,70.88928,46.501
--11.232,-18.624,-17.568,-14.496,72.336,46.03
--11.21,-18.43,-17.385,-14.25,71.5825,42.2275
--10.9858,-18.0614,-17.0373,-13.8719,70.16016,43.4435
--11.19195,-18.2457,-17.3052,-14.20155,70.866675,42.6835
--11.08128,-18.06528,-17.13408,-14.06112,70.16592,43.5168
--11.172,-18.1545,-17.1304,-14.0581,70.16016,45.5014
--11.6424,-18.9189,-17.85168,-14.553,73.10457,43.9628
--11.737,-18.915,-17.848,-14.647,73.0992,43.9701
--11.0352,-17.8752,-16.872,-13.7712,68.7192,42.9875
--11.47776,-18.43968,-17.4048,-14.30016,70.88928,42.9504
--11.3582,-18.1545,-17.2235,-14.0581,70.05775,44.8252
--11.4741,-18.33975,-17.39925,-14.1075,70.87608,45.6786
--11.81292,-18.7278,-17.7674,-14.59808,72.36614,44.1392
--11.4266,-17.96925,-17.04775,-13.91465,69.435025,43.3978
--11.90896,-18.91988,-17.7674,-14.79016,72.36614,45.325
--12.028,-19.109,-18.042,-14.744,73.0992,45.25
--12.5,-19.7,-18.6,-15.1,75.26,46.84
--11.51875,-18.15355,-17.1399,-14.0068,69.342875,43.5821
--11.7306,-18.3407,-17.3166,-14.3374,70.06706,43.9628
--12.07008,-18.72288,-17.67744,-14.54112,71.527104,43.728
--12.07262,-18.72682,-17.68116,-14.63924,71.542156,44.3678
--11.94943,-18.53573,-17.59483,-14.48986,70.812134,44.4648
--11.7952,-18.15355,-17.1399,-14.1911,69.35209,43.548
--12.41856,-19.11294,-18.14274,-14.94108,73.017252,44.6985
--12.26016,-18.81792,-17.77248,-14.54112,71.527104,43.2384
--11.88735,-18.2457,-17.23205,-14.1911,69.342875,44.8625
--12.01248,-18.43776,-17.50656,-14.34048,70.082112,43.44
--12.4839,-19.10997,-17.95761,-14.78862,72.262575,44.0055
--12.70962,-19.30698,-18.23976,-15.0381,73.017252,44.247
--12.83931,-19.50399,-18.42588,-15.09354,73.772127,44.6985
--12.707,-19.303,-18.236,-15.132,72.9925,45.54
--12.54792,-18.91694,-17.87128,-14.82936,71.542156,44.737
--12.41856,-18.72192,-17.68704,-14.77056,70.804608,44.1392
--12.41988,-18.72391,-17.68892,-14.48986,70.802725,42.9031
--12.77199,-19.206,-18.05364,-14.98068,72.272178,43.0098
--13.167,-19.8,-18.711,-15.444,74.5074,44.7975
--12.86936,-19.208,-18.15156,-14.8862,72.279704,43.953
--12.2208,-18.24,-17.2368,-14.2272,68.63712,42.408
--12.312,-18.24,-17.2368,-14.2272,68.64624,44.2944
--13.095,-19.303,-18.333,-15.132,73.0022,44.4648
--12.79488,-18.816,-17.78112,-14.5824,70.710528,44.1392
--12.92816,-19.012,-17.96634,-15.01948,71.542156,43.561
--13.32936,-19.70001,-18.6219,-15.48558,73.664316,44.4906
--12.88485,-18.90405,-17.8695,-14.76585,70.78203,42.9875
--13.563,-19.899,-18.81,-15.543,74.5074,45.2727
--13.11552,-19.10304,-18.0576,-14.82624,71.527104,44.1888
--13.662,-19.998,-18.81,-15.444,74.5074,46.3716
--12.80885,-18.52215,-17.5085,-14.46755,69.25994,43.8925
--12.94368,-18.71712,-17.78592,-14.71296,69.988992,42.5664
--13.07712,-18.91008,-17.96928,-14.95872,70.719936,44.1888
--12.9024,-18.52416,-17.60256,-14.65344,69.267456,44.112
--13.58,-19.594,-18.527,-15.326,72.9052,44.3581
--13.54164,-19.40008,-18.34364,-15.17432,72.183664,45.8248
--12.99315,-18.6143,-17.60065,-14.5597,69.25994,44.8625
--13.54023,-19.39806,-18.43776,-15.07671,72.176148,45.6786
--13.08672,-18.61632,-17.69472,-14.46912,69.267456,44.1888
--13.49568,-19.19808,-18.24768,-15.11136,71.432064,44.6784
--13.36078,-19.00618,-18.06528,-14.86622,70.718044,43.5821
--13.3133,-18.8062,-17.8752,-14.8029,69.97396,45.5014
--13.0416,-18.5136,-17.5104,-14.6832,68.54592,43.056
--13.82976,-19.49612,-18.43968,-15.27036,72.097228,43.6688
--13.82832,-19.49409,-18.43776,-15.26877,72.089721,44.1835
--14.355,-20.097,-19.107,-15.84,74.3094,44.55
--14.065,-19.691,-18.624,-15.423,72.8082,45.04
--13.36175,-18.70645,-17.6928,-14.65185,69.177005,43.6888
--13.5926,-18.8993,-17.8752,-14.8029,69.88086,43.3454
--13.73568,-19.09824,-18.06336,-15.0528,70.616448,44.5728
--14.016,-19.488,-18.528,-15.456,72.0672,43.344
--13.26675,-18.411,-17.41825,-14.2595,67.74165,43.3675
--13.26675,-18.411,-17.41825,-14.44,67.74165,42.332
--14.21392,-19.59216,-18.53572,-15.27036,72.087624,43.953
--13.92532,-19.19436,-18.15937,-15.0544,70.623954,43.4075
--13.6382,-18.7986,-17.78495,-14.65185,69.177005,43.5142
--14.155,-19.38,-18.43,-15.105,71.3165,42.617
--14.01792,-19.19232,-18.15744,-15.14688,70.616448,45.2172
--13.5888,-18.6048,-17.6016,-14.6832,68.45472,43.9008
--14.453,-19.788,-18.818,-15.423,72.8082,44.15
--14.4,-19.584,-18.528,-15.456,72.0576,43.5168
--13.824,-18.80064,-17.87904,-14.7456,69.175296,43.5168
--14.647,-19.788,-18.818,-15.714,72.8179,43.0098
--13.91616,-18.8928,-17.87904,-14.92992,69.175296,42.672
--14.35104,-19.4832,-18.43776,-15.30144,71.251488,42.2784
--14.35104,-19.4832,-18.43776,-15.2064,71.251488,43.9104
--14.592,-19.68,-18.72,-15.36,71.9616,43.7184
--14.38965,-19.28025,-18.33975,-15.2361,70.603335,43.548
--14.841,-19.885,-18.818,-15.52,72.7209,44.93
--14.39577,-19.28845,-18.25346,-15.0544,70.529864,43.3978
--14.841,-19.885,-18.915,-15.617,72.7112,45.04
--15.246,-20.295,-19.305,-15.939,74.2104,44.0055
--14.3374,-19.0855,-18.1545,-15.2684,69.78776,42.5125
--15.246,-20.394,-19.305,-16.038,74.2104,45.44
--14.57775,-19.3743,-18.33975,-15.2361,70.509285,43.7184
--14.28325,-18.9829,-17.96925,-14.83615,69.07564,44.1738
--13.98875,-18.5915,-17.59875,-14.53025,67.660425,42.332
--14.82,-19.57,-18.525,-15.39,71.2215,43.94
--14.67648,-19.38048,-18.3456,-15.24096,70.531776,43.344
--15.6,-20.6,-19.5,-16.2,74.97,44.85
--14.77056,-19.38048,-18.43968,-15.42912,70.531776,43.953
--15.07671,-19.78218,-18.72585,-15.65289,71.993691,45.1438
--15.168,-19.872,-18.816,-15.744,71.9712,43.5168
--15.32916,-20.08314,-19.01592,-15.81426,72.745596,44.0154
--15.484,-20.188,-19.208,-15.778,73.4706,43.659
--14.86622,-19.38254,-18.44164,-15.14849,70.539273,43.6985
--14.5008,-18.8784,-17.8752,-14.7744,68.36352,44.0064
--14.5008,-18.8784,-17.8752,-14.8656,68.36352,43.1328
--14.5008,-18.8784,-17.8752,-14.7744,68.28144,42.9875
--15.3648,-19.87821,-18.82188,-15.84495,71.897661,44.4807
--15.6816,-20.28807,-19.20996,-15.87762,73.380087,45.1935
--14.8992,-19.27584,-18.25152,-15.08544,69.718944,42.9312
--15.048,-19.46835,-18.4338,-15.4242,70.415235,44.7975
--15.46083,-19.87821,-18.91791,-15.55686,71.897661,44.1936
--14.83615,-19.07505,-18.15355,-14.83615,68.992705,43.2232
--15.46083,-19.97424,-18.91791,-15.55686,71.897661,43.3008
--16.2,-20.7,-19.7,-16.3,74.87,44.23
--15.24258,-19.57072,-18.53573,-15.14849,70.445183,44.4648
--15.811,-20.079,-19.109,-15.811,72.6239,43.6888
--16.137,-20.592,-19.503,-16.335,74.1213,46.3716
--15.648,-19.872,-18.912,-15.648,71.8752,43.056
--15.81426,-20.08314,-19.11294,-15.81426,72.638874,43.855
--15.17856,-19.27584,-18.34464,-15.17856,69.718944,42.8544
--15.75056,-19.88028,-18.91988,-15.65452,71.905148,43.953
--15.908,-20.079,-19.109,-15.811,72.6239,44.4648
--16.236,-20.592,-19.503,-16.434,74.1213,44.64
--16.335,-20.592,-19.503,-16.236,74.1213,44.93
--15.20475,-19.1672,-18.15355,-15.2969,68.992705,42.123
--15.675,-19.76,-18.715,-15.675,71.1265,42.9875
--16.17,-20.384,-19.306,-15.974,73.3824,44.933
--15.77,-19.76,-18.715,-15.485,71.1265,42.788
--16.434,-20.592,-19.503,-16.335,74.1213,44.4807
--15.6123,-19.5624,-18.52785,-15.4242,70.415235,42.6075
--15.77996,-19.77248,-18.82188,-15.49478,71.161916,42.8255
--15.70635,-19.5624,-18.6219,-15.51825,70.415235,41.9425
--15.87502,-19.77248,-18.82188,-15.49478,71.171422,44.2805
--16.366,-20.384,-19.306,-15.68,73.3726,44.8154
--15.64416,-18.53088,-16.296,-15.55104,69.625824,43.344
--15.4812,-17.41635,-15.02045,-16.0341,69.00192,41.8475
--15.80544,-16.84032,-14.30016,-16.55808,70.343616,44.345
--15.97008,-16.44538,-13.49852,-17.01574,71.171422,44.5312
--15.89952,-16.27584,-13.07712,-13.35936,70.437696,42.4608
--16.055,-18.05,-14.82,-14.63,71.1265,41.2775
--16.06514,-18.5367,-15.58984,-14.92442,71.171422,42.8255
--16.1602,-18.63176,-15.87502,-14.54418,71.171422,42.9031
--15.9885,-18.4338,-15.89445,-14.20155,70.415235,42.788
--16.32,-18.72,-16.416,-14.304,71.8752,42.7776
--15.9953,-18.25346,-16.18348,-14.20759,70.454592,43.6985
--15.827,-18.0614,-16.1994,-13.8719,69.70397,42.2275
--15.504,-17.6928,-15.96,-13.5888,68.28144,41.192
--16.25184,-18.43776,-16.72704,-14.54112,71.156448,42.5664
--16.08768,-18.25152,-16.65216,-14.30016,70.437696,42.8544
--16.245,-18.525,-16.91,-14.44,71.1265,42.503
--16.416,-18.72,-17.184,-14.784,71.8752,42.4608
--16.08768,-18.53376,-16.9344,-14.67648,70.437696,44.345
--16.18176,-18.62784,-17.02848,-14.48832,70.437696,44.4234
--16.1766,-18.6219,-17.1171,-14.4837,70.42464,42.2275
--15.6864,-18.0576,-16.5984,-14.0448,68.19936,44.2944
--16.85772,-19.40598,-17.93583,-15.19155,73.282077,44.3025
--15.85152,-18.24768,-16.95744,-14.2848,68.908032,42.4608
--16.781,-19.206,-17.848,-14.938,72.5269,45.25
--15.61325,-17.8695,-16.69625,-13.98875,67.479925,42.123
--16.781,-19.303,-17.945,-15.035,72.5269,43.2232
--17.127,-19.701,-18.414,-15.246,74.0223,45.15
--16.27584,-18.72192,-17.49888,-14.67648,70.353024,43.0612
--15.94195,-18.43,-17.1399,-14.28325,68.90977,43.0098
--16.88148,-19.404,-18.14274,-15.13512,72.541854,44.4234
--15.7035,-18.05,-16.87675,-14.2595,67.479925,41.743
--16.03584,-18.432,-17.32608,-14.56128,68.908032,44.2944
--15.8688,-18.3312,-17.1456,-14.4096,68.19024,44.6784
--15.79375,-18.14025,-16.967,-14.16925,67.479925,42.5125
--16.632,-19.10304,-17.86752,-15.11136,71.061408,42.9504
--16.6355,-19.20212,-17.96634,-14.82936,71.076362,42.3308
--17.325,-19.998,-18.81,-15.543,74.0223,44.45
--16.80525,-19.39806,-18.2457,-15.17274,71.811234,43.5996
--16.73056,-19.20212,-18.0614,-14.92442,71.076362,43.561
--16.3856,-18.8062,-17.689,-14.7098,69.62018,44.5312
--17.07552,-19.59804,-18.4338,-15.23214,72.541854,44.1936
--16.55808,-19.09824,-17.96928,-14.86464,70.343616,42.7776
--16.3856,-18.8993,-17.7821,-14.7098,69.62018,41.458
--17.24976,-19.89603,-18.71991,-15.38757,73.282077,43.7976
--17.424,-20.097,-18.909,-15.939,74.0223,43.3125
--16.72,-19.285,-18.145,-15.2,71.0315,41.667
--16.65393,-19.10027,-18.06528,-14.86622,70.351093,43.7955
--16.1424,-18.5136,-17.5104,-14.592,68.19024,42.332
--16.65216,-19.19232,-18.06336,-15.14688,70.353024,43.9628
--16.992,-19.584,-18.432,-15.36,71.7792,44.6784
--16.99731,-19.59012,-18.43776,-15.26877,71.801631,43.6888
--16.31232,-18.80064,-17.78688,-14.83776,68.908032,43.344
--17.622,-20.196,-19.107,-15.84,74.0223,43.8966
--17.266,-19.788,-18.721,-15.52,72.5269,44.85
--16.5718,-18.9924,-17.9683,-14.896,69.61087,44.247
--17.444,-19.992,-18.914,-15.68,73.2746,45.15
--16.2336,-18.6048,-17.6016,-14.592,68.19024,42.2275
--16.92068,-19.4873,-18.34658,-15.2096,71.076362,43.5142
--16.3248,-18.696,-17.6016,-14.5008,68.19024,42.788
--17.9,-20.4,-19.4,-16.1,74.77,44.56
--17.36658,-19.8891,-18.72486,-15.5232,72.541854,44.737
--17.19116,-19.6882,-18.63176,-15.46244,71.809108,44.639
--16.84032,-19.2864,-18.25152,-15.14688,70.343616,44.9664
--17.36658,-19.98612,-18.82188,-15.71724,72.541854,46.0746
--17.01216,-19.57824,-18.43776,-15.39648,71.061408,43.1424
--17.1072,-19.57824,-18.43776,-15.39648,71.061408,44.784
--16.929,-19.3743,-18.2457,-15.2361,70.321185,42.332
--17.4636,-19.98612,-18.9189,-15.62022,72.541854,44.0314
--17.64,-20.188,-19.11,-15.876,73.2746,44.1392
--16.929,-19.3743,-18.33975,-15.14205,70.321185,42.6075
--17.64,-20.188,-19.11,-15.876,73.2746,44.34
--16.9344,-19.47456,-18.3456,-15.33504,70.343616,44.0314
--16.67915,-19.07505,-17.96925,-15.02045,68.900555,43.9701
--17.56062,-20.08314,-18.9189,-15.71724,72.541854,43.7472
--17.919,-20.493,-19.404,-16.236,74.0223,45.6786
--17.919,-20.394,-19.305,-15.939,74.0223,45.33
--16.67915,-18.9829,-17.96925,-14.83615,68.900555,43.7955
--16.85472,-19.18272,-18.1584,-14.8992,69.625824,42.7776
--17.29728,-19.67328,-18.62784,-15.39648,71.061408,44.4015
--16.77312,-18.98496,-18.06336,-15.02208,68.908032,42.384
--17.654,-19.982,-19.012,-15.811,72.5269,44.8528
--17.29728,-19.67328,-18.62784,-15.49152,71.061408,43.6128
--16.7713,-19.07505,-18.0614,-15.02045,68.900555,42.788
--16.5984,-18.8784,-17.8752,-14.7744,68.19936,42.503
--16.7713,-19.07505,-18.0614,-15.02045,68.900555,41.9425
--17.654,-20.079,-19.012,-15.811,72.5269,44.15
--17.75466,-20.08314,-19.01592,-15.81426,72.541854,43.561
--17.21847,-19.47663,-18.44164,-15.33667,70.351093,43.5821
--17.39598,-19.77248,-18.63176,-15.58984,71.076362,43.6888
--17.75466,-20.18016,-19.11294,-15.81426,72.541854,44.6292
--17.21847,-19.57072,-18.53573,-15.33667,70.351093,43.1165
--17.21664,-19.56864,-18.53376,-15.33504,70.343616,44.737
--18.216,-20.493,-19.503,-16.137,74.0223,45.1935
--17.75466,-20.18016,-19.11294,-16.0083,72.541854,44.9232
--18.117,-20.592,-19.503,-16.038,74.0223,44.4114
--17.13408,-19.36896,-18.34464,-15.17856,69.625824,42.7776
--17.66952,-19.97424,-18.91791,-15.74892,71.715204,43.7955
--17.48,-19.76,-18.715,-15.485,70.946,46.84
--16.7808,-18.9696,-17.9664,-14.7744,68.10816,42.8925
--16.7808,-18.9696,-17.9664,-15.048,68.09904,43.824
--17.49104,-19.77248,-18.72682,-15.6849,70.981302,43.7955
--17.5861,-19.77248,-18.82188,-15.39972,70.990808,43.4532
--17.0496,-19.26144,-18.15552,-15.11424,68.815872,43.344
--17.7674,-19.97632,-19.01592,-15.8466,71.722672,44.7468
--18.315,-20.691,-19.602,-16.236,73.9332,45.44
--17.945,-20.176,-19.206,-15.908,72.4396,45.25
--17.5824,-19.86336,-18.81792,-15.58656,71.070912,45.3816
--17.39925,-19.65645,-18.6219,-15.4242,70.227135,45.0846
--16.872,-18.8784,-17.2368,-14.5008,68.19024,43.344
--17.3166,-18.3407,-16.0132,-16.1063,69.51777,43.548
--18.13185,-18.22986,-15.6816,-17.54379,73.193868,45.8865
--17.49888,-16.65216,-14.01792,-17.02848,70.343616,44.4234
--17.14176,-15.85152,-12.99456,-16.68096,68.815872,44.5728
--17.67744,-16.632,-13.49568,-13.11552,71.061408,44.1936
--17.68116,-18.25152,-15.01948,-14.7343,71.076362,43.561
--17.4933,-18.4338,-15.51825,-14.57775,70.321185,42.123
--17.856,-18.816,-16.128,-14.688,71.7792,44.24
--18.326,-19.208,-16.562,-14.798,73.2746,43.86
--18.513,-19.305,-16.929,-14.751,74.0223,43.54
--16.87675,-17.59875,-15.61325,-13.62775,67.479925,41.9425
--18.513,-19.305,-17.226,-14.85,74.0223,44.94
--18.14274,-18.82188,-16.9785,-14.45598,72.551556,44.639
--18.139,-18.915,-17.072,-14.647,72.5269,45.9198
--17.41344,-18.1584,-16.48224,-14.15424,69.625824,43.2232
--17.41344,-18.1584,-16.57536,-14.24736,69.625824,42.7285
--18.513,-19.503,-17.721,-15.345,74.0223,43.75
--17.765,-18.81,-17.195,-14.535,71.041,41.287
--17.952,-19.008,-17.472,-14.592,71.7792,43.14
--17.77622,-18.91694,-17.30092,-14.7343,71.076362,42.7672
--18.326,-19.502,-17.934,-15.19,73.2746,43.4532
--17.952,-19.104,-17.664,-14.784,71.7888,43.65
--17.1456,-18.1488,-16.7808,-14.136,68.19024,41.52
--17.87128,-19.012,-17.5861,-14.7343,71.076362,42.2772
--17.68704,-18.816,-17.4048,-14.67648,70.343616,42.9828
--17.3242,-18.43,-17.1399,-14.46755,68.900555,41.0875
--17.68704,-18.816,-17.59296,-14.77056,70.343616,42.581
--18.048,-19.296,-17.952,-15.168,71.7792,43.14
--18.23976,-19.50102,-18.14274,-15.32916,72.629172,42.3324
--17.86752,-19.10304,-17.86752,-14.92128,71.061408,41.232
--17.68704,-18.91008,-17.68704,-14.77056,70.343616,41.1264
--18.048,-19.296,-18.144,-15.168,71.8752,43.14
--18.236,-19.594,-18.333,-15.423,72.6239,42.87
--18.05552,-19.40008,-18.15156,-15.07828,71.914752,42.1988
--18.05364,-19.39806,-18.14967,-15.3648,71.897661,41.6615
--18.612,-20.097,-18.81,-15.741,74.1213,43.0947
--18.15156,-19.49612,-18.2476,-15.27036,71.895544,41.6892
--17.59968,-18.90336,-17.6928,-14.8992,69.718944,41.2638
--18.144,-19.488,-18.336,-15.36,71.8656,42.95
--17.2368,-18.5136,-17.4192,-14.592,68.27232,40.622
--18.14967,-19.49409,-18.34173,-15.26877,71.897661,42.0156
--18.33678,-19.69506,-18.53082,-15.5232,72.638874,42.2772
--17.96256,-19.29312,-18.24768,-15.01632,71.156448,42.0156
--17.77545,-19.1862,-18.0576,-14.95395,70.415235,40.698
--17.5959,-18.9924,-17.8752,-14.896,69.70397,40.907
--17.59968,-18.99648,-17.87904,-14.80608,69.718944,41.232
--17.41635,-18.7986,-17.6928,-14.83615,68.992705,41.8458
--17.689,-18.9924,-17.9683,-14.8029,69.70397,40.318
--17.77545,-19.1862,-18.0576,-15.048,70.415235,40.4225
--18.15156,-19.59216,-18.53572,-15.27036,71.905148,41.797
--17.6928,-19.0896,-17.97216,-14.99232,69.812064,40.56
--17.328,-18.696,-17.6016,-14.6832,68.28144,40.56
--18.0614,-19.4873,-18.44164,-15.30466,71.171422,41.0892
--17.6928,-19.0896,-17.97216,-14.99232,69.718944,40.56
--18.81,-20.295,-19.206,-16.038,74.1213,41.9364
--18.43,-19.885,-18.818,-15.714,72.6239,40.9825
--17.8695,-19.28025,-18.2457,-15.14205,70.415235,40.033
--17.689,-19.1786,-18.0614,-14.9891,69.70397,40.242
--17.328,-18.7872,-17.784,-14.7744,68.28144,40.1375
--18.05,-19.57,-18.525,-15.2,71.136,41.96
--17.689,-19.1786,-18.1545,-15.0822,69.70397,41.5912
--18.62,-20.188,-19.11,-15.778,73.4608,42.35
--18.62,-20.188,-19.11,-15.974,73.4608,42.54
--18.0576,-19.57824,-18.5328,-15.39648,71.251488,41.8275
--17.689,-19.1786,-18.1545,-15.0822,69.78776,41.503
--18.909,-20.394,-19.305,-16.137,74.2203,42.1146
--18.718,-20.286,-19.11,-15.974,73.4706,41.6892
--17.60065,-18.9829,-18.0614,-14.83615,69.084855,40.242
--17.97119,-19.47663,-18.34755,-15.33667,70.539273,40.9825
--18.15264,-19.57824,-18.62784,-15.39648,71.241984,41.6097
--18.53082,-20.08314,-19.01592,-15.81426,72.735894,41.6892
--17.96928,-19.47456,-18.43968,-15.33504,70.522368,41.405
--17.60065,-19.07505,-18.0614,-15.02045,69.07564,39.9285
--18.527,-20.079,-19.012,-15.908,72.7112,40.8758
--18.909,-20.592,-19.404,-16.038,74.2203,41.6196
--17.96928,-19.56864,-18.43968,-15.33504,70.531776,40.6656
--17.78592,-19.36896,-18.34464,-15.08544,69.812064,40.4544
--17.96928,-19.56864,-18.53376,-15.24096,70.531776,41.405
--17.96928,-19.56864,-18.53376,-15.42912,70.522368,41.405
--17.97119,-19.57072,-18.53573,-15.52485,70.529864,40.6915
--17.78592,-19.36896,-18.34464,-15.3648,69.802752,41.1668
--18.624,-20.176,-19.109,-15.908,72.7112,40.7691
--17.5104,-18.9696,-17.9664,-14.8656,68.36352,39.8525
--18.816,-20.384,-19.306,-16.17,73.4706,42.35
--17.4192,-19.0608,-17.9664,-15.048,68.36352,40.4544
--18.06336,-19.66272,-18.62784,-15.5232,70.531776,41.111
--18.43776,-19.87821,-18.72585,-15.3648,71.993691,40.7691
--18.62784,-19.20996,-17.07552,-16.29936,72.726192,41.1894
--18.816,-18.326,-15.778,-17.052,73.4706,41.2972
--17.8752,-16.6649,-14.0581,-16.4787,69.79707,40.033
--18.43968,-16.51888,-13.63768,-16.90304,72.001188,41.0032
--18.24768,-16.632,-13.59072,-13.02048,71.346528,40.1664
--18.53379,-18.2457,-15.26877,-14.88465,71.984088,41.4216
--19.008,-19.305,-16.335,-15.444,74.3094,41.95
--17.87904,-18.25152,-15.64416,-14.34048,69.895872,39.9936
--18.62784,-19.01592,-16.4934,-14.65002,72.726192,41.2533
--18.06528,-18.34755,-16.18348,-14.1135,70.623954,40.6915
--18.53572,-18.7278,-16.61492,-14.50204,72.087624,41.111
--17.6016,-17.6928,-15.8688,-13.5888,68.45472,39.8976
--17.9683,-18.0614,-16.2925,-13.8719,69.78776,39.653
--18.34658,-18.44164,-16.73056,-14.16394,71.352036,40.6915
--17.8752,-18.0614,-16.4787,-14.1512,69.88086,39.748
--18.34658,-18.5367,-16.92068,-14.54418,71.352036,40.7288
--17.41825,-17.689,-16.15475,-13.8985,67.750675,39.577
--17.97216,-18.34464,-16.7616,-14.52672,69.895872,39.888
--18.72486,-19.20996,-17.56062,-15.23214,72.823212,40.621
--17.6016,-18.0576,-16.5984,-14.136,68.45472,39.888
--19.107,-19.602,-18.018,-15.147,74.3094,41.0355
--19.107,-19.602,-18.117,-15.345,74.3193,41.5305
--17.78495,-18.33785,-16.9556,-14.09895,69.16779,40.4102
--17.97216,-18.43776,-17.13408,-14.34048,69.895872,40.2065
--18.335,-18.81,-17.575,-14.725,71.307,39.577
--18.721,-19.303,-17.945,-15.035,72.8179,41.74
--18.34658,-18.91694,-17.68116,-14.63924,71.361542,41.013
--18.914,-19.6,-18.228,-15.092,73.5686,41.56
--17.9683,-18.62,-17.3166,-14.6167,69.88086,39.748
--18.528,-19.2,-17.952,-15.072,72.0672,41.95
--18.34658,-19.012,-17.77622,-14.63924,71.361542,40.8268
--18.914,-19.6,-18.424,-15.288,73.5588,40.8268
--18.721,-19.4,-18.236,-15.035,72.8082,40.3132
--19.107,-19.8,-18.612,-15.642,74.3193,41.74
--18.914,-19.698,-18.424,-15.288,73.5686,41.1992
--18.34272,-19.19808,-17.96256,-14.92128,71.337024,40.3584
--18.15937,-18.91209,-17.78301,-14.96031,70.633363,40.6915
--18.72486,-19.59804,-18.33678,-15.42618,72.832914,41.8275
--18.15937,-18.91209,-17.8771,-14.67804,70.623954,40.0998
--18.335,-19.095,-18.05,-14.915,71.3165,41.85
--18.15744,-19.00416,-17.8752,-14.67648,70.616448,41.405
--18.34272,-19.19808,-18.0576,-14.92128,71.346528,41.3226
--17.9683,-18.8062,-17.689,-14.7098,69.89017,40.9052
--18.44164,-19.20212,-18.0614,-15.11454,71.361542,40.8366
--17.78495,-18.6143,-17.60065,-14.65185,69.177005,39.9285
--17.78495,-18.70645,-17.60065,-14.5597,69.177005,39.748
--17.6016,-18.5136,-17.4192,-14.5008,68.46384,40.3488
--18.914,-19.894,-18.718,-15.582,73.5686,41.111
--17.8771,-18.70645,-17.60065,-14.65185,69.16779,39.9285
--18.0614,-18.8993,-17.7821,-14.4305,69.88086,39.8525
--17.8771,-18.70645,-17.60065,-14.46755,69.177005,39.9285
--18.06528,-18.90336,-17.87904,-14.8992,69.905184,40.56
--18.06528,-18.90336,-17.87904,-15.17856,69.905184,40.4544
--18.06528,-18.99648,-17.87904,-14.71296,69.905184,40.5848
--18.818,-19.788,-18.624,-15.423,72.8179,41.95
--18.44164,-19.39224,-18.25152,-15.2096,71.352036,41.1894
--18.25152,-19.19232,-18.15744,-15.24096,70.625856,40.8268
--18.43776,-19.38816,-18.34272,-15.39648,71.346528,40.176
--18.06528,-18.99648,-17.97216,-14.99232,69.905184,40.0704
--18.25152,-19.2864,-18.15744,-15.14688,70.625856,40.0704
--18.43,-19.475,-18.335,-15.39,71.3165,39.577
--19.206,-20.295,-19.206,-16.137,74.3193,41.2533
--17.6928,-18.696,-17.6928,-14.7744,68.46384,39.653
--18.0614,-19.1786,-18.0614,-15.1753,69.89017,40.8366
--17.8771,-18.9829,-17.8771,-15.02045,69.177005,40.5848
--17.8771,-18.9829,-17.8771,-14.9283,69.177005,39.577
--18.818,-19.982,-18.915,-16.005,72.8179,41.67
--18.06528,-19.18272,-18.1584,-15.17856,69.988992,40.2065
--17.8771,-19.07505,-17.96925,-15.02045,69.177005,39.482
--18.25152,-19.47456,-18.3456,-15.33504,70.625856,40.621
--18.25152,-19.47456,-18.3456,-15.42912,70.719936,41.013
--18.25152,-19.47456,-18.3456,-15.42912,70.625856,40.7288
--18.82188,-20.08314,-19.01592,-15.71724,72.823212,41.1444
--18.44164,-19.77248,-18.63176,-15.49478,71.361542,40.7288
--18.818,-20.176,-19.012,-15.908,72.8179,40.0222
--18.63176,-19.97632,-18.82384,-15.8466,72.097228,40.621
--17.5085,-18.772,-17.689,-14.801,67.8319,39.577
--17.8771,-19.1672,-18.0614,-15.2969,69.177005,39.577
--18.43,-19.76,-18.715,-15.675,71.3165,39.273
--17.6928,-18.9696,-17.9664,-15.048,68.46384,39.5865
--18.62982,-19.97424,-18.91791,-15.84495,72.089721,40.9266
--18.44164,-19.77248,-18.72682,-15.87502,71.447096,40.2065
--19.206,-20.592,-19.503,-16.434,74.4084,41.45
--18.9189,-20.27718,-19.11294,-15.91128,72.920232,40.621
--18.7278,-19.59216,-17.47928,-16.3268,72.097228,40.621
--18.1584,-17.97216,-15.55104,-16.20288,69.895872,40.4878
--19.305,-18.117,-15.246,-16.731,74.4084,41.3226
--18.72,-16.8,-14.016,-16.224,72.0768,41.96
--18.1584,-15.73728,-12.85056,-15.17856,69.988992,40.0704
--18.72585,-17.86158,-14.69259,-14.59656,72.080118,40.4102
--18.525,-18.43,-15.485,-15.01,71.402,39.653
--18.72,-18.816,-16.032,-15.072,72.1536,41.74
--17.9712,-18.06336,-15.57504,-14.00832,69.267456,40.176
--19.5,-19.6,-17.1,-15.1,75.17,41.96
--17.9712,-17.9712,-15.85152,-13.91616,69.267456,40.176
--18.5328,-18.43776,-16.53696,-14.54112,71.432064,40.272
--19.5,-19.5,-17.5,-15,75.17,41.96
--17.59875,-17.59875,-15.884,-13.357,67.8319,40.242
--17.784,-17.784,-16.1424,-13.7712,68.54592,40.1375
--18.5328,-18.5328,-16.91712,-14.35104,71.441568,40.3584
--18.1545,-18.2476,-16.6649,-14.3374,69.97396,41.405
--19.11,-19.306,-17.64,-15.288,73.6666,41.405
--18.72,-19.008,-17.376,-14.784,72.1632,40.6656
--18.525,-18.81,-17.29,-14.63,71.4115,42.25
--18.72,-19.104,-17.568,-14.976,72.1536,40.7424
--18.1545,-18.5269,-17.0373,-14.3374,69.98327,41.8068
--18.5367,-18.91694,-17.49104,-14.82936,71.447096,41.3705
--17.96925,-18.33785,-17.04775,-14.46755,69.25994,40.698
--18.5367,-19.012,-17.5861,-14.82936,71.447096,42.7672
--18.1545,-18.62,-17.3166,-14.5236,69.97396,42.1988
--18.33975,-18.81,-17.4933,-14.8599,70.68798,40.983
--18.9189,-19.404,-18.14274,-15.23214,72.920232,42.6294
--18.1584,-18.71712,-17.41344,-14.52672,69.998304,41.4144
--18.3456,-18.91008,-17.68704,-14.86464,70.710528,41.3376
--19.5,-20.1,-18.8,-15.7,75.16,43.06
--17.784,-18.4224,-17.2368,-14.5008,68.54592,41.1264
--18.525,-19.19,-17.955,-15.01,71.402,40.907
--18.915,-19.594,-18.333,-15.326,72.9052,42.0495
--17.784,-18.4224,-17.328,-14.4096,68.54592,41.3376
--18.72,-19.392,-18.24,-15.168,72.1536,41.232
--18.7278,-19.49612,-18.2476,-15.17432,72.193268,43.1592
--19.5,-20.3,-19,-15.7,75.16,43.75
--19.5,-20.3,-19.1,-15.8,75.16,44.34
--19.5,-20.3,-19.1,-15.8,75.16,43.64
--19.11,-19.894,-18.718,-15.582,73.6568,43.75
--17.96925,-18.70645,-17.60065,-14.5597,69.25994,41.3535
--19.11195,-19.89603,-18.71991,-15.48558,73.664316,42.9165
--18.72,-19.488,-18.336,-15.264,72.1536,43.53
--18.915,-19.691,-18.527,-15.326,72.9052,43.45
--17.9712,-18.70848,-17.69472,-14.7456,69.276672,41.7888
--17.784,-18.5136,-17.5104,-14.592,68.55504,41.3535
--19.5,-20.4,-19.2,-16,75.17,43.75
--18.82384,-19.59216,-18.43968,-15.46244,72.193268,42.9828
--17.96925,-18.7986,-17.78495,-14.65185,69.25994,42.5442
--17.96925,-18.7986,-17.78495,-14.65185,69.25994,41.458
--18.525,-19.38,-18.335,-15.39,71.402,43.64
--18.5367,-19.39224,-18.34658,-15.39972,71.447096,43.267
--17.96925,-18.89075,-17.78495,-14.65185,69.269155,41.743
--18.9189,-19.79208,-18.72486,-15.5232,72.920232,42.581
--18.62784,-19.4832,-18.34272,-15.39648,71.432064,42.4608
--18.72,-19.68,-18.528,-15.552,72.1632,41.4144
--18.44164,-19.28845,-18.25346,-15.33667,70.727453,42.3308
--19.01592,-19.8891,-18.82188,-15.5232,72.920232,42.9828
--18.9189,-19.8891,-18.82188,-15.62022,72.920232,42.7086
--18.62,-19.475,-18.43,-15.39,71.402,43.94
--18.06336,-18.8928,-17.87904,-14.92992,69.276672,43.2384
--18.72,-19.68,-18.624,-15.264,72.1632,42
--18.816,-19.68,-18.624,-15.456,72.1536,42.384
--18.63176,-19.4873,-18.44164,-15.30466,71.447096,42.7672
--18.5367,-19.58236,-18.5367,-15.30466,71.456602,42.1988
--17.9712,-18.98496,-17.9712,-14.7456,69.267456,41.8944
--19.012,-19.982,-18.818,-15.811,72.9149,44.45
--19.012,-19.982,-18.915,-15.617,72.9052,43.75
--18.62784,-19.57824,-18.5328,-15.2064,71.432064,41.712
--19.208,-20.188,-19.11,-16.072,73.6666,42.9828
--18.43968,-19.38048,-18.3456,-15.0528,70.719936,41.7216
--18.2476,-19.1786,-18.1545,-15.0822,69.98327,41.5625
--18.0614,-19.07505,-17.96925,-14.83615,69.25994,41.458
--18.62,-19.665,-18.525,-15.2,71.4115,43.36
--19.012,-19.982,-18.915,-15.811,72.9149,43.24
--18.816,-19.872,-18.816,-15.456,72.1536,43.06
--18.62784,-19.67328,-18.62784,-15.2064,71.441568,41.712
--19.01592,-20.08314,-19.01592,-15.5232,72.929934,42.483
--18.0614,-19.07505,-18.0614,-14.83615,69.25994,41.0875
--18.63176,-19.67742,-18.63176,-15.30466,71.456602,42.2772
--18.816,-19.872,-18.816,-15.552,72.1536,41.52
--19.208,-20.188,-19.208,-15.974,73.6568,42.65
--18.62784,-19.57824,-18.62784,-15.39648,71.441568,44.3025
--18.62,-19.665,-18.62,-15.295,71.402,48.15
--18.62,-19.665,-18.62,-15.485,71.402,42.84
--18.63176,-19.67742,-18.63176,-15.49478,71.447096,42.2772
--17.8752,-18.8784,-17.8752,-14.8656,68.54592,42.788
--18.82384,-19.88028,-18.82384,-15.46244,72.193268,43.3454
--17.8752,-18.8784,-17.8752,-14.7744,68.54592,41.1825
--18.43968,-19.56864,-18.43968,-15.42912,70.710528,42.7672
--19.01592,-20.08314,-19.01592,-15.71724,72.920232,42.6294
--18.43968,-19.47456,-18.53376,-15.24096,70.710528,42.384
--19.404,-20.592,-19.404,-16.137,74.4084,44.1936
--18.62784,-19.67328,-18.72288,-15.49152,71.432064,43.4214
--18.0614,-19.1672,-18.15355,-15.1126,69.269155,42.2241
--18.0614,-19.1672,-18.15355,-14.9283,69.25994,42.6218
--19.6,-20.8,-19.6,-16.3,75.17,44.45
--19.503,-20.592,-19.503,-16.038,74.4183,43.86
--19.503,-20.592,-19.503,-16.038,74.4084,43.0254
--18.72682,-19.77248,-18.72682,-15.39972,71.456602,42.581
--19.503,-20.592,-19.503,-16.137,74.4183,43.0947
--17.77925,-18.772,-17.77925,-14.801,67.840925,41.458
--19.11294,-20.18016,-19.11294,-15.81426,72.920232,42.483
--18.52785,-19.5624,-18.52785,-15.33015,70.68798,40.8025
--18.44164,-19.57072,-18.53573,-15.33667,70.812134,41.8458
--18.3407,-19.3648,-18.3407,-15.1753,70.06706,41.0875
--18.72288,-19.76832,-18.72288,-15.49152,71.527104,42.9165
--19.7,-20.8,-19.7,-16.2,75.26,43.14
--18.53573,-19.57072,-18.53573,-15.43076,70.812134,41.5645
--19.109,-20.176,-19.109,-15.908,73.0022,42.84
--19.109,-20.176,-19.206,-15.714,73.0022,41.7682
--18.52785,-19.5624,-18.6219,-15.51825,70.78203,40.907
--17.9664,-18.9696,-18.0576,-14.8656,68.63712,41.2775
--18.52785,-19.5624,-18.6219,-15.4242,70.791435,42.9165
--18.15355,-19.1672,-18.2457,-15.1126,69.35209,42.0495
--17.77925,-18.772,-17.77925,-14.89125,67.92215,40.907
--19.306,-20.482,-19.404,-16.072,73.7548,43.24
--18.72682,-19.77248,-18.82188,-15.6849,71.551662,42.0592
--18.15355,-19.25935,-18.2457,-15.02045,69.35209,40.907
--18.72682,-19.86754,-18.82188,-15.49478,71.551662,41.5548
--18.91791,-20.07027,-19.01394,-15.65289,72.272178,41.5548
--18.3407,-19.3648,-18.4338,-15.2684,70.06706,40.983
--17.77925,-18.772,-17.8695,-14.89125,67.92215,41.0875
--19.109,-20.176,-19.109,-15.908,73.0022,43.25
--18.715,-19.855,-18.81,-15.675,71.497,42.95
--18.715,-19.855,-18.81,-15.58,71.497,42.76
--18.72682,-19.77248,-18.72682,-15.58984,71.551662,41.9146
--18.91791,-19.97424,-19.01394,-15.74892,72.272178,42.6294
--18.715,-19.855,-18.81,-15.58,71.497,43.06
--18.912,-20.064,-19.008,-15.84,72.2496,41.712
--19.11294,-20.27718,-19.20996,-15.81426,73.017252,42.6294
--19.306,-20.482,-19.404,-16.17,73.7548,43.14
--18.62982,-19.66481,-18.62982,-15.33667,70.812134,41.5548
--19.404,-20.482,-19.404,-16.17,73.7548,42.95
--18.2457,-19.25935,-18.2457,-14.83615,69.35209,40.622
--18.62784,-19.09824,-16.9344,-16.08768,70.814016,41.1264
--18.81792,-18.15264,-15.6816,-16.44192,71.527104,40.8384
--18.62982,-17.03029,-14.48986,-16.46575,70.812134,41.4772
--18.81792,-16.53696,-13.7808,-17.01216,71.527104,40.944
--18.81792,-15.96672,-13.11552,-16.44192,71.527104,42.3324
--19.40598,-18.32787,-14.89752,-14.99553,73.762326,42.8175
--19.008,-18.624,-15.552,-14.976,72.2496,41.1264
--18.4338,-18.2476,-15.4546,-14.1512,70.06706,40.907
--18.62784,-18.43968,-15.89952,-14.30016,70.804608,41.136
--17.8695,-17.59875,-15.43275,-13.5375,67.92215,40.7075
--19.20996,-18.9189,-16.68744,-14.45598,73.017252,42.3324
--19.008,-18.624,-16.608,-14.4,72.2496,41.0496
--18.81792,-18.43776,-16.53696,-14.16096,71.527104,40.9536
--18.81792,-18.43776,-16.632,-14.256,71.536608,40.848
--19.01592,-18.63176,-16.90304,-14.406,72.279704,41.8068
--18.81,-18.525,-16.815,-14.535,71.5065,42.44
--18.4338,-18.2476,-16.5718,-14.2443,70.06706,40.318
--18.6219,-18.52785,-16.83495,-14.4837,70.78203,42.3324
--18.43776,-18.34464,-16.85472,-14.24736,70.082112,41.5548
--19.602,-19.602,-17.919,-15.147,74.5074,42.55
--17.8695,-17.8695,-16.4255,-13.80825,67.92215,40.5175
--19.20996,-19.11294,-17.75466,-15.13512,73.017252,42.5205
--18.2457,-18.2457,-16.86345,-14.28325,69.35209,41.5548
--19.008,-19.008,-17.664,-14.976,72.2496,41.1264
--18.43776,-18.53088,-17.13408,-14.4336,70.082112,41.3705
--18.2457,-18.33785,-17.04775,-14.46755,69.35209,40.318
--18.24768,-18.432,-17.0496,-14.2848,69.368832,41.0496
--18.24768,-18.33984,-17.14176,-14.37696,69.359616,40.944
--18.43776,-18.53088,-17.32032,-14.4336,70.082112,41.1264
--19.206,-19.303,-18.042,-14.938,73.0022,42.95
--19.206,-19.303,-18.139,-15.132,73.0022,41.1668
--18.62982,-18.818,-17.59483,-14.77213,70.812134,41.3802
--18.62784,-18.816,-17.68704,-14.77056,70.804608,40.944
--18.81,-19,-17.86,-14.63,71.497,42.54
--19.8,-20,-18.8,-15.6,75.26,42.66
--19.404,-19.6,-18.424,-15.19,73.7646,41.5128
--19.206,-19.4,-18.236,-15.132,73.0022,41.3705
--18.6219,-18.81,-17.6814,-14.57775,70.78203,40.4225
--19.01394,-19.30203,-18.14967,-15.17274,72.272178,42.2334
--19.008,-19.296,-18.144,-15.072,72.2496,42.95
--19.404,-19.698,-18.522,-15.288,73.7548,42.65
--19.40598,-19.70001,-18.52389,-15.38757,73.762326,42.4116
--18.4338,-18.7131,-17.5959,-14.3374,70.06706,40.5175
--19.01592,-19.30404,-18.2476,-15.17432,72.279704,41.797
--19.008,-19.296,-18.24,-15.072,72.2592,40.848
--18.81792,-19.10304,-18.0576,-15.01632,71.527104,40.848
--19.01394,-19.39806,-18.2457,-14.98068,72.272178,41.4772
--19.01394,-19.39806,-18.2457,-14.88465,72.272178,41.1668
--17.8695,-18.2305,-17.1475,-14.2595,67.92215,40.5175
--18.62784,-18.91008,-17.8752,-14.67648,70.804608,41.0496
--19.602,-19.899,-18.81,-15.543,74.5074,42.4116
--19.008,-19.392,-18.24,-15.264,72.2496,40.944
--18.62784,-19.00416,-17.8752,-14.86464,70.804608,42.091
--18.4338,-18.8062,-17.7821,-14.8029,70.06706,40.907
--18.81792,-19.29312,-18.15264,-15.11136,71.527104,40.944
--19.01394,-19.49409,-18.34173,-15.26877,72.272178,41.5548
--18.0576,-18.5136,-17.4192,-14.5008,68.63712,41.5625
--18.81792,-19.29312,-18.15264,-14.92128,71.527104,41.1264
--17.8695,-18.32075,-17.23775,-14.34975,67.92215,40.8025
--18.4338,-18.8993,-17.8752,-14.7098,70.06706,42.1988
--19.01394,-19.49409,-18.43776,-15.07671,72.272178,42.7086
--18.62784,-19.09824,-18.06336,-14.95872,70.804608,41.9832
--19.206,-19.691,-18.624,-15.229,73.0119,41.9525
--18.6219,-19.09215,-18.0576,-14.76585,70.78203,42.1245
--19.8,-20.3,-19.2,-15.8,75.26,42.55
--18.2457,-18.70645,-17.6928,-14.65185,69.35209,41.5548
--19.008,-19.488,-18.432,-15.36,72.2496,41.232
--18.81,-19.38,-18.24,-15.01,71.497,40.622
--18.43776,-18.99648,-17.87904,-14.80608,70.082112,41.6615
--18.81792,-19.29312,-18.34272,-15.2064,71.527104,41.232
--18.81792,-19.38816,-18.24768,-15.11136,71.527104,41.0496
--18.43776,-18.99648,-17.97216,-14.8992,70.082112,41.1668
--19.404,-19.992,-18.914,-15.582,73.7548,42.76
--18.81792,-19.38816,-18.24768,-15.11136,71.527104,40.944
--19.602,-20.196,-19.008,-15.741,74.5074,42.0156
--18.2457,-18.7986,-17.78495,-14.744,69.35209,40.622
--19.40598,-19.89603,-18.81792,-15.48558,73.762326,42.2235
--19.20996,-19.79208,-18.72486,-15.5232,72.920232,42.4116
--18.43776,-18.99648,-17.97216,-14.8992,70.082112,41.1264
--17.8695,-18.411,-17.41825,-14.34975,67.840925,40.1375
--18.0576,-18.6048,-17.6016,-14.6832,68.55504,40.1375
--19.20996,-19.79208,-18.72486,-15.32916,72.929934,41.503
--18.62982,-19.19436,-18.15937,-14.96031,70.727453,42.1465
--19.008,-19.584,-18.528,-15.168,72.1632,42.35
--19.01394,-19.59012,-18.53379,-15.46083,72.176148,41.6097
--19.20996,-19.79208,-18.72486,-15.42618,72.920232,43.7085
--18.62784,-19.2864,-18.15744,-14.95872,70.710528,43.659
--18.2457,-18.7986,-17.78495,-14.744,69.269155,42.0495
--19.20996,-19.8891,-18.72486,-15.42618,72.929934,42.3324
--18.43776,-19.0896,-17.97216,-14.99232,69.998304,40.7424
--18.62784,-19.2864,-18.25152,-14.95872,70.710528,41.7888
--18.81,-19.475,-18.43,-15.39,71.402,42.84
--18.62982,-19.28845,-18.25346,-14.96031,70.718044,41.4772
--18.2457,-18.89075,-17.8771,-14.65185,69.25994,41.4772
--18.4338,-19.0855,-18.0614,-14.896,69.97396,41.9048
--18.2457,-18.89075,-17.8771,-14.9283,69.25994,40.413
--19.602,-20.295,-19.206,-15.84,74.4084,42.7086
--19.01394,-19.68615,-18.62982,-15.3648,72.185751,41.9525
--18.2457,-18.89075,-17.8771,-14.83615,69.25994,41.6615
--18.4338,-19.0855,-18.0614,-14.896,69.98327,42.3752
--19.404,-20.09,-19.012,-15.68,73.6568,43.53
--19.01394,-19.68615,-18.62982,-15.3648,72.176148,43.5996
--19.008,-19.68,-18.624,-15.264,72.0576,40.3488
--19.404,-20.09,-19.012,-15.582,73.5686,41.9048
--18.62784,-19.2864,-18.25152,-15.0528,70.625856,42.5664
--19.602,-20.295,-19.206,-15.84,74.3193,43.86
--19.20996,-19.8891,-18.82188,-15.62022,72.842616,43.5708
--18.6219,-19.28025,-18.2457,-15.048,70.603335,44.7975
--18.62784,-19.2864,-18.25152,-15.14688,70.625856,41.232
--18.43776,-19.18272,-18.1584,-14.99232,69.812064,44.4648
--19.20996,-19.98612,-18.9189,-15.62022,72.832914,46.1874
--18.62784,-19.2864,-18.3456,-15.14688,70.531776,43.7472
--18.81,-19.57,-18.525,-15.2,71.2215,44.23
--19.602,-20.394,-19.305,-16.137,74.2203,43.2036
--17.8695,-18.5915,-17.59875,-14.34975,67.660425,42.2275
--18.4338,-19.1786,-18.1545,-14.8029,69.80638,42.693
--19.602,-20.295,-19.305,-15.84,74.2203,43.2036
--19.01394,-19.68615,-18.72585,-15.46083,71.993691,42.8255
--17.8695,-18.5915,-17.59875,-14.44,67.660425,42.0185
--19.20996,-19.98612,-18.9189,-15.81426,72.735894,43.5006
--19.008,-19.776,-18.72,-15.552,71.9712,41.7216
--19.20996,-19.98612,-18.9189,-15.71724,72.735894,43.6095
--18.81792,-19.57824,-18.5328,-15.49152,71.251488,43.0947
--18.43776,-19.18272,-18.1584,-14.99232,69.812064,42.384
--18.81,-19.475,-18.43,-15.01,71.2215,44.05
--18.6219,-19.3743,-18.33975,-15.048,70.509285,42.2235
--18.4338,-19.1786,-18.1545,-14.9891,69.79707,44.6292
--18.0576,-18.696,-17.784,-14.6832,68.37264,43.168
--18.0576,-18.7872,-17.784,-14.7744,68.37264,43.1328
--19.20996,-19.98612,-18.9189,-15.71724,72.735894,43.5996
--18.81,-19.57,-18.525,-15.39,71.2215,41.5625
--18.4338,-19.1786,-18.1545,-14.896,69.70397,43.6688
--18.62784,-19.38048,-18.3456,-15.14688,70.531776,42.581
--18.2457,-18.9829,-17.96925,-14.744,69.084855,41.9525
--19.20996,-19.98612,-18.9189,-15.5232,72.735894,42.9165
--19.404,-20.188,-19.11,-15.68,73.4706,43.6688
--19.01394,-19.78218,-18.72585,-15.55686,71.897661,41.5548
--18.4338,-19.1786,-18.1545,-15.0822,69.70397,41.1825
--19.01394,-19.78218,-18.72585,-15.55686,71.897661,42.7285
--18.6219,-19.3743,-18.33975,-15.14205,70.415235,43.548
--19.8,-20.6,-19.5,-16,74.87,45.84
--18.62784,-19.38048,-18.3456,-15.14688,70.447104,44.639
--19.206,-19.982,-18.915,-15.52,72.5366,46.7055
--18.81,-19.57,-18.525,-15.295,71.1265,46.84
--18.2457,-18.9829,-17.96925,-14.83615,68.900555,46.968
--18.2457,-18.9829,-17.96925,-14.83615,68.90977,49.6931
--18.6219,-19.3743,-18.33975,-14.95395,70.33059,53.1927
--19.206,-19.982,-18.915,-15.52,72.5366,52.54
--19.404,-20.188,-19.11,-15.778,73.2844,53.5472
--18.2457,-18.9829,-17.96925,-14.83615,68.900555,55.043
--18.43776,-19.18272,-18.1584,-14.8992,69.635136,57.6568
--19.008,-19.776,-18.72,-15.456,71.7792,52.3488
--18.4338,-19.1786,-18.1545,-15.0822,69.62018,57.209
--19.20996,-19.98612,-18.9189,-15.5232,72.454536,56.2716
--18.62982,-19.38254,-18.34755,-15.24258,70.360502,60.2661
--19.01394,-19.78218,-18.72585,-15.46083,71.811234,66.4488
--18.53088,-19.18272,-18.1584,-15.08544,69.635136,70.2474
--18.2457,-18.9829,-17.96925,-14.744,69.00192,74.746
--18.4338,-19.1786,-18.1545,-15.0822,69.71328,80.6344
--18.1488,-18.7872,-17.784,-14.7744,68.29056,80.4288
--18.905,-19.57,-18.525,-15.295,71.2215,87.38
--18.43776,-19.18272,-18.1584,-14.99232,69.812064,84.384
--18.72192,-19.2864,-18.3456,-15.0528,70.531776,85.6224
--18.72192,-19.2864,-18.3456,-15.24096,70.625856,88.6998
--18.53088,-19.18272,-18.1584,-14.99232,70.082112,89.1624
--18.33984,-18.98496,-17.9712,-14.83776,69.543936,88.7328
--18.72391,-19.28845,-18.34755,-15.14849,71.179085,90.4234
--19.404,-20.188,-19.11,-15.876,74.1468,91.5614
--18.905,-19.57,-18.525,-15.2,72.048,93.74
--18.72391,-19.28845,-18.34755,-15.14849,71.348447,91.0248
--19.30698,-19.98612,-18.9189,-15.62022,73.812816,92.2572
--17.95975,-18.5915,-17.59875,-14.6205,68.653175,89.433
--18.72192,-19.38048,-18.3456,-15.0528,71.576064,90.2688
--19.502,-20.188,-19.11,-15.778,74.7446,92.1494
--18.72391,-19.38254,-18.34755,-15.14849,71.677762,90.0548
--19.104,-19.776,-18.72,-15.264,73.4112,83.8176
--19.9,-20.6,-19.5,-16,76.76,85.18
--19.9,-20.6,-19.5,-16.1,76.95,82.39
--19.30698,-19.8891,-18.9189,-15.5232,74.94795,79.3881
--18.905,-19.475,-18.43,-15.2,73.5205,77.59
--19.303,-19.885,-18.915,-15.52,75.2623,74.1274
--19.30698,-19.98612,-18.9189,-15.42618,75.355434,74.1609
--18.72192,-19.2864,-18.3456,-14.95872,73.260096,72.9218
--19.104,-19.68,-18.624,-15.264,74.8512,73.31
--19.502,-20.09,-19.11,-15.68,76.4106,71.9516
--19.10997,-19.68615,-18.72585,-15.55686,74.788164,70.7227
--18.53088,-19.0896,-18.06528,-14.99232,72.512544,70.1952
--19.10997,-19.59012,-18.62982,-15.3648,74.788164,70.9264
--18.71595,-19.1862,-18.2457,-15.048,73.236735,73.1907
--19.303,-19.885,-18.818,-15.423,75.4466,73.31
--17.95975,-18.50125,-17.5085,-14.34975,70.19645,69.1885
--18.91296,-19.4832,-18.43776,-15.2064,73.922112,71.0919
--19.10997,-19.59012,-18.62982,-15.46083,74.692134,70.6167
--19.701,-20.196,-19.107,-15.741,77.0022,69.8247
--19.50399,-19.99404,-19.01394,-15.58359,76.134168,68.6268
--18.91296,-19.38816,-18.34272,-15.11136,73.827072,67.2192
--19.50399,-19.99404,-18.91593,-15.6816,76.134168,68.9139
--18.72192,-19.19232,-18.15744,-14.95872,73.175424,68.7274
--19.701,-20.196,-19.107,-15.642,76.9032,69.72
--19.502,-19.992,-18.914,-15.582,76.1264,69.94
--18.53088,-18.99648,-17.97216,-14.71296,72.335616,67.3471
--18.53088,-18.99648,-17.97216,-14.61984,72.335616,66.9591
--19.303,-19.788,-18.721,-15.326,75.3496,69.72
--19.10997,-19.59012,-18.53379,-15.17274,74.605707,71.0127
--18.72192,-19.09824,-18.15744,-14.86464,73.081344,70.4816
--19.701,-20.097,-19.008,-15.741,76.9131,72.1017
--18.91296,-19.29312,-18.24768,-15.11136,73.827072,73.557
--18.91296,-19.29312,-18.24768,-15.11136,73.827072,72.9729
--18.33785,-18.70645,-17.6928,-14.5597,71.591335,70.5945
--19.303,-19.691,-18.624,-15.423,75.3496,75.32
--19.30698,-19.69506,-18.62784,-15.23214,75.365136,74.4996
--19.502,-19.894,-18.816,-15.484,76.0382,72.5298
--18.91694,-19.29718,-18.25152,-14.92442,73.747548,75.754
--17.95975,-18.32075,-17.328,-14.16925,70.01595,77.33
--18.53088,-18.90336,-17.87904,-14.61984,72.251808,80.8224
--18.33785,-18.70645,-17.6928,-14.65185,71.48997,83.0223
--18.1488,-18.5136,-17.5104,-14.2272,70.84416,84.8832
--19.303,-19.691,-18.624,-15.326,75.4466,87.9111
--19.11196,-19.40008,-18.34364,-15.07828,74.613476,86.044
--19.502,-19.894,-18.816,-15.484,76.3224,83.3
--18.1488,-18.5136,-17.5104,-14.3184,71.11776,80.2656
--18.1488,-18.5136,-17.4192,-14.2272,71.20896,76.8096
--18.1488,-18.4224,-17.4192,-14.3184,71.38224,74.9645
--19.10997,-19.39806,-18.34173,-14.98068,75.249108,74.5154
--17.95975,-18.2305,-17.23775,-14.079,70.81015,72.979
--19.50399,-19.79802,-18.71991,-15.19155,76.898646,73.5669
--19.50399,-19.70001,-18.6219,-15.28956,76.898646,73.8738
--19.104,-19.296,-18.24,-15.072,75.3216,74.71
--19.50399,-19.70001,-18.6219,-15.28956,76.898646,74.2797
--18.905,-19.095,-18.05,-15.01,74.537,71.2785
--19.701,-19.899,-18.81,-15.345,77.6754,73.8837
--19.502,-19.698,-18.62,-15.19,76.8908,72.2456
--18.53088,-18.71712,-17.6928,-14.34048,73.061952,70.2571
--18.91296,-19.10304,-18.0576,-14.82624,74.568384,71.0919
--18.1488,-18.3312,-17.2368,-14.0448,71.55552,67.3835
--19.104,-19.296,-18.24,-14.88,75.2256,70.72
--19.30698,-19.50102,-18.4338,-14.94108,76.034574,68.5412
--19.104,-19.296,-18.144,-14.784,75.2352,66.096
--18.905,-19,-17.955,-14.82,74.4515,69.94
--18.53088,-18.624,-17.59968,-14.52672,72.978144,67.5314
--18.905,-19,-17.955,-14.915,74.4515,69.73
--18.91694,-19.012,-17.96634,-14.82936,74.489016,68.3354
--19.11196,-19.208,-18.15156,-14.98224,75.266548,68.1492
--18.5269,-18.62,-17.5959,-14.4305,72.95316,68.0414
--19.701,-19.8,-18.711,-15.246,77.5764,68.7357
--19.30698,-19.404,-18.23976,-14.84406,76.024872,67.6494
--19.206,-19.10997,-18.05364,-14.69259,75.258711,67.9536
--19.10997,-19.10997,-18.05364,-14.59656,75.258711,67.7556
--18.33785,-18.33785,-17.3242,-14.1911,72.217955,64.8185
--19.9,-19.9,-18.8,-15.4,78.37,68.04
--18.905,-18.905,-17.86,-14.725,74.442,64.2485
--19.30698,-19.404,-18.23976,-14.84406,76.034574,66.7557
--18.91296,-18.91296,-17.86752,-14.63616,74.473344,66.6666
--18.91694,-18.91694,-17.87128,-14.44912,74.489016,65.1161
--18.5269,-18.5269,-17.4097,-14.1512,72.95316,65.7874
--19.104,-19.008,-17.952,-14.496,75.2352,64.2624
--18.905,-18.81,-17.765,-14.535,74.537,66.64
--18.33984,-18.24768,-17.23392,-13.91616,72.216576,63.696
--19.502,-19.404,-18.326,-14.896,76.7928,64.5134
--19.50399,-19.40598,-18.32787,-14.89752,76.898646,64.9737
--19.104,-19.008,-17.952,-14.688,75.4176,62.7168
--18.53088,-18.43776,-17.41344,-14.24736,73.23888,63.1858
--19.10997,-19.01394,-17.95761,-14.59656,75.662037,64.0926
--18.905,-18.81,-17.67,-14.44,74.936,61.218
--18.5269,-18.3407,-17.3166,-14.0581,73.53038,62.7592
--19.104,-18.912,-17.856,-14.592,75.9168,63.83
--18.72192,-18.53376,-17.49888,-14.20608,74.389056,62.5534
--18.905,-18.62,-17.67,-14.155,75.1165,63.83
--18.91694,-18.63176,-17.5861,-14.35406,75.163942,61.9151
--18.91694,-18.72682,-17.68116,-14.35406,75.173448,61.8375
--18.91694,-18.82188,-17.68116,-14.259,75.173448,62.3672
--18.71595,-18.52785,-17.4933,-14.01345,74.365335,63.0036
--19.502,-19.306,-18.13,-14.7,77.4984,63.35
--19.303,-19.012,-17.945,-14.55,76.6979,62.43
--19.502,-19.208,-18.13,-14.7,77.4984,61.2892
--19.10997,-18.82188,-17.76555,-14.50053,75.940524,62.1027
--18.72192,-18.43968,-17.4048,-14.112,74.398464,61.1814
--18.72192,-18.53376,-17.4048,-14.30016,74.304384,59.9328
--18.33785,-18.0614,-17.04775,-13.8225,72.78007,62.1285
--19.303,-19.012,-17.945,-14.55,76.5233,64.52
--18.91694,-18.63176,-17.49104,-14.259,74.983328,61.8375
--18.53088,-18.25152,-17.13408,-13.78176,73.462368,61.9488
--18.91694,-18.5367,-17.49104,-14.259,74.897774,69.1901
--18.53088,-18.06528,-17.13408,-13.968,73.453056,70.2571
--17.8695,-17.59875,-16.606,-13.62775,71.107975,71.9435
--19.8,-19.6,-18.4,-15,78.78,75.03
--19.303,-19.012,-17.848,-14.55,76.4166,75.3787
--19.20996,-18.9189,-17.85168,-14.65002,76.315932,73.7156
--18.4338,-18.1545,-17.1304,-13.8719,73.22315,75.8618
--18.6219,-18.33975,-17.3052,-14.20155,73.97973,73.8245
--18.0576,-17.6928,-16.6896,-13.4064,71.7288,74.9856
--19.008,-18.528,-17.568,-14.208,75.4176,74.88
--18.62784,-18.25152,-17.21664,-14.112,73.909248,76.2538
--18.62784,-18.3456,-17.21664,-13.92384,73.909248,70.7756
--19.008,-18.72,-17.568,-14.4,75.4176,72.3168
--18.6219,-18.2457,-17.21115,-13.9194,73.876275,72.0195
--18.82188,-18.44164,-17.39598,-14.16394,74.679136,72.9634
--18.4338,-17.9683,-17.0373,-13.6857,73.13936,72.6085
--19.602,-19.107,-18.018,-14.652,77.7843,76.91
--18.4338,-17.9683,-16.9442,-13.8719,73.13936,74.9645
--18.81792,-18.43776,-17.29728,-13.97088,74.663424,78.2496
--18.82188,-18.44164,-17.30092,-14.06888,74.679136,81.144
--19.404,-19.012,-17.836,-14.406,76.9888,84.6
--18.6219,-18.2457,-17.1171,-13.82535,73.88568,78.6695
--18.4338,-17.9683,-16.9442,-13.5926,73.22315,80.2816
--18.81,-18.24,-17.195,-13.775,74.8505,80.6
--19.01592,-18.43968,-17.38324,-14.30996,75.765956,78.5176
--19.20996,-18.82188,-17.65764,-14.553,76.539078,76.0578
--18.81792,-18.5328,-17.29728,-14.06592,74.967552,74.6976
--18.43776,-18.06528,-16.94784,-13.22304,73.462368,72.6048
--18.72682,-18.34658,-17.20586,-13.59358,74.983328,71.7994
--18.0576,-17.5104,-16.5072,-13.3152,71.93856,70.034
--18.52785,-17.96355,-17.02305,-13.44915,74.28069,69.2645
--18.3407,-17.689,-16.758,-13.3133,73.53038,70.4914
--18.53376,-17.78112,-16.9344,-13.54752,74.304384,68.4432
--18.72288,-17.96256,-17.01216,-13.68576,75.062592,67.8447
--18.53573,-17.78301,-16.84211,-13.64305,74.312282,65.7951
--18.3407,-17.689,-16.6649,-13.4064,73.53038,64.353
--18.912,-18.336,-17.184,-14.112,75.8208,64.7328
--17.77925,-17.23775,-16.245,-13.1765,71.27945,64.353
--18.91791,-18.43776,-17.18937,-14.02038,75.844494,65.7078
--19.7,-19.1,-17.9,-14.3,78.98,66.72
--18.53573,-17.8771,-16.84211,-13.73714,74.312282,63.7581
--18.53376,-17.8752,-16.84032,-13.73568,74.304384,66.003
--18.715,-18.145,-17.005,-13.87,75.031,67.63
--19.11294,-18.62784,-17.4636,-14.26194,76.626396,66.787
--19.11294,-18.62784,-17.4636,-14.0679,76.626396,68.2407
--18.52785,-18.0576,-16.929,-13.7313,74.37474,68.1615
--18.53376,-17.96928,-16.84032,-13.54752,74.398464,67.3652
--18.34464,-17.6928,-16.66848,-13.31616,73.639296,66.7845
--18.62,-18.05,-17.005,-13.775,75.126,64.5335
--18.0614,-17.60065,-16.49485,-13.73035,72.87222,64.0585
--18.91988,-18.43968,-17.19116,-14.21392,75.948432,66.4636
--17.9664,-17.5104,-16.416,-13.4064,72.12096,65.0304
--19.012,-18.527,-17.46,-14.065,76.7076,64.6408
--18.25152,-17.78592,-16.66848,-13.59552,73.639296,65.0385
--18.2476,-17.689,-16.6649,-13.4064,73.61417,65.023
--18.4338,-17.8695,-16.83495,-13.7313,74.37474,62.5385
--18.44164,-17.8771,-16.84211,-13.73714,74.406372,63.7678
--18.25152,-17.78592,-16.66848,-13.59552,73.639296,63.4768
--18.25152,-17.87904,-16.66848,-13.59552,73.732416,62.8224
--18.2476,-17.8752,-16.6649,-13.6857,73.71658,64.1312
--18.4338,-17.96355,-16.83495,-13.63725,74.37474,61.9875
--19.208,-18.62,-17.542,-14.112,77.5964,63.6314
--19.208,-18.62,-17.542,-14.21,77.5866,63.3374
--19.01592,-18.4338,-17.36658,-14.35896,76.907754,63.8847
--18.2476,-17.7821,-16.6649,-13.7788,73.89347,60.8475
--18.4338,-18.0576,-16.929,-13.82535,74.741535,63.3105
--18.3456,-18.06336,-16.9344,-13.73568,74.755968,62.6612
--18.5367,-18.15646,-17.01574,-13.68864,75.534676,62.3672
--19.11,-18.62,-17.542,-13.916,77.8806,62.2692
--19.11195,-18.6219,-17.54379,-14.11344,77.888547,63.0036
--18.72,-18.24,-17.184,-13.92,76.2912,61.488
--18.3456,-18.06336,-16.84032,-13.82976,74.765376,63.7728
--19.5,-19.2,-17.9,-14.7,79.47,67.82
--19.5,-19.1,-17.9,-14.5,79.37,69.44
--18.1584,-17.6928,-16.66848,-13.59552,73.909344,64.7281
--18.33975,-17.8695,-16.83495,-13.5432,74.647485,61.6275
--19.11,-18.62,-17.542,-14.21,77.7826,70.65
--18.72585,-18.2457,-17.18937,-14.02038,76.122981,63.5085
--18.72,-18.336,-17.184,-14.112,76.0992,61.74
--18.1584,-17.78592,-16.66848,-13.59552,73.816224,65.3295
--19.11,-18.718,-17.542,-14.21,77.6846,70.3836
--18.525,-18.05,-17.005,-13.965,75.316,72.884
--18.72585,-18.14967,-17.09334,-13.73229,76.036554,66.8621
--18.5328,-17.96256,-16.91712,-13.68576,75.252672,63.1104
--17.5085,-17.1475,-16.15475,-13.26675,71.450925,65.3315
--18.82188,-18.53082,-17.36658,-14.0679,76.810734,64.3174
--18.525,-18.24,-17.005,-13.775,75.2115,59.9735
--17.5085,-17.1475,-16.0645,-12.996,71.450925,59.8025
--18.62982,-18.2457,-17.09334,-13.73229,76.026951,60.1691
--19.012,-18.522,-17.444,-14.014,77.5866,60.8972
--18.82188,-18.4338,-17.26956,-14.0679,76.810734,61.1226
--18.82188,-18.4338,-17.36658,-14.26194,76.810734,60.8256
--18.624,-18.24,-17.088,-13.824,76.0032,59.3664
--18.0614,-17.7821,-16.5718,-13.2202,73.71658,60.5052
--19.012,-18.62,-17.444,-13.916,77.5866,62.04
--18.62982,-18.05364,-17.09334,-13.54023,76.036554,59.7811
--18.63176,-18.05552,-16.99908,-13.73372,76.044472,62.083
--18.44164,-17.87128,-16.92068,-13.59358,75.259002,65.4934
--18.25346,-17.8771,-16.74802,-13.54896,74.500462,64.6505
--18.63176,-18.2476,-17.09512,-13.63768,76.034868,68.3354
--18.624,-18.144,-17.088,-13.728,76.0128,72.63
--18.53379,-18.05364,-16.99731,-13.54023,76.036554,66.2898
--18.914,-18.326,-17.248,-13.818,77.5964,72.1378
--18.721,-18.139,-17.072,-13.677,76.8046,71.3241
--18.15744,-17.59296,-16.65216,-13.54752,74.483136,71.2608
--18.72486,-18.23976,-17.17254,-13.87386,76.907754,72.9828
--18.721,-18.333,-17.169,-13.774,76.7949,71.1204
--18.15744,-17.68704,-16.65216,-13.35936,74.483136,69.6192
--18.15744,-17.59296,-16.55808,-13.1712,74.483136,69.2544
--17.78495,-17.23205,-16.2184,-12.80885,72.96437,70.1601
--18.914,-18.326,-17.248,-13.916,77.5964,70.5894
--18.528,-17.952,-16.896,-13.824,76.0032,67.7088
--19.107,-18.612,-17.424,-14.157,78.3783,68.3496
--18.34272,-17.86752,-16.72704,-13.40064,75.347712,65.7888
--19.107,-18.513,-17.424,-13.761,78.4773,67.8447
--18.914,-18.228,-17.15,-13.818,77.5964,67.767
--17.6016,-16.9632,-15.96,-12.8592,72.21216,66.5285
--17.6016,-17.0544,-15.96,-12.768,72.20304,65.968
--18.15937,-17.59483,-16.46575,-13.36078,74.500462,66.9688
--19.107,-18.513,-17.325,-13.86,78.2892,68.4585
--17.41825,-16.7865,-15.79375,-12.54475,71.3697,65.303
--18.816,-18.228,-17.15,-13.818,77.4004,69.04
--18.816,-18.228,-17.052,-13.72,77.4004,68.85
--19.008,-18.414,-17.325,-13.86,78.1902,67.3596
--18.0576,-17.58735,-16.45875,-13.26105,74.28069,64.8185
--18.06336,-17.59296,-16.464,-13.26528,74.304384,64.8288
--18.25152,-17.68116,-16.6355,-13.21334,75.078388,65.8952
--17.8752,-17.2235,-16.1994,-13.034,73.53038,65.7874
--18.24,-17.575,-16.53,-13.205,75.031,63.6975
--18.43776,-17.86158,-16.70922,-13.63626,75.844494,64.7281
--18.624,-18.139,-16.878,-13.677,76.4166,65.2228
--17.5104,-17.0544,-15.8688,-12.6768,71.93856,64.2624
--18.0576,-17.4933,-16.3647,-12.9789,74.28069,65.9835
--18.06336,-17.4048,-16.36992,-13.07712,74.304384,65.1014
--18.816,-18.13,-17.052,-13.72,77.4984,66.24
--18.816,-18.228,-17.052,-13.72,77.5866,65.44
--18.624,-18.042,-16.878,-13.677,76.8919,65.26
--18.527,-18.042,-16.878,-13.677,76.9889,65.25
--18.909,-18.315,-17.226,-13.563,78.5763,65.14
--17.7821,-17.1304,-16.1063,-12.9409,73.88416,63.7392
--17.96355,-17.3052,-16.27065,-13.07295,74.647485,61.6835
--17.60256,-17.0496,-15.94368,-12.81024,73.147392,62.1504
--18.15264,-17.67744,-16.44192,-13.59072,75.423744,63.7956
--18.53082,-18.04572,-16.78446,-13.67982,76.995072,62.867
--17.7821,-17.2235,-16.1063,-12.8478,73.89347,62.6612
--17.96355,-17.21115,-15.51825,-12.32055,74.647485,60.743
--18.15646,-16.44538,-13.87876,-11.59732,75.449122,61.6338
--18.15264,-15.49152,-12.73536,-10.26432,75.433248,62.4987
--17.7821,-14.3374,-11.6375,-9.0307,73.70727,62.181
--19.1,-14.7,-11.6,-8.7,78.98,63.13
--18.718,-13.916,-10.682,-7.35,77.4886,63.24
--17.8695,-12.88485,-9.5931,-6.2073,74.459385,63.7956
--18.34173,-12.77199,-8.83476,-5.28165,76.026951,62.9045
--17.689,-11.8237,-7.9135,-4.1895,73.62348,62.1908
--17.689,-11.3582,-7.2618,-3.6309,73.62348,61.9875
--18.2476,-11.23668,-6.7228,-3.16932,75.938828,62.6612
--17.8695,-10.43955,-5.92515,-3.0096,74.37474,63.2016
--18.05,-9.785,-5.51,-3.61,75.1165,60.287
--17.8695,-9.0288,-4.98465,-3.9501,74.365335,63.1917
--17.5104,-8.11008,-4.79232,-3.77856,72.870912,62.1504
--18.62,-7.742,-4.606,-3.724,77.4984,66.73
--17.8771,-6.77448,-3.95178,-3.48133,74.396963,64.3595
--17.8695,-6.2073,-3.1977,-2.8215,74.365335,63.3006
--17.77545,-5.36085,-2.4453,-1.97505,74.271285,63.5085
--18.711,-5.049,-1.782,-1.584,78.2892,65.03
--18.522,-4.116,-0.784,-1.176,77.4004,64.74
--18.333,-3.298,0.194,-0.679,76.6009,63.64
--17.5959,-2.3275,1.1172,0,73.61417,65.2092
--17.3242,-1.75085,2.11945,-0.09215,72.770855,66.1055
--17.96256,-1.04544,3.3264,0.38016,75.148128,67.4685
--18.23976,-0.38808,4.65696,0.77616,76.713714,70.1217
--18.048,0.384,5.568,1.344,75.9072,71.82
--17.50656,0.9312,6.42528,1.48992,73.639296,72.9888
--18.139,1.455,7.76,2.231,76.7076,75.22
--18.326,1.96,8.918,2.646,77.4004,75.73
--18.32787,2.54826,9.99702,3.03831,77.408298,72.9828
--18.14274,3.20166,11.25432,3.49272,76.616694,72.6474
--17.50074,3.95178,12.13761,3.85769,74.396963,72.2844
--17.50074,4.61041,13.1726,4.13996,74.396963,71.5084
--17.68116,5.13324,14.7343,4.84806,75.163942,72.3534
--17.04775,5.7133,15.38905,4.88395,72.87222,68.153
--17.5824,6.74784,16.82208,5.60736,75.157632,70.5177
--17.4048,7.33824,17.78112,6.20928,74.389056,69.6192
--17.85168,8.44074,19.404,6.59736,76.616694,70.3052
--18.4,9.2,21.2,7.5,78.89,71.05
--17.39598,9.41094,21.29344,7.6048,75.078388,68.943
--17.751,10.282,22.698,8.342,76.5136,68.0261
--16.5984,10.5792,22.5264,8.208,71.93856,66.7584
--16.7713,11.4266,23.4061,8.75425,72.68792,67.1725
--17.38324,12.4852,25.54664,9.89212,75.756352,67.6592
--17.376,13.344,26.4,10.176,75.7248,68.85
--16.9344,13.82976,26.62464,10.3488,74.210304,67.2574
--17.46,14.938,28.324,11.252,76.5136,66.3868
--17.9,16,29.9,12.3,78.88,68.45
--17.005,16.055,29.45,11.97,74.8505,64.8185
--16.74624,16.464,29.82336,12.60672,74.116224,66.5714
--17.26956,17.85168,31.33746,13.0977,76.432356,66.6792
--17.346,18.62,32.34,13.916,77.2044,66.2872
--16.55984,18.72391,31.52015,13.73714,74.218192,65.4071
--16.9785,19.8891,33.4719,14.94108,76.432356,66.8547
--16.807,20.45652,33.99816,15.27036,75.660312,66.0814
--16.03584,20.36736,33.36192,14.92992,72.603648,64.368
--16.44192,21.66912,34.97472,15.96672,74.967552,66.2706
--16.51716,22.47102,36.20331,16.70922,75.748464,66.0627
--16.35032,22.52922,36.40798,17.1108,75.078388,64.3595
--16.587,23.668,38.024,18.042,76.6106,65.94
--16.49,24.153,38.703,18.43,76.7949,63.7678
--15.73728,24.02496,37.99296,18.25152,73.723104,62.8224
--16.296,25.511,40.255,19.497,76.7949,65.44
--15.87502,25.47608,40.02026,19.86754,75.259002,63.3701
--15.4546,25.6025,39.7537,19.9234,73.80968,61.9875
--15.51825,26.5221,40.8177,20.5029,74.553435,64.4985
--15.42912,27.09504,41.48928,20.88576,74.577216,63.6314
--15.33015,27.4626,42.04035,21.6315,74.553435,61.3985
--15.24096,28.31808,42.52416,22.20288,74.577216,61.7568
--14.9891,28.5817,42.6398,22.1578,73.80037,61.123
--15.84,30.789,46.035,24.057,78.4773,62.8155
--14.95872,29.6352,44.02944,23.42592,74.577216,62.475
--14.71296,30.35712,44.13888,23.65248,73.723104,60.528
--15.444,32.769,47.52,25.641,78.1011,62.7165
--14.136,30.552,44.0496,24.168,72.02064,59.8975
--15.246,33.858,48.312,26.532,78.3783,62.7165
--14.592,33.408,47.232,26.208,76.0032,63.5904
--14.50204,33.80608,47.82792,26.8912,76.034868,62.6612
--14.1075,33.6699,47.30715,26.8983,74.459385,61.218
--13.357,32.76075,45.847,26.1725,71.450925,60.458
--13.82976,34.90368,48.35712,27.94176,74.483136,60.9984
--13.73714,35.28375,48.83271,28.41518,74.491053,61.5271
--13.40928,35.66496,48.888,28.49472,73.723104,61.2
--13.871,37.345,51.313,30.361,76.7949,65.55
--13.54023,37.25964,51.28002,30.44151,76.026951,65.3697
--13.44,38.016,51.648,30.912,76.0128,65.44
--12.98304,37.82016,51.17952,30.67008,74.483136,64.656
--13.289,39.188,53.059,32.01,76.7949,65.8921
--12.96405,39.56436,53.00856,31.97799,76.026951,65.7951
--12.25595,37.9658,51.32755,31.23885,72.955155,65.0385
--12.58124,40.43284,53.68636,32.6536,76.044472,64.8172
--11.856,37.9392,50.5248,32.4672,72.20304,63.312
--11.91936,38.6448,50.93664,34.73376,73.723104,63.696
--11.97,39.235,51.205,35.53,75.2115,66.65
--12.375,40.887,52.767,36.729,78.3783,66.2706
--12.054,40.278,51.548,36.064,77.5866,65.44
--11.616,38.496,49.248,37.44,76.0032,65.14
--11.42757,35.72316,46.95867,37.64376,76.026951,65.0385
--10.55925,32.6705,42.4175,34.8365,71.450925,62.6525
--10.8192,33.8688,43.7472,36.31488,74.492544,62.0544
--10.83,33.82,43.32,35.72,75.2115,67.05
--10.3208,30.87025,40.26955,33.3583,72.96437,65.3295
--10.241,30.3506,39.1951,33.3298,73.80037,69.1292
--10.05696,29.89152,37.99296,32.1264,73.816224,66.7584
--10.08315,29.7693,37.73979,32.55417,76.122981,70.6548
--9.49145,27.8293,35.29345,30.87025,73.047305,69.9758
--9.50208,27.94176,35.09184,30.19968,74.483136,71.7216
--9.50697,27.56061,34.76286,30.53754,76.122981,70.5481
--8.93952,25.71264,32.53248,28.93824,72.972288,71.6448
--9.0307,26.04644,32.60558,28.61306,75.354062,74.2154
--9.11493,25.97265,32.83335,29.30499,77.692527,73.7847
--8.82882,25.03116,31.72554,28.71792,76.907754,76.1409
--8.72289,24.69852,31.16718,27.83484,77.692527,74.7648
--8.342,23.862,30.167,27.16,76.8919,73.9237
--8.4,23.9,30.3,27.8,79.27,75.04
--7.872,22.464,28.32,25.728,76.0992,72.7008
--7.92,22.473,28.413,26.235,78.4872,75.34
--7.644,21.658,27.44,25.676,77.6846,73.9018
--7.2765,21.05334,26.48646,24.93414,76.907754,73.6758
--7.227,20.988,26.334,24.948,78.3783,73.0917
--6.74926,19.39224,24.7156,23.47982,75.354062,71.6674
--6.48945,18.81,23.8887,22.85415,74.459385,71.6067
--6.499,18.915,24.056,23.183,76.7949,68.9864
--6.0515,17.5959,22.5302,21.5061,73.70727,66.8325
--6.111,17.945,22.795,22.213,76.7949,70.35
--5.978,17.738,22.54,22.05,77.5964,67.5612
--5.2896,16.2336,20.52,19.8816,72.20304,65.588
--5.643,17.127,21.681,21.186,78.3783,67.9536
--5.016,15.2304,19.5168,19.3344,72.20304,65.1168
--4.7918,15.1126,19.25935,19.25935,72.955155,64.8185
--4.8015,15.3648,19.49409,19.59012,76.026951,66.7557
--4.51535,14.3754,18.2457,18.2457,72.955155,65.1035
--4.46292,14.65002,18.82188,19.01592,76.810734,66.003
--4.275,13.87,17.955,18.525,75.2115,63.3175
--3.87072,13.17888,17.0496,17.60256,72.963072,63.7728
--3.89664,13.3056,17.1072,17.48736,75.243168,63.2064
--3.59385,12.44025,16.12625,16.67915,72.955155,63.0325
--3.626,12.936,16.758,17.64,77.5866,64.8074
--3.43,12.642,16.366,17.542,77.5866,64.8074
--3.10464,11.85408,15.33504,16.464,74.483136,61.9488
--2.8861,11.3582,14.8029,15.7339,73.43728,65.3954
--2.8518,11.12202,14.7343,15.77996,74.983328,65.6108
--2.8,11.4,15.1,16.3,78.88,69.33
--2.6,11.2,14.8,16.1,78.97,68.74
--2.40075,10.5633,13.82832,14.88465,75.844494,66.7557
--2.277,10.494,13.86,14.949,78.1902,69.5376
--2.01663,9.79506,13.15611,14.50053,75.844494,69.4386
--1.98,9.9,13.167,14.85,78.1902,71.34
--1.6245,8.8445,11.7325,13.26675,71.27945,67.488
--1.5048,8.93475,11.94435,13.5432,74.28069,70.5177
--1.47015,8.91891,12.05523,13.62339,77.408298,70.4088
--1.261,8.439,11.64,13.192,76.7076,72.15
--1.11744,7.82208,10.89504,12.5712,73.629984,68.6688
--0.99,8.118,11.286,13.167,78.2892,73.8837
--0.83808,7.54272,10.33632,12.01248,73.629984,70.2048
--0.67228,7.58716,10.37232,12.10104,75.938828,72.2456
--0.55296,6.912,9.58464,11.15136,72.880128,70.8768
--0.3686,6.4505,9.3993,11.15015,72.863005,74.0304
--0.28518,6.6542,9.41094,11.4072,75.268508,74.2147
--0.09025,6.22725,8.664,10.6495,71.450925,73.1595
-0,6.36768,8.93376,10.64448,75.243168,73.4496
-0.09408,5.92704,8.56128,10.25472,74.483136,72.4992
-0.19602,5.78259,8.62488,10.48707,77.594517,74.9727
-0.37636,5.36313,8.09174,10.06763,74.491053,72.0128
-0.495,5.544,8.217,10.494,78.3783,72.73
-0.594,5.445,8.019,10.296,78.3783,72.44
-0.76,5.035,7.505,9.5,75.1165,71.93
-0.864,4.8,7.2,9.312,75.9168,68.1024
-0.9215,4.2389,6.72695,8.6621,72.87222,65.8635
-1.0032,4.104,6.384,8.7552,72.20304,66.2784
-1.1058,3.96245,6.2662,8.56995,72.955155,64.7425
-1.23552,4.08672,6.27264,8.74368,75.148128,67.1517
-1.37214,4.11642,6.27264,8.62488,77.594517,66.6765
-1.3824,3.59424,5.71392,7.64928,72.963072,64.368
-1.5048,3.1977,5.54895,7.80615,74.459385,62.928
-1.666,3.234,5.488,8.036,77.5964,66.35
-1.782,3.168,5.445,8.118,78.3783,65.1816
-1.78695,2.91555,4.98465,7.80615,74.46879,65.1816
-1.96,2.94,4.998,7.742,77.5866,65.63
-2.079,2.673,4.851,7.425,78.3783,65.0826
-2.134,2.328,4.462,6.984,76.7949,65.84
-2.09132,1.99626,4.18264,6.74926,75.259002,64.1461
-2.16407,1.8818,3.95178,6.86857,74.406372,62.4098
-2.25792,1.8816,3.85728,6.5856,74.210304,63.8372
-2.45,1.862,3.822,6.664,77.3906,64.8074
-2.44608,1.69344,3.48096,5.73888,74.304384,64.9344
-2.4206,1.3034,3.2585,5.586,73.53038,65.2092
-2.7,1.2,3.3,6,78.98,66.83
-2.63452,0.84681,2.91679,5.55131,74.312282,66.4741
-2.66168,0.9506,2.75674,5.89372,75.078388,66.5711
-2.72745,0.84645,2.6334,5.4549,74.28069,69.3297
-2.72745,0.65835,2.4453,4.8906,74.28069,69.5376
-2.7645,0.3686,2.2116,4.6075,72.78007,68.9088
-2.8272,0.0912,2.0064,4.6512,72.02976,66.9085
-3.007,0,1.94,4.85,76.6203,69.3841
-3.2,-0.1,1.9,5,78.97,72.52
-3.01088,-0.18818,1.59953,4.51632,74.312282,71.3241
-3.04095,-0.1843,1.4744,4.33105,72.87222,71.7218
-3.168,-0.288,1.344,4.224,75.9168,74.13
-3.10365,-0.47025,1.22265,3.762,74.28069,73.7748
-3.366,-0.891,0.99,3.861,78.1902,73.9629
-3.23,-1.045,0.855,3.705,75.031,73.94
-3.2592,-1.02432,0.65184,3.53856,73.546176,71.1204
-3.3614,-1.15248,0.57624,3.74556,75.861996,71.2754
-3.43035,-1.17612,0.49005,3.62637,77.408298,71.3097
-3.3516,-1.3034,0.2793,3.4447,73.53038,67.564
-3.45708,-1.44045,0.19206,3.26502,75.844494,70.1217
-3.38724,-1.59953,0.09409,3.01088,74.302873,68.0261
-3.44544,-1.76928,-0.09312,2.88672,73.536864,66.5568
-3.51722,-1.9012,-0.28518,2.56662,75.078388,66.8621
-3.3744,-1.9152,-0.3648,2.4624,72.02976,65.4835
-3.3744,-2.0064,-0.456,2.3712,72.02976,65.7888
-3.48096,-2.16384,-0.56448,2.44608,74.304384,65.712
-3.724,-2.352,-0.784,2.254,77.4004,66.787
-3.5739,-2.6334,-0.9405,1.59885,74.28069,68.0526
-3.5378,-2.793,-1.1172,1.6758,73.53038,67.3652
-3.686,-3.007,-1.261,1.94,76.6009,68.53
-3.724,-3.038,-1.372,1.862,77.4004,67.0712
-3.64952,-2.97724,-1.4406,1.82476,75.756352,66.9732
-3.648,-2.88,-1.536,1.824,75.7248,68.15
-3.686,-3.007,-1.649,1.552,76.5136,68.15
-3.61,-3.23,-1.71,1.235,74.936,64.5335
-3.50208,-3.40992,-1.8432,1.01376,72.695808,65.2128
-3.61228,-3.61228,-1.99626,1.14072,74.983328,65.8921
-3.762,-3.861,-2.178,1.089,77.9922,67.0626
-3.5017,-3.59385,-2.2116,1.01365,72.59577,64.1535
-3.648,-3.744,-2.304,0.864,75.7248,67.35
-3.5739,-3.762,-2.35125,0.7524,74.28069,63.9825
-3.724,-3.92,-2.548,0.686,77.3906,66.84
-3.762,-4.158,-2.673,0.396,78.2793,65.8746
-3.648,-4.224,-2.784,0.192,76.0032,66.35
-3.61,-4.37,-2.945,0.285,75.3065,66.02
-3.64952,-4.51388,-2.97724,0.19208,76.130908,64.6212
-3.53856,-4.37664,-3.07296,0.18624,73.816224,64.0394
-3.4295,-4.332,-3.0685,0.1805,71.631425,62.719
-3.64914,-4.60944,-3.26502,0,76.209408,64.0491
-3.4447,-4.5619,-3.2585,-0.2793,73.88416,62.548
-3.626,-4.9,-3.528,-0.196,77.6846,63.945
-3.626,-4.998,-3.626,-0.392,77.6748,63.3374
-3.44544,-4.93536,-3.63168,-0.55872,73.900032,62.5941
-3.7,-5.5,-4,-0.7,79.37,64.53
-3.7,-5.7,-4.1,-0.9,79.36,64.05
-3.42,-5.415,-3.99,-0.665,75.392,61.218
-3.3174,-5.3447,-3.96245,-0.82935,73.139455,61.503
-3.3858,-5.36085,-4.04415,-0.84645,74.459385,60.363
-3.35232,-5.40096,-4.1904,-1.11744,73.723104,61.9151
-3.2256,-5.62176,-4.23936,-1.65888,72.880128,61.584
-3.325,-6.08,-4.56,-1.71,75.1165,61.123
-3.36,-6.048,-4.704,-1.344,76.0032,64.93
-3.15875,-5.68575,-4.42225,-1.083,71.450925,61.6835
-3.19872,-5.83296,-4.704,-1.12896,74.389056,65.5032
-3.13344,-5.71392,-4.608,-1.19808,72.963072,63.3792
-3.10464,-5.73888,-4.704,-1.59936,74.483136,64.3174
-3.16899,-6.14592,-4.89753,-2.20869,76.026951,65.6766
-3.23433,-6.66468,-5.19453,-2.15622,77.594517,63.8847
-3.16932,-6.53072,-5.18616,-1.72872,76.034868,63.6314
-2.94912,-6.17472,-4.97664,-1.65888,72.963072,61.9392
-3.07296,-6.43401,-5.28165,-1.53648,76.026951,61.9151
-3.007,-6.499,-5.335,-1.843,76.7949,62.4098
-2.88672,-6.33216,-5.21472,-1.95552,73.723104,65.5041
-2.88672,-6.33216,-5.21472,-2.04864,73.723104,62.256
-2.736,-6.384,-5.1984,-2.4624,72.20304,60.5625
-2.7648,-6.81984,-5.43744,-2.58048,72.963072,62.0448
-2.8224,-7.056,-5.6448,-2.54016,74.483136,64.3174
-2.755,-7.125,-5.795,-2.28,75.2115,61.6075
-2.70048,-6.89088,-5.68032,-2.328,73.732416,63.984
-2.688,-7.008,-5.856,-2.304,76.0032,65.95
-2.744,-7.154,-6.076,-2.45,77.5866,65.2092
-2.53935,-6.9597,-5.8311,-2.2572,74.459385,63.6975
-2.48832,-6.81984,-5.80608,-2.58048,72.963072,66.1728
-2.48805,-7.0034,-5.8976,-2.9488,72.955155,64.6505
-2.3712,-7.1136,-5.928,-2.9184,72.20304,63.2064
-2.574,-7.92,-6.336,-2.277,78.3882,68.04
-2.45,0,-3.136,7.056,77.5866,68.93
-2.352,-3.85728,-4.32768,0.37632,74.483136,68.9472
-2.166,-0.9025,-1.805,10.2885,71.450925,67.1175
-2.30472,-2.78487,-2.78487,1.9206,75.940524,68.3496
-2.20892,-3.93764,-3.3614,0.4802,75.938828,65.8952
-2.14176,-4.1904,-3.44544,-0.18624,73.639296,64.6408
-2.09,-4.465,-3.61,-0.57,75.2115,66.54
-2.112,-4.704,-3.744,-0.864,75.9072,69.24
-1.9855,-4.693,-3.61,-1.083,71.3697,64.258
-1.99626,-5.2283,-3.99252,-1.4259,75.163942,65.2092
-2.01663,-5.56974,-4.22532,-1.72854,75.940524,67.1418
-1.9206,-5.66577,-4.32135,-1.72854,75.930921,67.3596
-1.96,-5.978,-4.508,-2.058,77.4886,68.85
-1.8816,-5.83296,-4.51584,-2.06976,74.483136,68.551
-1.82476,-6.05052,-4.70596,-2.01684,76.034868,69.4134
-1.80614,-6.1789,-4.753,-2.18638,75.268508,72.3911
-1.6416,-6.0192,-4.7424,-2.4624,72.20304,72.0195
-1.728,-6.624,-5.184,-2.88,76.0128,72.0384
-1.6758,-6.7032,-5.2136,-2.9792,73.70727,72.029
-1.649,-7.081,-5.529,-3.104,76.7076,75.11
-1.4592,-6.6576,-5.2896,-2.8272,72.21216,72.3235
-1.52064,-6.93792,-5.60736,-2.8512,75.243168,72.2112
-1.4259,-6.93938,-5.7036,-2.94686,75.259002,75.9696
-1.4112,3.66912,-2.352,18.06336,74.483136,75.0778
-1.3965,6.7032,-1.2103,10.7065,73.70727,73.7295
-1.34456,1.34456,-1.24852,9.1238,76.140512,74.5094
-1.33,7.22,1.045,13.965,75.3065,72.504
-1.33056,1.80576,-0.19008,5.98752,75.338208,73.3632
-1.24852,0.19208,0,6.53072,76.130908,73.7156
-1.23578,2.47156,2.18638,8.27022,75.354062,71.2754
-1.11744,0.65184,0.9312,4.84224,73.816224,70.4414
-1.1286,0,0.65835,4.04415,74.553435,68.818
-1.1286,-0.65835,0.3762,3.1977,74.553435,69.6465
-1.045,-1.235,0.19,2.755,75.3065,66.2435
-1.067,-1.552,0,2.716,76.9016,68.93
-1.05633,-1.82457,-0.09603,2.40075,76.219011,68.5476
-0.9603,-2.01663,-0.28809,2.11266,76.219011,68.2407
-0.9702,-2.23146,-0.4851,1.84338,77.004774,67.9437
-0.9603,-2.49678,-0.67221,1.44045,76.219011,67.4685
-0.9603,-2.97693,-1.05633,1.05633,76.219011,66.9636
-0.864,-3.36,-1.248,0.672,76.1952,67.43
-0.87318,-3.49272,-1.55232,0.87318,77.004774,65.8952
-0.9,-1.1,1,8,79.37,65.55
-0.864,-2.112,-0.384,2.304,76.1952,62.4384
-0.792,-2.871,-0.99,1.584,78.5763,65.55
-0.7448,-2.9792,-1.2103,0.931,73.89347,64.0234
-0.78408,-1.56816,0.29403,5.48856,77.790537,65.0727
-0.6517,-2.793,-0.8379,1.3965,73.80037,62.2725
-0.66528,2.09088,1.4256,14.63616,75.252672,63.1104
-0.67221,4.41738,3.64914,13.73229,76.026951,64.0491
-0.67228,1.53664,2.20892,6.2426,76.034868,63.8372
-0.57618,0.86427,2.59281,5.95386,76.036554,67.6566
-0.582,0.582,2.91,5.626,76.7949,67.53
-0.594,6.435,4.455,14.85,78.3783,67.83
-0.57,2.85,4.18,8.93,75.2115,69.24
-0.57624,6.05052,5.37824,12.005,76.034868,68.7274
-0.49005,6.8607,7.25274,14.50548,77.594517,69.1416
-0.485,9.312,8.439,17.751,76.7949,67.9194
-0.456,5.7456,6.4752,10.3056,72.20304,66.9085
-0.4851,4.55994,6.20928,8.92584,76.810734,69.8247
-0.4802,3.74556,5.7624,7.87528,76.140512,69.6192
-0.4752,2.94624,5.41728,6.74784,75.338208,71.6067
-0.361,2.07575,4.693,6.137,71.541175,70.8985
-0.38024,1.80614,4.65794,6.27396,75.354062,72.7454
-0.38,1.52,4.37,5.985,75.3065,73.61
-0.37636,1.31726,3.95178,5.45722,74.585143,71.7994
-0.4,0.9,3.9,5,79.27,74.13
-0.37248,0.18624,3.16608,4.46976,73.816224,71.4017
-0.3686,-0.09215,2.7645,4.2389,72.96437,71.1204
-0.37632,-0.18816,2.63424,4.32768,74.483136,71.2754
-0.3686,-0.27645,2.30375,3.96245,72.955155,68.818
-0.38024,-0.4753,2.09132,3.70734,75.259002,70.4914
-0.38412,-0.9603,1.72854,3.26502,76.026951,69.1998
-0.3686,-1.2901,1.38225,2.9488,72.955155,67.488
-0.37632,-1.50528,1.03488,2.8224,74.304384,69.3056
-0.38024,-1.71108,0.85554,2.75674,75.173448,69.3056
-0.388,-1.746,0.679,2.619,76.7076,68.4238
-0.38024,-1.9012,0.28518,2.3765,75.173448,68.7372
-0.388,-2.231,0.097,2.037,76.7949,70.03
-0.37248,-2.51424,-0.18624,1.67616,73.732416,67.6381
-0.392,-2.842,-0.49,1.666,77.5866,69.44
-0.28227,-2.91679,-0.65863,1.59953,74.406372,67.3471
-0.28512,-3.04128,-0.85536,1.4256,75.157632,68.7456
-0.28224,-3.01056,-1.03488,1.22304,74.398464,66.384
-0.28809,-3.16899,-1.34442,1.15236,76.026951,66.9688
-0.28224,-3.38688,-1.50528,0.75264,74.483136,67.2574
-0.28812,-3.8416,-1.72872,0.38416,76.140512,66.9732
-0.28518,-3.99252,-1.99626,0.38024,75.449122,66.6792
-0.29106,-4.17186,-2.13444,0.58212,77.004774,66.787
-0.28518,-4.08758,-2.28144,0.19012,75.449122,65.8921
-0.18624,-4.09728,-2.328,0.18624,73.909344,65.1168
-0.19602,-4.21443,-2.54826,0,77.790537,67.1517
-0.194,-4.268,-2.716,0,76.9889,65.1161
-0.18624,-4.28352,-2.70048,-0.4656,73.909344,64.1461
-0.198,-4.95,-3.168,-0.891,78.5763,66.13
-0.194,-5.044,-3.201,-0.679,76.9889,65.25
-0.196,-5.194,-3.43,-0.98,77.7826,65.04
-0.09603,-5.18562,-3.45708,-0.86427,76.219011,63.2925
-0.09312,-5.02848,-3.44544,-1.02432,73.909344,63.5835
-0.09603,-5.28165,-3.74517,-1.24839,76.219011,62.9821
-0.095,-5.32,-3.8,-1.33,75.4015,64.23
-0.099,-5.742,-4.158,-1.881,78.5763,63.4095
-0.095,-5.89,-4.085,-1.9,75.392,61.6075
-0.099,-6.237,-4.455,-1.98,78.5862,64.5975
-0,-6.3,-4.6,-2,79.37,65.74
-0,-6.208,-4.656,-2.037,76.9889,63.6611
-0,-6.272,-4.802,-2.058,77.7826,65.04
-0,-6.27,-4.75,-2.185,75.392,65.33
-0,-6.33798,-4.89753,-2.40075,76.219011,62.7978
--0.09801,-6.66468,-5.09652,-2.64627,77.790537,64.5975
--0.09312,-6.61152,-5.02848,-2.70048,73.909344,62.256
--0.09409,-6.86857,-5.17495,-3.10497,74.679233,64.1461
--0.09702,-7.17948,-5.53014,-2.9106,77.004774,64.6767
--0.09408,-6.96192,-5.45664,-3.01056,74.671296,63.312
--0.09604,-7.203,-5.66636,-3.07328,76.226948,65.8952
--0.1805,-6.76875,-5.415,-2.888,71.631425,62.928
--0.192,-7.392,-5.856,-3.36,76.1952,63.696
--0.192,-7.488,-6.048,-3.456,76.1952,64.2624
--0.18624,-7.4496,-5.95968,-3.53856,73.900032,64.656
--0.291,-7.857,-6.305,-3.88,76.9792,70.03
--0.28215,-7.7121,-6.2073,-3.762,74.65689,64.638
--0.2736,-7.4784,-6.1104,-3.648,72.38544,65.1168
--0.285,-7.885,-6.46,-3.895,75.3065,64.5335
--0.38416,-8.06736,-6.62676,-4.12972,76.130908,65.8952
--0.396,-8.415,-6.93,-4.455,78.4773,67.83
--0.38412,-8.35461,-6.81813,-4.41738,76.122981,67.2507
--0.46075,-8.1092,-6.6348,-4.2389,73.047305,67.3568
--0.48015,-8.54667,-7.01019,-4.51341,76.122981,68.5575
--0.456,-8.1168,-6.7488,-4.1952,72.29424,64.828
--0.475,-8.55,-7.125,-4.655,75.316,65.5975
--0.4851,-8.82882,-7.37352,-4.851,77.004774,69.4287
--0.6,-9.2,-7.7,-5.1,79.37,72.14
--0.5643,-8.8407,-7.3359,-4.79655,74.553435,68.818
--0.686,-9.31,-7.644,-5.096,77.6846,74.12
--0.672,-9.024,-7.584,-4.8,76.1952,73.2672
--0.672,-9.12,-7.68,-5.28,76.1952,74.93
--0.64505,-9.12285,-7.5563,-5.529,73.139455,72.029
--0.77616,-9.702,-8.05266,-5.62716,77.004774,73.9018
--0.768,-9.408,-7.968,-5.184,76.2048,72.7872
--0.784,-9.506,-8.134,-5.39,77.7826,73.4314
--0.81225,-8.664,-7.581,-4.78325,71.631425,70.984
--0.87318,-9.31392,-8.14968,-5.53014,77.004774,72.2456
--0.9604,-9.21984,-8.06736,-5.7624,76.322988,72.3534
--0.99,-9.9,-8.514,-6.237,78.6753,72.8739
--0.96,-9.888,-8.352,-6.144,76.2912,71.1648
--0.99,-10.098,-8.712,-6.138,78.5763,73.2006
--1.05633,-9.69903,-8.45064,-5.66577,76.219011,70.8294
--1.0241,-9.31,-8.1928,-5.3067,73.89347,70.3052
--1.176,-9.8,-8.624,-5.684,77.7826,69.237
--1.15248,-9.604,-8.45152,-5.66636,76.236552,69.237
--1.0944,-9.2112,-8.1168,-5.7456,72.38544,66.9085
--1.19795,-9.67575,-8.2935,-6.17405,73.139455,66.2435
--1.21056,-9.87072,-8.47392,-6.0528,73.909344,66.48
--1.358,-10.282,-8.924,-6.111,76.9792,65.7854
--1.3034,-9.7755,-8.5652,-5.6791,73.89347,64.258
--1.37214,-10.19304,-9.01692,-5.8806,77.790537,66.4686
--1.38225,-9.5836,-8.4778,-5.7133,73.139455,65.7175
--1.4112,-9.78432,-8.65536,-5.83296,74.671296,65.5032
--1.52096,-9.88624,-8.84058,-5.98878,75.449122,64.6505
--1.52,-9.975,-8.835,-6.08,75.4015,63.3175
--1.649,-10.282,-9.021,-6.305,76.9889,64.6505
--1.61602,-10.17142,-8.93564,-6.36902,75.449122,64.0491
--1.63251,-10.27521,-9.12285,-6.53004,76.219011,63.8648
--1.6416,-9.8496,-8.664,-6.0192,72.46752,63.3024
--1.746,-10.573,-9.215,-6.499,76.9889,65.26
--1.843,-10.573,-9.312,-6.499,76.9889,63.4865
--1.843,-10.573,-9.312,-6.596,76.9889,62.4098
--1.843,-10.1365,-8.93855,-6.2662,73.047305,62.2255
--1.862,-10.3341,-9.1238,-6.517,73.80037,62.475
--1.97505,-10.5336,-9.2169,-6.5835,74.553435,62.8254
--1.95552,-10.42944,-9.12576,-6.5184,73.816224,63.8648
--2.079,-11.088,-9.801,-6.93,78.4773,65.94
--2.11266,-10.85139,-9.603,-6.81813,76.219011,65.7657
--2.06976,-10.8192,-9.408,-6.96192,74.577216,65.2092
--2.231,-11.155,-9.797,-7.081,76.8919,68.23
--2.3,-11.5,-10.1,-7.4,79.27,69.04
--2.28096,-10.83456,-9.69408,-7.03296,75.433248,67.8447
--2.328,-11.252,-9.991,-7.178,76.8919,67.8515
--2.475,-11.781,-10.296,-7.821,78.4773,69.84
--2.28,-10.944,-9.576,-7.1136,72.38544,67.108
--2.574,-11.682,-10.296,-7.326,78.5763,71.93
--2.496,-11.136,-9.984,-7.104,76.1952,71.34
--2.3959,-10.59725,-9.5836,-6.6348,73.139455,70.0534
--2.619,-11.155,-10.088,-7.469,76.9889,72.15
--2.772,-11.682,-10.494,-8.217,78.5763,73.62
--2.66,-11.495,-10.07,-7.79,75.4015,74.71
--2.6448,-10.944,-9.7584,-6.9312,72.38544,71.4432
--2.67235,-10.96585,-9.7679,-7.0034,73.139455,70.9745
--2.84229,-11.46717,-10.38906,-7.35075,77.790537,74.7648
--2.793,-10.8927,-9.8686,-6.9825,73.89347,71.5635
--3,-11.7,-10.6,-7.6,79.37,73.94
--3.069,-11.583,-10.494,-7.524,78.5763,72.3987
--3.104,-11.64,-10.379,-7.663,76.9889,72.83
--2.9488,-11.33445,-9.9522,-7.46415,73.047305,70.1601
--2.97825,-11.191,-9.83725,-7.12975,71.631425,68.438
--3.267,-12.177,-10.791,-7.821,78.5763,71.12
--3.135,-11.495,-10.355,-7.41,75.3065,67.564
--3.29868,-11.73942,-10.57518,-7.56756,77.004774,69.2272
--3.23136,-11.49984,-10.35936,-7.41312,75.338208,69.8247
--3.29175,-11.38005,-10.25145,-7.524,74.647485,66.633
--3.3614,-11.62084,-10.46836,-7.49112,76.226948,68.551
--3.2832,-11.1264,-10.032,-7.3872,72.38544,66.8352
--3.42,-11.685,-10.45,-7.6,75.4015,69.44
--3.7,-12.4,-11.1,-8.3,79.27,69.44
--3.4447,-11.5444,-10.3341,-7.5411,73.80037,65.7875
--3.61,-11.875,-10.545,-7.98,75.3065,65.588
--3.686,-12.125,-10.864,-7.857,76.8919,68.74
--3.66912,-11.76,-10.53696,-7.90272,74.577216,67.1692
--3.861,-12.375,-11.187,-8.316,78.4773,67.6566
--3.8,-11.875,-10.735,-8.075,75.4015,64.8185
--4,-12.6,-11.3,-8.3,79.27,68.23
--3.77856,-11.70432,-10.50624,-7.74144,72.963072,65.712
--3.70025,-11.46175,-10.2885,-7.67125,71.541175,64.4385
--3.7905,-11.552,-10.37875,-7.7615,71.631425,63.9825
--3.95178,-12.13761,-10.82035,-8.18583,74.679233,65.2228
--3.9216,-11.7648,-10.488,-7.8432,72.38544,63.878
--4.0033,-12.0099,-10.7996,-8.0066,73.98657,63.6975
--4.0546,-11.9795,-10.78155,-7.9249,73.22239,65.1161
--4.18,-12.35,-11.115,-8.36,75.487,66.65
--4.32,-12.48,-11.232,-8.256,76.2816,66.43
--4.104,-11.9472,-10.7616,-8.1168,72.47664,63.1085
--4.3263,-12.4146,-11.0979,-8.37045,74.741535,65.0826
--4.28352,-12.29184,-11.08128,-8.28768,74.002464,63.4768
--4.46688,-12.64032,-11.30976,-8.5536,75.518784,64.2807
--4.46688,-12.64032,-11.4048,-8.45856,75.528288,62.256
--4.656,-12.901,-11.64,-8.342,77.0762,64.34
--4.608,-12.672,-11.52,-8.64,76.2816,63.94
--4.61041,-12.51397,-11.2908,-8.65628,74.763914,61.6338
--4.753,-13.095,-11.834,-9.215,77.0762,63.13
--4.7045,-12.89033,-11.47898,-8.75037,74.763914,61.1585
--4.9005,-13.32936,-11.95722,-8.8209,77.878746,62.3106
--4.99851,-13.13334,-11.95722,-8.91891,77.888547,61.8057
--4.84806,-12.64298,-11.59732,-8.46034,75.534676,60.7894
--4.8906,-12.4146,-11.4741,-8.37045,74.647485,59.242
--4.84224,-12.38496,-11.36064,-8.3808,73.900032,59.856
--4.8336,-12.4032,-11.2176,-8.664,72.38544,60.6048
--4.8336,-12.5856,-11.3088,-8.664,72.38544,59.3085
--5.13,-13.11,-11.78,-8.74,75.4015,63.54
--5.4,-13.6,-12.4,-9,79.37,64.93
--5.1205,-12.5685,-11.5444,-8.4721,73.88416,60.8475
--5.3361,-13.0977,-12.03048,-8.82882,76.995072,62.867
--5.21472,-12.5712,-11.54688,-8.47392,73.816224,63.8784
--5.2136,-12.5685,-11.5444,-8.7514,73.80968,60.572
--5.41842,-13.11828,-11.8825,-9.31588,75.354062,62.6612
--5.529,-13.58,-12.222,-9.506,76.8919,61.6338
--5.4549,-13.167,-11.8503,-8.93475,74.553435,62.7285
--5.2896,-12.6768,-11.4912,-8.4816,72.29424,63.0048
--5.49408,-12.85056,-11.73312,-8.3808,73.816224,62.64
--5.32475,-12.36425,-11.3715,-8.303,71.541175,61.2275
--5.78259,-13.32936,-12.25125,-9.11493,77.692527,64.2807
--5.82,-13.192,-12.222,-9.118,76.8919,65.0385
--5.73949,-12.89033,-11.85534,-8.75037,74.594552,66.6875
--5.856,-13.152,-12.096,-9.216,76.0992,65.424
--5.62115,-12.7167,-11.6109,-8.93855,73.139455,66.8621
--5.89,-13.3,-12.065,-8.93,75.3065,69.0935
--5.95448,-13.4456,-12.19708,-9.21984,75.852392,70.6972
--5.92704,-13.1712,-11.94816,-9.03168,74.210304,70.4928
--6.04989,-13.4442,-12.29184,-9.02682,75.844494,71.1204
--6.0192,-13.167,-12.0384,-9.0288,74.18664,72.0027
--6.24195,-13.4442,-12.29184,-9.41094,75.854097,72.0031
--6.1776,-13.40064,-12.16512,-9.31392,75.157632,70.6752
--6.11325,-13.3551,-12.13245,-9.405,74.459385,71.1835
--6.20928,-13.54752,-12.2304,-9.31392,74.483136,73.4216
--6.14592,-13.31616,-12.1056,-9.21888,73.723104,72.4992
--6.1104,-13.0416,-11.856,-8.8464,72.20304,71.364
--6.566,-13.916,-12.74,-9.604,77.6846,73.0296
--6.39812,-13.36078,-12.2317,-9.22082,74.491053,71.5084
--6.596,-13.774,-12.707,-9.603,76.8919,69.9758
--6.2928,-13.1328,-11.9472,-9.12,72.30336,68.8704
--6.55776,-13.7808,-12.54528,-9.504,75.338208,69.3297
--6.2928,-13.224,-12.0384,-9.0288,72.29424,65.588
--6.7914,-13.97088,-12.80664,-9.60498,76.907754,66.7557
--6.86,-14.112,-12.936,-9.506,77.5866,63.7392
--6.887,-13.871,-12.804,-9.506,76.8919,62.7978
--6.54265,-13.2696,-12.1638,-9.3993,73.047305,60.8475
--7.2,-14.6,-13.3,-10.4,79.17,63.46
--6.98544,-14.26194,-13.00068,-9.99306,76.810734,62.9046
--6.77376,-13.73568,-12.60672,-9.408,74.492544,60.8972
--7.008,-13.92,-12.768,-9.408,76.0032,58.8768
--6.9597,-13.5432,-12.50865,-9.31095,74.459385,59.6376
--7.178,-13.968,-12.901,-9.409,76.6979,57.8508
--7.178,-14.065,-12.901,-10.088,76.6979,57.3561
--7.05675,-13.92532,-12.60806,-9.87945,74.312282,56.5995
--6.984,-13.78176,-12.5712,-9.68448,73.536864,55.632
--7.07712,-13.68864,-12.5712,-9.40512,73.546176,56.5025
--7.22,-13.87,-12.73,-9.31,74.936,54.188
--7.31808,-13.7808,-12.73536,-9.21888,74.967552,54.96
--7.54677,-14.11344,-13.13334,-9.801,77.212278,56.2914
--7.623,-14.256,-13.167,-9.999,77.9922,56.1825
--7.2618,-13.4995,-12.4754,-9.31,73.34418,53.2475
--7.41468,-13.7837,-12.73804,-9.22082,74.76469,53.6895
--7.12975,-13.08625,-12.0935,-9.11525,70.981625,52.478
--7.74279,-14.30946,-13.13334,-9.70299,76.986855,54.7965
--7.84,-14.406,-13.132,-9.898,76.9888,53.851
--7.84,-14.406,-13.132,-9.996,76.9006,54.145
--7.8408,-14.40747,-13.23135,-9.89901,76.888845,53.8164
--7.69986,-13.97382,-12.8331,-9.79118,74.489016,53.3512
--7.46496,-13.54752,-12.4416,-9.40032,72.124416,52.2528
--7.6342,-13.7788,-12.5685,-9.4962,72.86006,51.813
--7.79492,-14.06888,-12.92816,-9.88624,74.298896,53.0572
--8.134,-14.602,-13.328,-10.192,76.6066,53.75
--7.97049,-14.30847,-13.06008,-10.17918,74.970621,53.2026
--7.64845,-13.73035,-12.5324,-9.67575,71.941505,52.4091
--7.581,-13.44725,-12.274,-9.386,70.37695,50.882
--7.98336,-14.16096,-13.02048,-9.88416,74.102688,53.0145
--8.075,-14.25,-13.015,-9.88,74.0715,50.5875
--7.99765,-14.20759,-12.98442,-10.06763,73.277292,51.1675
--8.42886,-14.89752,-13.52538,-10.19304,76.320387,52.3215
--8.428,-14.7,-13.524,-10.388,76.2244,52.3712
--8.17344,-14.16096,-13.11552,-9.9792,73.827072,50.8128
--8.7,-15,-13.8,-10.6,77.68,52.85
--8.35461,-14.59656,-13.34817,-10.37124,74.500074,52.7175
--8.10144,-14.34048,-13.0368,-9.96384,72.251808,51.6622
--8.712,-15.147,-13.86,-10.791,76.7151,52.56
--8.36352,-14.35104,-13.21056,-9.88416,73.636992,52.3215
--8.2859,-13.965,-12.9409,-9.4962,72.05009,51.5774
--8.455,-14.155,-13.205,-9.975,73.5205,53.04
--8.91,-14.85,-13.761,-10.692,76.4676,52.74
--8.2935,-14.0068,-12.901,-9.9522,71.08451,49.8275
--8.736,-14.784,-13.44,-10.464,74.0544,50.5344
--9.1,-15.4,-14.1,-10.9,77.14,52.93
--8.55855,-14.2956,-13.167,-9.87525,72.465525,49.5425
--9.009,-15.048,-13.86,-10.197,76.2696,51.8166
--8.74,-14.25,-13.3,-9.785,73.1025,50.103
--8.83476,-14.4045,-13.34817,-9.98712,73.895085,50.7698
--8.303,-13.5375,-12.54475,-9.5665,69.447375,49.818
--8.4816,-13.68,-12.768,-9.6672,70.0872,49.6185
--8.4816,-13.7712,-12.768,-9.7584,70.0872,49.438
--8.93564,-14.54418,-13.3084,-10.26648,72.95855,50.715
--8.75328,-14.34048,-13.12992,-10.05696,71.478912,49.68
--9.12285,-14.78862,-13.54023,-10.27521,73.616598,51.8067
--9.0307,-14.63924,-13.40346,-9.9813,72.872996,51.499
--8.9376,-14.39424,-13.26528,-9.78432,72.027648,50.448
--9.21984,-14.69412,-13.54164,-10.27628,73.528224,50.7934
--8.7552,-13.9536,-12.8592,-9.9408,69.82272,49.2385
--8.664,-13.8985,-12.8155,-9.9275,69.00515,48.8775
--9.12285,-14.57775,-13.3551,-10.43955,71.91063,51.0246
--9.506,-15.19,-13.916,-10.486,74.9308,50.715
--8.93855,-14.28325,-13.0853,-10.04435,70.374955,50.8765
--9.8,-15.5,-14.2,-10.9,76.27,53.25
--9.41094,-14.88465,-13.73229,-10.46727,73.242081,52.0502
--9.70299,-15.19155,-14.01543,-10.58508,74.742426,53.2026
--9.40896,-14.82624,-13.59072,-10.64448,72.477504,51.7824
--8.93475,-14.16925,-12.996,-10.01775,68.833675,51.243
--9.405,-14.76585,-13.5432,-10.3455,71.72253,53.4897
--9.312,-14.52672,-13.40928,-10.2432,71.022624,52.4091
--9.408,-14.5824,-13.54752,-10.25472,71.745408,51.9648
--9.30816,-14.37696,-13.27104,-10.50624,70.290432,51.792
--9.30715,-14.65185,-13.36175,-10.59725,70.27359,51.148
--9.50208,-15.0528,-13.73568,-10.72512,71.754816,53.0474
--10.098,-15.642,-14.454,-11.088,75.4974,53.94
--9.69,-14.915,-13.775,-10.355,72.4565,53.74
--9.996,-15.288,-14.21,-10.78,74.8328,53.74
--9.888,-14.976,-13.92,-10.464,73.3152,53.74
--9.78912,-14.82624,-13.7808,-10.64448,72.582048,53.0145
--9.89212,-15.07828,-14.02184,-10.94856,73.336144,52.871
--10.088,-15.423,-14.162,-11.058,74.0789,52.0502
--9.88624,-15.2096,-13.97382,-10.64672,72.587816,52.7632
--9.87525,-14.95395,-13.82535,-10.62765,71.81658,53.1234
--9.9792,-15.01632,-13.97088,-10.54944,72.582048,53.0145
--10.1871,-15.23214,-14.16492,-10.76922,74.094174,52.479
--9.7776,-14.61984,-13.59552,-10.52256,71.106432,51.8368
--10.38906,-15.38757,-14.40747,-11.07513,74.938446,53.0145
--9.97248,-14.86464,-13.82976,-10.53696,71.848896,53.5472
--10.593,-15.741,-14.553,-11.187,75.5964,53.0145
--10.16928,-15.2064,-13.97088,-10.9296,72.582048,53.4105
--10.38114,-15.62022,-14.35896,-11.1573,74.084472,53.263
--10.379,-15.52,-14.356,-11.058,74.0692,52.9038
--10.26432,-15.2064,-14.06592,-10.73952,72.487008,53.8857
--10.1574,-15.048,-13.9194,-10.62765,71.731935,51.3285
--10.368,-15.36,-14.208,-10.656,73.2192,51.5904
--10.04435,-14.744,-13.73035,-10.78155,70.282805,51.5458
--10.1479,-14.9891,-13.8719,-10.9858,71.00737,50.2835
--10.791,-16.038,-14.751,-11.484,75.4083,53.14
--10.6722,-15.71724,-14.45598,-11.1573,73.900134,51.9255
--10.5633,-15.46083,-14.4045,-10.94742,73.050021,50.9735
--10.3455,-15.14205,-14.01345,-10.7217,71.543835,51.7077
--10.989,-15.939,-14.751,-11.187,75.3093,52.44
--11.1,-16.2,-15,-11.8,76.07,52.74
--10.54944,-15.49152,-14.35104,-10.9296,72.296928,52.5096
--10.545,-15.58,-14.345,-11.115,72.181,53.66
--10.752,-15.648,-14.496,-11.04,72.9408,51.7824
--10.64448,-15.49152,-14.256,-10.9296,72.211392,52.0704
--10.864,-15.617,-14.647,-11.058,73.5551,54.13
--10.63104,-15.24096,-14.20608,-11.00736,71.340864,51.9648
--10.62765,-15.4242,-14.20155,-11.286,71.45919,53.5887
--10.52256,-15.45792,-14.15424,-11.1744,70.743264,52.6128
--10.83456,-15.6816,-14.44608,-11.30976,72.201888,52.0704
--10.5051,-15.1126,-14.0068,-10.8737,70.006355,51.3285
--10.61568,-15.08544,-14.06112,-10.7088,70.743264,52.3218
--10.72512,-15.24096,-14.20608,-10.91328,71.481984,52.6652
--11.155,-15.617,-14.647,-11.058,73.7006,54.03
--11.04,-15.456,-14.496,-11.04,72.9312,53.84
--11.02464,-15.39648,-14.35104,-11.11968,72.201888,51.5904
--10.69056,-15.02208,-14.00832,-10.78272,70.106112,51.408
--11.6,-16.4,-15.2,-11.7,76.07,53.84
--11.6,-16.4,-15.2,-11.5,76.07,53.73
--11.349,-15.908,-14.744,-11.446,73.7879,54.03
--11.115,-15.58,-14.44,-11.115,72.276,51.3285
--10.78155,-15.02045,-14.0068,-10.59725,70.098505,51.243
--10.9858,-15.2684,-14.1512,-10.8927,70.83048,51.148
--10.8737,-15.1126,-14.0068,-10.8737,70.098505,51.148
--11.0979,-15.51825,-14.38965,-11.0979,71.543835,53.1234
--11.21,-15.675,-14.535,-11.21,72.2665,51.053
--11.305,-15.675,-14.535,-11.305,72.2665,53.65
--11.19552,-15.61728,-14.48832,-11.10144,71.660736,52.577
--11.662,-16.268,-15.092,-11.662,74.6466,53.65
--11.4072,-15.6849,-14.54418,-11.4072,72.407202,52.3712
--11.5236,-15.84495,-14.78862,-11.33154,73.146051,51.7301
--11.5248,-15.8466,-14.79016,-11.5248,73.163272,52.3712
--11.495,-15.865,-14.63,-11.59,72.3615,50.483
--11.1744,-15.55104,-14.34048,-11.1744,70.920192,51.3024
--11.38489,-15.71303,-14.58395,-11.38489,71.668353,51.5458
--11.0352,-15.2304,-14.136,-10.944,69.54912,51.12
--11.73942,-16.29936,-15.0381,-11.73942,73.997154,52.2634
--11.3582,-15.6408,-14.4305,-11.3582,70.99806,51.053
--11.36064,-15.73728,-14.52672,-11.26752,71.013312,51.6525
--11.47776,-15.89952,-14.67648,-11.38368,71.754816,52.3712
--11.2176,-15.4128,-14.2272,-10.944,69.56736,50.8128
--12.3,-17,-15.7,-12.2,76.36,52.74
--11.2176,-15.504,-14.3184,-10.944,69.64032,50.103
--11.33568,-15.6672,-14.46912,-11.15136,70.373376,50.9184
--11.78,-16.055,-14.915,-11.59,72.5515,50.2835
--11.5444,-15.827,-14.6167,-11.4513,71.18426,51.793
--11.78,-16.15,-14.915,-11.78,72.542,52.15
--12.00375,-16.42113,-15.17274,-11.71566,73.424538,51.0511
--11.75625,-16.08255,-14.8599,-11.6622,71.91063,49.818
--12.005,-16.3268,-15.17432,-11.90896,73.432184,51.2932
--11.64,-15.92352,-14.71296,-11.64,71.199552,49.9584
--12.00375,-16.3251,-15.17274,-11.90772,73.424538,50.9735
--12.10104,-16.3268,-15.17432,-11.90896,73.432184,50.7934
--11.73312,-15.92352,-14.71296,-11.73312,71.292672,50.2751
--11.46175,-15.43275,-14.34975,-11.46175,69.0954,49.058
--12.19708,-16.42284,-15.17432,-11.81292,73.51862,51.1854
--12.44727,-16.6617,-15.58359,-12.05523,75.036456,51.2325
--11.70305,-15.75765,-14.65185,-11.4266,70.55004,49.7135
--11.94943,-16.08939,-14.96031,-11.94943,72.035304,50.5855
--11.79648,-15.85152,-14.65344,-11.61216,70.557696,49.9584
--12.8,-17.2,-15.9,-12.4,76.56,52.15
--12.8,-17.2,-15.9,-12.5,76.66,52.85
--11.9168,-16.0132,-14.896,-11.6375,71.36115,52.3712
--12.29312,-16.61492,-15.3664,-12.10104,73.61466,51.499
--12.38787,-16.70922,-15.46083,-12.09978,73.616598,51.3117
--12.384,-16.704,-15.456,-12,73.5936,50.448
--11.7648,-15.8688,-14.6832,-11.5824,69.91392,49.343
--11.856,-15.8688,-14.6832,-11.4912,69.91392,49.6185
--12.87,-17.226,-15.939,-12.771,75.8934,52.55
--12.6126,-16.88148,-15.62022,-12.41856,74.375532,50.9992
--12.45024,-16.53696,-15.30144,-11.97504,72.857664,50.3424
--12.07296,-16.03584,-14.92992,-11.61216,70.7328,49.1904
--12.58124,-16.71096,-15.55848,-12.38916,73.7107,50.2152
--12.32055,-16.45875,-15.2361,-12.13245,72.183375,50.7276
--12.32579,-16.46575,-15.24258,-11.85534,72.214075,49.9938
--12.54792,-16.6355,-15.39972,-12.26274,72.968056,50.715
--12.2892,-16.2925,-15.0822,-12.0099,71.45425,50.1074
--12.80664,-17.07552,-15.81426,-12.51558,74.46285,50.1074
--12.672,-16.896,-15.648,-12.48,73.68,51.53
--12.51264,-16.55808,-15.33504,-12.13632,72.2064,50.2152
--12.901,-17.072,-15.811,-12.513,74.4475,52.63
--12.1296,-16.0512,-14.8656,-11.856,70.00512,49.1625
--12.901,-17.072,-15.811,-12.61,74.4475,50.83
--12.6027,-16.64685,-15.33015,-12.13245,72.277425,48.5735
--12.60806,-16.55984,-15.43076,-12.32579,72.223484,49.2081
--12.60672,-16.65216,-15.42912,-12.41856,72.30048,48.336
--12.6027,-16.64685,-15.4242,-12.2265,72.277425,50.8365
--12.8331,-16.82562,-15.58984,-12.73804,73.05361,49.5292
--12.70215,-16.74802,-15.52485,-12.41988,72.308165,49.5185
--12.44025,-16.4027,-15.1126,-12.07165,70.817275,47.9085
--12.312,-16.2336,-14.9568,-11.9472,70.0872,48.1175
--12.5712,-16.57536,-15.3648,-12.19872,71.56272,48.2478
--13.19472,-17.36658,-16.0083,-12.80664,74.55987,49.9257
--13.06008,-17.18937,-15.84495,-12.57993,73.904688,48.6455
--13.328,-17.542,-16.268,-13.23,75.411,49.343
--13.056,-17.184,-15.936,-12.768,73.872,48.9024
--12.4944,-16.3248,-15.1392,-12.0384,70.1784,48.336
--12.75744,-16.66848,-15.45792,-12.38496,71.65584,49.0238
--13.02322,-17.1108,-15.77996,-12.64298,73.14867,49.1372
--12.36425,-16.245,-14.9815,-12.18375,69.447375,47.633
--13.426,-17.64,-16.366,-13.132,75.411,49.0392
--12.9789,-16.929,-15.70635,-12.69675,72.371475,48.013
--12.8478,-16.8511,-15.5477,-12.4754,71.64045,47.8325
--12.8478,-16.758,-15.5477,-12.4754,71.64045,48.013
--13.11,-17.195,-15.865,-12.825,73.1025,47.3575
--13.205,-17.195,-15.96,-13.015,73.093,47.7375
--12.9409,-16.8511,-15.6408,-12.5685,71.72424,49.343
--13.48578,-17.56062,-16.29936,-13.0977,74.75391,49.8465
--13.761,-17.919,-16.632,-13.464,76.2795,50.14
--13.4456,-17.38324,-16.13472,-13.15748,73.99882,49.8232
--13.72,-17.836,-16.562,-13.23,75.509,49.4214
--12.768,-16.5984,-15.4128,-12.4032,70.2696,48.5184
--13.1712,-17.12256,-15.89952,-12.88896,72.48864,48.6668
--13.72,-17.836,-16.562,-13.23,75.509,49.04
--13.395,-17.385,-16.055,-13.015,73.188,46.7875
--13.54164,-17.47928,-16.23076,-13.06144,73.99882,48.559
--13.40064,-17.39232,-16.1568,-12.92544,73.22832,47.0784
--12.8592,-16.6896,-15.504,-12.5856,70.26048,46.968
--13.63768,-17.57532,-16.3268,-13.25352,73.99882,48.6668
--13.63626,-17.57349,-16.3251,-13.25214,73.991115,48.3545
--13.22304,-17.04096,-15.8304,-12.75744,71.74896,48.0635
--13.63626,-17.66952,-16.42113,-13.34817,73.981512,48.5496
--13.17745,-16.9556,-15.75765,-12.62455,71.08451,47.0725
--13.17745,-16.9556,-15.75765,-12.80885,71.001575,48.5388
--13.45344,-17.21664,-16.08768,-12.98304,72.48864,47.952
--13.73229,-17.57349,-16.42113,-13.25214,73.981512,49.3515
--13.73229,-17.66952,-16.42113,-13.34817,74.077542,48.8367
--13.82976,-17.67136,-16.42284,-13.25352,74.09486,47.9514
--13.2696,-16.9556,-15.8498,-12.80885,71.093725,46.588
--13.2696,-16.9556,-15.8498,-12.7167,71.08451,47.4621
--14.21,-18.032,-16.856,-13.622,75.5972,49.04
--14.065,-17.848,-16.684,-13.386,74.8258,47.1711
--13.775,-17.575,-16.34,-13.3,73.283,46.797
--14.21,-18.13,-16.856,-13.524,75.5972,47.9514
--14.21145,-18.22986,-16.95573,-13.81941,75.604914,48.2625
--14.16492,-18.04572,-16.78446,-13.5828,74.841228,47.9514
--14.162,-18.042,-16.781,-13.58,74.8258,48.93
--13.4539,-17.1399,-15.94195,-12.5324,71.093725,47.2875
--14.6,-18.5,-17.3,-13.9,77.14,48.45
--14.016,-17.76,-16.608,-13.248,74.0544,48.63
--14.406,-18.228,-16.954,-13.916,75.5972,47.5888
--13.82535,-17.58735,-16.3647,-13.44915,72.55017,48.1437
--13.97382,-17.77622,-16.54044,-13.49852,73.329284,47.2778
--13.54752,-17.14176,-16.03584,-12.81024,71.184384,46.4064
--14.112,-17.856,-16.608,-13.248,74.1504,48.45
--14.06592,-17.67744,-16.53696,-13.3056,73.408896,47.8665
--13.78176,-17.41344,-16.20288,-13.0368,71.925888,47.184
--14.06,-17.86,-16.53,-13.49,73.2925,46.132
--14.06592,-17.86752,-16.53696,-13.49568,73.408896,46.2336
--14.30847,-17.95761,-16.70922,-13.63626,74.173572,47.7576
--13.73184,-17.23392,-16.03584,-13.08672,71.184384,46.128
--14.16096,-17.77248,-16.53696,-13.3056,73.408896,47.8665
--14.01345,-17.6814,-16.45875,-13.26105,72.64422,45.6475
--14.304,-18.048,-16.8,-13.536,74.1408,45.9168
--14.7,-18.424,-17.15,-13.916,75.705,47.1968
--14.25,-17.955,-16.72,-13.49,73.378,48.05
--14.55,-18.236,-16.975,-13.677,74.9228,46.7928
--13.968,-17.50656,-16.296,-13.31616,71.916576,46.5018
--13.62775,-16.967,-15.884,-13.08625,69.7091,45.543
--14.345,-18.05,-16.72,-13.775,73.378,45.448
--15,-19,-17.6,-14.3,77.24,48.05
--14.20155,-17.8695,-16.5528,-13.3551,72.64422,47.2824
--14.20155,-17.77545,-16.5528,-13.3551,72.64422,45.3625
--14.798,-18.424,-17.248,-14.014,75.705,48.16
--14.30016,-17.68704,-16.55808,-13.45344,72.667392,46.795
--15.048,-18.711,-17.523,-14.256,76.4676,48.05
--13.8624,-17.328,-16.1424,-13.1328,70.44288,45.9264
--14.0068,-17.5085,-16.31055,-13.2696,71.17666,45.372
--14.1512,-17.5959,-16.4787,-13.3133,71.91044,45.3625
--14.39577,-17.78301,-16.65393,-13.45487,72.675116,46.0362
--14.688,-18.144,-16.992,-13.824,74.1504,45.84
--14.688,-18.336,-16.992,-13.824,74.1504,46.0224
--14.39424,-17.96928,-16.74624,-13.6416,72.667392,46.991
--14.994,-18.718,-17.444,-14.21,75.6952,47.84
--14.48832,-17.96928,-16.74624,-13.35936,72.667392,46.128
--14.0448,-17.328,-16.2336,-13.0416,70.44288,46.4064
--14.94108,-18.4338,-17.26956,-13.97088,74.938248,47.8665
--14.48832,-17.8752,-16.74624,-13.54752,72.667392,45.84
--15.246,-18.909,-17.622,-14.652,76.4577,47.24
--15.035,-18.624,-17.266,-14.356,74.9228,47.75
--14.7312,-18.24768,-16.91712,-13.87584,73.408896,45.84
--14.4336,-17.78592,-16.57536,-13.5024,71.9352,45.84
--15.035,-18.527,-17.266,-14.065,74.9228,46.84
--14.88,-18.24,-17.088,-14.016,74.1504,47.35
--14.67648,-17.8752,-16.84032,-13.82976,72.667392,46.1874
--14.82936,-18.25152,-17.01574,-14.06888,73.424344,46.1874
--15.6,-19.3,-17.9,-14.7,77.24,47.54
--14.82624,-18.24768,-17.01216,-13.87584,73.408896,45.168
--14.915,-18.24,-17.005,-13.775,73.378,47.24
--15.07671,-18.34173,-17.18937,-13.63626,74.077542,46.9854
--14.76585,-17.96355,-16.83495,-13.167,72.55017,46.6587
--15.38757,-18.6219,-17.54379,-14.01543,75.702924,46.7676
--15.23214,-18.53082,-17.36658,-14.26194,74.938248,46.2952
--14.86464,-17.96928,-16.84032,-13.92384,72.667392,45.168
--14.7098,-17.8752,-16.758,-13.6857,71.91044,44.6975
--15.326,-18.624,-17.363,-14.259,74.8258,47.13
--14.4096,-17.5104,-16.416,-13.3152,70.44288,45.163
--14.56128,-17.60256,-16.49664,-13.54752,71.092224,45.6384
--14.8029,-17.7821,-16.6649,-13.7788,71.82665,45.087
--14.80608,-17.87904,-16.7616,-13.68864,71.925888,45.5616
--14.95872,-18.25152,-16.9344,-14.112,72.573312,46.5892
--15.423,-18.818,-17.46,-14.259,74.9228,47.35
--14.34975,-17.41825,-16.245,-13.357,69.61885,44.878
--15.264,-18.528,-17.28,-14.208,74.0544,47.46
--14.592,-17.6016,-16.5072,-13.224,70.44288,46.128
--14.744,-17.78495,-16.587,-13.6382,71.17666,46.3175
--15.2,-18.335,-17.195,-14.25,73.378,44.422
--14.44,-17.59875,-16.33525,-13.44725,69.7091,44.5075
--15.048,-18.33975,-17.02305,-14.01345,72.64422,44.6975
--14.83615,-17.96925,-16.67915,-13.54605,71.17666,45.4385
--14.99232,-18.1584,-16.94784,-13.87488,71.925888,45.9295
--15.778,-19.012,-17.836,-14.504,75.6952,46.5892
--15.14688,-18.25152,-17.02848,-13.82976,72.667392,47.2752
--15.30144,-18.43776,-17.29728,-14.256,73.408896,47.2725
--14.6832,-17.8752,-16.6896,-13.7712,70.44288,44.9825
--15.39,-18.62,-17.29,-14.44,73.378,45.6475
--15.24096,-18.43968,-17.21664,-14.112,72.667392,45.9264
--15.39972,-18.5367,-17.39598,-14.259,73.424344,46.9812
--15.24258,-18.34755,-17.21847,-14.20759,72.675116,46.0362
--14.92992,-17.9712,-16.86528,-13.54752,71.184384,45.9168
--15.71724,-18.9189,-17.65764,-14.65002,74.938248,47.2725
--15.1753,-18.2476,-17.0373,-14.1512,71.91044,44.9825
--15.97563,-19.30797,-17.93583,-14.99553,75.604914,46.7676
--15.811,-19.109,-17.751,-14.647,74.9131,47.13
--16.137,-19.503,-18.216,-14.85,76.3686,47.0646
--15.1753,-18.2476,-17.1304,-14.0581,71.81734,46.8832
--16.4,-19.6,-18.4,-15.2,77.14,47.83
--15.91128,-19.01592,-17.85168,-14.74704,74.938248,47.5695
--15.908,-19.012,-17.848,-14.841,74.9228,46.5018
--15.75056,-19.01592,-17.67136,-14.69412,74.085256,46.5108
--15.42912,-18.62784,-17.4048,-14.30016,72.667392,46.8832
--16.072,-19.404,-18.13,-15.19,75.5972,48.24
--16.17,-19.404,-18.13,-14.7,75.5972,48.35
--16.005,-19.109,-17.945,-14.841,74.8355,47.75
--16.5,-19.7,-18.4,-15,77.14,47.75
--15.675,-18.715,-17.575,-14.345,73.283,47.75
--15.52485,-18.62982,-17.40665,-14.48986,72.675116,46.5018
--15.20475,-18.2457,-17.04775,-14.09895,71.17666,46.4048
--15.77996,-18.91694,-17.5861,-14.44912,73.424344,47.3845
--16.268,-19.404,-18.13,-15.092,75.5972,48.24
--15.2969,-18.33785,-17.1399,-14.1911,71.08451,45.543
--15.77996,-18.82188,-17.68116,-14.63924,73.329284,47.6672
--15.94098,-19.01394,-17.86158,-14.88465,74.087145,46.8995
--16.199,-19.303,-18.042,-14.744,74.8258,48.05
--15.39072,-18.33984,-17.14176,-14.10048,71.092224,46.3104
--16.366,-19.502,-18.228,-14.896,75.5972,48.05
--16.20234,-19.404,-18.14274,-14.94108,74.841228,47.9514
--15.70635,-18.81,-17.58735,-14.4837,72.559575,46.132
--15.39072,-18.432,-17.23392,-14.2848,71.092224,46.3104
--16.46568,-19.602,-18.32787,-15.28956,75.604914,47.6784
--15.64416,-18.624,-17.41344,-14.52672,71.832768,47.1711
--16.29936,-19.30698,-18.14274,-14.74704,74.85093,47.7576
--15.48288,-18.33984,-17.23392,-14.19264,71.092224,46.6176
--16.296,-19.303,-18.139,-15.035,74.8258,48.93
--16.632,-19.8,-18.513,-15.345,76.3686,48.24
--15.80544,-18.91008,-17.59296,-14.67648,72.58272,46.0224
--16.731,-19.8,-18.612,-15.345,76.3686,48.16
--16.562,-19.6,-18.424,-15.092,75.5972,48.16
--15.57335,-18.43,-17.23205,-14.1911,71.08451,46.8995
--15.7339,-18.62,-17.4097,-14.4305,71.81734,47.7652
--16.562,-19.502,-18.326,-15.092,75.5972,48.57
--16.83,-19.701,-18.513,-15.147,76.3785,48.93
--15.9953,-18.72391,-17.59483,-14.48986,72.581026,47.0062
--15.6655,-18.43,-17.23205,-14.1911,71.08451,47.6755
--16.1602,-19.012,-17.77622,-14.63924,73.329284,47.873
--16.1568,-19.008,-17.77248,-14.82624,73.313856,46.9728
--15.75765,-18.43,-17.3242,-14.1911,71.08451,46.588
--16.59042,-19.404,-18.14274,-15.0381,74.85093,48.1437
--16.08768,-18.816,-17.68704,-14.48832,72.58272,47.873
--15.75765,-18.43,-17.3242,-14.1911,71.08451,46.6925
--16.08255,-18.81,-17.6814,-14.38965,72.55017,46.132
--15.43275,-18.05,-16.967,-13.8985,69.61885,46.1985
--16.08768,-18.816,-17.68704,-14.5824,72.573312,47.383
--17.1,-20,-18.8,-15.6,77.14,48.56
--16.35032,-19.012,-17.87128,-14.63924,73.329284,47.1808
--15.6864,-18.24,-17.1456,-13.9536,70.35168,45.828
--16.512,-19.2,-18.048,-14.784,74.064,46.3104
--16.35032,-19.012,-17.87128,-14.54418,73.33879,47.775
--15.6864,-18.24,-17.1456,-14.136,70.35168,46.2336
--16.18348,-18.818,-17.68892,-14.58395,72.590435,46.7152
--17.3,-20.1,-18.8,-15.6,77.14,48.56
--16.95573,-19.70001,-18.52389,-15.28956,75.614715,47.8665
--15.61325,-18.14025,-16.967,-13.8985,69.627875,45.752
--16.78446,-19.50102,-18.23976,-15.0381,74.841228,47.6672
--16.781,-19.497,-18.236,-14.841,74.8355,47.6755
--16.954,-19.6,-18.424,-15.288,75.5972,47.5888
--16.70922,-19.30203,-18.05364,-14.88465,74.087145,46.6085
--16.37166,-18.91209,-17.68892,-14.48986,72.581026,46.6085
--16.36992,-18.91008,-17.78112,-14.77056,72.58272,46.6848
--17.226,-19.899,-18.711,-15.444,76.3686,47.5695
--16.53,-19.095,-17.955,-14.82,73.283,47.94
--16.70922,-19.30203,-18.14967,-14.88465,74.077542,46.6085
--16.3647,-18.90405,-17.77545,-14.6718,72.55017,45.543
--17.052,-19.698,-18.522,-15.288,75.5972,48.05
--16.37166,-18.91209,-17.78301,-14.58395,72.581026,46.6085
--17.325,-19.998,-18.711,-15.444,76.3785,47.75
--16.8,-19.392,-18.144,-14.784,74.064,46.128
--16.625,-19.19,-17.955,-14.82,73.283,45.7425
--16.12625,-18.52215,-17.41635,-14.1911,71.08451,46.3951
--16.9785,-19.50102,-18.33678,-15.13512,74.841228,46.9812
--17.248,-19.698,-18.522,-15.386,75.5972,47.2752
--16.55808,-18.91008,-17.78112,-14.77056,72.573312,46.9812
--17.248,-19.796,-18.522,-15.288,75.5972,47.6574
--17.07552,-19.59804,-18.33678,-15.32916,74.85093,47.4606
--16.55984,-19.00618,-17.78301,-14.77213,72.581026,46.5018
--17.6,-20.2,-18.9,-15.7,77.15,48.24
--16.72704,-19.19808,-17.96256,-14.63616,73.32336,45.744
--16.65393,-19.00618,-17.78301,-14.67804,72.581026,46.3175
--16.5528,-18.9981,-17.77545,-14.8599,72.559575,46.7676
--16.992,-19.392,-18.144,-15.168,74.064,45.744
--16.31055,-18.70645,-17.41635,-14.5597,71.08451,45.543
--16.815,-19.19,-17.955,-14.82,73.378,45.6475
--17.169,-19.594,-18.333,-15.035,74.8355,46.2205
--16.815,-19.19,-17.955,-14.915,73.283,45.543
--17.17254,-19.59804,-18.4338,-15.23214,74.841228,47.1735
--16.5718,-18.8993,-17.689,-14.5236,71.91044,46.8734
--17.088,-19.488,-18.24,-15.072,74.1504,46.512
--16.57536,-18.90336,-17.6928,-14.71296,71.832768,45.744
--16.4027,-18.70645,-17.5085,-14.46755,71.08451,45.163
--16.74624,-19.00416,-17.8752,-14.5824,72.667392,47.089
--17.09334,-19.39806,-18.2457,-15.07671,74.077542,47.6685
--17.09334,-19.49409,-18.2457,-15.17274,74.087145,47.0062
--16.66848,-18.81024,-17.6928,-14.61984,71.925888,45.84
--16.49664,-18.70848,-17.5104,-14.46912,71.092224,45.7344
--16.83495,-19.09215,-17.8695,-14.76585,72.55017,45.4385
--16.84211,-19.10027,-17.8771,-14.96031,72.581026,46.1138
--16.66848,-18.90336,-17.6928,-14.61984,71.832768,45.5616
--17.363,-19.788,-18.43,-15.326,74.8258,47.54
--16.84032,-19.09824,-17.96928,-14.77056,72.58272,46.0224
--16.7616,-18.90336,-17.6928,-14.61984,71.84208,48.24
--17.542,-19.894,-18.62,-15.484,75.607,48.46
--17.64,-19.894,-18.718,-15.484,75.607,47.45
--16.9362,-19.10027,-17.8771,-14.86622,72.581026,45.8228
--17.2854,-19.49409,-18.2457,-15.07671,74.087145,47.4621
--17.2854,-19.49409,-18.2457,-15.17274,73.991115,47.1711
--16.5888,-18.70848,-17.5104,-14.56128,71.10144,46.896
--16.587,-18.70645,-17.5085,-14.5597,71.093725,46.4075
--17.82,-20.097,-18.909,-15.642,76.3686,48.4407
--17.38143,-19.59012,-18.34173,-15.26877,74.087145,47.4621
--16.85472,-18.99648,-17.78592,-14.80608,71.84208,47.3942
--17.919,-20.196,-18.909,-15.642,76.3686,49.1634
--17.73981,-19.99404,-18.71991,-15.48558,75.516705,49.3515
--17.02848,-19.19232,-17.96928,-14.77056,72.573312,48.4128
--17.38324,-19.59216,-18.34364,-15.17432,73.989216,48.4512
--16.33525,-18.411,-17.23775,-14.34975,69.537625,46.873
--17.02848,-19.19232,-17.96928,-14.86464,72.48864,47.9616
--18.018,-20.196,-18.909,-15.642,76.2795,48.9456
--18.018,-20.196,-18.909,-15.642,76.2795,48.9456
--17.29728,-19.38816,-18.24768,-15.2064,73.218816,49.3515
--17.83782,-20.09205,-18.81792,-15.48558,75.516705,47.6784
--17.1171,-19.28025,-18.0576,-14.8599,72.465525,48.7674
--17.12256,-19.19232,-18.06336,-14.95872,72.48864,47.3732
--16.9442,-18.9924,-17.7821,-14.7098,71.73355,46.797
--18.018,-20.196,-19.008,-15.741,76.2795,48.45
--16.94784,-18.99648,-17.87904,-14.71296,71.74896,47.1032
--16.86345,-18.7986,-17.6928,-14.65185,70.99236,48.1702
--17.21664,-19.2864,-18.06336,-14.86464,72.48864,47.6736
--17.934,-20.188,-18.816,-15.778,75.509,50.14
--17.93583,-20.09205,-18.81792,-15.58359,75.516705,49.4604
--17.934,-20.09,-18.816,-15.582,75.509,49.25
--16.86345,-18.89075,-17.6928,-14.83615,71.001575,48.3545
--17.568,-19.68,-18.432,-15.264,73.968,47.7504
--17.75466,-19.8891,-18.62784,-15.5232,74.75391,49.2426
--17.39598,-19.4873,-18.25152,-15.11454,73.24373,48.0635
--17.568,-19.68,-18.432,-15.36,73.9584,47.6736
--18.03384,-19.99404,-18.81792,-15.77961,75.516705,49.2426
--17.934,-20.09,-18.816,-15.68,75.4992,49.44
--17.31072,-19.2864,-18.06336,-14.95872,72.479232,47.2896
--17.3052,-19.3743,-18.15165,-15.048,72.45612,46.588
--17.3052,-19.3743,-18.15165,-14.95395,72.371475,46.4835
--17.31072,-19.2864,-18.15744,-14.95872,72.479232,48.7452
--17.848,-19.982,-18.721,-15.423,74.6415,49.15
--17.31256,-19.38254,-18.15937,-15.24258,72.402255,46.9965
--18.315,-20.394,-19.107,-15.84,76.1805,48.5496
--17.04775,-18.9829,-17.78495,-14.744,70.91864,46.6925
--17.39925,-19.3743,-18.15165,-14.95395,72.465525,46.208
--18.315,-20.394,-19.107,-15.939,76.1805,48.4407
--16.872,-18.7872,-17.6016,-14.6832,70.1784,46.588
--17.945,-19.982,-18.721,-15.423,74.6415,49.33
--17.4048,-19.38048,-18.15744,-15.0528,72.39456,47.7652
--17.40665,-19.38254,-18.25346,-15.0544,72.496345,47.7725
--17.2272,-19.18272,-17.97216,-14.8992,71.65584,46.896
--17.856,-19.776,-18.624,-15.456,73.8624,48.34
--17.5824,-19.57824,-18.43776,-15.2064,73.13328,46.416
--18.414,-20.394,-19.206,-15.741,76.1805,48.1536
--17.86158,-19.78218,-18.62982,-15.46083,73.895085,48.8367
--17.50074,-19.38254,-18.25346,-15.14849,72.402255,46.8898
--17.67744,-19.67328,-18.43776,-15.2064,73.13328,47.7576
--18.228,-20.188,-19.012,-15.68,75.411,48.265
--17.49888,-19.47456,-18.25152,-15.0528,72.39456,47.1968
--17.856,-19.776,-18.624,-15.552,73.8624,48.56
--17.68116,-19.58236,-18.44164,-15.39972,73.139164,47.187
--17.95948,-19.88028,-18.63176,-15.46244,73.912384,47.4908
--17.4097,-19.2717,-18.0614,-14.896,71.64045,46.968
--17.23205,-19.07505,-17.8771,-15.02045,70.909425,47.2778
--17.95761,-19.87821,-18.62982,-15.55686,73.895085,47.2778
--17.59296,-19.47456,-18.25152,-15.14688,72.39456,46.8734
--18.139,-20.079,-18.818,-15.617,74.6415,48.16
--17.952,-19.872,-18.624,-15.36,73.872,46.6176
--17.23205,-19.07505,-17.8771,-14.83615,70.909425,47.2778
--17.95761,-19.78218,-18.62982,-15.46083,73.895085,46.7928
--17.59296,-19.47456,-18.25152,-15.14688,72.39456,45.9168
--17.58735,-19.46835,-18.2457,-15.14205,72.371475,48.0744
--17.3242,-19.07505,-17.8771,-14.9283,70.909425,47.1032
--18.612,-20.592,-19.206,-15.939,76.1805,48.6585
--18.42588,-20.38608,-19.01394,-15.77961,75.418695,47.5695
--17.87128,-19.77248,-18.5367,-15.39972,73.14867,47.2752
--17.3242,-19.1672,-17.96925,-14.83615,70.909425,46.6085
--16.967,-18.68175,-17.59875,-14.6205,69.447375,46.6925
--18.048,-19.968,-18.72,-15.552,73.8816,49.04
--17.86752,-19.76832,-18.5328,-15.49152,73.13328,46.9728
--17.86752,-19.76832,-18.5328,-15.30144,73.13328,45.9168
--17.86752,-19.76832,-18.5328,-15.49152,73.13328,48.1437
--18.048,-19.968,-18.72,-15.648,73.872,45.456
--18.14967,-19.97424,-18.72585,-15.55686,73.895085,47.5695
--17.96256,-19.76832,-18.5328,-15.39648,73.13328,47.1735
--17.955,-19.76,-18.525,-15.295,73.1025,47.24
--18.15156,-19.97632,-18.7278,-15.3664,73.90278,47.2752
--17.41635,-19.25935,-18.0614,-14.9283,70.909425,45.448
--17.78112,-19.56864,-18.3456,-15.24096,72.39456,44.8896
--18.14967,-19.97424,-18.82188,-15.65289,73.895085,45.8228
--17.96634,-19.86754,-18.63176,-15.39972,73.14867,45.6385
--17.78112,-19.66272,-18.43968,-15.24096,72.39456,46.0224
--18.33678,-20.27718,-19.01592,-15.91128,74.65689,46.8765
--18.33678,-20.27718,-19.01592,-15.62022,74.65689,46.0012
--18.81,-20.592,-19.404,-16.038,76.1805,48.34
--17.77545,-19.5624,-18.4338,-15.14205,72.371475,44.498
--18.62,-20.384,-19.208,-16.072,75.4208,47.65
--19,-20.8,-19.6,-16.5,76.95,47.54
--18.81,-20.691,-19.404,-16.236,76.1805,47.1636
--18.2457,-20.07027,-18.82188,-15.74892,73.895085,46.6587
--17.1475,-18.86225,-17.689,-14.71075,69.447375,45.9325
--18.0614,-19.86754,-18.63176,-15.39972,73.14867,45.8228
--17.8771,-19.57072,-18.44164,-15.52485,72.402255,46.0362
--18.81,-20.691,-19.404,-16.236,76.1805,47.0646
--18.71991,-20.48409,-19.20996,-16.07364,75.418695,46.9755
--17.60065,-19.25935,-18.0614,-15.20475,70.909425,45.7258
--18.15646,-19.86754,-18.63176,-15.58984,73.14867,45.7268
--18.34173,-20.07027,-18.82188,-15.74892,73.895085,47.0646
--17.7821,-19.4579,-18.2476,-15.2684,71.64045,44.9825
--17.7821,-19.4579,-18.2476,-15.2684,71.64045,45.6475
--18.336,-20.064,-18.816,-15.744,73.872,45.6384
--18.527,-20.273,-19.012,-15.908,74.6415,45.9295
--18.15646,-19.86754,-18.63176,-15.6849,73.14867,46.7152
--17.60256,-19.26144,-18.06336,-15.02208,70.91712,46.8
--18.15264,-19.86336,-18.62784,-15.49152,73.142784,46.2336
--17.6928,-19.25935,-18.0614,-15.1126,70.817275,45.923
--17.78592,-19.46208,-18.34464,-15.27168,71.65584,45.9168
--17.60065,-19.25935,-18.0614,-15.20475,70.909425,46.2205
--19.008,-20.691,-19.404,-16.434,76.1805,47.54
--18.816,-20.482,-19.306,-16.268,75.411,46.2952
--18.06336,-19.66272,-18.43968,-15.5232,72.39456,45.7344
--18.24,-19.855,-18.715,-15.485,73.1025,45.923
--18.43776,-20.07027,-18.91791,-15.74892,73.895085,48.0744
--17.69472,-19.3536,-18.15552,-15.11424,70.91712,46.128
--18.62784,-20.3742,-19.11294,-15.91128,74.65689,47.089
--17.6928,-19.3515,-18.15355,-15.20475,70.909425,45.087
--18.816,-20.58,-19.306,-16.268,75.411,46.2952
--18.624,-20.37,-19.109,-15.714,74.6415,47.83
--18.06336,-19.7568,-18.53376,-15.42912,72.39456,46.403
--18.624,-20.37,-19.109,-15.811,74.6415,47.54
--17.97216,-19.5552,-18.34464,-15.3648,71.65584,46.7055
--17.78495,-19.3515,-18.15355,-15.1126,70.91864,45.163
--18.15937,-19.7589,-18.53573,-15.43076,72.402255,46.2108
--19.107,-20.79,-19.503,-16.137,76.1805,47.3517
--17.6016,-19.152,-17.9664,-15.048,70.1784,45.6475
--18.53379,-20.1663,-18.91791,-15.84495,73.895085,46.9854
--18.91593,-20.5821,-19.40598,-16.17165,75.418695,47.1735
--18.91593,-20.5821,-19.30797,-16.17165,75.418695,47.1735
--17.78688,-19.3536,-18.24768,-15.29856,70.91712,45.168
--18.914,-20.678,-19.404,-16.268,75.411,45.9032
--17.97216,-19.64832,-18.43776,-15.27168,71.65584,45.5415
--18.15937,-19.85299,-18.62982,-15.43076,72.402255,45.7161
--18.818,-20.467,-19.206,-15.908,74.5445,47.94
--17.78688,-19.44576,-18.24768,-15.11424,70.91712,46.2336
--17.5085,-19.04275,-17.8695,-14.71075,69.357125,45.828
--17.5085,-19.04275,-17.8695,-14.801,69.447375,44.9825
--17.6928,-19.2432,-18.0576,-15.1392,70.0872,44.7735
--17.8771,-19.44365,-18.2457,-15.1126,70.817275,45.0468
--18.0614,-19.6441,-18.4338,-15.4546,71.54735,45.8248
--17.6928,-19.2432,-18.0576,-14.9568,70.09632,44.5824
--18.44164,-20.05766,-18.82188,-15.77996,73.05361,45.9295
--19.012,-20.678,-19.404,-16.17,75.313,45.7268
--18.818,-20.467,-19.206,-15.908,74.5445,44.9692
--18.06528,-19.64832,-18.43776,-15.27168,71.56272,46.3951
--18.43776,-20.05344,-18.81792,-15.6816,73.03824,46.1934
--18.34755,-19.85299,-18.62982,-15.52485,72.308165,46.9965
--19.4,-21.1,-19.8,-16.4,76.86,47.54
--18.7278,-20.26444,-19.01592,-15.94264,73.80674,45.913
--18.5328,-20.05344,-18.91296,-15.6816,73.047744,46.3023
--17.784,-19.2432,-18.0576,-15.1392,70.0872,44.2944
--19.11195,-20.68011,-19.40598,-16.26966,75.320685,46.3815
--18.1545,-19.6441,-18.4338,-15.4546,71.54735,46.011
--17.96925,-19.44365,-18.2457,-15.20475,70.909425,45.7258
--19.11,-20.678,-19.502,-16.366,75.313,47.64
--17.9712,-19.44576,-18.33984,-15.39072,70.82496,44.688
--18.1584,-19.64832,-18.53088,-15.45792,71.56272,44.016
--19.305,-20.988,-19.701,-16.533,76.0815,46.7676
--18.82384,-20.26444,-19.11196,-15.94264,73.90278,45.913
--18.5367,-20.05766,-18.91694,-15.77996,73.14867,44.5812
--18.9189,-20.47122,-19.30698,-16.0083,74.65689,45.227
--19.20996,-20.68011,-19.50399,-16.36767,75.418695,44.9856
--18.62,-20.045,-18.905,-15.58,73.1025,43.7285
--18.82384,-20.36048,-19.11196,-15.94264,73.90278,45.619
--18.06336,-19.53792,-18.33984,-15.2064,70.91712,45.168
--18.43968,-19.94496,-18.72192,-15.61728,72.39456,45.8248
--18.0614,-19.5358,-18.33785,-15.38905,70.909425,44.2225
--18.82188,-20.35836,-19.10997,-15.94098,73.895085,45.1535
--18.816,-20.352,-19.104,-16.032,73.872,46.65
--18.44164,-19.94708,-18.72391,-15.61894,72.402255,44.5812
--18.4338,-19.9386,-18.71595,-15.51825,72.371475,45.6786
--18.62,-20.14,-18.905,-15.675,73.1025,43.833
--18.82188,-20.35836,-19.10997,-15.94098,73.895085,45.0468
--18.0614,-19.5358,-18.33785,-15.20475,70.909425,43.377
--18.62784,-20.14848,-18.91296,-15.96672,73.142784,46.3716
--18.816,-20.352,-19.104,-16.032,73.7856,46.95
--18.52785,-19.9386,-18.71595,-15.70635,72.277425,44.878
--19.20996,-20.77812,-19.50399,-16.36767,75.320685,46.9755
--18.3407,-19.7372,-18.62,-15.3615,71.55666,44.498
--19.503,-20.988,-19.8,-16.434,76.0815,46.7676
--18.3407,-19.7372,-18.62,-15.5477,71.54735,46.403
--18.912,-20.352,-19.2,-15.936,73.7856,47.13
--19.503,-20.988,-19.8,-16.533,76.0815,46.3716
--18.53573,-20.04117,-18.818,-15.71303,72.298756,45.1535
--18.91988,-20.36048,-19.208,-15.94264,73.816344,46.011
--18.72682,-20.15272,-19.012,-15.77996,73.063116,47.089
--19.109,-20.564,-19.4,-16.296,74.5445,46.14
--18.34464,-19.83456,-18.624,-15.3648,71.56272,44.688
--19.306,-20.188,-18.13,-16.954,75.3228,48.05
--19.30797,-19.11195,-16.95573,-16.95573,75.320685,46.3716
--18.53376,-17.49888,-15.33504,-15.89952,72.30048,45.8248
--19.503,-17.721,-15.444,-16.632,76.0815,46.6587
--19.404,-17.052,-14.406,-15.778,75.313,46.0012
--19.008,-17.952,-14.88,-14.496,73.7856,46.36
--18.6219,-18.6219,-15.6123,-15.048,72.277425,44.9825
--19.20996,-19.404,-16.4934,-15.23214,74.55987,47.3517
--18.62784,-18.816,-16.18176,-14.48832,72.30048,45.9032
--18.81,-18.905,-16.53,-14.535,73.0075,47.53
--19.01592,-19.11196,-16.807,-14.50204,73.80674,46.2952
--19.8,-19.8,-17.6,-15.1,76.85,47.35
--19.206,-19.206,-17.169,-14.841,74.4572,45.7161
--19.602,-19.503,-17.622,-14.949,75.9924,47.76
--19.008,-18.912,-17.088,-14.688,73.776,47.65
--19.602,-19.602,-17.721,-15.246,76.0815,47.6685
--19.8,-20,-18.1,-15.6,76.76,48.16
--18.82188,-19.10706,-17.30092,-14.7343,72.95855,46.1874
--18.24768,-18.52416,-16.77312,-14.37696,70.7328,45.6288
--19.01394,-19.30203,-17.57349,-14.69259,73.703025,47.0646
--19.404,-19.698,-18.032,-15.288,75.215,45.619
--19.602,-19.899,-18.216,-15.345,75.9924,47.8566
--19.01394,-19.30203,-17.76555,-14.98068,73.703025,46.7676
--18.43776,-18.71712,-17.2272,-14.61984,71.478912,46.512
--18.82188,-19.10706,-17.5861,-15.01948,72.968056,46.0265
--18.2457,-18.6143,-17.1399,-14.5597,70.73434,44.9825
--19.008,-19.488,-17.952,-15.168,73.68,47.13
--18.81,-19.285,-17.765,-14.915,72.9125,48.56
--18.2457,-18.70645,-17.3242,-14.46755,70.73434,44.4745
--19.206,-19.691,-18.236,-15.229,74.4572,46.55
--19.01394,-19.49409,-18.05364,-15.17274,73.712628,45.9756
--18.82188,-19.29718,-17.87128,-15.01948,72.968056,46.1874
--19.20996,-19.69506,-18.33678,-15.13512,74.472552,45.3915
--19.8,-20.3,-18.9,-15.8,76.76,45.95
--18.6219,-19.1862,-17.77545,-15.048,72.183375,46.8765
--19.008,-19.584,-18.24,-15.264,73.68,46.76
--18.72192,-19.19232,-17.8752,-14.86464,72.2064,46.795
--19.404,-20.09,-18.718,-15.582,75.215,46.03
--18.0576,-18.696,-17.4192,-14.5008,69.996,44.422
--19.303,-19.885,-18.527,-15.229,74.4475,45.2505
--19.50399,-20.09205,-18.71991,-15.77961,75.232476,45.7875
--19.104,-19.68,-18.336,-15.36,73.68,47.35
--19.01394,-19.68615,-18.34173,-15.26877,73.703025,47.2725
--18.72192,-19.2864,-18.06336,-14.86464,72.121728,45.456
--18.43776,-19.0896,-17.87904,-14.80608,71.385792,46.0362
--19.30698,-19.8891,-18.62784,-15.5232,74.375532,46.109
--19.50399,-20.09205,-18.81792,-15.6816,75.134466,47.0646
--19.104,-19.776,-18.432,-15.264,73.5936,47.24
--18.91694,-19.58236,-18.25152,-15.2096,72.872996,45.6092
--19.10997,-19.78218,-18.53379,-15.26877,73.616598,46.7152
--19.30698,-19.98612,-18.72486,-15.5232,74.375532,45.9756
--18.53088,-19.18272,-17.97216,-14.99232,71.385792,46.3951
--19.30698,-19.98612,-18.72486,-15.42618,74.36583,46.4706
--18.1488,-18.7872,-17.6016,-14.592,69.91392,44.9825
--18.905,-19.57,-18.335,-15.295,72.827,45.543
--19.502,-20.286,-18.914,-15.778,75.117,46.0012
--18.1488,-18.8784,-17.6928,-14.7744,69.91392,45.163
--18.905,-19.665,-18.43,-15.295,72.827,44.3175
--18.91694,-19.77248,-18.44164,-15.2096,72.872996,46.1972
--18.905,-19.76,-18.43,-15.39,72.8175,45.752
--18.62982,-19.47663,-18.25346,-15.24258,72.129394,46.3951
--18.71595,-19.5624,-18.2457,-15.14205,72.09873,45.6475
--19.30698,-20.18016,-18.82188,-15.71724,74.36583,47.8566
--18.91694,-19.77248,-18.44164,-15.58984,72.777936,47.873
--19.303,-20.176,-18.915,-15.714,74.3602,46.0362
--18.53088,-19.36896,-18.1584,-15.17856,71.292672,45.7344
--18.91694,-19.77248,-18.5367,-15.39972,72.872996,45.6385
--18.72192,-19.56864,-18.3456,-15.33504,72.121728,45.6384
--18.905,-19.855,-18.525,-15.485,72.732,45.258
--18.905,-19.855,-18.525,-15.485,72.732,47.75
--19.502,-20.384,-19.208,-15.778,75.1268,47.05
--19.104,-20.064,-18.72,-15.648,73.4976,45.84
--18.1488,-19.0608,-17.8752,-14.8656,69.82272,45.258
--18.72192,-19.66272,-18.43968,-15.33504,72.027648,46.128
--18.91296,-19.86336,-18.62784,-15.49152,72.762624,47.5695
--19.10997,-19.97424,-18.82188,-15.46083,73.520568,47.6784
--19.502,-20.482,-19.208,-16.17,75.0288,45.8346
--18.5269,-19.4579,-18.2476,-15.1753,71.27736,46.6872
--19.30698,-20.27718,-19.01592,-16.10532,74.278512,46.1874
--18.53088,-19.5552,-18.25152,-15.27168,71.292672,45.552
--18.33984,-19.26144,-18.06336,-15.11424,70.557696,46.0224
--18.905,-19.95,-18.715,-15.485,72.732,48.34
--18.72192,-19.7568,-18.53376,-15.42912,72.01824,45.552
--18.905,-19.855,-18.715,-15.58,72.732,48.24
--19.50399,-20.5821,-19.30797,-15.97563,75.036456,48.8367
--19.104,-20.16,-18.912,-15.744,73.4976,46.66
--18.5269,-19.551,-18.3407,-15.2684,71.27736,46.303
--18.53088,-19.5552,-18.34464,-15.27168,71.292672,46.0362
--19.10997,-20.1663,-18.91791,-15.84495,73.520568,46.2205
--18.72192,-19.7568,-18.62784,-15.42912,72.027648,46.6848
--18.72192,-19.7568,-18.53376,-15.42912,72.01824,45.7344
--18.5269,-19.551,-18.3407,-15.1753,71.27736,46.0275
--18.91694,-19.9626,-18.82188,-15.6849,72.777936,45.7161
--18.91694,-19.9626,-18.72682,-15.49478,72.777936,46.9812
--19.104,-20.16,-19.008,-15.84,73.4976,47.83
--19.701,-20.889,-19.602,-16.335,75.7944,48.56
--19.303,-20.467,-19.206,-16.102,74.2632,48.34
--18.72192,-19.85088,-18.62784,-15.61728,71.933568,45.4328
--17.95975,-19.04275,-17.8695,-14.89125,69.00515,43.833
--18.53088,-19.64832,-18.43776,-15.3648,71.199552,45.4464
--19.6,-20.678,-19.404,-16.17,74.9308,45.9032
--19.9,-21.1,-19.8,-16.4,76.46,48.56
--18.905,-20.045,-18.81,-15.675,72.637,44.7735
--19.404,-20.47122,-19.20996,-16.10532,74.278512,46.109
--18.33785,-19.44365,-18.2457,-15.2969,70.55004,45.8228
--17.95975,-19.04275,-17.8695,-14.9815,69.086375,46.132
--19.10997,-20.26233,-19.01394,-15.94098,73.424538,46.1835
--18.91296,-20.05344,-18.81792,-15.87168,72.667584,46.5795
--19.012,-20.15272,-18.91694,-15.97008,72.682876,46.109
--18.816,-19.94496,-18.72192,-15.5232,71.933568,46.9812
--19.4,-20.564,-19.303,-16.005,74.1662,48.34
--18.62,-19.7372,-18.5269,-15.4546,71.19357,47.6574
--19.012,-20.15272,-18.91694,-15.97008,72.682876,46.403
--18.816,-19.94496,-18.72192,-15.61728,71.933568,44.688
--19.012,-20.15272,-18.91694,-15.87502,72.682876,44.9692
--18.81,-20.03265,-18.71595,-15.6123,72.00468,46.5795
--19.4,-20.661,-19.303,-16.102,74.2632,46.55
--19.4,-20.176,-17.945,-16.102,74.2632,46.55
--18.24,-17.9664,-15.7776,-16.1424,69.73152,43.453
--18.62,-17.4097,-15.2684,-16.0132,71.27736,44.042
--18.624,-16.85472,-14.52672,-16.20288,71.301984,44.7936
--18.62,-16.2925,-13.7788,-15.827,71.27736,43.7285
--19.4,-17.751,-14.744,-13.968,74.2632,45.74
--19.2,-18.912,-15.84,-15.168,73.4976,43.4496
--19.404,-19.404,-16.39638,-15.23214,74.278512,44.933
--19.2,-19.2,-16.416,-14.784,73.488,46.36
--18.43,-18.33785,-15.94195,-14.1911,70.55004,45.3572
--19.008,-18.91296,-16.53696,-14.54112,72.762624,43.9104
--19.8,-19.602,-17.424,-15.048,75.7944,45.66
--19.2,-19.008,-16.992,-14.592,73.5072,45.16
--18.62,-18.4338,-16.5718,-14.1512,71.27736,42.617
--19.4,-19.109,-17.266,-14.841,74.2632,45.66
--19.6,-19.404,-17.542,-14.994,75.0288,45.85
--18.624,-18.53088,-16.7616,-14.4336,71.292672,44.0768
--19.208,-19.208,-17.47928,-14.8862,73.528224,44.7468
--19.8,-19.998,-18.117,-15.543,75.7944,45.2826
--18.62,-18.8062,-17.0373,-14.6167,71.37046,43.0635
--18.624,-18.81024,-17.13408,-14.61984,71.385792,43.8336
--18.816,-18.91008,-17.31072,-14.5824,72.121728,43.1424
--19,-19.095,-17.575,-14.82,72.8175,44.56
--20,-20.1,-18.5,-15.5,76.65,44.86
--19,-19.19,-17.67,-14.725,72.8175,42.2275
--19,-19.19,-17.67,-14.63,72.8175,41.8475
--19.206,-19.49409,-17.95761,-14.69259,73.606995,43.1165
--18.816,-19.09824,-17.68704,-14.86464,72.121728,43.2768
--18.432,-18.80064,-17.32608,-14.56128,70.649856,42.7776
--19.6,-19.894,-18.424,-15.582,75.117,44.45
--19.008,-19.29312,-17.96256,-15.01632,72.84816,44.0055
--18.62,-18.8993,-17.5959,-14.8029,71.36115,43.6688
--19.208,-19.49612,-18.15156,-15.46244,73.61466,44.149
--18.24,-18.6048,-17.328,-14.592,69.9048,42.96
--19.2,-19.68,-18.24,-15.456,73.68,42.96
--19.208,-19.6882,-18.2476,-15.3664,73.7107,43.953
--18.24,-18.696,-17.4192,-14.6832,70.00512,42.332
--18.432,-18.98496,-17.60256,-14.92992,70.7328,42.8544
--19.6,-20.188,-18.816,-15.778,75.215,44.64
--20,-20.6,-19.2,-16.4,76.75,44.45
--19.404,-19.98612,-18.62784,-15.71724,74.46285,44.4114
--18.818,-19.47663,-18.15937,-15.43076,72.214075,43.5918
--19.012,-19.77248,-18.34658,-15.49478,72.95855,44.0412
--18.43,-19.1672,-17.78495,-15.02045,70.725125,42.693
--18.432,-19.07712,-17.78688,-14.83776,70.7328,42.672
--18.24,-18.9696,-17.6928,-14.8656,69.996,42.0185
--19.602,-20.38608,-19.01394,-16.17165,75.222675,43.7976
--19.8,-20.592,-19.206,-16.236,75.9825,44.56
--19,-19.855,-18.525,-15.58,72.9125,44.56
--19.012,-19.86754,-18.5367,-15.58984,72.95855,43.4075
--19.206,-20.07027,-18.72585,-15.84495,73.712628,43.4075
--19.8,-20.691,-19.404,-16.236,75.9825,44.1936
--18.816,-19.7568,-18.43968,-15.5232,72.215808,44.149
--19,-19.95,-18.62,-15.77,72.922,45.05
--19.012,-19.9626,-18.63176,-15.58984,72.95855,43.7472
--18.24,-19.152,-17.8752,-14.9568,69.996,43.1424
--19.206,-20.1663,-18.82188,-15.94098,73.703025,44.4906
--19.208,-20.1684,-18.91988,-16.13472,73.816344,43.855
--19.206,-20.26233,-18.91791,-15.94098,73.703025,43.6888
--19.008,-20.05344,-18.72288,-15.6816,72.9432,44.4114
--19.8,-20.889,-19.602,-16.434,75.9825,44.6985
--18.43,-19.44365,-18.2457,-15.38905,70.817275,43.3008
--19.008,-20.14848,-18.81792,-15.87168,73.03824,43.248
--18.62,-19.7372,-18.4338,-15.6408,71.45425,43.7472
--19.8,-20.988,-19.701,-16.731,75.9825,45.55
--18.816,-19.85088,-18.62784,-15.61728,72.2064,43.5264
--18.24,-18.4224,-16.3248,-15.504,70.0872,42.902
--18.432,-17.78688,-15.48288,-16.49664,70.7328,43.6224
--19.206,-17.57349,-15.17274,-17.57349,73.799055,46.5795
--18.816,-16.55808,-14.01792,-17.02848,72.30048,44.688
--19.404,-16.78446,-13.87386,-16.0083,74.55987,45.7875
--19.6,-18.62,-15.386,-15.288,75.2248,46.55
--18.24,-18.0576,-15.1392,-14.5008,70.0872,42.8925
--19.008,-19.008,-16.1568,-14.92128,73.03824,44.5995
--19.206,-19.206,-16.51716,-14.98068,73.799055,45.3915
--19.206,-19.10997,-16.70922,-14.88465,73.799055,43.7955
--19,-18.905,-16.625,-14.63,73.0075,46.25
--20,-19.8,-17.6,-15.5,76.85,45.44
--19.404,-19.20996,-17.17254,-14.84406,74.55987,44.639
--18.24,-18.1488,-16.2336,-14.0448,70.09632,43.5575
--19.8,-19.701,-17.721,-15.345,76.0914,45.45
--18.05,-18.05,-16.245,-14.079,69.357125,43.0635
--18.81,-18.90405,-17.02305,-14.8599,72.277425,43.0635
--19.008,-19.19808,-17.39232,-14.82624,73.03824,45.3915
--18.81,-18.9981,-17.3052,-14.8599,72.277425,42.997
--19.012,-19.20212,-17.49104,-15.01948,73.05361,44.4648
--18.816,-19.09824,-17.4048,-15.0528,72.30048,43.728
--19,-19.285,-17.67,-15.105,73.0075,43.833
--19.404,-19.79208,-18.04572,-15.42618,74.55987,44.4332
--18.81,-19.1862,-17.58735,-15.048,72.28683,45.0945
--19.404,-19.8891,-18.23976,-15.42618,74.55987,44.8866
--19.6,-19.992,-18.424,-15.582,75.313,45.5112
--19.4,-19.885,-18.333,-15.617,74.5445,45.0468
--18.624,-19.0896,-17.59968,-14.8992,71.56272,44.5812
--18.81,-19.1862,-17.77545,-14.95395,72.277425,43.453
--19.4,-19.885,-18.43,-15.617,74.5445,45.55
--18.624,-19.18272,-17.6928,-14.99232,71.56272,43.9104
--18.624,-19.18272,-17.78592,-14.99232,71.56272,43.728
--18.62,-19.0855,-17.7821,-14.9891,71.54735,43.453
--19.206,-19.78218,-18.43776,-15.3648,73.799055,44.9856
--19.404,-19.98612,-18.62784,-15.5232,74.55987,45.2172
--19.008,-19.57824,-18.24768,-15.11136,73.047744,45.7875
--20,-20.6,-19.2,-16.1,76.85,45.74
--19.2,-19.776,-18.528,-15.456,73.776,43.5168
--18.62,-19.1786,-17.9683,-15.0822,71.54735,42.8925
--19.404,-20.08314,-18.72486,-15.62022,74.55987,45.0945
--19.404,-20.08314,-18.72486,-15.81426,74.569572,45.2034
--19.404,-20.08314,-18.72486,-15.62022,74.55987,45.4905
--19.8,-20.493,-19.107,-16.038,76.0815,44.7975
--18.81,-19.46835,-18.2457,-15.33015,72.277425,45.2727
--19.602,-20.28807,-19.01394,-15.97563,75.320685,44.9856
--19.4,-20.176,-18.818,-15.811,74.5445,45.85
--18.81,-19.5624,-18.2457,-15.33015,72.277425,45.3915
--18.62,-19.3648,-18.0614,-15.0822,71.54735,43.168
--18.816,-19.56864,-18.3456,-15.24096,72.30048,43.5168
--19.206,-19.97424,-18.72585,-15.55686,73.799055,44.3025
--19.6,-20.482,-19.11,-15.876,75.411,44.5312
--19.206,-20.07027,-18.72585,-15.74892,73.799055,44.4114
--19.206,-19.97424,-18.72585,-15.84495,73.895085,45.3915
--18.81,-19.5624,-18.33975,-15.33015,72.371475,43.6525
--18.816,-19.56864,-18.3456,-15.24096,72.30048,45.1094
--18.624,-19.46208,-18.25152,-15.17856,71.65584,43.6224
--19.012,-19.86754,-18.63176,-15.58984,73.05361,44.0412
--19.208,-20.07236,-18.82384,-15.65452,73.90278,44.639
--19.8,-20.691,-19.404,-16.137,76.0914,45.16
--18.43,-19.25935,-18.0614,-15.1126,70.909425,43.9798
--19,-19.855,-18.62,-15.58,73.0075,44.75
--19.6,-20.482,-19.208,-16.072,75.411,45.05
--19.2,-20.16,-18.816,-15.84,73.776,45.25
--18.43,-19.3515,-18.15355,-15.20475,70.817275,43.6888
--19.404,-20.3742,-19.11294,-16.0083,74.55987,44.6985
--19.2,-20.16,-18.912,-15.84,73.872,44.75
--18.624,-19.5552,-18.34464,-15.3648,71.60928,42.9128
--19.8,-20.79,-19.503,-16.236,76.1904,44.05
--19.8,-20.79,-19.503,-16.335,76.1805,45.15
--18.816,-19.7568,-18.53376,-15.42912,72.385152,43.5168
--19,-19.95,-18.81,-15.675,73.0075,43.168
--18.24,-19.152,-18.0576,-15.048,70.0872,42.6075
--20,-21,-19.8,-16.6,76.85,44.94
--19.008,-20.05344,-18.81792,-15.6816,73.03824,43.6095
--18.43,-19.44365,-18.2457,-15.2969,70.909425,42.028
--19.602,-20.68011,-19.40598,-16.36767,75.418695,43.7085
--18.43,-19.44365,-18.2457,-15.20475,70.909425,42.1325
--19.8,-20.691,-19.008,-15.543,76.1805,43.7976
--19,-18.905,-16.72,-13.015,73.1025,44.56
--18.24,-17.2368,-15.048,-11.4912,70.1784,42.617
--19.404,-17.65764,-15.32916,-11.93346,74.65689,43.3552
--19.008,-16.632,-14.256,-10.73952,73.13328,42
--19.2,-16.32,-13.536,-9.984,73.8624,43.86
--18.818,-15.52485,-12.70215,-9.03264,72.402255,42.6218
--19.206,-15.46083,-12.38787,-8.06652,73.895085,43.4214
--18.816,-14.67648,-11.66592,-7.24416,72.39456,43.7472
--19.008,-14.256,-11.02464,-7.03296,73.13328,42.1056
--19.012,-13.7837,-10.4566,-6.36902,73.14867,43.0612
--19.206,-13.54023,-9.89109,-7.29828,73.895085,42.3308
--19.8,-13.167,-9.9,-7.92,76.1805,43.64
--19.8,-12.375,-9.504,-7.821,76.1805,43.35
--18.81,-11.19195,-8.55855,-7.3359,72.371475,41.4675
--19.008,-10.73952,-8.17344,-6.74784,73.123776,43.3125
--18.81,-10.1574,-7.3359,-6.11325,72.371475,41.667
--19.206,-9.603,-6.81813,-5.95386,73.895085,42.4375
--18.43,-8.2935,-5.62115,-5.3447,70.909425,42.6218
--19.012,-7.69986,-4.84806,-4.84806,73.14867,42.9128
--19.206,-7.10622,-3.93723,-4.32135,73.895085,42.9264
--18.43,-5.98975,-2.85665,-3.77815,70.909425,41.458
--18.624,-5.49408,-1.8624,-3.35232,71.65584,41.904
--18.33785,-4.69965,-0.7372,-2.67235,70.909425,42.1465
--18.905,-4.085,0.475,-2.375,73.1025,41.192
--18.72391,-3.57542,1.50544,-2.25816,72.411664,41.8555
--19.701,-2.871,2.97,-1.98,76.1805,43.94
--18.5269,-2.0482,3.6309,-1.4896,71.64045,43.169
--18.72391,-1.50544,4.79859,-1.03499,72.402255,42.9128
--18.72192,-1.12896,5.92704,-0.56448,72.385152,42.3936
--19.602,-0.396,7.326,-0.099,76.1805,43.3125
--18.4338,0.1862,7.8204,0.3724,71.64045,43.0612
--19.20996,0.87318,9.31392,0.29106,74.647188,43.7085
--19.20996,1.26126,10.28412,1.06722,74.647188,42.7086
--17.9664,2.0064,10.5792,1.368,70.1784,41.192
--19.11294,2.61954,12.41856,1.64934,74.65689,42.581
--17.77925,3.0685,12.4545,1.9855,69.447375,41.363
--19.404,4.059,14.652,2.673,76.1805,43.46
--18.82384,4.60992,15.17432,3.16932,73.90278,42.5908
--19.012,5.141,16.587,3.88,74.6415,42.0592
--18.06336,5.62176,16.40448,3.6864,70.91712,42.1056
--19.11195,6.76269,18.52389,4.60647,75.418695,43.1046
--18.3456,7.24416,18.816,4.98624,72.39456,41.232
--18.3456,7.80864,19.7568,5.83296,72.403968,43.2768
--18.62982,8.45064,20.93454,6.24195,73.895085,42.6218
--17.97216,8.93952,21.23136,6.42528,71.65584,42.0592
--19.107,10.098,23.463,7.227,76.1805,43.0155
--17.6016,10.1232,22.5264,7.1136,70.1784,41.6256
--18.432,11.328,24.672,8.256,73.872,41.712
--18.816,12.446,25.97,8.624,75.411,43.36
--17.96355,12.50865,25.86375,8.55855,72.36207,43.3125
--18.527,13.677,27.354,9.797,74.6415,43.25
--18.43,14.162,28.324,10.185,74.6415,43.15
--18.0576,14.63616,28.32192,10.16928,73.123776,42.9264
--18.144,15.36,29.376,10.944,73.872,43.06
--17.86752,15.77664,29.84256,11.11968,73.13328,42.4215
--18.236,16.587,30.943,12.125,74.5445,43.14
--17.77622,17.1108,31.3698,12.26274,73.14867,41.9832
--17.856,17.856,31.968,12.576,73.776,43.25
--16.69625,17.23775,30.5045,12.36425,69.447375,41.0875
--17.2235,18.4338,32.3988,13.034,71.54735,42.091
--16.9556,18.89075,32.71325,13.54605,70.909425,42.2338
--17.21664,19.66272,34.24512,14.30016,72.30048,42
--17.0373,20.2027,34.6332,14.5236,71.54735,42.5908
--17.836,21.658,37.142,15.68,75.313,43.46
--17.557,22.116,37.248,16.005,74.5542,43.36
--16.7616,21.79008,36.59616,16.10976,71.56272,41.5548
--16.6649,22.344,37.1469,16.2925,71.54735,41.8068
--16.4027,22.6689,37.4129,16.587,70.817275,40.698
--16.65216,23.70816,38.94912,17.49888,72.309888,41.8068
--17.072,24.929,40.643,18.333,74.5445,41.8458
--16.45875,25.0173,39.97125,18.52785,72.277425,40.983
--16.1994,25.137,40.1261,18.7131,71.64045,40.983
--16.78446,26.87454,42.49476,20.08314,74.55987,42.4928
--16.51716,27.46458,42.54129,20.07027,73.799055,41.5645
--16.416,28.032,43.104,20.832,73.776,43.06
--16.3251,28.52091,43.69365,21.1266,73.799055,42.9264
--15.25225,27.2555,41.515,20.3965,69.357125,40.812
--16.296,29.973,45.105,22.116,74.5542,43.15
--15.6123,29.24955,44.29755,22.10175,72.277425,40.983
--16.5,31.4,47.5,24.4,76.85,42.44
--15.744,30.432,46.272,23.52,73.776,41.0592
--15.1753,29.9782,45.2466,23.6474,71.54735,41.8068
--15.939,32.868,48.609,25.245,76.0815,42.85
--14.7456,30.68928,45.43488,23.86944,70.82496,41.6256
--15.17432,32.55756,48.02,25.64268,73.80674,42.7672
--14.3184,31.3728,45.9648,24.8064,70.0872,41.192
--14.3754,32.2525,46.8122,25.2491,70.82649,40.9925
--15.246,35.343,50.886,27.621,76.0815,42.5304
--14.54112,34.6896,49.23072,26.80128,73.03824,41.6256
--14.06112,33.70944,48.51552,26.72544,71.56272,41.6712
--13.824,33.54624,48.384,26.54208,70.82496,41.0592
--14.21244,35.14698,50.03163,28.809,73.799055,41.8458
--13.4064,33.1968,46.8768,29.0928,70.0872,40.907
--13.63725,34.0461,47.5893,30.56625,72.277425,41.0875
--13.97088,35.02422,48.41298,30.85236,74.55987,42.3324
--13.77684,35.02422,47.73384,30.65832,74.55987,42.6393
--13.3056,33.07392,44.6688,33.16896,73.03824,42.5304
--13.662,32.769,44.154,34.353,76.0815,42.5304
--12.62455,29.488,39.34805,31.23885,70.817275,40.4225
--12.312,28.3632,37.2096,29.4576,70.0872,40.6315
--12.77199,28.32885,37.4517,30.44151,73.799055,42.1562
--11.9472,25.8096,34.1088,28.3632,70.0872,41.7216
--12.26016,26.136,34.11936,28.32192,73.03824,41.136
--12.16768,24.90572,32.70064,27.85258,73.05361,41.4869
--11.85534,23.89886,31.14379,27.00383,72.308165,41.3802
--11.42784,22.76352,29.39904,25.344,70.82496,40.7424
--11.956,23.324,30.086,26.46,75.313,42.66
--11.5236,21.99087,28.42488,25.44795,73.799055,41.3705
--11.328,21.216,27.456,24.864,73.776,41.424
--11.368,20.972,26.95,24.696,75.313,43.06
--11.06028,20.08314,25.80732,23.86692,74.55987,42.3324
--10.976,19.6,25.186,23.52,75.313,42.95
--10.25472,18.25152,23.42592,22.01472,72.30048,41.601
--9.747,16.87675,21.75025,20.577,69.357125,40.4225
--9.5665,16.245,21.02825,20.12575,69.43835,40.8025
--9.5836,16.0341,20.8259,20.18085,70.817275,40.8025
--9.69612,16.06514,20.81814,20.24778,73.05361,42.385
--9.9,16.236,20.988,20.493,76.0815,42.66
--8.9376,14.3184,18.7872,18.5136,70.0872,40.7075
--9.40896,14.99553,19.602,19.40598,75.320685,42.6294
--8.7514,13.8719,18.0614,18.0614,71.54735,40.812
--8.645,13.775,17.86,17.86,73.0075,40.8025
--8.6436,13.34956,17.47928,17.57532,73.80674,41.993
--8.11008,12.34944,16.31232,16.5888,70.907904,40.9536
--8.256,12.48,16.512,16.704,73.8624,41.3376
--8.148,12.222,16.199,16.587,74.5445,41.6615
--7.79,11.59,15.485,15.865,73.1025,42.55
--7.5264,11.10144,14.77056,15.24096,72.30048,42.1008
--7.644,11.074,14.994,15.288,75.4012,42.385
--7.17024,10.15008,13.87488,14.34048,71.56272,40.9536
--7.05675,9.87945,13.54896,14.20759,72.402255,41.5645
--7.081,9.991,13.483,14.259,74.5445,42.44
--6.887,9.506,13.192,13.774,74.5445,42.96
--6.555,8.835,12.445,13.015,73.0075,40.983
--6.17405,8.20135,11.70305,12.44025,70.817275,41.7682
--6.27396,7.98504,11.59732,12.45286,73.05361,41.699
--6.14592,7.97049,11.42757,12.38787,73.799055,41.6615
--5.89248,7.50816,10.9296,11.88,73.03824,40.6656
--5.79744,7.31808,10.54944,11.49984,73.03824,40.6656
--5.54895,6.9597,10.06335,11.00385,72.277425,40.7075
--5.25255,6.35835,9.5836,10.41295,70.817275,40.527
--5.1604,6.0819,9.215,10.22865,70.817275,40.4225
--4.9761,5.7133,8.93855,9.86005,70.817275,40.318
--5.03712,5.60736,8.83872,9.88416,73.03824,40.56
--4.6512,5.1984,8.208,9.2112,70.0872,40.318
--4.753,5.141,8.342,9.506,74.5445,40.8855
--4.51584,4.60992,7.71456,8.9376,72.30048,41.5912
--4.37,4.275,7.505,8.835,73.0075,42.14
--4.104,3.9216,6.84,8.3904,70.09632,40.147
--4.22576,4.03368,6.91488,8.45152,73.816344,41.5128
--3.99,3.705,6.65,8.075,73.0075,42.25
--3.8171,3.2585,6.1446,7.3549,71.54735,40.1375
--3.744,2.976,5.952,7.488,73.776,40.6656
--3.57542,2.63452,5.55131,7.05675,72.308165,40.7788
--3.515,2.47,5.32,7.125,73.0075,42.77
--3.36,2.304,5.088,7.008,73.776,40.7424
--3.16608,2.14176,4.74912,6.61152,71.56272,40.9825
--3.0096,1.824,4.3776,5.928,70.0872,40.527
--2.94686,1.61602,4.2777,5.98878,73.05361,41.307
--2.7645,1.19795,3.8703,5.529,70.817275,40.0425
--2.78487,1.05633,3.74517,5.66577,73.799055,42.1245
--2.5536,0.8208,3.2832,5.1984,70.0872,40.7424
--2.5137,0.7448,3.1654,5.2136,71.54735,40.0425
--2.3959,0.64505,2.85665,4.88395,70.817275,40.8855
--2.4,0.288,2.784,4.704,73.776,42.04
--2.18592,0,2.47104,4.37184,73.03824,40.3584
--2.11266,-0.28809,2.20869,4.22532,73.799055,41.6196
--1.9551,-0.5586,1.9551,3.9102,71.54735,41.5128
--1.9206,-0.67221,1.72854,3.8412,73.799055,42.0156
--1.84338,-0.87318,1.55232,3.68676,74.55987,41.5912
--1.8,-1,1.4,3.6,76.85,42.44
--1.6929,-1.1286,1.1286,3.3858,72.277425,40.622
--1.649,-1.358,0.97,3.104,74.5445,42.76
--1.52096,-1.52096,0.66542,2.8518,73.05361,41.9146
--1.4406,-1.72872,0.4802,2.68912,73.80674,42.2772
--1.31712,-1.97568,0.18816,2.352,72.30048,41.993
--1.248,-2.304,0,2.4,73.776,40.9536
--1.12896,-2.352,-0.18816,2.16384,72.30048,40.7424
--1.11744,-2.42112,-0.4656,2.04864,71.56272,41.3802
--1.04544,-2.56608,-0.57024,1.9008,73.03824,41.232
--1.045,-2.755,-0.76,1.71,73.0075,40.318
--0.9702,-3.00762,-0.9702,1.35828,74.55987,42.1245
--0.891,-3.366,-1.188,1.287,76.0815,42.36
--0.77616,-3.49272,-1.35828,1.16424,74.569572,41.1208
--0.7372,-3.40955,-1.56655,0.9215,70.817275,41.5645
--0.6517,-3.5378,-1.6758,0.6517,71.54735,41.8068
--0.58212,-3.8808,-1.9404,0.67914,74.55987,42.9264
--0.56454,-3.95178,-2.06998,0.37636,72.308165,41.4772
--0.4802,-4.22576,-2.30496,0.19208,73.80674,40.8366
--0.4753,-4.37276,-2.47156,0,73.05361,41.0892
--0.4,-4.8,-2.8,-0.1,76.85,42.95
--0.3724,-4.655,-2.793,-0.1862,71.54735,40.7075
--0.3724,-4.655,-2.8861,-0.3724,71.55666,40.527
--0.2736,-4.7424,-3.0096,-0.456,70.0872,40.6656
--0.28512,-5.13216,-3.3264,-0.85536,73.03824,41.0592
--0.18624,-5.40096,-3.53856,-1.02432,71.56272,40.2816
--0.1824,-5.472,-3.5568,-1.0032,70.0872,40.7424
--0.198,-5.94,-3.96,-1.089,76.0815,42.44
--0.1843,-5.529,-3.8703,-0.9215,70.817275,40.6315
--0.09603,-5.7618,-4.12929,-1.15236,73.799055,41.9463
--0.098,-5.88,-4.312,-1.372,75.313,41.405
-0,-5.7133,-4.2389,-2.0273,70.82649,40.7012
-0,-6.37065,-4.70448,-2.45025,75.320685,41.8374
-0,-6.53004,-4.70547,-2.40075,73.799055,41.9364
-0,-6.22725,-4.60275,-2.166,69.357125,40.4225
-0,-7,-5.2,-2.4,76.85,41.85
-0.09504,-6.6528,-5.03712,-2.18592,73.03824,40.464
-0.09504,-6.74784,-5.13216,-2.28096,73.03824,41.9364
-0.09504,-6.74784,-5.32224,-2.28096,73.03824,40.2816
-0.09603,-7.01019,-5.47371,-2.59281,73.799055,41.0892
-0.09504,-7.128,-5.60736,-2.8512,73.03824,40.3584
-0.1,-7.8,-6,-3.3,76.85,41.85
-0.09801,-7.8408,-6.07662,-3.43035,75.320685,41.5404
-0.09506,-7.69986,-6.08384,-3.13698,73.05361,40.7788
-0.09801,-7.93881,-6.37065,-3.33234,75.320685,41.7285
-0.097,-7.857,-6.402,-3.395,74.5348,41.1668
-0.09312,-7.63584,-6.23904,-3.63168,71.553408,40.5945
-0.09312,-7.82208,-6.33216,-3.81792,71.56272,41.1668
-0.09504,-8.26848,-6.6528,-3.99168,72.9432,41.5305
-0.0912,-8.1168,-6.5664,-3.7392,70.07808,40.1375
-0.09408,-8.4672,-6.86784,-4.04544,72.2064,41.013
-0.096,-8.64,-7.104,-3.84,73.776,40.3584
-0.0912,-8.208,-6.84,-4.0128,69.996,40.0032
-0.09312,-8.47392,-7.07712,-4.09728,71.4696,40.176
-0.09409,-8.56219,-7.24493,-4.23405,72.308165,40.7012
-0.096,-8.832,-7.392,-4.416,73.776,40.56
-0.098,-9.212,-7.742,-4.9,75.313,42.44
-0,-8.93475,-7.524,-4.8906,72.183375,40.318
-0,-8.8464,-7.3872,-4.7424,69.996,39.862
-0,-9.50796,-7.95564,-5.04504,74.55987,41.1992
-0,-9.31095,-7.80615,-5.0787,72.277425,40.0425
-0,-9.702,-8.2467,-5.53014,74.55987,41.6196
--0.09506,-9.60106,-8.17516,-5.13324,73.05361,41.1992
--0.095,-9.69,-8.265,-5.415,72.998,42.36
--0.09408,-9.69024,-8.27904,-5.45664,72.30048,40.176
--0.096,-9.984,-8.544,-5.568,73.776,41.96
--0.1862,-9.7755,-8.379,-5.586,71.55666,41.1992
--0.198,-10.593,-9.009,-6.039,76.0815,42.44
--0.19206,-10.27521,-8.83476,-5.95386,73.799055,41.6196
--0.196,-10.584,-9.212,-6.37,75.3032,42.15
--0.294,-10.682,-9.31,-6.468,75.313,42.15
--0.288,-10.656,-9.216,-6.528,73.776,41.96
--0.27936,-10.42944,-9.03264,-6.23904,71.56272,41.1668
--0.38016,-10.73952,-9.31392,-6.46272,73.03824,42.0156
--0.4,-11.3,-9.9,-6.7,76.85,42.15
--0.4655,-10.6134,-9.31,-6.3308,71.46356,39.938
--0.48,-10.944,-9.696,-6.816,73.776,42.66
--0.456,-10.7616,-9.3024,-6.84,70.0872,40.147
--0.57036,-11.4072,-9.79118,-7.22456,73.05361,40.9825
--0.5529,-10.96585,-9.5836,-6.4505,70.725125,41.2735
--0.5529,-10.8737,-9.5836,-6.35835,70.725125,41.1668
--0.67221,-11.33154,-10.08315,-6.91416,73.799055,41.7285
--0.672,-11.232,-10.08,-7.104,73.68,42.55
--0.66542,-11.31214,-10.07636,-7.69986,72.95855,40.8855
--0.73728,-11.24352,-9.95328,-7.46496,70.742016,40.6752
--0.84645,-11.56815,-10.25145,-7.524,72.277425,40.0425
--0.81225,-11.10075,-9.83725,-6.94925,69.357125,40.147
--0.8208,-11.1264,-10.032,-7.0224,69.996,40.318
--0.9216,-11.24352,-10.1376,-7.00416,70.82496,40.9536
--0.912,-11.1264,-10.032,-7.1136,70.0872,40.752
--1.01376,-11.33568,-10.22976,-7.18848,70.815744,40.2816
--1.05644,-11.90896,-10.75648,-7.87528,73.7107,41.307
--1.083,-11.46175,-10.19825,-7.581,69.266875,40.318
--1.176,-12.642,-11.27,-8.232,75.313,42.26
--1.19795,-11.9795,-10.59725,-7.7406,70.73434,40.6315
--1.23552,-12.26016,-11.02464,-7.88832,73.03824,40.752
--1.33056,-12.26016,-11.02464,-7.98336,72.952704,40.848
--1.33084,-12.3578,-11.12202,-8.0801,72.968056,41.5912
--1.5,-13,-11.7,-8.6,76.75,42.55
--1.425,-12.445,-11.21,-8.075,72.9125,40.0425
--1.48992,-12.19872,-11.08128,-7.9152,71.56272,41.0592
--1.5048,-12.4146,-11.19195,-8.18235,72.183375,40.1375
--1.552,-12.901,-11.64,-8.439,74.5542,40.8855
--1.66617,-13.13334,-11.85921,-8.91891,75.222675,41.8275
--1.6245,-12.18375,-11.0105,-8.1225,69.357125,40.033
--1.71072,-12.92544,-11.68992,-8.74368,72.9432,41.6196
--1.78695,-12.88485,-11.56815,-8.8407,72.183375,40.1375
--1.862,-13.524,-12.25,-9.016,75.215,42.14
--1.881,-12.9789,-11.75625,-8.8407,72.183375,40.242
--1.93515,-12.80885,-11.51875,-8.56995,70.817275,41.1668
--1.97589,-13.07851,-11.85534,-8.93855,72.308165,41.1668
--2.0273,-12.99315,-11.70305,-9.0307,70.725125,40.318
--2.09088,-13.49568,-12.16512,-9.31392,72.952704,42.0156
--2.11968,-13.27104,-11.88864,-9.12384,70.7328,40.7424
--2.2572,-13.5432,-12.2265,-9.31095,72.277425,42.1245
--2.1888,-13.1328,-11.9472,-8.8464,69.996,40.6656
--2.28,-13.0416,-11.9472,-8.9376,70.0872,40.7075
--2.35225,-13.54896,-12.32579,-9.409,72.308165,41.1668
--2.47,-13.965,-12.635,-9.975,73.017,42.25
--2.548,-14.602,-13.132,-10.192,75.313,42.66
--2.48805,-13.73035,-12.44025,-9.5836,70.725125,41.4772
--2.68884,-14.21244,-12.96405,-9.79506,73.799055,41.5645
--2.6334,-13.9194,-12.7908,-9.68715,72.183375,41.9364
--2.75616,-13.97088,-12.92544,-9.78912,72.9432,41.0592
--2.8224,-13.92384,-12.79488,-9.59616,72.2064,40.6656
--2.9106,-14.35896,-13.19472,-10.09008,74.46285,41.9832
--2.97693,-14.21244,-13.15611,-9.89109,73.703025,42.0156
--2.94624,-14.256,-13.11552,-10.16928,72.9432,40.6656
--2.97984,-14.06112,-12.85056,-9.96384,71.572032,40.752
--3.201,-14.841,-13.483,-10.573,74.4475,42.55
--3.234,-14.994,-13.72,-10.682,75.2248,41.8068
--3.23136,-14.54112,-13.3056,-10.35936,72.952704,40.464
--3.332,-14.994,-13.818,-10.584,75.215,41.5912
--3.5,-15.3,-14.1,-10.9,76.75,42.44
--3.2832,-14.136,-12.9504,-10.1232,69.996,40.7424
--3.42,-14.82,-13.585,-10.83,72.9125,40.527
--3.3744,-14.2272,-13.1328,-10.3968,69.996,40.4225
--3.4295,-14.2595,-13.08625,-10.37875,69.2759,40.6315
--3.64914,-15.17274,-13.92435,-11.04345,73.703025,41.0892
--3.74517,-15.17274,-14.02038,-10.94742,73.703025,42.1245
--4,-15.8,-14.6,-11.4,76.75,42.55
--3.88,-15.326,-14.162,-11.058,74.4572,42.55
--3.85769,-14.96031,-13.83123,-11.10262,72.214075,40.8758
--3.99168,-15.39648,-14.06592,-11.21472,72.9432,41.6196
--4.11642,-15.97563,-14.60349,-11.66319,75.222675,41.8275
--4.257,-16.137,-14.751,-11.484,75.9825,42.14
--4.0128,-14.7744,-13.5888,-10.6704,70.00512,40.6752
--4.0546,-14.83615,-13.8225,-10.78155,70.725125,40.7788
--4.3659,-15.62022,-14.553,-11.44836,74.46285,41.6196
--4.508,-15.974,-14.798,-11.858,75.215,42.25
--4.508,-16.17,-14.896,-12.25,75.215,41.013
--4.46688,-15.77664,-14.54112,-11.68992,72.952704,40.6656
--4.65696,-16.0083,-14.84406,-11.83644,74.46285,41.1992
--4.704,-16.17,-14.994,-11.76,75.215,41.1992
--4.60845,-15.4242,-14.38965,-11.0979,72.19278,40.1375
--4.51535,-15.1126,-14.09895,-10.96585,70.73434,39.938
--4.5125,-14.801,-13.8985,-10.73975,69.266875,40.7075
--4.94802,-15.91128,-14.94108,-11.73942,74.46285,41.7285
--5.044,-16.005,-14.938,-12.028,74.4572,40.8855
--5.148,-16.632,-15.444,-12.474,75.9924,42.55
--4.8336,-15.4128,-14.2272,-11.3088,69.996,40.4544
--4.78325,-15.25225,-14.16925,-11.28125,69.2759,40.242
--4.9248,-15.4128,-14.3184,-11.4,70.00512,40.7424
--5.17275,-15.89445,-14.76585,-11.56815,72.183375,40.4225
--5.2283,-15.87502,-14.92442,-11.50226,72.968056,41.3802
--5.26848,-15.80544,-14.77056,-11.57184,72.2064,41.5912
--5.1984,-15.3216,-14.3184,-11.2176,69.996,40.7424
--5.51,-16.055,-15.01,-11.97,72.9125,40.7075
--5.3998,-15.827,-14.7098,-11.8237,71.45425,41.5912
--5.72418,-16.59042,-15.42618,-12.41856,74.46285,41.1992
--5.60736,-16.25184,-15.11136,-12.07008,72.9432,40.3584
--5.472,-15.6864,-14.592,-11.7648,69.996,39.8525
--6.039,-17.028,-15.84,-12.771,75.9924,42.36
--5.85844,-16.61492,-15.46244,-12.38916,73.7107,41.699
--6.014,-16.781,-15.617,-12.804,74.3505,42.03
--6.174,-17.052,-15.778,-12.74,75.215,41.1992
--6.237,-17.226,-16.038,-12.87,75.9825,42.76
--5.8976,-16.12625,-14.9283,-12.07165,70.64219,40.318
--5.98975,-16.12625,-15.02045,-12.1638,70.71591,40.242
--6.0515,-16.2925,-15.1753,-12.3823,71.45425,41.1992
--6.0819,-16.2184,-15.1126,-12.25595,70.725125,41.5645
--6.633,-17.424,-16.236,-13.266,75.8934,42.37
--6.633,-17.523,-16.335,-13.068,75.8835,42.36
--6.46,-16.91,-15.675,-12.73,72.8175,40.4225
--6.55914,-16.92068,-15.6849,-12.8331,72.872996,41.8068
--6.55914,-16.92068,-15.77996,-12.8331,72.95855,41.699
--6.5835,-16.83495,-15.6123,-12.69675,72.09873,40.527
--6.54336,-16.49664,-15.39072,-12.62592,70.64064,40.848
--6.67968,-16.84032,-15.71136,-12.88896,72.121728,41.0496
--6.6348,-16.587,-15.4812,-12.62455,70.64219,41.6615
--6.5664,-16.416,-15.3216,-12.4032,69.91392,41.6256
--6.86784,-17.02848,-15.89952,-12.79488,72.11232,41.3376
--7.10696,-17.38324,-16.23076,-12.9654,73.624264,42.7672
--7.17948,-17.65764,-16.39638,-13.48578,74.375532,42.5304
--7.125,-17.29,-16.15,-13.395,72.827,40.7075
--7.15084,-17.21847,-15.9953,-13.1726,72.129394,41.3705
--7.372,-17.751,-16.49,-13.483,74.3602,42.55
--7.0224,-16.6896,-15.5952,-12.8592,69.9048,41.136
--7.8,-18.3,-17.1,-14.1,76.66,42.44
--7.1136,-16.6896,-15.6864,-12.9504,69.92304,40.6315
--7.43232,-17.4048,-16.18176,-13.54752,72.121728,41.4144
--7.50974,-17.68116,-16.44538,-13.59358,72.86349,41.7682
--7.3728,-17.23392,-16.03584,-13.27104,70.649856,41.4144
--7.69986,-17.77622,-16.54044,-13.68864,72.872996,42.1562
--7.61805,-17.4933,-16.3647,-13.3551,72.09873,41.5625
--7.4005,-16.7865,-15.7035,-13.08625,69.18565,41.287
--8.217,-18.414,-17.325,-14.355,75.8934,43.1046
--7.885,-17.86,-16.625,-14.06,72.827,41.4675
--7.7406,-17.5085,-16.2184,-13.54605,70.651405,41.192
--8.16255,-18.2457,-16.99731,-14.21244,73.606995,42.1562
--8.0784,-17.96256,-16.82208,-13.87584,72.84816,42.9264
--8.428,-18.522,-17.346,-14.21,75.1268,42.385
--8.10144,-17.59968,-16.48224,-13.5024,71.385792,41.6615
--7.85175,-17.05725,-15.97425,-13.44725,69.176625,41.192
--8.53776,-18.4338,-17.26956,-14.35896,74.375532,42.1988
--8.20135,-17.60065,-16.49485,-13.8225,70.64219,41.5645
--8.45856,-18.24768,-17.01216,-14.256,72.762624,41.232
--8.28768,-17.87904,-16.7616,-13.78176,71.385792,41.4869
--8.4681,-18.06528,-16.9362,-13.92532,72.129394,42.0592
--8.736,-18.432,-17.28,-14.4,73.5936,44.05
--8.832,-18.336,-17.28,-14.208,73.5936,43.25
--8.6526,-18.0576,-16.929,-14.01345,72.00468,41.363
--8.84058,-18.34658,-17.20586,-14.35406,72.872996,41.993
--8.835,-18.43,-17.29,-14.25,72.827,41.4675
--9.024,-18.72,-17.472,-14.784,73.4976,43.46
--9.12285,-18.72585,-17.47746,-14.50053,73.626201,42.8175
--8.8445,-18.0614,-16.9442,-13.965,71.37046,40.907
--9.0288,-18.2457,-17.21115,-14.2956,72.00468,41.5625
--8.8464,-17.96925,-16.86345,-13.91465,70.55004,42.1562
--9.7,-19.5,-18.3,-15.4,76.56,43.36
--8.9376,-17.8752,-16.7808,-13.9536,69.82272,41.424
--9.50796,-19.01592,-17.85168,-15.0381,74.278512,42.5908
--9.40896,-18.72288,-17.5824,-14.63616,72.857664,43.4214
--9.50697,-18.91791,-17.76555,-14.78862,73.520568,44.9856
--9.603,-18.91791,-17.76555,-14.78862,73.616598,43.1262
--9.60106,-18.72682,-17.5861,-14.54418,72.777936,43.0612
--9.59904,-18.72288,-17.67744,-14.63616,72.75312,41.52
--9.49824,-18.43776,-17.32032,-14.52672,71.292672,42.0592
--9.5931,-18.71595,-17.4933,-14.57775,72.00468,41.192
--9.49248,-18.33984,-17.23392,-14.37696,70.557696,41.3376
--9.78432,-18.72192,-17.59296,-14.5824,72.027648,41.3376
--9.58464,-18.33984,-17.23392,-14.2848,70.557696,42.1056
--10.29,-19.6,-18.424,-15.19,75.0288,42.777
--10.494,-19.8,-18.612,-15.444,75.8043,43.15
--10.17918,-19.206,-18.05364,-14.98068,73.520568,41.6615
--10.07424,-19.008,-17.86752,-14.92128,72.762624,41.136
--10.27521,-19.206,-18.14967,-15.26877,73.520568,42.6218
--10.584,-19.698,-18.522,-15.386,75.0288,43.0612
--10.26648,-19.10706,-17.96634,-15.01948,72.777936,42.7285
--10.57518,-19.59804,-18.33678,-15.32916,74.278512,43.2768
--10.9,-20.1,-19,-15.8,76.57,43.94
--10.032,-18.4224,-17.328,-14.4096,69.82272,41.743
--10.66044,-19.30404,-18.2476,-15.27036,73.537828,42.9828
--10.656,-19.392,-18.24,-15.264,73.4976,43.94
--10.44288,-19.09824,-17.96928,-15.14688,72.027648,43.7472
--10.976,-19.992,-18.718,-15.582,75.0288,43.0612
--10.41408,-18.80064,-17.69472,-14.83776,70.557696,42.576
--10.5203,-18.9924,-17.8752,-14.7098,71.27736,42.693
--11.172,-19.894,-18.816,-15.68,75.0288,44.56
--10.83,-19.38,-18.24,-15.2,72.732,41.8475
--10.5984,-18.80064,-17.69472,-14.65344,70.557696,41.904
--11.136,-19.584,-18.432,-15.36,73.5072,43.86
--10.5792,-18.6048,-17.6016,-14.592,69.82272,42.1824
--11.583,-20.196,-19.107,-15.939,75.7944,45.0945
--11.23551,-19.59012,-18.53379,-15.55686,73.530171,44.1144
--11.446,-19.885,-18.721,-15.52,74.2632,42.8352
--11.44836,-19.79208,-18.72486,-15.5232,74.278512,44.7975
--11.781,-20.295,-19.206,-15.84,75.7944,44.3025
--11.172,-19.0855,-17.9683,-15.0822,71.27736,42.7975
--11.4,-19.475,-18.43,-15.295,72.732,43.0635
--11.2651,-19.0855,-18.0614,-14.9891,71.27736,43.9628
--11.15136,-18.98496,-17.87904,-14.83776,70.465536,43.0656
--11.4741,-19.3743,-18.2457,-15.33015,71.91063,44.4906
--11.59,-19.665,-18.525,-15.485,72.637,42.2275
--11.45376,-19.18272,-18.1584,-15.08544,71.199552,43.5168
--12.05523,-20.19006,-19.11195,-15.77961,74.948247,44.1936
--11.904,-19.872,-18.72,-15.456,73.4016,42.96
--12.028,-19.982,-18.915,-15.617,74.1662,43.94
--12.5,-20.7,-19.5,-16.3,76.46,44.16
--12.00375,-19.87821,-18.72585,-15.74892,73.424538,44.0055
--11.7306,-19.2717,-18.2476,-15.3615,71.18426,43.4532
--12.096,-19.872,-18.816,-15.456,73.4016,43.94
--12.07008,-19.67328,-18.62784,-15.49152,72.667584,42.1056
--11.82624,-19.27584,-18.25152,-15.17856,71.199552,42.5442
--11.9168,-19.3648,-18.2476,-15.3615,71.18426,42.123
--12.16512,-19.76832,-18.62784,-15.58656,72.667584,42.5664
--12.384,-19.968,-18.816,-15.648,73.4112,42.5664
--12.3552,-19.86336,-18.72288,-15.6816,72.677088,44.1936
--12.6126,-20.27718,-19.11294,-15.91128,74.191194,43.7472
--12.35,-19.855,-18.715,-15.485,72.637,44.34
--12.32055,-19.65645,-18.52785,-15.51825,71.91063,44.0154
--11.9472,-19.0608,-17.9664,-14.9568,69.74064,43.3536
--12.29184,-19.46208,-18.43776,-15.3648,71.199552,42.3936
--12.51264,-19.66272,-18.62784,-15.5232,71.933568,43.0612
--12.51397,-19.66481,-18.62982,-15.43076,71.950623,43.5142
--12.3823,-19.551,-18.4338,-15.4546,71.18426,43.463
--12.47808,-19.46208,-18.43776,-15.27168,71.208864,42.96
--12.73804,-19.67742,-17.68116,-15.58984,72.682876,43.7472
--12.8331,-18.82188,-16.44538,-16.6355,72.682876,43.169
--12.44025,-17.3242,-15.1126,-16.0341,70.467105,43.3008
--13.32936,-17.54379,-15.09354,-17.15175,74.938446,44.1936
--12.5324,-16.0341,-13.4539,-16.67915,70.45789,43.0098
--12.62455,-16.587,-13.91465,-13.2696,70.45789,42.5125
--12.62455,-17.78495,-15.1126,-14.65185,70.467105,43.168
--13.11,-18.62,-15.96,-14.915,72.637,45.74
--13.25352,-18.91988,-16.42284,-14.79016,73.441788,44.149
--12.80885,-18.15355,-15.94195,-14.0068,70.374955,43.9701
--13.21334,-18.63176,-16.54044,-14.35406,72.692382,44.5312
--12.9409,-18.2476,-16.2925,-14.1512,71.18426,43.2768
--13.86,-19.404,-17.424,-15.345,75.6954,43.4214
--13.3,-18.62,-16.815,-14.44,72.637,44.45
--13.40346,-18.63176,-16.92068,-14.54418,72.682876,43.7955
--12.99456,-18.06336,-16.49664,-14.19264,70.465536,42.288
--13.22304,-18.34464,-16.7616,-14.52672,71.199552,43.344
--13.774,-19.206,-17.654,-15.326,74.1759,45.45
--13.77684,-19.404,-17.75466,-15.32916,74.191194,43.6095
--13.45487,-18.818,-17.31256,-14.77213,71.941214,42.1562
--13.73229,-19.206,-17.66952,-15.17274,73.328508,43.1046
--13.4064,-18.62,-17.2235,-14.7098,71.18426,42.4928
--13.68,-19,-17.67,-15.01,72.637,43.94
--13.5432,-18.90405,-17.4933,-14.8599,71.91063,42.123
--13.92435,-19.30203,-17.95761,-15.26877,73.424538,43.6888
--13.224,-18.3312,-17.1456,-14.4096,69.73152,41.743
--13.4539,-18.52215,-17.3242,-14.65185,70.374955,42.2338
--13.5926,-18.8062,-17.5028,-14.7098,71.09116,41.192
--14.162,-19.594,-18.333,-15.423,74.0692,43.54
--14.553,-19.998,-18.711,-15.642,75.7053,42.7086
--14.112,-19.488,-18.144,-15.36,73.3152,42.1824
--14.21244,-19.59012,-18.2457,-15.55686,73.328508,42.4375
--14.208,-19.584,-18.336,-15.456,73.3152,41.6256
--14.35896,-19.8891,-18.53082,-15.71724,74.094174,42.9264
--14.60349,-20.09205,-18.81792,-15.97563,74.850237,42.9264
--14.155,-19.475,-18.24,-15.39,72.542,41.667
--14.16096,-19.4832,-18.24768,-15.2064,72.582048,42.1824
--14.25,-19.475,-18.24,-15.295,72.5515,43.54
--14.4045,-19.68615,-18.53379,-15.74892,73.338111,44.4114
--13.965,-19.1786,-17.9683,-15.2684,71.10047,42.6692
--14.35104,-19.57824,-18.34272,-15.39648,72.582048,43.2135
--14.65002,-19.98612,-18.82188,-15.91128,74.084472,42.9264
--13.8624,-18.8784,-17.6928,-14.7744,69.64944,41.9425
--14.74704,-20.08314,-18.82188,-15.71724,74.094174,43.1046
--14.896,-20.286,-19.012,-15.876,74.8328,43.94
--14.24736,-19.27584,-18.1584,-15.17856,71.106432,41.7216
--14.24736,-19.27584,-18.1584,-15.27168,71.106432,42.288
--14.841,-20.176,-18.915,-15.908,74.0692,43.36
--13.8985,-18.772,-17.689,-14.89125,68.9149,40.8025
--14.63616,-19.76832,-18.62784,-15.58656,72.582048,43.1046
--14.1911,-19.1672,-18.0614,-15.1126,70.36574,40.907
--15.035,-20.273,-19.012,-16.005,73.9819,41.8458
--15.19155,-20.48409,-19.30797,-16.17165,74.762028,43.1046
--14.57775,-19.65645,-18.52785,-15.70635,71.72253,41.0875
--14.6718,-19.65645,-18.52785,-15.6123,71.731935,41.0875
--14.52672,-19.46208,-18.34464,-15.45792,71.013312,41.8458
--15.444,-20.691,-19.503,-16.434,75.5073,42.6294
--15.229,-20.273,-19.206,-16.102,73.9722,41.5645
--15.7,-21,-19.8,-16.8,76.27,42.95
--14.3184,-19.152,-18.0576,-15.2304,69.55824,41.52
--14.71296,-19.0896,-17.13408,-15.45792,71.013312,41.616
--14.7098,-18.2476,-15.7339,-16.3856,71.01668,42.287
--14.95395,-17.58735,-14.95395,-16.7409,71.72253,40.907
--14.80608,-16.57536,-14.24736,-16.20288,71.022624,41.9525
--14.65185,-15.94195,-13.2696,-16.0341,70.27359,40.8025
--15.11136,-17.48736,-14.44608,-14.256,72.477504,42.1245
--15.3648,-18.72585,-15.65289,-15.3648,73.242081,42.5442
--14.896,-18.3407,-15.6408,-14.6167,71.00737,42.6692
--15.5232,-19.20996,-16.59042,-15.0381,73.900134,42.4215
--14.9891,-18.4338,-16.1063,-14.2443,70.91427,41.699
--15.30466,-18.72682,-16.54044,-14.44912,72.416708,41.5645
--14.9891,-18.3407,-16.2925,-14.1512,70.91427,40.983
--15.714,-19.109,-17.169,-14.744,73.8946,41.7682
--15.714,-19.109,-17.169,-14.841,73.8849,43.25
--15.71724,-19.11294,-17.26956,-14.84406,73.900134,42.1988
--15.0822,-18.3407,-16.758,-14.4305,70.91427,41.363
--15.55848,-19.01592,-17.38324,-14.98224,73.153668,42.5908
--15.974,-19.6,-17.836,-15.484,74.6466,43.561
--14.8656,-18.3312,-16.6896,-14.3184,69.46704,41.0875
--15.65452,-19.30404,-17.67136,-15.17432,73.153668,44.0412
--15.648,-19.296,-17.76,-15.072,73.1232,44.05
--15.42912,-18.91008,-17.4048,-14.77056,71.566656,42.5908
--16.236,-19.998,-18.414,-15.642,75.4083,43.5006
--15.4242,-18.9981,-17.58735,-14.95395,71.543835,42.8175
--15.3615,-18.8062,-17.5028,-14.9891,70.82117,43.3552
--16.0083,-19.69506,-18.23976,-15.42618,73.803114,43.6095
--16.335,-20.196,-18.711,-15.84,75.3093,44.24
--15.20475,-18.7986,-17.5085,-14.9283,70.10772,42.7285
--15.6816,-19.38816,-18.0576,-15.2064,72.296928,43.5006
--16.268,-19.992,-18.62,-15.778,74.5486,42.7672
--16.102,-19.788,-18.527,-15.617,73.7879,43.94
--16.6,-20.4,-19.1,-16.2,76.08,44.45
--15.87168,-19.57824,-18.24768,-15.39648,72.296928,42.1056
--15.5477,-19.1786,-17.8752,-15.0822,70.82117,41.743
--15.70635,-19.3743,-18.15165,-15.33015,71.55324,44.1144
--16.03701,-19.87821,-18.53379,-15.65289,72.963594,42.3405
--16.128,-19.872,-18.624,-15.84,73.0368,42.4704
--15.4812,-19.07505,-17.8771,-15.1126,70.006355,42.1562
--15.8004,-19.46835,-18.2457,-15.2361,71.449785,41.743
--16.29936,-20.18016,-18.9189,-15.91128,73.706094,43.4532
--16.562,-20.384,-19.11,-15.974,74.4604,45.15
--16.562,-20.384,-19.11,-16.268,74.4506,44.05
--16.06514,-19.77248,-18.63176,-15.87502,72.217082,43.6688
--16.562,-20.384,-19.208,-16.268,74.4604,42.777
--16.49,-20.273,-19.012,-16.296,73.6909,42.7285
--16.66,-20.482,-19.208,-16.17,74.4702,43.8648
--15.504,-19.0608,-17.9664,-15.048,69.29376,43.1424
--16.3251,-20.1663,-18.91791,-15.94098,72.963594,43.6888
--16.3268,-20.1684,-18.91988,-15.8466,72.971192,44.7468
--15.6672,-19.3536,-18.15552,-15.2064,70.023168,43.44
--16.08939,-19.7589,-18.62982,-15.71303,71.348447,42.8255
--16.587,-20.273,-19.109,-15.52,73.5551,44.05
--16.08255,-18.90405,-16.929,-15.9885,71.318115,44.5995
--15.43275,-17.328,-15.07175,-15.3425,68.436575,42.5125
--16.01664,-17.13408,-14.80608,-16.66848,70.622208,43.5142
--16.51716,-16.90128,-14.50053,-17.18937,72.819549,43.9701
--16.01664,-15.92352,-13.31616,-15.73728,70.612896,42.8352
--16.512,-18.048,-15.072,-14.976,72.7968,45.15
--16.27584,-18.43968,-15.61728,-15.0528,71.340864,43.855
--16.1063,-18.3407,-15.7339,-14.4305,70.59773,43.4435
--16.608,-19.008,-16.512,-14.88,72.7968,44.64
--15.7776,-17.9664,-15.7776,-14.0448,69.15696,42.332
--17.127,-19.503,-17.226,-15.048,75.0717,45.0945
--16.1994,-18.3407,-16.3856,-14.3374,70.60704,44.0412
--16.53,-18.715,-16.815,-14.535,72.0385,42.028
--16.53696,-18.72288,-16.91712,-14.54112,72.068832,44.3025
--16.70922,-18.91791,-17.09334,-14.69259,72.819549,43.6888
--17.052,-19.404,-17.64,-15.386,74.3134,43.561
--16.464,-18.72192,-17.02848,-14.86464,71.340864,43.2384
--16.45875,-18.81,-17.1171,-14.8599,71.23347,44.4906
--16.975,-19.497,-17.751,-15.229,73.4581,45.66
--16.632,-19.19808,-17.48736,-15.01632,71.973792,44.9664
--16.9785,-19.59804,-17.9487,-15.23214,73.473246,45.0945
--15.79375,-18.14025,-16.7865,-14.34975,68.346325,43.6525
--16.9785,-19.59804,-18.04572,-15.42618,73.473246,46.1835
--15.96,-18.4224,-17.0544,-14.5008,69.06576,44.8896
--17.248,-19.894,-18.424,-15.876,74.2154,45.423
--16.90304,-19.59216,-18.05552,-15.65452,72.740696,45.9032
--16.72,-19.475,-17.955,-15.39,71.9435,45.84
--16.0512,-18.696,-17.328,-14.6832,69.06576,44.1888
--16.64685,-19.28025,-17.8695,-15.048,71.224065,43.168
--16.1424,-18.696,-17.4192,-14.7744,69.06576,44.498
--17.17254,-19.8891,-18.53082,-15.62022,73.473246,44.8252
--16.99731,-19.68615,-18.43776,-15.55686,72.656298,46.2205
--16.48224,-19.18272,-17.87904,-15.27168,70.454592,46.896
--16.82562,-19.58236,-18.34658,-15.49478,71.91289,45.031
--16.31055,-19.07505,-17.78495,-15.1126,69.711475,43.833
--17.266,-20.079,-18.818,-15.811,73.3902,46.85
--17.622,-20.493,-19.206,-16.038,74.8935,46.65
--16.91712,-19.67328,-18.43776,-15.49152,71.907264,44.6784
--17.09512,-19.88028,-18.63176,-15.65452,72.663864,47.481
--17.266,-20.176,-18.915,-15.811,73.3902,46.3175
--16.74802,-19.57072,-18.34755,-15.61894,71.188494,47.2778
--17.088,-19.968,-18.816,-15.936,72.5376,46.2336
--17.01216,-19.76832,-18.62784,-15.58656,71.812224,45.552
--17.9,-20.9,-19.6,-16.5,75.56,49.25
--17.721,-20.691,-19.404,-16.335,74.8044,48.63
--17.36658,-20.27718,-19.11294,-16.10532,73.308312,46.1874
--16.6649,-19.4579,-18.3407,-15.4546,70.34636,45.828
--16.929,-19.7505,-18.52785,-15.70635,71.054775,45.8865
--16.7616,-19.5552,-18.43776,-15.55104,70.35216,46.7055
--17.82,-20.79,-19.602,-16.434,74.8044,46.54
--17.46,-20.37,-19.206,-16.005,73.2932,47.64
--17.1072,-19.29312,-17.20224,-16.1568,71.812224,44.9664
--17.1108,-18.34658,-15.97008,-16.06514,71.827336,46.5018
--17.46,-17.848,-15.423,-17.751,73.2835,47.13
--17.38324,-16.99908,-14.50204,-17.67136,72.55822,46.3932
--17.20586,-16.25526,-13.7837,-16.25526,71.827336,47.2752
--17.20586,-17.96634,-15.01948,-14.7343,71.827336,47.6574
--17.38324,-18.82384,-16.03868,-15.27036,72.55822,44.5312
--18.1,-19.8,-17,-15.7,75.55,45.74
--17.738,-19.404,-16.856,-15.386,74.039,44.737
--16.68096,-18.24768,-16.03584,-14.00832,69.636096,43.728
--17.30092,-18.72682,-16.6355,-14.54418,71.81783,44.3678
--18.018,-19.503,-17.424,-15.246,74.7945,44.85
--16.9442,-18.3407,-16.4787,-14.2443,70.34636,43.7285
--17.1171,-18.52785,-16.7409,-14.4837,71.06418,44.0325
--18.018,-19.602,-17.82,-15.345,74.7945,45.0945
--18.018,-19.602,-17.82,-15.345,74.8044,45.8865
--16.94784,-18.53088,-16.85472,-14.52672,70.361472,44.9692
--16.5984,-18.3312,-16.6896,-14.5008,68.9016,43.9375
--17.1171,-18.9981,-17.3052,-15.048,71.06418,43.377
--17.57349,-19.39806,-17.76555,-15.3648,72.550665,44.8625
--17.934,-19.796,-18.228,-15.582,74.039,45.4328
--17.39232,-19.19808,-17.77248,-15.11136,71.80272,43.6224
--17.04096,-18.90336,-17.41344,-14.80608,70.35216,45.8228
--18.117,-20.097,-18.612,-15.84,74.7945,45.55
--17.568,-19.488,-18.048,-15.264,72.528,42.672
--16.86345,-18.7986,-17.41635,-14.9283,69.619325,43.548
--17.848,-19.885,-18.43,-15.617,73.2932,44.1835
--18.03384,-20.09205,-18.6219,-15.87762,74.056356,45.2034
--16.606,-18.50125,-17.23775,-14.71075,68.1929,43.9375
--18.216,-20.394,-18.909,-16.038,74.8044,45.5697
--17.66952,-19.78218,-18.43776,-15.55686,72.560268,44.0768
--17.3052,-19.3743,-18.0576,-15.33015,71.06418,43.7285
--17.85168,-19.98612,-18.62784,-15.81426,73.308312,44.9232
--18.216,-20.493,-19.107,-16.137,74.7153,45.44
--17.66952,-19.87821,-18.62982,-15.65289,72.464238,46.8666
--17.664,-19.872,-18.624,-15.744,72.4416,47.64
--17.04775,-19.07505,-17.8771,-15.1126,69.545605,44.2225
--17.76,-19.968,-18.624,-15.936,72.4416,47.24
--16.69625,-18.772,-17.59875,-14.89125,68.10265,43.0635
--16.872,-18.9696,-17.784,-15.2304,68.81952,42.6075
--17.76,-20.064,-18.816,-16.032,72.4416,44.112
--17.76555,-20.07027,-18.82188,-15.84495,72.464238,44.1936
--17.76,-20.064,-18.816,-15.936,72.4416,45.04
--16.872,-19.0608,-17.9664,-15.1392,68.81952,42.288
--18.13185,-20.5821,-19.30797,-16.17165,73.958346,43.7085
--17.7674,-20.1684,-18.91988,-15.94264,72.471784,44.0412
--16.7865,-18.9525,-17.77925,-14.9815,68.10265,42.693
--17.86344,-20.1684,-19.01592,-15.94264,72.471784,44.1392
--17.50074,-19.47663,-17.68892,-15.52485,71.000314,44.8625
--18.22986,-19.50399,-16.85772,-16.75971,73.958346,47.0547
--17.67,-17.86,-15.39,-16.53,71.687,46.94
--17.67744,-17.1072,-14.54112,-17.20224,71.622144,44.4015
--16.7865,-15.7035,-13.1765,-16.15475,68.0124,43.7285
--17.1399,-16.49485,-13.6382,-12.99315,69.453455,44.0325
--18.14274,-18.72486,-15.71724,-15.32916,73.114272,44.345
--17.77622,-18.82188,-15.97008,-15.01948,71.637216,44.4648
--17.77248,-18.81792,-16.1568,-14.7312,71.622144,43.2384
--16.87675,-17.8695,-15.523,-13.98875,68.0124,42.5125
--18.513,-19.602,-17.226,-15.147,74.6064,44.1144
--18.14274,-19.11294,-16.9785,-15.0381,73.114272,44.8154
--17.41344,-18.34464,-16.38912,-14.34048,70.175232,43.9701
--18.139,-19.109,-17.169,-14.938,73.0992,45.25
--17.59296,-18.53376,-16.74624,-14.39424,70.908096,42.3936
--17.4097,-18.4338,-16.6649,-14.3374,70.16016,42.408
--18.326,-19.502,-17.738,-15.484,73.8528,44.34
--17.4097,-18.7131,-16.9442,-14.8029,70.16016,44.5312
--17.6814,-18.90405,-17.21115,-14.8599,70.87608,41.9425
--17.86,-19.19,-17.48,-14.915,71.592,42.332
--17.3242,-18.6143,-17.04775,-14.65185,69.44424,42.3405
--18.05364,-19.39806,-17.86158,-15.26877,72.368208,43.6888
--17.3242,-18.6143,-17.1399,-14.65185,69.44424,42.028
--17.3242,-18.70645,-17.23205,-14.744,69.44424,42.8925
--17.6814,-19.09215,-17.6814,-15.048,70.87608,44.4807
--18.236,-19.788,-18.333,-15.714,73.0992,43.8925
--17.86752,-19.38816,-17.96256,-15.30144,71.631648,44.8866
--17.68704,-19.2864,-17.8752,-15.24096,70.898688,42.4704
--17.86752,-19.4832,-18.0576,-15.39648,71.622144,44.4807
--18.23976,-19.98612,-18.53082,-15.71724,73.017252,43.855
--17.1456,-18.7872,-17.4192,-14.8656,68.63712,44.213
--18.05552,-19.78424,-18.43968,-15.65452,72.279704,43.6688
--17.41635,-18.9829,-17.6928,-14.9283,69.35209,43.9701
--17.59968,-19.27584,-17.97216,-15.17856,70.082112,43.9701
--18.711,-20.493,-19.107,-16.137,74.5074,44.6985
--17.2368,-18.8784,-17.6928,-15.048,68.63712,42.2275
--18.14967,-19.97424,-18.62982,-15.94098,72.272178,44.3581
--18.14967,-19.97424,-18.72585,-15.84495,72.281781,43.8966
--17.2368,-18.9696,-17.784,-14.9568,68.64624,42.8544
--18.333,-20.273,-18.915,-16.005,73.0022,42.9128
--17.41824,-19.26144,-18.06336,-15.39072,69.359616,42.384
--18.333,-20.273,-19.012,-16.005,73.0022,43.8925
--18.33678,-20.27718,-19.01592,-16.0083,73.017252,45.1935
--17.05725,-18.9525,-17.689,-15.07175,67.931175,42.6075
--18.711,-20.79,-19.503,-16.335,74.5074,45.2826
--18.144,-20.16,-18.912,-16.032,72.2496,42.7776
--17.328,-19.152,-17.9664,-15.2304,68.64624,41.6256
--17.5104,-19.44576,-18.24768,-15.57504,69.359616,43.056
--17.8695,-19.5624,-17.4933,-15.4242,70.78203,42.123
--18.0576,-18.72288,-16.53696,-16.82208,71.527104,45.2826
--18.05,-17.765,-15.39,-16.91,71.497,44.94
--17.1475,-16.33525,-13.98875,-15.884,67.92215,41.5625
--17.8695,-16.3647,-14.01345,-16.45875,70.791435,44.0154
--18.0576,-17.01216,-14.256,-13.40064,71.527104,43.6224
--17.8752,-18.25152,-15.33504,-14.86464,70.804608,42.4608
--17.6928,-18.34464,-15.64416,-14.80608,70.091424,41.616
--17.8695,-18.71595,-16.08255,-14.6718,70.78203,41.5625
--18.718,-19.404,-16.954,-15.288,73.7548,44.74
--18.718,-19.404,-17.052,-15.092,73.7548,43.7472
--18.43,-19.109,-16.975,-14.841,73.0022,44.24
--17.96928,-18.53376,-16.55808,-14.30016,70.804608,42.5664
--17.78592,-18.43776,-16.57536,-14.4336,70.082112,43.2232
--18.53082,-19.20996,-17.36658,-14.94108,73.017252,43.561
--18.909,-19.602,-17.721,-15.444,74.5074,45.9657
--17.7821,-18.5269,-16.8511,-14.6167,69.98327,43.6525
--18.527,-19.497,-17.654,-15.423,72.9052,43.1165
--18.909,-19.998,-18.216,-15.642,74.4183,43.64
--18.909,-19.998,-18.216,-15.543,74.4084,43.7976
--17.78592,-18.81024,-17.2272,-14.71296,69.998304,42.1056
--17.78592,-18.90336,-17.32032,-14.8992,69.998304,42.9504
--17.7821,-18.8993,-17.4097,-14.896,69.98327,44.0325
--17.96355,-19.09215,-17.58735,-14.8599,70.68798,43.7976
--17.7821,-18.8993,-17.5028,-14.896,69.98327,41.458
--18.145,-19.38,-17.955,-15.2,71.4115,40.983
--18.15646,-19.39224,-17.96634,-15.30466,71.447096,42.8255
--18.71991,-20.09205,-18.6219,-15.77961,73.664316,43.7184
--18.145,-19.57,-18.05,-15.485,71.4115,44.75
--18.15264,-19.57824,-18.15264,-15.58656,71.432064,44.4807
--17.96355,-19.3743,-18.0576,-15.33015,70.68798,42.332
--17.4192,-18.7872,-17.5104,-14.8656,68.54592,42.788
--17.96355,-19.46835,-18.15165,-15.4242,70.68798,45.0945
--17.6928,-19.07505,-17.78495,-15.02045,69.269155,42.8255
--18.06336,-19.47456,-18.15744,-15.5232,70.710528,43.1592
--17.8752,-19.3648,-18.0614,-15.1753,69.97396,43.4532
--18.24768,-19.76832,-18.43776,-15.6816,71.432064,44.1144
--17.328,-18.772,-17.5085,-14.801,67.840925,42.693
--17.69472,-19.16928,-17.9712,-15.29856,69.267456,43.44
--18.43968,-20.07236,-18.7278,-15.94264,72.183664,45.1094
--18.43776,-20.07027,-18.82188,-15.74892,72.185751,43.7955
--18.432,-20.16,-18.816,-15.936,72.1632,44.1888
--18.0576,-19.7505,-18.52785,-15.51825,70.697385,44.4114
--19.008,-20.79,-19.503,-16.335,74.4084,44.45
--18.25152,-19.9626,-18.72682,-15.6849,71.447096,43.4075
--17.69472,-19.3536,-18.15552,-15.39072,69.267456,43.728
--18.62784,-20.3742,-19.20996,-16.10532,72.920232,44.3025
--18.43968,-20.07236,-18.53572,-15.46244,72.183664,44.0314
--18.24768,-19.008,-16.91712,-16.25184,71.432064,43.056
--19.3,-19,-16.5,-17.9,75.16,44.34
--18.15165,-17.02305,-14.6718,-16.7409,70.68798,42.2275
--17.6016,-15.96,-13.5888,-16.3248,68.55504,41.7216
--18.15165,-16.45875,-13.7313,-13.44915,70.697385,44.0055
--18.53379,-18.43776,-15.46083,-15.26877,72.176148,43.8966
--18.335,-18.715,-15.865,-15.105,71.307,44.64
--18.34272,-18.81792,-16.1568,-14.92128,71.346528,42.8544
--17.41825,-17.8695,-15.523,-13.8985,67.750675,42.693
--17.78495,-18.2457,-15.94195,-14.1911,69.177005,43.9701
--18.721,-19.109,-16.975,-14.938,72.8179,44.45
--17.9683,-18.3407,-16.3856,-14.2443,69.89017,41.667
--17.97216,-18.43776,-16.48224,-14.34048,69.905184,42.7776
--18.15165,-18.6219,-16.7409,-14.4837,70.59393,46.1835
--17.78495,-18.2457,-16.587,-14.28325,69.16779,41.5625
--18.72486,-19.30698,-17.56062,-15.32916,72.823212,44.1936
--17.41825,-18.14025,-16.4255,-14.34975,67.750675,41.743
--17.6016,-18.4224,-16.6896,-14.5008,68.45472,42.1056
--18.53379,-19.39806,-17.66952,-15.17274,72.080118,44.0055
--19.107,-19.998,-18.315,-15.741,74.3193,44.86
--18.15937,-19.10027,-17.50074,-15.0544,70.623954,43.8925
--18.15165,-19.09215,-17.58735,-15.048,70.603335,45.2826
--17.78688,-18.70848,-17.32608,-14.65344,69.175296,43.9104
--18.72486,-19.79208,-18.23976,-15.42618,72.823212,43.4214
--18.72486,-19.79208,-18.23976,-15.42618,72.823212,44.9856
--18.528,-19.584,-18.144,-15.552,72.0576,41.7888
--18.15165,-19.28025,-17.77545,-15.33015,70.59393,44.3025
--19.107,-20.394,-18.81,-16.038,74.3094,44.64
--18.721,-19.982,-18.527,-15.714,72.8179,43.5821
--17.8771,-18.89075,-17.60065,-15.1126,69.16779,42.8925
--18.82188,-19.98612,-18.62784,-15.91128,72.832914,43.7976
--18.44164,-19.58236,-18.25152,-15.39972,71.352036,42.6218
--19.01394,-20.28807,-18.91593,-15.97563,73.566306,42.9165
--18.43,-19.665,-18.335,-15.58,71.307,44.85
--18.624,-19.872,-18.624,-15.744,72.0576,42.2784
--18.25152,-19.47456,-18.25152,-15.5232,70.616448,42.875
--18.44164,-19.77248,-18.44164,-15.58984,71.361542,43.0098
--17.8771,-19.1672,-17.96925,-15.1126,69.16779,43.7285
--19.012,-20.482,-19.11,-16.268,73.4706,44.75
--17.8771,-19.25935,-18.0614,-15.02045,69.07564,40.983
--18.0614,-19.4579,-18.2476,-15.1753,69.88086,42.8925
--19.206,-20.691,-19.404,-16.335,74.2203,43.6095
--18.06528,-19.46208,-18.34464,-15.45792,69.812064,43.056
--19.206,-20.691,-19.503,-16.335,74.2203,44.86
--18.62982,-20.1663,-18.91791,-15.94098,71.993691,44.7975
--18.818,-20.37,-19.109,-16.102,72.7209,44.45
--18.818,-20.37,-19.206,-16.102,72.7112,43.53
--18.25152,-19.7568,-18.53376,-15.71136,70.541184,42.8544
--18.62982,-20.26233,-19.01394,-15.84495,71.993691,43.0098
--19.012,-20.58,-19.306,-15.876,73.4706,44.8154
--17.87904,-18.52416,-16.49664,-15.48288,69.092352,42.672
--17.87904,-17.69472,-15.39072,-16.49664,69.092352,43.344
--18.25346,-17.21847,-14.96031,-16.84211,70.445183,44.6491
--18.3456,-16.55808,-14.20608,-16.9344,70.447104,44.8252
--18.3456,-16.08768,-13.45344,-16.18176,70.437696,43.953
--18.72585,-18.05364,-14.88465,-14.78862,71.993691,43.5918
--18.33975,-18.4338,-15.51825,-14.95395,70.509285,43.168
--18.7278,-19.01592,-16.23076,-14.98224,72.001188,46.0012
--18.9189,-19.20996,-16.59042,-14.94108,72.638874,44.247
--17.96925,-18.2457,-15.94195,-14.1911,69.084855,43.0635
--18.5328,-18.81792,-16.53696,-14.7312,71.156448,44.1936
--18.1584,-18.34464,-16.38912,-14.15424,69.718944,43.5045
--17.59875,-17.77925,-15.97425,-13.80825,67.570175,42.123
--17.59875,-17.77925,-16.0645,-13.98875,67.570175,43.833
--18.9189,-19.20996,-17.36658,-14.94108,72.638874,44.4807
--18.3456,-18.62784,-16.9344,-14.67648,70.531776,44.1392
--18.33975,-18.81,-17.02305,-14.8599,70.509285,45.8865
--18.1584,-18.71712,-17.04096,-14.71296,69.718944,44.8625
--18.72585,-19.39806,-17.66952,-15.46083,71.897661,46.0746
--19.305,-19.998,-18.315,-15.84,74.1213,48.73
--17.59875,-18.32075,-16.7865,-14.53025,67.660425,45.1535
--19.11,-19.894,-18.326,-15.582,73.3726,46.14
--18.72,-19.584,-17.952,-15.456,71.8752,47.13
--18.34755,-19.19436,-17.68892,-15.0544,70.539273,48.1605
--17.96925,-18.7986,-17.41635,-15.02045,69.00192,44.5715
--18.72585,-19.68615,-18.14967,-15.55686,71.897661,46.0746
--18.915,-19.885,-18.43,-15.811,72.7209,47.1711
--18.33975,-19.3743,-17.96355,-15.2361,70.509285,50.4306
--18.1584,-19.18272,-17.78592,-15.27168,69.812064,45.7344
--18.5367,-19.67742,-18.25152,-15.39972,71.266482,45.423
--18.525,-19.57,-18.24,-15.485,71.2215,46.0275
--19.11195,-20.28807,-18.91593,-15.97563,73.478097,47.5596
--18.5367,-19.67742,-18.34658,-15.58984,71.266482,47.7848
--18.3456,-19.56864,-18.25152,-15.61728,70.625856,49.245
--18.7278,-19.97632,-18.63176,-15.94264,72.087624,47.7652
--19.5,-20.8,-19.5,-16.4,75.07,47.64
--18.915,-20.273,-18.915,-16.102,72.8179,46.94
--19.11,-20.482,-19.208,-16.366,73.5686,47.45
--19.305,-20.79,-19.404,-16.335,74.3094,47.64
--19.208,-20.58,-19.208,-16.366,73.5686,48.265
--18.9189,-20.3742,-19.11294,-15.81426,72.832914,46.8666
--18.525,-19.95,-18.715,-15.675,71.402,49.44
--18.06336,-19.3536,-18.15552,-15.29856,69.184512,46.7904
--19.5,-21,-19.7,-16.8,75.07,48.45
--18.915,-20.079,-18.042,-16.005,72.8082,48.7425
--19.305,-19.404,-17.028,-17.424,74.3094,48.8367
--19.6,-18.7,-16.2,-17.7,75.07,48.63
--18.44164,-16.9362,-14.58395,-17.12438,70.633363,46.7055
--18.43968,-16.36992,-13.82976,-16.9344,70.625856,45.168
--18.4338,-16.929,-14.01345,-13.44915,70.603335,48.0744
--18.816,-18.624,-15.552,-15.36,72.0672,47.46
--18.62,-18.81,-15.96,-15.01,71.3165,47.53
--18.4338,-18.6219,-15.9885,-14.6718,70.68798,46.4835
--19.404,-19.602,-17.028,-15.345,74.4084,46.14
--19.404,-19.602,-17.226,-15.246,74.4084,47.45
--18.0614,-18.15355,-16.12625,-14.1911,69.269155,45.258
--18.25152,-18.34464,-16.38912,-14.34048,69.905184,45.8131
--17.8752,-18.0576,-16.2336,-13.8624,68.54592,45.543
--18.62784,-18.81792,-16.91712,-14.82624,71.432064,45.8865
--18.43968,-18.62784,-16.9344,-14.67648,70.719936,45.0624
--18.44164,-18.818,-17.03029,-14.86622,70.718044,44.4648
--17.689,-18.14025,-16.4255,-14.34975,67.8319,43.7285
--19.208,-19.796,-17.934,-15.386,73.6568,46.1874
--19.01592,-19.59804,-17.85168,-15.32916,72.920232,46.3716
--18.44164,-19.00618,-17.40665,-14.77213,70.727453,45.7161
--18.62,-19.285,-17.67,-15.2,71.402,43.9375
--18.0614,-18.70645,-17.23205,-14.5597,69.25994,44.422
--18.816,-19.488,-18.048,-15.072,72.1536,44.112
--18.2476,-18.9924,-17.5028,-14.8029,69.98327,45.031
--18.62,-19.38,-17.955,-15.2,71.402,46.14
--19.404,-20.196,-18.711,-15.939,74.4084,45.9756
--19.208,-20.09,-18.62,-15.876,73.6568,46.03
--18.43968,-19.2864,-17.8752,-15.24096,70.710528,44.1888
--19.404,-20.394,-18.909,-15.939,74.4084,45.1935
--18.25152,-19.18272,-17.87904,-15.17856,69.988992,43.9701
--18.82384,-19.78424,-18.43968,-15.65452,72.193268,46.8734
--18.816,-19.872,-18.432,-15.648,72.1536,47.75
--19.20996,-20.28807,-18.91593,-16.07364,73.674117,47.0646
--19.208,-20.286,-18.914,-16.072,73.6666,46.14
--18.4338,-19.46835,-18.2457,-15.51825,70.68798,45.5697
--18.43968,-19.56864,-18.25152,-15.42912,70.710528,43.5168
--19.01592,-20.18016,-18.82188,-16.10532,72.920232,45.8865
--18.82188,-19.97424,-18.72585,-15.94098,72.176148,44.9595
--19.404,-20.691,-19.305,-16.236,74.4183,45.7875
--19.012,-20.273,-19.012,-16.102,72.9052,45.0371
--17.8752,-19.0608,-17.8752,-15.1392,68.54592,43.6525
--18.4338,-19.65645,-18.4338,-15.51825,70.697385,43.9375
--18.62784,-19.9584,-18.62784,-15.6816,71.432064,45.6786
--18.63176,-19.9626,-18.72682,-15.6849,71.456602,44.5715
--18.0614,-19.3515,-18.15355,-15.4812,69.25994,44.422
--17.8752,-19.152,-17.9664,-15.2304,68.54592,45.4464
--18.43968,-19.7568,-18.53376,-15.61728,70.710528,45.6092
--18.2476,-19.551,-18.4338,-15.4546,69.97396,45.5112
--18.82188,-20.07027,-18.53379,-15.65289,72.176148,45.3572
--18.25152,-18.53088,-16.38912,-16.01664,69.988992,43.9008
--18.62784,-18.0576,-15.6816,-16.53696,71.432064,46.0845
--18.25152,-16.85472,-14.52672,-16.48224,69.998304,44.4
--19.11294,-16.9785,-14.45598,-17.26956,72.920232,45.9657
--18.72288,-16.632,-13.87584,-13.40064,71.432064,44.5728
--19.503,-19.008,-15.84,-15.543,74.3193,45.73
--18.25152,-18.34464,-15.55104,-14.71296,69.988992,44.4
--18.3407,-18.3407,-15.827,-14.5236,69.97396,44.345
--18.82188,-18.91791,-16.51716,-14.59656,72.089721,45.1935
--18.0614,-18.15355,-15.94195,-14.09895,69.177005,43.928
--18.912,-18.816,-16.704,-14.688,72.0672,45.74
--18.72682,-18.63176,-16.73056,-14.35406,71.361542,44.6292
--18.912,-18.816,-16.992,-14.784,72.1536,43.6224
--18.72682,-18.63176,-16.92068,-14.63924,71.447096,44.8625
--19.503,-19.503,-17.721,-15.246,74.4084,44.6985
--18.2476,-18.3407,-16.758,-14.4305,69.88086,44.345
--19.208,-19.502,-17.738,-15.288,73.6568,45.2172
--18.34464,-18.624,-17.04096,-14.71296,69.895872,44.8896
--19.503,-19.899,-18.216,-15.543,74.3193,46.1934
--19.7,-20.2,-18.4,-15.8,75.16,46.25
--18.715,-19.19,-17.575,-15.01,71.402,43.5575
--18.91988,-19.40008,-17.86344,-14.98224,72.087624,45.031
--18.3407,-18.8062,-17.4097,-14.7098,69.89017,44.639
--18.62784,-19.29312,-17.77248,-15.01632,71.337024,45.5697
--19.11294,-19.69506,-18.23976,-15.42618,72.920232,44.9232
--18.52785,-19.09215,-17.6814,-15.048,70.59393,45.2826
--18.53573,-19.19436,-17.78301,-15.0544,70.708635,44.5715
--19.503,-20.196,-18.711,-15.84,74.3193,46.36
--18.52785,-19.28025,-17.8695,-15.14205,70.59393,43.168
--18.72288,-19.4832,-18.0576,-15.30144,71.346528,43.44
--19.11294,-19.8891,-18.53082,-15.71724,72.832914,45.0945
--19.109,-19.885,-18.624,-15.811,72.9052,44.6491
--19.11294,-19.98612,-18.62784,-15.81426,72.920232,44.9856
--18.15355,-18.9829,-17.6928,-14.9283,69.25994,43.0635
--19.11294,-19.98612,-18.72486,-15.81426,72.920232,44.1392
--18.52785,-19.3743,-18.15165,-15.33015,70.68798,42.9875
--19.109,-19.982,-18.721,-15.811,72.9149,44.0768
--19.306,-20.286,-18.914,-15.876,73.5588,45.55
--18.15355,-19.07505,-17.8771,-15.20475,69.25994,45.6385
--18.53376,-19.56864,-18.25152,-15.5232,70.625856,43.728
--18.91988,-19.88028,-18.63176,-15.8466,72.183664,43.3454
--17.9664,-18.9696,-17.784,-15.048,68.45472,42.288
--18.3407,-19.2717,-18.1545,-15.2684,69.89017,43.6688
--18.72682,-19.67742,-18.5367,-15.58984,71.352036,43.5918
--18.91791,-19.87821,-18.72585,-15.74892,72.089721,43.7955
--18.15355,-19.07505,-18.0614,-15.1126,69.18622,44.0768
--19.11294,-20.08314,-19.01592,-15.91128,72.832914,44.345
--19.503,-20.493,-19.404,-16.137,74.3193,46.36
--18.15552,-19.16928,-18.06336,-15.2064,69.175296,44.1888
--19.109,-20.079,-19.012,-16.102,72.8082,45.33
--18.53376,-19.56864,-18.53376,-15.5232,70.625856,44.5312
--18.715,-19.76,-18.715,-15.675,71.3165,45.74
--18.53376,-19.56864,-18.53376,-15.61728,70.625856,44.9664
--18.52785,-19.5624,-18.52785,-15.70635,70.603335,45.3816
--19.306,-20.384,-19.306,-16.268,73.5686,46.65
--18.72288,-19.86336,-18.72288,-15.77664,71.346528,45.9657
--18.53376,-19.66272,-18.53376,-15.61728,70.625856,44.5056
--18.53376,-19.2864,-17.31072,-15.5232,70.625856,44.345
--18.52785,-18.2457,-15.89445,-16.45875,70.603335,44.6985
--19.30797,-18.03384,-15.58359,-17.24976,73.576107,44.9856
--19.11294,-17.07552,-14.553,-17.26956,72.929934,44.4906
--19.503,-16.83,-14.058,-17.127,74.4084,46.2924
--18.912,-17.568,-14.496,-14.208,72.1536,44.86
--18.715,-18.43,-15.485,-15.01,71.4115,42.9875
--18.715,-18.62,-15.865,-14.82,71.402,45.33
--19.30797,-19.20996,-16.6617,-15.09354,73.664316,45.8964
--18.52785,-18.4338,-16.08255,-14.2956,70.68798,44.8767
--18.91791,-18.72585,-16.61319,-14.50053,72.176148,44.9856
--19.306,-19.11,-17.052,-14.896,73.6568,42.581
--19.109,-18.915,-16.975,-14.647,72.9052,44.45
--18.91791,-18.72585,-16.90128,-14.78862,72.185751,42.9264
--18.53376,-18.3456,-16.74624,-14.20608,70.719936,43.2768
--18.912,-18.816,-17.088,-14.784,72.1632,42
--18.53376,-18.53376,-16.84032,-14.67648,70.719936,41.7984
--17.77925,-17.8695,-16.33525,-13.8985,67.8319,41.667
--18.52785,-18.6219,-17.1171,-14.57775,70.697385,41.743
--18.91791,-19.10997,-17.47746,-14.88465,72.185751,44.0055
--18.52785,-18.71595,-17.21115,-14.38965,70.68798,42.7975
--18.91791,-19.01394,-17.57349,-14.78862,72.176148,43.8925
--18.72288,-18.81792,-17.48736,-14.82624,71.432064,44.2944
--18.34464,-18.53088,-17.13408,-14.80608,69.998304,44.3678
--19.30797,-19.602,-18.13185,-15.38757,73.664316,45.0945
--17.9664,-18.24,-16.9632,-14.3184,68.54592,43.1328
--17.9664,-18.3312,-16.9632,-14.4096,68.45472,43.168
--18.52785,-18.90405,-17.58735,-14.76585,70.68798,42.788
--18.72288,-19.10304,-17.77248,-14.92128,71.432064,44.3025
--18.15355,-18.52215,-17.3242,-14.46755,69.25994,42.6835
--17.9664,-18.3312,-17.1456,-14.4096,68.54592,42.617
--18.91988,-19.30404,-18.15156,-15.3664,72.183664,43.561
--18.15355,-18.6143,-17.41635,-14.46755,69.269155,42.2275
--18.53573,-19.00618,-17.78301,-14.77213,70.718044,43.4075
--18.72682,-19.29718,-17.96634,-15.30466,71.447096,44.1392
--17.9664,-18.5136,-17.328,-14.5008,68.54592,42.6075
--19.306,-19.894,-18.62,-15.68,73.6666,43.855
--18.715,-19.285,-18.05,-15.105,71.402,45.54
--19.11294,-19.69506,-18.53082,-15.42618,72.920232,44.4015
--18.912,-19.488,-18.336,-15.168,72.1536,44.64
--19.306,-19.894,-18.718,-15.582,73.6568,44.64
--18.52785,-19.09215,-17.96355,-15.048,70.68798,42.028
--18.34464,-18.90336,-17.87904,-14.80608,69.988992,42.1056
--19.503,-20.196,-19.008,-15.741,74.4084,45.65
--19.7,-20.4,-19.2,-15.9,75.16,45.73
--18.15355,-18.7986,-17.6928,-14.744,69.25994,44.1835
--18.53376,-19.19232,-18.06336,-14.95872,70.710528,42
--18.34464,-18.99648,-17.87904,-14.99232,69.988992,42
--19.109,-19.788,-18.721,-15.52,72.9052,43.5045
--18.72682,-19.39224,-18.34658,-15.30466,71.447096,42.8352
--18.912,-19.584,-18.528,-15.36,72.1536,42.384
--18.3407,-19.0855,-17.9683,-15.0822,69.97396,42.123
--19.11294,-19.8891,-18.72486,-15.71724,72.920232,44.5896
--18.53376,-19.2864,-18.15744,-15.14688,70.710528,44.737
--18.72682,-19.4873,-18.44164,-15.30466,71.447096,43.561
--18.72288,-19.4832,-18.43776,-15.30144,71.432064,44.4114
--17.77925,-18.50125,-17.5085,-14.44,67.8319,43.168
--18.715,-19.57,-18.43,-15.39,71.402,42.332
--18.34464,-19.0896,-18.06528,-15.08544,69.988992,43.3978
--18.53376,-19.38048,-18.25152,-15.14688,70.719936,43.953
--19.306,-20.188,-19.012,-15.974,73.6568,44.4234
--18.52785,-19.3743,-18.2457,-15.048,70.68798,41.9425
--19.306,-20.188,-19.11,-15.778,73.6568,44.9232
--18.715,-19.57,-18.525,-15.39,71.4115,42.8925
--18.912,-19.776,-18.72,-15.456,72.1536,45.04
--18.15552,-18.98496,-17.9712,-14.7456,69.267456,43.44
--18.15552,-18.98496,-17.9712,-14.7456,69.267456,43.6224
--18.52785,-19.3743,-18.33975,-15.14205,70.697385,45.0945
--18.15552,-18.98496,-17.9712,-14.7456,69.267456,43.824
--18.52785,-19.46835,-18.33975,-15.33015,70.603335,44.4015
--18.53376,-19.47456,-18.3456,-15.42912,70.625856,43.8452
--18.715,-19.665,-18.525,-15.39,71.3165,45.54
--18.72288,-19.57824,-18.5328,-15.49152,71.346528,44.1936
--18.72288,-19.67328,-18.5328,-15.2064,71.337024,42.288
--17.9664,-18.8784,-17.8752,-14.7744,68.46384,42.693
--18.715,-19.665,-18.62,-15.39,71.3165,42.2275
--18.715,-19.665,-18.62,-15.485,71.3165,44.56
--19.30797,-20.28807,-19.20996,-16.07364,73.576107,44.7975
--19.11294,-20.08314,-19.01592,-15.71724,72.823212,43.953
--19.503,-20.493,-19.404,-16.038,74.3094,45.25
--19.11294,-20.08314,-19.01592,-15.71724,72.823212,43.6095
--18.715,-19.76,-18.62,-15.485,71.307,45.04
--19.20996,-20.08314,-19.01592,-15.81426,72.823212,43.4532
--18.3407,-19.3648,-18.2476,-15.1753,69.89017,42.9828
--19.11294,-20.18016,-19.01592,-15.91128,72.832914,44.4015
--18.81792,-19.67328,-18.62784,-15.58656,71.346528,44.1936
--18.3407,-19.2717,-18.2476,-15.2684,69.89017,42.788
--19.306,-20.286,-19.306,-15.876,73.5588,44.345
--19.503,-20.592,-19.503,-16.236,74.3193,44.85
--18.81,-19.665,-18.62,-15.485,71.307,44.75
--19.30797,-20.38608,-19.20996,-15.87762,73.566306,45.0945
--18.912,-19.872,-18.816,-15.744,72.0672,46.35
--19.109,-20.176,-19.012,-15.908,72.8082,45.73
--19.602,-20.592,-19.404,-16.137,74.3094,44.85
--19.404,-20.384,-19.306,-15.974,73.5686,44.639
--18.715,-19.76,-18.715,-15.39,71.3165,43.4435
--18.43776,-19.36896,-18.34464,-15.27168,69.895872,43.3008
--19.008,-20.064,-18.912,-15.84,72.0576,45.44
--18.81,-19.855,-18.715,-15.58,71.402,42.6075
--18.43776,-19.46208,-18.34464,-15.17856,69.895872,42.1056
--19.01394,-20.07027,-18.91791,-15.84495,72.176148,44.3025
--19.602,-20.691,-19.503,-16.335,74.3193,44.1936
--18.4338,-19.3648,-18.4338,-15.0822,69.89017,41.9425
--18.82188,-19.77248,-18.72682,-15.58984,71.456602,42.8352
--18.6219,-19.5624,-18.52785,-15.4242,70.59393,42.2275
--19.206,-20.176,-19.109,-15.908,72.9052,45.15
--19.206,-20.176,-19.109,-15.908,72.9149,45.04
--18.62784,-19.56864,-18.62784,-15.33504,70.710528,43.6688
--18.81792,-19.76832,-18.81792,-15.58656,71.432064,42.5664
--18.81,-19.76,-18.715,-15.675,71.402,42.9875
--19.01394,-20.07027,-18.91791,-15.65289,72.176148,45.4348
--18.62784,-19.66272,-18.53376,-15.42912,70.710528,42.6594
--18.82188,-19.86754,-18.82188,-15.6849,71.447096,42.5442
--19.404,-20.482,-19.404,-16.17,73.6568,43.86
--19.008,-20.064,-19.008,-15.648,72.1536,42.672
--18.82188,-19.86754,-18.82188,-15.58984,71.447096,42.0495
--19.01394,-20.07027,-19.01394,-15.74892,72.176148,44.3025
--18.24768,-19.26144,-18.24768,-15.02208,69.276672,42.4704
--18.81792,-19.76832,-18.81792,-15.58656,71.441568,43.4214
--18.81,-19.855,-18.81,-15.58,71.402,44.34
--18.81792,-19.86336,-18.81792,-15.58656,71.441568,43.728
--19.008,-20.064,-19.008,-15.552,72.1632,44.16
--19.8,-20.9,-19.8,-16.3,75.16,44.56
--19.01592,-19.97632,-18.82384,-15.07828,72.193268,43.561
--18.0576,-18.0576,-15.8688,-15.4128,68.54592,41.8475
--19.20996,-18.33678,-15.71724,-17.17254,72.920232,43.7976
--19.8,-17.9,-15.3,-17.5,75.16,44.56
--18.43776,-16.01664,-13.40928,-16.20288,69.988992,42.384
--18.24768,-15.94368,-12.99456,-12.99456,69.359616,42.672
--18.91296,-18.0576,-14.92128,-14.63616,71.441568,43.6095
--18.62982,-18.34755,-15.43076,-14.67804,70.812134,42.6218
--19.50399,-19.11195,-16.46568,-14.79951,73.762326,43.7184
--19.20996,-19.01592,-16.4934,-14.74704,73.017252,43.1046
--19.30698,-18.9189,-16.59042,-14.553,73.017252,42.581
--19.303,-18.818,-16.781,-14.55,73.0022,42.4375
--18.33984,-17.87904,-16.03584,-13.63968,69.359616,41.3376
--18.91296,-18.43776,-16.632,-14.256,71.527104,44.1144
--19.404,-19.11,-17.248,-14.7,73.7548,43.53
--17.8695,-17.5085,-15.97425,-13.44725,67.931175,41.4675
--19.701,-19.305,-17.622,-14.85,74.5074,43.1046
--18.0576,-17.8752,-16.3248,-14.0448,68.63712,41.9425
--18.91694,-18.72682,-17.1108,-14.63924,71.542156,42.6218
--18.53088,-18.43776,-16.85472,-14.34048,70.082112,42
--18.53088,-18.34464,-16.85472,-14.24736,70.175232,41.616
--19.01394,-18.91791,-17.47746,-14.59656,72.358605,42.4375
--18.2457,-18.15355,-16.86345,-14.0068,69.435025,41.9525
--19.01592,-18.91988,-17.57532,-14.79016,72.36614,42.581
--19.602,-19.503,-18.216,-15.147,74.6064,43.1046
--19.404,-19.306,-18.032,-14.994,73.843,43.64
--19.20996,-19.20996,-17.9487,-14.94108,73.114272,42.875
--19.11196,-19.11196,-17.7674,-14.8862,72.375744,43.6688
--18.62784,-18.72192,-17.4048,-14.48832,70.88928,45.031
--19.30698,-19.30698,-18.04572,-14.94108,73.114272,44.4015
--18.62784,-18.62784,-17.49888,-14.5824,70.88928,44.5312
--18.62982,-18.72391,-17.50074,-14.67804,70.896815,43.7955
--19.701,-19.701,-18.513,-15.642,74.6064,44.94
--18.81792,-19.008,-17.77248,-14.7312,71.631648,45.2034
--18.4338,-18.62,-17.4097,-14.3374,70.24395,42.693
--19.008,-19.2,-18.048,-14.88,72.432,44.23
--18.81,-19,-17.86,-14.725,71.6775,43.64
--19.502,-19.6,-18.424,-15.386,73.9508,43.169
--18.43776,-18.624,-17.50656,-14.52672,70.25904,41.8944
--19.008,-19.2,-18.048,-14.976,72.432,42.576
--18.62982,-18.818,-17.68892,-14.58395,70.990905,43.3008
--18.62784,-18.91008,-17.78112,-14.67648,70.98336,42.8554
--19.206,-19.497,-18.333,-15.229,73.1865,43.2232
--18.62784,-19.00416,-17.78112,-14.77056,70.98336,42.288
--18.82188,-19.20212,-18.0614,-14.92442,71.732276,42.4375
--18.905,-19.19,-18.05,-14.915,71.6775,43.25
--18.81792,-19.10304,-18.0576,-14.82624,71.70768,41.7984
--18.82188,-19.10706,-18.0614,-14.82936,71.81783,41.6615
--19.404,-19.796,-18.62,-15.288,74.039,42.091
--18.2457,-18.52215,-17.5085,-14.46755,69.62854,42.1562
--19.602,-19.998,-18.81,-15.642,74.7945,42.1245
--19.20996,-19.59804,-18.4338,-15.42618,73.29861,42.2334
--18.4338,-18.8062,-17.7821,-14.7098,70.33705,41.307
--19.602,-20.097,-18.909,-15.741,74.7945,43.14
--18.81792,-19.19808,-18.15264,-14.92128,71.80272,41.4144
--18.43776,-18.81024,-17.78592,-14.52672,70.35216,41.1668
--19.008,-19.392,-18.336,-15.264,72.528,42.36
--19.404,-19.894,-18.718,-15.288,74.039,43.06
--18.62982,-19.00618,-17.97119,-14.77213,71.084995,41.1668
--18.0576,-18.4224,-17.4192,-14.3184,68.91072,40.9536
--19.206,-19.594,-18.527,-15.326,73.2835,42.03
--18.82188,-19.20212,-18.15646,-15.01948,71.81783,41.1668
--18.62784,-19.00416,-17.96928,-14.48832,71.17152,40.56
--18.6219,-18.9981,-17.96355,-14.76585,71.148825,40.4225
--18.43776,-18.71712,-17.78592,-14.71296,70.44528,40.848
--19.8,-20.1,-19.1,-15.8,75.65,42.44
--19.01394,-19.49409,-18.34173,-15.07671,72.646695,41.9364
--19.206,-19.691,-18.624,-15.52,73.3805,41.3802
--18.43776,-18.90336,-17.87904,-14.80608,70.44528,40.9825
--19.602,-20.097,-19.008,-15.84,74.8935,42.14
--19.206,-19.691,-18.624,-15.326,73.3805,40.9825
--19.20996,-19.69506,-18.62784,-15.32916,73.39563,41.405
--18.2457,-18.70645,-17.6928,-14.5597,69.711475,41.0892
--19.008,-19.488,-18.432,-15.264,72.624,40.464
--18.0576,-18.5136,-17.5104,-14.5008,68.9928,40.4225
--18.43776,-18.90336,-17.87904,-14.80608,70.44528,41.5548
--19.40598,-19.89603,-18.81792,-15.58359,74.144565,42.6294
--18.0576,-18.6048,-17.5104,-14.4096,69.00192,40.812
--19.01592,-19.59216,-18.53572,-15.46244,72.65426,41.699
--18.43776,-18.99648,-17.97216,-14.80608,70.44528,41.2416
--19.404,-19.992,-18.914,-15.582,74.137,42.66
--19.404,-19.992,-18.914,-15.582,74.137,41.8068
--18.81792,-19.38816,-18.34272,-15.01632,71.89776,40.3584
--19.20996,-19.79208,-18.72486,-15.23214,73.39563,42.0156
--18.2457,-18.7986,-17.78495,-14.46755,69.70226,40.242
--19.20996,-19.79208,-18.72486,-15.42618,73.473246,41.4315
--19.8,-20.4,-19.3,-15.9,75.73,42.25
--18.0576,-18.6048,-17.6016,-14.4096,69.06576,40.318
--18.81,-19.38,-18.335,-15.105,71.9435,41.85
--19.8,-20.4,-19.3,-16,75.73,42.15
--18.2457,-18.7986,-17.78495,-14.5597,69.77598,40.7012
--19.40598,-19.99404,-18.91593,-15.77961,74.213172,41.5404
--19.008,-19.584,-18.528,-15.168,72.7008,41.85
--19.20996,-19.79208,-18.72486,-15.62022,73.473246,40.9052
--18.0576,-18.696,-17.6016,-14.592,69.06576,39.9936
--19.8,-20.5,-19.3,-15.9,75.73,41.85
--18.4338,-18.9924,-17.9683,-14.8029,70.50463,39.653
--18.62982,-19.19436,-18.15937,-15.0544,71.254357,40.8758
--19.20996,-19.79208,-18.72486,-15.5232,73.473246,41.2533
--18.62982,-19.19436,-18.15937,-15.14849,71.254357,40.5945
--18.6219,-19.28025,-18.2457,-15.048,71.224065,41.8275
--18.6219,-19.1862,-18.2457,-15.2361,71.318115,40.318
--18.2457,-18.7986,-17.8771,-14.65185,69.785195,40.318
--19.008,-19.68,-18.624,-15.36,72.7008,40.6656
--18.82188,-19.39224,-18.44164,-15.11454,71.988938,41.5128
--19.40598,-20.09205,-19.01394,-15.58359,74.222973,42.1245
--19.01592,-19.6882,-18.63176,-15.27036,72.817528,41.405
--19.206,-19.885,-18.818,-15.617,73.4581,41.0892
--19.40598,-20.09205,-19.01394,-15.38757,74.311182,42.6294
--18.62784,-19.2864,-18.25152,-15.0528,71.246784,41.232
--18.0576,-18.696,-17.6928,-14.592,69.06576,40.3488
--18.62982,-19.28845,-18.25346,-15.14849,71.254357,41.2735
--19.404,-20.09,-19.012,-15.582,74.3134,43.14
--17.8695,-18.50125,-17.5085,-14.44,68.436575,40.907
--18.0576,-18.696,-17.6928,-14.592,69.15696,40.4544
--18.62784,-19.2864,-18.25152,-15.14688,71.331456,40.7424
--18.43776,-19.0896,-18.06528,-14.99232,70.519776,41.3705
--17.8695,-18.50125,-17.5085,-14.44,68.436575,39.938
--19.20996,-19.8891,-18.82188,-15.5232,73.570266,41.6196
--18.62784,-19.2864,-18.25152,-15.14688,71.340864,41.1992
--19.20996,-19.8891,-18.82188,-15.5232,73.570266,41.6196
--19.01592,-19.6882,-18.63176,-15.3664,72.836736,41.013
--19.01592,-19.6882,-18.63176,-15.27036,72.827132,41.1894
--18.2457,-18.89075,-17.8771,-14.83615,69.86813,40.9825
--18.82188,-19.4873,-18.44164,-15.2096,72.074492,40.5945
--19.404,-20.09,-19.012,-15.582,74.3134,42.14
--18.6219,-19.28025,-18.2457,-15.2361,71.30871,41.6097
--19.206,-19.982,-18.818,-15.617,73.5551,42.44
--18.6219,-19.3743,-18.2457,-15.14205,71.318115,41.6196
--19.01394,-19.68615,-18.62982,-15.46083,72.809946,40.7788
--18.81792,-19.4832,-18.5328,-15.30144,72.201888,41.7285
--18.2457,-18.89075,-17.8771,-14.83615,70.006355,40.7691
--19.8,-20.5,-19.4,-15.9,75.82,42.44
--19.01394,-19.68615,-18.62982,-15.26877,72.809946,42.1245
--19.404,-20.09,-19.012,-15.582,74.4506,41.5912
--18.24768,-18.8928,-17.87904,-14.7456,70.013952,40.7424
--18.6219,-19.3743,-18.2457,-15.14205,71.318115,42.0156
--18.24768,-18.98496,-17.9712,-14.92992,69.875712,40.2816
--19.8,-20.5,-19.4,-16.1,75.83,44.15
--18.62982,-19.28845,-18.25346,-15.0544,71.348447,42.1562
--18.81,-19.475,-18.43,-15.295,71.9435,42.03
--18.62784,-19.2864,-18.25152,-15.33504,71.237376,41.0496
--18.81,-19.475,-18.525,-15.295,71.9435,40.4225
--19.01394,-19.68615,-18.62982,-15.3648,72.723519,41.0892
--19.20996,-19.98612,-18.82188,-15.62022,73.570266,42.1988
--18.6219,-19.28025,-18.2457,-15.048,71.224065,40.983
--18.62784,-19.38048,-18.3456,-15.0528,71.246784,41.3376
--18.81792,-19.57824,-18.43776,-15.2064,71.973792,40.7328
--18.82188,-19.58236,-18.5367,-15.30466,71.998444,41.9832
--18.2457,-18.9829,-17.96925,-14.83615,69.877345,40.622
--19.602,-20.394,-19.305,-15.84,75.0618,42.1245
--18.6219,-19.3743,-18.33975,-14.95395,71.318115,42.0156
--19.01592,-19.6882,-18.63176,-15.46244,72.827132,41.797
--18.4338,-19.1786,-18.1545,-14.9891,70.58842,40.242
--19.404,-20.188,-19.012,-15.876,74.3134,42.54
--18.81,-19.475,-18.525,-15.39,72.0385,40.242
--19.008,-19.68,-18.624,-15.264,72.7872,40.848
--19.01592,-19.78424,-18.7278,-15.3664,72.817528,41.699
--19.40598,-20.09205,-19.11195,-15.6816,74.311182,42.0156
--17.8695,-18.50125,-17.59875,-14.44,68.436575,40.318
--18.0576,-18.7872,-17.784,-14.592,69.15696,40.944
--18.2457,-18.89075,-17.8771,-14.65185,69.877345,40.242
--18.72192,-19.38048,-18.25152,-15.14688,71.472576,41.699
--19.602,-20.295,-19.305,-15.84,75.2103,42.0156
--19.10997,-19.68615,-18.72585,-15.55686,72.953991,41.9364
--19.104,-19.68,-18.72,-15.36,72.9312,40.3488
--18.72391,-19.28845,-18.25346,-14.96031,71.480173,43.4075
--19.303,-19.885,-18.915,-15.52,73.6909,43.36
--18.5269,-19.0855,-18.0614,-14.896,70.72807,40.622
--18.33785,-18.9829,-17.96925,-14.65185,70.006355,41.192
--18.905,-19.57,-18.525,-15.105,72.029,41.1825
--18.71595,-19.28025,-18.33975,-15.2361,71.449785,42.7086
--18.0576,-18.696,-17.784,-14.592,69.28464,40.4225
--18.91296,-19.4832,-18.43776,-15.2064,72.201888,42.0156
--18.33984,-18.8928,-17.87904,-14.7456,70.023168,42.1056
--19.303,-19.885,-18.818,-15.52,73.5454,42.3405
--18.81792,-19.4832,-18.43776,-15.39648,72.201888,43.0254
--18.33785,-12.1638,-13.17745,2.3959,69.86813,41.5625
--19.404,-8.33,-10.878,3.43,74.3036,43.64
--19.206,-8.051,-8.633,2.91,73.5454,43.14
--19.8,-5.4,-7,7.4,75.83,42.95
--18.62784,-2.25792,-5.26848,7.80864,71.331456,42.1988
--18.62784,-5.45664,-6.49152,-1.4112,71.340864,42.2772
--18.62784,-7.71456,-7.43232,-3.7632,71.340864,42.5908
--19.01394,-8.73873,-7.87446,-5.18562,72.809946,42.6218
--18.82188,-9.506,-8.0801,-6.55914,72.083998,41.8458
--18.6219,-9.9693,-8.0883,-6.48945,71.30871,40.983
--18.2457,-10.04435,-8.20135,-6.17405,69.877345,41.9525
--19.30797,-10.87911,-8.91891,-6.8607,74.320983,42.9264
--19.503,-11.187,-9.207,-6.831,75.2103,43.06
--18.72682,-10.9319,-9.0307,-6.84432,72.226588,41.6712
--17.8752,-10.7616,-8.8464,-7.4784,69.28464,40.8025
--18.82188,-11.81169,-9.69903,-8.45064,72.963594,41.4772
--18.25152,-11.82624,-9.59136,-8.00832,70.743264,42.0592
--18.62,-12.065,-9.975,-7.885,72.0385,42.36
--18.3456,-12.04224,-10.06656,-7.90272,71.331456,42.1988
--18.72585,-12.38787,-10.46727,-8.06652,72.819549,41.3705
--18.525,-12.35,-10.45,-8.17,72.0385,42.76
--18.2457,-12.32055,-10.5336,-8.2764,71.318115,40.527
--18.82188,-12.90366,-11.06028,-8.92584,73.570266,42.7086
--18.44164,-13.11828,-11.12202,-9.12576,72.074492,41.4772
--18.44164,-13.3084,-11.31214,-9.12576,72.083998,41.8458
--18.15744,-13.26528,-11.2896,-9.03168,71.340864,41.4144
--19.107,-13.959,-12.078,-9.504,74.9727,46.94
--18.53572,-13.54164,-11.81292,-9.31588,72.731092,48.3434
--18.24768,-13.49568,-11.78496,-9.21888,71.973792,49.3416
--18.624,-13.774,-12.125,-9.409,73.4581,50.83
--18.06528,-13.45487,-11.85534,-9.12673,71.254357,48.4515
--18.43968,-13.82976,-12.19708,-9.604,72.731092,47.0792
--17.4192,-13.224,-11.6736,-9.2112,69.06576,45.888
--18.71991,-14.30946,-12.7413,-10.29105,74.222973,45.9756
--18.15264,-14.06592,-12.45024,-9.88416,71.973792,46.0746
--19.1,-15.1,-13.3,-10.7,75.73,44.93
--17.8752,-14.30016,-12.60672,-9.97248,71.246784,43.6224
--17.8695,-14.2956,-12.69675,-9.9693,71.224065,44.6985
--18.0614,-14.44912,-12.92816,-10.07636,71.988938,45.423
--17.77545,-14.2956,-12.7908,-9.9693,71.224065,45.258
--17.78112,-14.39424,-12.88896,-9.97248,71.246784,44.247
--17.05725,-13.80825,-12.4545,-9.65675,68.346325,44.6975
--18.33678,-14.94108,-13.38876,-10.6722,73.473246,45.6092
--18.424,-15.19,-13.622,-10.682,74.2154,48.56
--18.42588,-15.28956,-13.7214,-10.87911,74.222973,47.6685
--18.048,-15.168,-13.536,-10.752,72.7008,48.45
--17.1456,-14.5008,-12.9504,-10.1232,69.06576,46.896
--17.77622,-15.01948,-13.59358,-10.64672,71.988938,48.3545
--17.952,-15.168,-13.728,-10.848,72.7008,48.0288
--17.0544,-14.4096,-13.1328,-10.488,69.06576,47.7408
--18.326,-15.582,-14.112,-11.172,74.2154,51.499
--17.14176,-14.65344,-13.3632,-10.87488,69.792768,49.8528
--17.50074,-15.14849,-13.73714,-11.00853,71.254357,51.5458
--17.68116,-15.39972,-13.87876,-11.21708,72.074492,49.5961
--18.042,-15.714,-14.259,-11.64,73.5454,47.6658
--17.5824,-15.49152,-14.06592,-11.49984,72.068832,44.9664
--16.872,-14.9568,-13.5888,-11.1264,69.15696,45.1535
--17.04775,-15.1126,-13.73035,-11.15015,69.877345,46.132
--17.66952,-15.74892,-14.4045,-11.71566,72.819549,45.5318
--17.1304,-15.3615,-13.965,-11.3582,70.59773,44.878
--17.67136,-15.8466,-14.50204,-11.90896,72.827132,46.2952
--17.48,-15.77,-14.44,-11.78,72.0385,46.25
--17.21115,-15.70635,-14.2956,-11.75625,71.318115,43.0635
--17.21664,-15.71136,-14.39424,-11.76,71.472576,43.0656
--18.3,-16.8,-15.4,-12.6,75.97,44.85
--17.04096,-15.64416,-14.34048,-11.54688,70.743264,44.0768
--17.21664,-15.80544,-14.48832,-11.85408,71.472576,44.639
--18.018,-16.731,-15.345,-12.573,75.2994,45.44
--17.65764,-16.4934,-15.13512,-12.22452,73.706094,44.9955
--18.2,-17,-15.6,-13,75.97,45.15
--17.29728,-16.1568,-14.92128,-12.07008,72.296928,44.8767
--16.8511,-15.827,-14.6167,-11.9168,70.82117,44.737
--16.33525,-15.43275,-14.2595,-11.46175,68.653175,42.8925
--17.02305,-16.08255,-14.8599,-12.0384,71.53443,43.0635
--17.195,-16.34,-15.105,-12.255,72.2665,45.55
--17.2854,-16.51716,-15.26877,-12.57993,73.146051,44.8767
--16.929,-16.27065,-15.048,-12.2265,71.637885,45.0945
--16.7616,-16.10976,-14.8992,-12.19872,70.929504,44.4
--17.1072,-16.44192,-15.2064,-12.45024,72.391968,43.44
--16.416,-15.8688,-14.6832,-11.7648,69.46704,43.728
--17.1108,-16.54044,-15.30466,-12.3578,72.407202,44.737
--17.005,-16.53,-15.295,-12.445,72.352,45.55
--17.36658,-16.88148,-15.71724,-12.70962,73.997154,44.639
--16.66848,-16.296,-15.08544,-12.19872,71.013312,44.7558
--17.005,-16.53,-15.39,-12.54,72.447,45.66
--16.92068,-16.6355,-15.39972,-12.54792,72.492756,44.737
--17.088,-16.896,-15.648,-12.864,73.2096,46.04
--16.92068,-16.73056,-15.49478,-12.54792,72.492756,45.0468
--17.088,-16.896,-15.744,-12.768,73.2096,46.44
--16.57536,-16.38912,-15.27168,-12.5712,71.022624,45.0468
--16.40448,-16.22016,-15.11424,-12.4416,70.290432,44.2944
--16.82562,-16.82562,-15.6849,-12.73804,72.492756,46.3932
--17.7,-17.7,-16.5,-13.3,76.27,45.95
--16.992,-16.992,-15.84,-12.864,73.2096,45.95
--16.64685,-16.7409,-15.51825,-12.7908,71.731935,45.4905
--16.48224,-16.66848,-15.45792,-12.66432,71.013312,45.168
--17.7,-17.9,-16.6,-13.7,76.26,46.76
--16.99731,-17.18937,-15.94098,-12.96405,73.232478,45.9756
--16.0512,-16.3248,-15.2304,-12.4032,69.54912,44.5824
--15.884,-16.15475,-15.07175,-12.18375,68.82465,43.9375
--16.896,-17.28,-16.128,-13.056,73.2096,46.25
--16.72704,-17.1072,-15.96672,-13.02048,72.477504,46.0746
--17.24976,-17.6418,-16.46568,-13.32936,74.742426,45.9756
--16.55808,-16.9344,-15.80544,-12.98304,71.754816,45.5112
--16.90128,-17.38143,-16.13304,-13.25214,73.232478,46.3716
--16.12625,-16.67915,-15.4812,-12.80885,70.27359,45.1438
--16.72704,-17.20224,-16.06176,-13.02048,72.572544,45.4905
--16.975,-17.557,-16.393,-13.483,74.0692,44.7558
--16.8,-17.472,-16.224,-13.248,73.3056,44.7936
--17.15,-17.836,-16.66,-13.426,74.8328,45.5112
--17.15,-17.836,-16.66,-13.426,74.8328,46.65
--16.807,-17.47928,-16.3268,-13.34956,73.336144,45.8248
--17.15,-17.934,-16.66,-13.622,74.8426,45.7268
--16.46575,-17.21847,-16.08939,-12.89033,71.847124,44.8625
--16.46575,-17.12438,-16.08939,-12.98442,71.847124,44.7558
--16.9785,-17.65764,-16.4934,-13.19472,74.084472,44.8252
--16.80525,-17.47746,-16.42113,-13.15611,73.338111,44.5812
--16.296,-16.94784,-15.92352,-12.94368,71.106432,44.0064
--16.80525,-17.57349,-16.42113,-13.25214,73.328508,44.9692
--16.3647,-17.21115,-16.08255,-12.9789,71.81658,43.9375
--16.45875,-17.21115,-16.08255,-12.7908,71.81658,43.7285
--15.8688,-16.5984,-15.5952,-12.5856,69.64032,43.738
--16.71096,-17.47928,-16.42284,-13.34956,73.336144,44.5312
--16.1994,-17.0373,-15.9201,-12.8478,71.09116,44.4234
--16.36992,-17.21664,-16.18176,-13.07712,71.933568,44.639
--16.878,-17.848,-16.684,-13.289,74.0692,44.3678
--16.54044,-17.39598,-16.35032,-13.11828,72.587816,44.4234
--16.36992,-17.21664,-16.18176,-12.88896,71.839488,43.728
--16.704,-17.568,-16.512,-13.248,73.3056,44.112
--16.704,-17.664,-16.512,-13.536,73.3056,45.85
--16.20288,-17.2272,-16.01664,-13.0368,71.199552,44.1835
--16.54044,-17.5861,-16.44538,-13.11828,72.682876,44.639
--16.36992,-17.31072,-16.18176,-12.88896,71.92416,44.8252
--15.8688,-16.6896,-15.6864,-12.6768,69.73152,43.5264
--16.88148,-17.75466,-16.78446,-13.38876,74.181492,44.7975
--16.20288,-17.13408,-16.10976,-13.0368,71.19024,43.6224
--15.8688,-16.872,-15.7776,-12.9504,69.73152,43.2725
--17.4,-18.5,-17.3,-13.8,76.46,45.95
--16.3647,-17.3052,-16.27065,-13.07295,71.91063,43.377
--16.70922,-17.66952,-16.61319,-13.06008,73.424538,44.0768
--15.7035,-16.606,-15.61325,-12.635,69.00515,43.5575
--16.3647,-17.3052,-16.27065,-13.07295,71.91063,45.5796
--17.226,-18.216,-17.127,-13.86,75.6954,45.3915
--16.03584,-17.0496,-16.03584,-12.9024,70.465536,43.248
--16.0341,-17.04775,-15.94195,-12.80885,70.45789,43.9701
--16.53,-17.48,-16.435,-13.11,72.637,43.377
--16.1994,-17.2235,-16.1994,-12.9409,71.18426,42.9875
--16.878,-18.042,-16.878,-13.58,74.1662,45.55
--16.0341,-17.1399,-16.0341,-12.901,70.45789,43.8925
--16.44538,-17.68116,-16.54044,-13.3084,72.682876,44.639
--16.3647,-17.39925,-16.3647,-13.07295,71.91063,44.5995
--16.61319,-17.76555,-16.70922,-13.34817,73.424538,43.6888
--16.70922,-17.66952,-16.70922,-13.34817,73.424538,45.2034
--16.44192,-17.67744,-16.632,-13.59072,72.667584,43.6224
--16.44192,-17.77248,-16.632,-13.49568,72.667584,44.8866
--16.1063,-17.4097,-16.2925,-13.1271,71.18426,45.031
--16.878,-18.042,-16.975,-13.483,74.1759,43.7955
--16.878,-17.945,-16.975,-13.386,74.1662,45.85
--17.052,-18.13,-17.052,-13.72,74.9308,45.25
--16.10976,-17.2272,-16.20288,-13.12992,71.19024,43.6985
--16.54044,-17.68116,-16.6355,-13.49852,72.682876,43.4075
--16.878,-18.139,-16.975,-13.677,74.1662,43.8925
--16.70922,-17.86158,-16.80525,-13.34817,73.424538,44.9692
--16.70922,-17.86158,-16.80525,-13.34817,73.414935,43.1165
--16.704,-17.568,-15.744,-12.672,73.4016,43.0656
--16.70922,-16.70922,-14.30847,-11.13948,73.424538,44.8866
--16.3647,-15.33015,-12.88485,-9.5931,71.91063,44.4114
--16.0341,-14.1911,-11.70305,-8.8464,70.45789,42.7975
--15.7035,-13.357,-10.73975,-7.7615,69.00515,42.693
--16.71096,-13.63768,-10.66044,-7.10696,73.432184,44.0412
--16.54044,-13.02322,-9.88624,-6.1789,72.682876,43.4075
--17.4,-13.3,-9.7,-5.5,76.45,45.33
--16.36992,-12.13632,-8.4672,-4.13952,71.933568,43.9628
--16.53,-11.78,-7.98,-3.705,72.637,42.408
--17.05374,-11.66319,-7.54677,-3.72438,74.938446,44.5995
--16.88148,-10.86624,-6.88842,-4.55994,74.181492,44.247
--16.704,-10.176,-6.432,-4.896,73.4016,44.75
--16.1994,-9.2169,-5.8653,-4.5619,71.18426,42.617
--16.36992,-8.65536,-5.36256,-4.42176,71.92416,43.7472
--16.36992,-7.90272,-4.98624,-4.42176,71.933568,43.344
--15.8688,-6.9312,-4.3776,-3.7392,69.73152,42.672
--16.53,-6.46,-3.895,-3.135,72.637,44.75
--16.878,-5.82,-3.007,-2.813,74.1662,44.56
--16.20288,-5.02848,-2.14176,-1.95552,71.199552,43.8052
--16.0341,-4.0546,-1.1058,-1.4744,70.448675,42.2275
--16.78446,-3.68676,-0.09702,-1.35828,74.17179,44.0055
--16.608,-3.168,0.768,-0.672,73.4016,42.672
--16.435,-1.995,1.9,-0.57,72.637,44.64
--15.61325,-1.35375,2.79775,-0.09025,68.996125,42.617
--15.94195,-0.64505,3.96245,0.5529,70.45789,43.9022
--16.44538,-0.28518,5.13324,0.66542,72.67337,43.2768
--16.684,0.388,6.208,0.97,74.1565,45.15
--17.127,0.891,7.425,1.683,75.6954,44.4114
--17.028,1.485,8.613,1.881,75.6954,44.7975
--15.8498,2.0273,8.93855,2.2116,70.448675,43.4075
--15.8498,2.7645,10.04435,2.67235,70.45789,43.5918
--16.0132,3.5378,11.172,3.1654,71.18426,42.8925
--16.35032,4.08758,12.73804,3.51722,72.682876,45.325
--16.929,4.752,14.454,3.96,75.6954,45.6786
--17.1,5.7,15.6,4.5,76.46,44.86
--15.9201,5.8653,15.6408,4.7481,71.18426,43.561
--16.83,6.93,17.82,5.643,75.6954,44.35
--16.6617,7.64478,18.91593,6.07662,74.938446,44.8767
--16.66,8.134,19.992,6.174,74.9308,43.169
--15.6655,8.4778,19.81225,6.72695,70.45789,42.8925
--15.89445,9.2169,21.16125,7.42995,71.91063,45.1935
--15.90121,9.97354,22.01706,7.99765,71.941214,43.5142
--16.224,11.136,23.616,8.64,73.4016,43.248
--16.8,12.1,25.7,9.6,76.46,44.45
--15.87502,12.26274,25.38102,9.506,72.587816,43.7472
--16.032,13.056,26.688,10.176,73.3056,44.45
--16.366,13.916,27.832,10.78,74.9308,44.0412
--15.77,14.155,27.93,11.115,72.542,43.0635
--16.268,15.484,29.4,12.348,74.8328,47.05
--16.005,16.005,30.167,12.319,74.0692,46.03
--15.675,16.53,30.115,12.54,72.542,45.77
--14.9568,16.6896,29.7312,12.5856,69.64032,42.693
--15.908,18.139,32.01,13.968,74.0692,43.8925
--15.33504,18.15744,31.42272,13.92384,71.839488,43.1424
--14.6205,18.05,30.95575,13.98875,68.9149,43.168
--15.55848,19.97632,33.80608,15.27036,73.336144,44.4234
--15.30144,20.62368,34.2144,15.58656,72.572544,44.2944
--15.36,21.216,35.424,15.936,73.3152,45.74
--15.105,21.755,35.72,16.34,72.542,45.55
--15.582,22.834,38.024,17.444,74.8328,45.04
--14.5597,22.116,36.3071,17.04775,70.374955,43.548
--14.46912,22.85568,36.864,17.0496,70.373376,43.8336
--14.3754,23.31395,37.50505,17.6928,70.36574,42.617
--14.98224,25.06644,39.56848,18.91988,73.336144,44.5312
--15.092,25.872,41.16,19.796,74.8328,45.325
--14.94108,26.48646,41.42754,20.18016,74.084472,44.9856
--14.54112,26.23104,41.15232,20.24352,72.572544,43.2384
--13.8624,25.992,40.128,20.064,69.64032,42.5125
--14.798,28.518,43.708,21.462,74.8426,45.45
--14.406,28.71596,43.31404,21.89712,73.336144,43.561
--14.01792,28.60032,42.90048,22.01472,71.839488,43.056
--13.78176,28.96032,42.92832,22.16256,71.106432,43.9701
--13.82976,29.54112,43.93536,22.76736,71.839488,44.149
--13.73568,29.91744,44.49984,23.42592,71.839488,43.8336
--13.68576,31.07808,45.6192,24.04512,72.572544,44.5896
--13.871,32.495,47.045,24.929,74.0692,45.44
--13.632,32.736,47.04,25.248,73.3056,44.45
--13.1271,32.1195,46.0845,24.9508,71.10047,44.0412
--14,34.7,49.9,27.1,76.36,44.56
--12.98442,33.02559,47.51545,26.25111,71.847124,44.0768
--13.15611,34.28271,48.87927,27.46458,73.328508,45.8865
--13.328,35.868,50.372,28.42,74.8328,44.345
--12.47808,34.36128,48.32928,27.28416,71.106432,43.2384
--12.77199,36.01125,50.22369,28.809,73.328508,43.5142
--12.936,37.044,51.94,29.694,74.8328,43.25
--11.856,35.0208,48.6096,28.0896,69.64032,43.824
--12.26274,36.78822,51.14228,29.75378,72.597322,43.1262
--12.19708,38.12788,52.05368,30.63676,73.336144,44.5312
--12.474,39.699,53.955,31.878,75.5964,45.9756
--12.152,39.298,53.998,31.948,74.8328,45.2172
--11.931,39.867,53.835,31.719,74.0692,46.14
--11.38368,38.29056,51.64992,32.55168,71.839488,43.44
--11.662,39.592,53.116,35.378,74.8328,45.1094
--11.56518,39.30201,52.33734,35.77365,74.840436,44.7975
--11.368,39.2,51.646,35.182,74.8328,45.1094
--11.286,39.501,51.579,35.145,75.6063,45.85
--10.961,38.509,49.858,34.338,74.0692,46.03
--10.22865,35.10915,45.7064,35.5699,70.36574,44.5715
--9.83725,32.49,42.68825,34.1145,68.9149,43.453
--10.16064,32.83392,42.99456,35.18592,71.839488,45.1094
--9.7679,32.2525,41.74395,34.0955,70.36574,45.0468
--9.6824,31.0023,40.4985,32.9574,71.09116,45.619
--9.69612,30.22908,39.54496,33.17594,72.587816,45.2172
--9.7,30.361,38.703,33.465,74.0692,44.7655
--9.60498,30.08907,37.63584,32.3433,74.840436,45.2034
--9.12,27.835,35.245,31.065,72.542,42.332
--8.7514,26.8128,33.3298,29.792,71.09116,42.617
--8.83568,26.79516,33.22984,29.96448,73.336144,44.5312
--8.4672,25.4016,31.5168,28.97664,71.839488,43.5168
--8.712,26.136,32.175,29.7,75.5964,44.86
--8.09088,24.08448,29.6352,27.65952,71.839488,43.5168
--7.8204,23.1819,28.4886,26.999,71.09116,44.7468
--7.79492,23.19464,28.23282,26.99704,72.587816,44.2805
--7.68,22.944,27.744,26.112,73.3056,45.04
--7.8,23.2,28.1,27,76.36,44.86
--7.2,21.792,26.4,25.536,73.3056,44.45
--6.93792,20.9088,25.37568,24.90048,72.572544,42.7776
--6.6101,19.9234,24.206,23.9267,71.08185,43.6688
--6.831,20.691,25.146,24.849,75.6954,45.15
--6.56667,19.99404,24.30648,24.20847,74.938446,44.7975
--6.5,19.9,24.1,24.1,76.46,45.15
--5.80545,17.96925,21.65525,21.83955,70.45789,44.5812
--5.73705,17.77545,21.6315,21.8196,71.91063,44.5896
--5.60736,17.48736,21.384,21.57408,72.65808,44.9856
--5.41728,17.1072,20.81376,21.19392,72.65808,45.0945
--5.28165,16.90128,20.55042,21.22263,73.414935,44.6985
--5.194,16.758,20.482,20.972,74.9308,44.5312
--4.70016,15.29856,18.80064,19.53792,70.465536,42.5664
--4.704,15.552,19.2,19.968,73.4016,44.56
--4.512,15.264,18.72,19.488,73.4016,42.8544
--4.275,14.725,18.145,18.905,72.637,42.617
--4.05504,13.73184,17.14176,17.9712,70.465536,42.672
--3.7905,13.08625,16.4255,17.23775,69.00515,42.332
--3.8808,13.77684,17.26956,18.23976,74.181492,43.7472
--3.68676,13.48578,16.88148,17.9487,74.181492,44.0154
--3.45708,12.96405,16.3251,17.2854,73.424538,43.5142
--3.5,13,16.6,17.7,76.46,43.86
--3.20166,12.32154,15.71724,16.88148,74.181492,43.7976
--2.91648,11.66592,14.86464,15.9936,71.92416,42.8544
--2.784,11.616,14.88,16.032,73.4112,43.1424
--2.772,11.583,14.949,16.038,75.6954,44.35
--2.44608,10.53696,13.82976,14.86464,71.933568,42.96
--2.328,10.573,13.871,15.132,74.1662,44.35
--2.0482,9.8686,12.9409,14.4305,71.18426,43.855
--1.9152,9.576,12.4944,13.8624,69.7224,42.672
--1.84338,9.79902,12.90366,14.16492,74.181492,42.9828
--1.63251,9.21888,12.38787,13.92435,73.414935,44.4015
--1.53648,8.93079,12.09978,13.73229,73.424538,42.6218
--1.33056,8.64864,11.68992,13.3056,72.667584,43.7184
--1.21056,8.3808,11.08128,12.85056,71.199552,44.0768
--1.03488,8.18496,10.91328,12.60672,71.933568,42
--0.9312,7.63584,10.52256,12.19872,71.199552,41.904
--0.77616,7.56756,10.6722,12.41856,74.181492,44.1392
--0.6517,7.1687,9.9617,11.7306,71.18426,40.7075
--0.4704,7.056,9.78432,11.85408,71.933568,42.1988
--0.37636,6.86857,9.50309,11.47898,71.941214,42.0592
--0.29403,6.8607,9.60498,11.46717,74.938446,43.7976
--0.09405,6.2073,8.8407,10.81575,71.91063,41.287
-0,6.02112,8.65536,10.72512,71.92416,41.7216
-0.097,6.014,8.633,10.961,74.1662,42.5442
-0.28512,5.79744,8.26848,10.4544,72.667584,44.4114
-0.38412,5.66577,8.06652,10.17918,73.424538,43.1165
-0.4752,5.2272,7.69824,9.78912,72.667584,43.4496
-0.5529,4.69965,7.1877,9.3993,70.45789,42.408
-0.66528,4.65696,7.22304,9.40896,72.667584,43.6095
-0.88209,4.80249,7.15473,9.60498,74.938446,43.6095
-0.96,4.512,6.816,9.216,73.4016,42.4704
-1.078,4.41,6.762,9.016,74.9308,44.56
-1.12896,3.85728,6.20928,8.37312,71.92416,42.7776
-1.22304,3.57504,5.92704,8.18496,71.933568,43.0612
-1.33,3.42,5.795,8.36,72.7225,42.028
-1.425,3.325,5.605,8.17,72.637,44.35
-1.52,3.23,5.415,7.885,72.732,41.743
-1.59953,3.19906,5.17495,7.71538,71.941214,43.3008
-1.74636,3.00762,5.04504,7.47054,74.278512,43.3552
-1.80614,2.56662,4.753,7.1295,72.777936,43.2232
-1.9206,2.30472,4.51341,7.10622,73.424538,43.1165
-1.9152,2.0976,4.104,6.7488,69.8136,42.3936
-2.15622,2.25423,4.31244,6.95871,75.036456,43.8966
-2.09088,2.09088,3.99168,6.84288,72.762624,42.1824
-2.20892,1.9208,3.8416,6.62676,73.51862,43.0612
-2.328,1.649,3.686,6.208,74.2535,43.64
-2.30375,1.19795,3.22525,5.7133,70.55004,43.4075
-2.4255,1.16424,3.20166,6.11226,74.278512,43.7184
-2.3959,0.9215,2.85665,5.43685,70.55004,42.028
-2.7,1,2.9,6,76.55,44.05
-2.6334,0.7524,2.53935,5.4549,71.995275,42.693
-2.60736,0.65184,2.42112,5.21472,71.292672,43.4075
-2.75616,0.57024,2.28096,5.03712,72.75312,42.1824
-2.871,0.297,2.178,4.851,75.7845,43.8966
-2.9106,-0.09702,1.84338,4.851,74.26881,42.9828
-2.91648,-0.28224,1.69344,4.51584,72.01824,43.169
-2.97693,-0.28809,1.53648,4.60944,73.520568,42.7285
-2.97984,-0.37248,1.3968,4.37664,71.292672,43.5142
-3.0096,-0.3762,1.22265,4.42035,72.00468,42.332
-2.9792,-0.4655,1.1172,4.1895,71.36115,42.9828
-3.20166,-0.67914,0.9702,3.8808,74.278512,42.875
-3.0723,-1.0241,0.7448,3.4447,71.26805,43.0612
-3.332,-1.372,0.588,3.528,75.019,42.777
-3.1008,-1.2768,0.3648,3.2832,69.8136,42
-3.16608,-1.3968,0.27936,3.2592,71.37648,41.9525
-3.36,-1.44,0.192,3.264,73.584,43.86
-3.29175,-1.5048,0,3.10365,72.089325,42.9264
-3.36105,-1.53648,-0.09603,3.07296,73.606995,43.0254
-3.49272,-1.74636,-0.29106,2.52252,74.36583,42.5908
-3.249,-1.9855,-0.361,2.25625,69.176625,41.363
-3.49272,-2.4255,-0.58212,2.32848,74.36583,43.6095
-3.42144,-2.376,-0.76032,2.47104,72.84816,41.904
-3.44544,-2.328,-0.83808,2.42112,71.37648,42.6218
-3.4447,-2.3275,-0.931,2.1413,71.36115,42.028
-3.515,-2.47,-1.045,2.28,72.827,43.94
-3.589,-2.619,-1.164,1.843,74.3505,42.5442
-3.515,-2.755,-1.33,1.805,72.8175,44.75
-3.626,-3.136,-1.568,1.568,75.117,43.2768
-3.61228,-3.23204,-1.61602,1.33084,72.86349,42.7285
-3.724,-3.43,-1.862,1.47,75.117,42.875
-3.61152,-3.3264,-1.9008,1.33056,72.84816,43.5006
-3.64952,-3.45744,-2.01684,1.24852,73.624264,43.169
-3.57504,-3.38688,-2.06976,1.12896,72.11232,42.1056
-3.724,-3.724,-2.254,1.078,75.117,43.169
-3.5378,-3.724,-2.2344,0.931,71.36115,42.2275
-3.8,-4.1,-2.6,0.6,76.65,44.35
-3.5378,-3.9102,-2.5137,0.5586,71.36115,41.4675
-3.5739,-4.1382,-2.6334,0.3762,72.089325,43.2135
-3.68676,-4.3659,-2.81358,0.4851,74.36583,43.1046
-3.64914,-4.41738,-2.97693,0.19206,73.606995,42.7285
-3.50208,-4.33152,-2.94912,0.09216,70.64064,42
-3.57504,-4.51584,-3.10464,0.18816,72.121728,41.7216
-3.762,-4.851,-3.366,-0.099,75.8835,44.24
-3.4295,-4.5125,-3.249,-0.27075,69.176625,41.363
-3.589,-4.947,-3.492,-0.291,74.3602,42.4472
-3.40955,-4.7918,-3.5017,-0.5529,70.632975,42.4375
-3.3744,-4.8336,-3.5568,-0.5472,69.9048,41.4675
-3.62637,-5.39055,-4.01841,-0.58806,75.222675,43.7184
-3.47985,-5.2668,-3.85605,-0.47025,72.183375,43.0254
-3.626,-5.586,-4.116,-0.588,75.215,42.5908
-3.564,-5.742,-4.257,-1.089,75.9924,42.8175
-3.42216,-5.51348,-4.18264,-0.9506,72.95855,42.5908
-3.564,-5.841,-4.455,-1.089,75.9825,43.86
-3.43035,-5.97861,-4.60647,-1.37214,75.222675,43.0254
-3.5,-6.3,-4.9,-1.5,76.75,43.06
-3.395,-6.208,-4.753,-1.552,74.4475,42.4375
-3.22525,-5.8976,-4.6075,-1.38225,70.725125,42.5442
-3.2928,-5.92704,-4.79808,-1.59936,72.2064,42.385
-3.298,-6.402,-5.044,-2.522,74.4475,43.25
-3.0685,-6.22725,-4.8735,-2.166,69.266875,40.9165
-3.1654,-6.4239,-5.1205,-2.0482,71.45425,43.0612
-3.0723,-6.3308,-5.1205,-1.4896,71.45425,41.192
-3.267,-6.633,-5.445,-1.782,75.9726,43.94
-3.168,-6.432,-5.376,-1.824,73.68,41.7984
-3.0096,-6.3954,-5.36085,-2.16315,72.183375,41.5625
-3.10464,-6.88842,-5.72418,-2.52252,74.46285,43.169
-3.168,-7.326,-5.94,-2.772,75.9825,43.0254
-3.00762,-7.17948,-5.8212,-2.4255,74.46285,43.2036
-3.00762,-7.08246,-5.91822,-2.32848,74.472552,42.8848
-2.97693,-6.91416,-5.85783,-2.40075,73.703025,43.3125
-2.94,-7.056,-5.978,-2.352,75.215,43.169
-2.736,-6.6576,-5.6544,-2.4624,69.996,41.458
-2.7075,-6.76875,-5.68575,-2.61725,69.266875,41.287
-2.72832,-7.15008,-6.02112,-2.91648,72.2064,42.0096
-2.813,-7.566,-6.305,-3.007,74.4378,43.36
-2.60736,-7.35648,-6.14592,-2.97984,71.4696,41.7984
-2.688,-7.584,-6.432,-2.784,73.68,43.25
-2.43675,-7.22,-6.137,-2.97825,69.266875,41.572
-2.48805,-7.372,-6.2662,-3.04095,70.725125,41.363
-2.56608,-7.69824,-6.55776,-3.42144,72.9432,42.9264
-2.4453,-7.80615,-6.5835,-3.47985,72.183375,40.983
-2.35125,-7.9002,-6.67755,-3.47985,72.183375,42.4215
-2.376,-8.17344,-6.93792,-3.61152,72.9432,41.7984
-2.28,-7.9344,-6.6576,-3.5568,69.996,41.8944
-2.32848,-8.34372,-7.17948,-3.8808,74.46285,42.7672
-2.28144,-8.27022,-7.1295,-3.8024,72.95855,41.8458
-2.16384,-8.18496,-7.056,-3.7632,72.2064,42.1008
-2.277,-8.811,-7.524,-4.158,75.9825,42.9264
-2.112,-8.736,-7.488,-4.128,73.68,43.54
-2.15622,-9.01692,-7.64478,-4.50846,75.222675,43.3125
-1.97505,-8.6526,-7.42995,-4.1382,72.183375,41.667
-1.89525,-8.303,-7.12975,-3.70025,69.266875,41.8475
-1.9404,-8.82882,-7.7616,-4.26888,74.46285,42.6692
-1.98,-9.207,-8.019,-4.752,75.9825,43.0254
-1.78752,-9.03168,-7.80864,-4.98624,72.215808,42.3936
-1.78695,-9.2169,-7.9002,-4.8906,72.183375,43.7976
-1.764,-9.506,-8.232,-4.606,75.215,43.561
-1.76418,-9.31095,-8.33085,-4.41045,75.222675,43.7976
-1.615,-9.025,-8.075,-4.56,72.9125,44.45
-1.61568,-9.0288,-8.0784,-4.56192,72.9432,42.5664
-1.52096,-9.0307,-8.0801,-4.46782,72.95855,43.0612
-1.4256,-9.12384,-8.17344,-4.752,72.9432,41.8944
-1.41135,-9.31491,-8.18583,-5.17495,72.204666,43.4075
-1.34456,-9.70004,-8.45152,-5.2822,73.720304,43.071
-1.34456,-9.79608,-8.45152,-5.18616,73.7107,42.777
-1.287,-9.999,-8.811,-5.148,75.9825,43.86
-1.22304,-9.408,-8.4672,-4.98624,72.2064,42.1056
-1.164,-9.7,-8.73,-5.141,74.4475,42.4375
-1.056,-9.6,-8.64,-5.184,73.68,42.95
-1.067,-9.7,-8.73,-5.238,74.4475,43.64
-0.9506,-9.69612,-8.65046,-5.41842,72.95855,41.9525
-0.96,-9.984,-8.832,-5.664,73.68,41.6256
-0.8208,-9.576,-8.4816,-5.2896,69.996,40.7075
-0.7524,-9.87525,-8.74665,-5.54895,72.183375,41.667
-0.7372,-9.7679,-8.6621,-5.3447,70.725125,40.7075
-0.67228,-10.18024,-9.1238,-5.85844,73.7107,42.2772
-0.68607,-10.38906,-9.31095,-5.58657,75.232476,42.5205
-0.5586,-9.9617,-8.8445,-5.586,71.45425,40.5175
-0.495,-10.593,-9.504,-6.138,75.9825,42.6294
-0.47045,-10.25581,-9.12673,-5.92767,72.214075,41.6615
-0.37632,-10.25472,-9.21984,-5.73888,72.2064,42.385
-0.388,-10.67,-9.506,-6.208,74.4475,41.9525
-0.28518,-10.55166,-9.41094,-5.98878,72.95855,42.4928
-0.19206,-10.65933,-9.50697,-6.14592,73.703025,41.5548
-0.19404,-10.86624,-9.702,-6.40332,74.46285,42.3423
-0.099,-11.187,-9.999,-6.435,75.9726,43.75
-0,-10.41295,-9.30715,-6.2662,70.725125,42.1562
-0,-10.83684,-9.69612,-6.55914,72.95855,42.6692
--0.09408,-10.72512,-9.59616,-6.30336,72.2064,42.4704
--0.0931,-10.7065,-9.5893,-6.4239,71.45425,42.5908
--0.19206,-11.13948,-9.98712,-6.53004,73.712628,41.3802
--0.2793,-10.7996,-9.6824,-6.6101,71.45425,40.907
--0.3648,-10.6704,-9.576,-6.2928,69.996,41.3376
--0.38412,-11.23551,-10.08315,-6.62607,73.703025,41.6615
--0.47025,-11.00385,-9.9693,-6.5835,72.183375,42.3324
--0.47025,-11.0979,-10.06335,-6.67755,72.277425,40.8025
--0.576,-11.616,-10.368,-7.296,73.68,42.76
--0.576,-11.712,-10.464,-7.296,73.776,42.84
--0.67228,-11.5248,-10.46836,-7.01092,73.797136,41.405
--0.784,-11.76,-10.682,-7.154,75.215,41.5912
--0.7372,-11.058,-10.04435,-6.8191,70.817275,41.4869
--0.8379,-11.4513,-10.3341,-7.3549,71.54735,40.527
--0.9312,-11.64,-10.42944,-7.54272,71.56272,41.6615
--0.9215,-11.4266,-10.3208,-7.27985,70.80806,41.1668
--1.0032,-11.2176,-10.2144,-6.7488,70.07808,40.4225
--1.0032,-11.1264,-10.2144,-6.6576,70.0872,40.9536
--1.1058,-11.15015,-10.3208,-6.8191,70.817275,41.5645
--1.261,-11.737,-10.864,-7.372,74.5445,42.65
--1.26126,-11.73942,-10.96326,-7.66458,74.550168,42.2772
--1.2901,-11.4266,-10.5051,-7.64845,70.80806,41.2735
--1.41135,-11.94943,-10.72626,-7.71538,72.308165,41.4772
--1.4256,-12.07008,-10.9296,-7.69824,73.028736,41.9364
--1.52096,-12.07262,-10.9319,-7.50974,73.05361,41.405
--1.683,-12.375,-11.385,-7.623,76.0815,42.2334
--1.53425,-11.28125,-10.37875,-6.94925,69.357125,40.622
--1.746,-12.125,-11.252,-7.566,74.5445,43.54
--1.67616,-11.64,-10.7088,-7.26336,71.572032,41.6712
--1.78771,-11.85534,-10.91444,-7.5272,72.308165,41.0892
--1.805,-11.3715,-10.469,-7.12975,69.357125,41.192
--2.016,-12.192,-11.136,-7.776,73.776,43.46
--2.03742,-12.41856,-11.35134,-7.7616,74.55987,42.6294
--2.134,-12.416,-11.349,-8.051,74.5348,42.55
--2.1413,-11.9168,-10.9858,-7.6342,71.54735,40.5175
--2.14176,-12.1056,-10.98816,-7.82208,71.56272,41.3802
--2.23488,-12.1056,-11.08128,-7.72896,71.56272,40.9825
--2.28144,-12.3578,-11.31214,-7.88998,73.063116,41.0989
--2.30375,-11.9795,-11.058,-7.83275,70.817275,41.5645
--2.3465,-11.82275,-10.83,-7.85175,69.43835,40.318
--2.3465,-11.913,-10.92025,-7.7615,69.357125,41.0875
--2.592,-12.672,-11.616,-8.256,73.776,42.95
--2.4624,-12.0384,-11.0352,-8.1168,70.0872,41.0592
--2.5802,-12.25595,-11.2423,-7.9249,70.817275,41.3802
--2.842,-13.034,-11.956,-8.624,75.3032,42.66
--2.871,-13.266,-12.177,-8.613,76.0815,42.7086
--2.793,-12.4754,-11.4513,-8.1928,71.55666,40.6315
--2.7645,-12.44025,-11.4266,-7.9249,70.90021,40.698
--2.91648,-12.7008,-11.66592,-8.37312,72.30048,41.3376
--3.04192,-12.92816,-11.8825,-8.36528,73.14867,41.1668
--3.04192,-12.92816,-11.8825,-8.46034,73.05361,41.9832
--3.10365,-12.7908,-11.75625,-8.37045,72.277425,42.2334
--3.1977,-12.7908,-11.75625,-8.6526,72.371475,40.4225
--3.43,-13.524,-12.446,-9.604,75.411,41.8068
--3.465,-13.959,-12.672,-9.702,76.1706,43.06
--3.3174,-12.901,-11.7952,-8.56995,70.909425,41.363
--3.528,-13.622,-12.544,-9.016,75.4012,43.25
--3.40992,-12.71808,-11.79648,-8.47872,70.907904,41.4144
--3.724,-13.524,-12.544,-9.114,75.411,42.6692
--3.64952,-13.34956,-12.29312,-9.21984,73.90278,42.6692
--3.5017,-13.0853,-11.9795,-9.3993,70.909425,41.7682
--3.5568,-13.0416,-11.9472,-8.9376,70.1784,41.4675
--3.88,-13.774,-12.707,-9.312,74.6318,43.36
--3.84,-13.536,-12.576,-9.312,73.8624,40.9536
--3.85605,-13.167,-12.2265,-9.0288,72.371475,40.4225
--3.99252,-13.21334,-12.3578,-8.84058,73.14867,42.0592
--4.116,-13.622,-12.74,-9.212,75.4012,41.9048
--4.17186,-13.48578,-12.6126,-9.11988,74.647188,42.2772
--4.13996,-13.1726,-12.32579,-9.12673,72.402255,40.9825
--4.224,-13.728,-12.672,-9.6,73.872,42.55
--4.14675,-13.36175,-12.1638,-9.30715,70.90021,41.8458
--4.32,-13.92,-12.768,-9.504,73.872,41.3376
--4.37,-13.775,-12.635,-9.215,73.1025,41.287
--4.416,-13.728,-12.768,-9.216,73.872,41.4144
--4.33105,-13.17745,-12.25595,-8.8464,70.90021,42.1562
--4.8,-14.3,-13.3,-9.7,76.95,44.35
--4.56288,-13.59358,-12.73804,-8.93564,73.139164,42.091
--4.851,-14.256,-13.266,-9.504,76.1805,42.1245
--4.656,-13.40928,-12.47808,-9.12576,71.646528,42.3936
--4.656,-13.40928,-12.47808,-9.12576,71.65584,41.52
--4.84806,-13.7837,-12.8331,-9.506,73.14867,42.9128
--4.79859,-13.73714,-12.70215,-9.409,72.402255,41.3802
--4.79232,-13.45536,-12.4416,-9.30816,70.907904,40.7424
--4.8906,-13.82535,-12.7908,-9.49905,72.36207,42.4215
--5.194,-14.406,-13.328,-9.996,75.411,41.993
--5.0274,-13.7788,-12.7547,-9.4962,71.64045,40.318
--5.0787,-13.9194,-12.88485,-9.5931,72.371475,42.0156
--5.17495,-13.92532,-12.89033,-9.78536,72.392846,41.5645
--5.39,-14.602,-13.426,-10.192,75.4012,42.4928
--5.432,-14.453,-13.386,-10.088,74.6318,41.4772
--5.41728,-14.16096,-13.21056,-9.78912,73.13328,42.3423
--5.36313,-14.1135,-13.07851,-9.87945,72.402255,41.6615
--5.51232,-14.35104,-13.21056,-9.88416,73.13328,41.3376
--5.684,-14.896,-13.72,-10.486,75.4012,42.1988
--5.723,-14.744,-13.58,-9.991,74.6415,43.36
--5.88,-14.798,-13.72,-10.192,75.411,42.95
--5.643,-14.2956,-13.26105,-10.43955,72.371475,42.4215
--5.856,-14.88,-13.632,-10.848,73.8624,43.25
--5.68032,-14.4336,-13.22304,-9.96384,71.65584,41.7779
--5.6544,-13.9536,-13.0416,-9.6672,70.18752,41.6256
--5.83296,-14.30016,-13.35936,-9.8784,72.479232,41.136
--5.8653,-14.0581,-13.2202,-9.6824,71.72424,41.4675
--6.17463,-14.7015,-13.91742,-9.99702,75.506904,43.0254
--6.08,-14.25,-13.395,-9.975,73.188,43.54
--6.37,-14.896,-13.916,-10.976,75.411,42.4928
--6.1152,-14.5824,-13.45344,-10.53696,72.39456,42.4704
--6.14592,-14.4336,-13.31616,-10.33632,71.739648,41.9525
--6.402,-14.938,-13.871,-10.573,74.7288,42.0592
--6.432,-14.688,-13.728,-10.176,73.968,43.15
--6.566,-14.896,-14.014,-10.29,75.4992,43.75
--6.66468,-14.79951,-14.01543,-10.48707,75.506904,44.1936
--6.2928,-13.7712,-13.0416,-9.576,70.26048,41.363
--6.48945,-14.2956,-13.44915,-10.06335,72.45612,43.3125
--6.5856,-14.39424,-13.45344,-10.25472,72.479232,43.9628
--6.517,-14.3374,-13.3133,-10.0548,71.72424,42.875
--6.54336,-14.19264,-13.17888,-9.86112,71.00928,41.4144
--7.029,-15.246,-14.256,-10.791,76.2696,43.53
--6.84288,-14.7312,-13.68576,-10.16928,73.13328,41.904
--6.77448,-14.58395,-13.54896,-10.06763,72.486936,42.6218
--6.72768,-14.2848,-13.27104,-9.95328,71.00928,41.4144
--7.104,-14.88,-13.824,-10.464,73.9584,42.3936
--7.4,-15.6,-14.5,-11.1,77.04,43.65
--6.6785,-14.16925,-13.1765,-10.01775,69.5286,41.4675
--7.128,-14.92128,-13.7808,-10.4544,73.22832,44.4114
--7.1478,-14.6718,-13.7313,-10.25145,72.45612,43.7976
--7.296,-14.976,-14.016,-10.656,73.9584,44.05
--7.24416,-14.77056,-13.73568,-10.44288,72.479232,43.0612
--7.47054,-15.32916,-14.26194,-10.76922,74.75391,43.5006
--7.24416,-14.95872,-13.82976,-10.44288,72.39456,43.2768
--7.41,-15.01,-14.06,-10.545,73.1025,42.1325
--7.43311,-14.86622,-13.83123,-10.53808,72.486936,42.7285
--7.28064,-14.56128,-13.54752,-10.04544,71.00928,42.1824
--7.9,-15.8,-14.8,-11.2,77.04,44.05
--7.5264,-14.95872,-13.92384,-10.44288,72.479232,42.6692
--7.62048,-14.95872,-13.92384,-10.53696,72.48864,42.4928
--7.54272,-14.80608,-13.78176,-10.42944,71.739648,42.3405
--7.71456,-14.95872,-14.01792,-10.44288,72.479232,42
--7.63584,-14.80608,-13.87488,-10.33632,71.739648,42.2338
--7.88832,-15.11136,-14.16096,-10.73952,73.218816,43.7976
--8.3,-16,-14.9,-11.4,77.04,43.46
--8.232,-15.68,-14.602,-11.074,75.4992,42.287
--8.316,-15.939,-14.85,-11.286,76.2795,43.65
--8.064,-15.36,-14.4,-10.944,73.9584,41.52
--7.752,-14.592,-13.68,-10.2144,70.2696,41.363
--8.17516,-15.11454,-14.259,-10.64672,73.24373,42.0592
--8.17516,-15.2096,-14.259,-11.02696,73.234224,42.0592
--8.18583,-15.24258,-14.20759,-11.00853,72.486936,42.3405
--8.35461,-15.65289,-14.50053,-11.04345,73.981512,42.5205
--8.2764,-15.2361,-14.20155,-10.7217,72.45612,41.667
--8.8,-16.1,-15.1,-11.4,77.04,44.64
--8.9,-16.1,-15,-11.2,77.04,43.25
--8.46034,-15.2096,-14.259,-10.83684,73.234224,42.3405
--8.46034,-15.30466,-14.35406,-10.83684,73.24373,43.5142
--8.1225,-14.6205,-13.62775,-10.469,69.5286,41.192
--8.4721,-15.1753,-14.1512,-10.7065,71.72424,40.7075
--8.736,-15.648,-14.592,-11.328,73.9584,41.7216
--8.47392,-15.17856,-14.15424,-10.61568,71.739648,41.136
--8.56704,-15.08544,-14.15424,-10.7088,71.739648,41.3376
--8.74,-15.39,-14.44,-10.83,73.188,40.6315
--9.114,-15.876,-14.896,-11.172,75.4992,42.777
--9.207,-16.137,-15.147,-11.682,76.2696,44.1144
--8.93,-15.58,-14.535,-11.115,73.1975,43.36
--8.6621,-15.1126,-14.09895,-10.78155,70.99236,40.8025
--8.8407,-15.4242,-14.38965,-10.9098,72.45612,41.5625
--9.31,-15.974,-14.994,-11.466,75.4992,43.54
--9.312,-15.908,-14.841,-11.252,74.7288,41.7682
--9.03168,-15.42912,-14.39424,-11.19552,72.479232,41.2416
--9.6,-16.5,-15.4,-11.9,77.04,43.06
--9.506,-16.17,-15.092,-11.662,75.4992,42.091
--9.506,-16.17,-15.092,-11.662,75.4992,42.7476
--9.50796,-16.10532,-15.0381,-11.54538,74.75391,43.0254
--9.0307,-15.2969,-14.28325,-10.8737,70.99236,40.527
--9.702,-16.17,-15.19,-11.662,75.4992,42.85
--9.2169,-15.3615,-14.4305,-11.0789,71.72424,40.983
--9.21888,-15.27168,-14.4336,-11.08128,71.739648,41.4772
--9.312,-15.3648,-14.4336,-10.98816,71.739648,42.1562
--9.215,-15.2969,-14.28325,-11.058,70.983145,40.8025
--9.2112,-15.1392,-14.2272,-10.944,70.26048,40.812
--9.30715,-15.2969,-14.28325,-10.8737,71.08451,41.7682
--9.996,-16.268,-15.19,-11.466,75.4992,41.9048
--10.098,-16.434,-15.444,-11.583,76.2696,42.7086
--9.69612,-15.87502,-14.82936,-11.4072,73.234224,41.4772
--9.69127,-15.71303,-14.67804,-11.2908,72.486936,41.5645
--9.49145,-15.38905,-14.3754,-10.8737,70.99236,40.527
--9.88,-15.865,-14.82,-11.305,73.283,40.7075
--9.386,-14.9815,-14.079,-10.73975,69.61885,40.7075
--10.296,-16.434,-15.444,-11.88,76.2696,43.25
--9.9792,-15.87168,-14.92128,-11.49984,73.22832,42.6393
--9.576,-15.3216,-14.3184,-10.944,70.26048,40.6315
--9.87072,-15.55104,-14.61984,-11.1744,71.832768,40.848
--9.76896,-15.39072,-14.46912,-11.15136,71.000064,40.9536
--9.6672,-15.2304,-14.3184,-10.8528,70.26048,41.0592
--10.27521,-16.03701,-15.07671,-11.42757,73.981512,42.8175
--10.16928,-15.96672,-14.92128,-11.59488,73.218816,41.136
--10.692,-16.632,-15.543,-11.979,76.2696,42.6294
--10.1574,-15.89445,-14.8599,-11.4741,72.45612,40.983
--10.26432,-16.06176,-15.01632,-11.30976,73.22832,40.848
--10.25472,-15.80544,-14.86464,-11.2896,72.573312,41.8068
--9.9408,-15.3216,-14.4096,-10.944,70.35168,41.0592
--10.45,-15.96,-15.01,-11.59,73.1975,43.36
--10.3455,-15.8004,-14.8599,-11.56815,72.45612,42.4215
--10.56,-12.96,-12.096,-5.472,73.9584,42.85
--10.878,-12.544,-10.584,-5.488,75.4992,42.66
--10.33632,-13.22304,-11.82624,-8.75328,71.739648,41.8458
--10.545,-13.87,-12.635,-9.31,73.188,40.527
--10.75536,-14.11641,-12.86802,-9.79506,73.991115,42.3423
--10.64672,-14.16394,-12.92816,-10.17142,73.234224,41.993
--11.074,-14.994,-13.426,-11.074,75.4992,41.993
--10.62765,-14.4837,-12.9789,-10.25145,72.45612,42.0156
--10.74178,-14.54418,-13.11828,-10.36154,73.329284,40.7788
--10.62765,-14.2956,-13.07295,-9.9693,72.55017,42.6294
--10.72626,-14.20759,-13.07851,-9.87945,72.581026,43.2232
--11.172,-14.7,-13.622,-10.388,75.4992,42.76
--10.83456,-14.256,-13.3056,-10.07424,73.218816,40.4544
--10.37875,-13.80825,-12.72525,-10.2885,69.5286,40.147
--10.9319,-14.82936,-13.49852,-11.12202,73.234224,41.5128
--10.488,-14.2272,-13.0416,-10.3056,70.35168,40.907
--10.6894,-14.3754,-13.17745,-10.1365,71.08451,40.527
--10.5792,-14.136,-13.0416,-10.032,70.26048,40.3584
--11.13948,-14.69259,-13.73229,-10.46727,74.077542,43.3125
--10.69056,-14.10048,-13.17888,-9.95328,71.000064,40.7424
--11.115,-14.535,-13.585,-10.165,73.1975,40.983
--11.349,-14.841,-13.871,-10.573,74.7385,41.1668
--11.10144,-14.48832,-13.54752,-10.53696,72.48864,40.2816
--11.21,-14.82,-13.775,-10.64,73.188,42.96
--10.98816,-14.71296,-13.59552,-10.52256,71.739648,42.0592
--11.0979,-14.8599,-13.7313,-10.62765,72.45612,41.9364
--11.0789,-14.7098,-13.5926,-10.6134,71.72424,41.993
--11.662,-15.484,-14.308,-10.976,75.4992,44.45
--11.19671,-14.86622,-13.83123,-10.44399,72.486936,40.9825
--11.19552,-10.63104,-11.00736,3.2928,72.48864,41.5128
--11.6424,-11.73942,-11.93346,-7.47054,74.744208,42.0156
--11.6424,-13.38876,-12.70962,-9.11988,74.85093,43.6688
--11.2896,-13.35936,-12.51264,-9.21984,72.479232,40.6656
--11.73942,-13.97088,-13.00068,-9.702,74.744208,42.7086
--11.616,-13.92,-12.864,-9.696,73.9584,40.7424
--11.737,-14.162,-13.095,-9.797,74.7288,41.3802
--11.858,-14.308,-13.23,-9.996,75.4992,42.85
--11.38005,-13.9194,-12.7908,-10.1574,72.45612,41.952
--11.712,-14.304,-13.152,-10.272,73.9584,43.36
--11.59,-14.345,-13.11,-10.26,73.283,40.242
--11.1264,-13.8624,-12.6768,-9.7584,70.2696,39.5865
--11.95722,-14.99553,-13.7214,-10.38906,75.604914,41.7285
--11.685,-14.44,-13.3,-10.07,73.283,39.7575
--11.57184,-14.30016,-13.1712,-10.16064,72.573312,41.136
--11.685,-14.535,-13.395,-10.545,73.283,40.7075
--11.81169,-14.98068,-13.63626,-10.85139,73.981512,42.1245
--11.931,-15.229,-13.871,-10.961,74.8258,43.14
--11.5444,-14.6167,-13.3133,-10.1479,71.73355,41.993
--11.78744,-14.82936,-13.68864,-10.36154,73.33879,40.9922
--12.028,-15.035,-13.968,-10.573,74.8258,42.04
--11.88,-14.7312,-13.68576,-10.26432,73.218816,40.176
--11.64,-14.4336,-13.40928,-10.05696,71.74896,40.8855
--12.25,-15.19,-14.112,-10.584,75.5972,41.85
--11.6375,-14.4305,-13.4064,-10.1479,71.81734,39.862
--12.00375,-15.07671,-13.92435,-10.75536,74.077542,40.9825
--12.222,-15.326,-14.162,-11.058,74.8258,41.3802
--12.375,-15.84,-14.553,-11.187,76.3686,41.6196
--12.34926,-15.6816,-14.40747,-11.07513,75.614715,42.7185
--11.85534,-15.0544,-13.83123,-10.72626,72.486936,40.5945
--11.97756,-15.11454,-13.97382,-10.74178,73.234224,41.405
--11.85534,-15.0544,-13.92532,-10.63217,72.581026,40.9825
--11.94816,-15.14688,-14.01792,-10.8192,72.573312,41.1992
--11.70305,-14.9283,-13.73035,-10.6894,71.08451,40.7788
--12.192,-15.552,-14.4,-11.04,73.9584,40.3584
--11.8237,-15.1753,-13.965,-10.7996,71.72424,41.699
--12.07008,-15.49152,-14.256,-10.9296,73.313856,41.6196
--11.9168,-15.0822,-13.965,-10.7065,71.82665,40.6315
--11.79648,-15.02208,-13.91616,-10.5984,71.000064,40.176
--11.6736,-14.8656,-13.7712,-10.6704,70.26048,40.56
--11.91936,-15.3648,-14.15424,-10.89504,71.739648,41.1668
--12.16768,-15.6849,-14.54418,-11.31214,73.329284,41.993
--11.6736,-15.1392,-13.9536,-10.7616,70.35168,40.4225
--11.7648,-15.1392,-13.9536,-10.944,70.35168,40.1375
--12.38787,-15.84495,-14.69259,-11.33154,74.077542,42.0156
--11.7648,-15.048,-13.9536,-10.8528,70.35168,40.1375
--12.26016,-15.77664,-14.63616,-11.4048,73.313856,42.0255
--12.2304,-15.71136,-14.48832,-11.2896,72.573312,41.307
--12.3578,-15.87502,-14.7343,-11.4072,73.33879,41.1208
--12.2265,-15.70635,-14.57775,-11.19195,72.55017,40.1375
--11.856,-15.2304,-14.136,-10.944,70.35168,39.7575
--11.856,-15.2304,-14.136,-11.0352,70.35168,40.147
--12.2265,-15.8004,-14.6718,-11.4741,72.55017,39.862
--12.32055,-15.89445,-14.6718,-11.4741,72.55017,39.938
--12.70962,-16.39638,-15.13512,-11.83644,74.841228,41.8275
--12.07165,-15.4812,-14.46755,-11.2423,71.08451,40.4878
--12.1961,-15.6408,-14.5236,-11.3582,71.82665,40.0425
--12.07296,-15.57504,-14.46912,-11.33568,71.092224,40.2816
--12.4146,-15.89445,-14.76585,-11.56815,72.55017,41.5404
--12.672,-16.32,-15.072,-12,74.064,41.57
--12.16512,-15.6672,-14.56128,-11.33568,71.092224,40.3584
--12.54528,-16.25184,-15.01632,-11.78496,73.313856,41.4315
--12.672,-16.416,-15.168,-11.808,74.0544,42.15
--12.768,-16.416,-15.168,-11.904,74.064,40.5696
--12.64298,-16.25526,-15.01948,-11.59732,73.329284,40.4878
--12.25595,-15.75765,-14.65185,-11.70305,71.08451,40.5945
--12.77332,-16.51888,-15.27036,-12.10104,74.085256,41.1208
--13.00068,-16.68744,-15.5232,-12.1275,74.841228,40.9052
--12.38496,-16.01664,-14.8992,-11.45376,71.832768,40.3132
--12.2208,-15.6864,-14.592,-11.5824,70.35168,40.176
--12.4754,-16.0132,-14.896,-11.6375,71.81734,40.147
--13.266,-17.028,-15.84,-12.573,76.3686,41.7186
--13.00068,-16.78446,-15.62022,-12.41856,74.85093,41.6196
--12.5685,-16.1994,-14.9891,-12.103,71.81734,39.7575
--12.18375,-15.7035,-14.53025,-11.46175,69.61885,39.938
--12.96,-16.704,-15.552,-12.192,74.0544,40.176
--12.7008,-16.36992,-15.24096,-11.85408,72.573312,40.3584
--12.825,-16.53,-15.39,-11.875,73.283,40.983
--13.5,-17.4,-16.2,-12.5,77.14,43.06
--12.92544,-16.53696,-15.39648,-12.07008,73.313856,43.5006
--13.464,-17.226,-16.038,-12.771,76.3686,44.6985
--13.464,-17.325,-16.137,-12.87,76.3785,44.57
--13.06144,-16.807,-15.65452,-12.4852,74.085256,44.639
--13.056,-16.896,-15.648,-12.384,74.0544,43.6224
--12.79488,-16.55808,-15.33504,-12.13632,72.573312,43.9104
--13.015,-16.72,-15.485,-12.255,73.283,43.2725
--13.42737,-17.24976,-16.07364,-12.83931,75.604914,45.7875
--13.02048,-16.72704,-15.58656,-12.3552,73.313856,46.128
--13.29174,-17.07552,-15.91128,-12.51558,74.841228,45.5112
--13.11,-16.72,-15.58,-12.255,73.283,43.6525
--12.85056,-16.48224,-15.3648,-12.1056,71.84208,44.3678
--12.9789,-16.64685,-15.4242,-12.2265,72.55017,45.9756
--13.38876,-17.17254,-16.0083,-12.51558,74.841228,45.9756
--12.85056,-16.57536,-15.3648,-12.19872,71.832768,44.5056
--13.21056,-16.91712,-15.6816,-12.45024,73.313856,44.2944
--13.07712,-16.74624,-15.5232,-12.2304,72.573312,45.0408
--12.9409,-16.5718,-15.4546,-12.2892,71.81734,43.2725
--13.344,-17.088,-15.936,-12.672,74.0544,45.74
--13.34956,-17.09512,-15.94264,-12.77332,74.085256,44.4332
--13.761,-17.622,-16.434,-13.068,76.3686,45.16
--13.761,-17.721,-16.434,-13.167,76.3686,44.64
--13.034,-16.6649,-15.5477,-12.4754,71.80803,42.693
--13.034,-16.6649,-15.5477,-12.3823,71.91044,43.855
--13.1726,-16.84211,-15.71303,-12.60806,72.675116,46.6085
--13.7214,-17.54379,-16.36767,-13.03533,75.604914,46.8765
--13.40346,-17.01574,-15.87502,-12.73804,73.329284,45.8248
--13.12992,-16.7616,-15.55104,-12.38496,71.916576,44.6491
--13.81941,-17.6418,-16.36767,-13.03533,75.604914,45.5004
--12.99315,-16.587,-15.38905,-12.3481,71.093725,44.9692
--13.26528,-16.9344,-15.80544,-12.60672,72.573312,45.5112
--13.916,-17.738,-16.464,-13.23,75.6854,46.25
--13.0853,-16.67915,-15.4812,-12.5324,71.167445,44.2902
--13.91742,-17.73981,-16.46568,-13.32936,75.702924,45.2826
--13.08672,-16.68096,-15.48288,-12.53376,71.184384,44.016
--12.9504,-16.5072,-15.4128,-12.4944,70.44288,44.2944
--13.49,-17.195,-16.055,-12.92,73.3685,42.693
--12.90575,-16.4255,-15.25225,-12.274,69.7091,42.5125
--14.014,-17.836,-16.562,-13.328,75.6952,45.96
--14.014,-17.836,-16.66,-13.132,75.6952,46.8734
--13.45487,-17.12438,-15.9953,-12.79624,72.675116,44.7655
--13.40928,-16.94784,-15.8304,-12.5712,71.925888,45.0624
--13.82832,-17.57349,-16.3251,-13.25214,74.173572,45.3572
--14.4,-18.3,-17,-13.8,77.24,46.55
--13.97088,-17.75466,-16.59042,-13.38876,74.938248,45.8248
--13.968,-17.751,-16.49,-13.192,74.9228,45.3572
--13.5024,-17.04096,-15.92352,-12.66432,71.9352,44.7655
--13.92,-17.568,-16.416,-13.248,74.1504,44.1216
--14.355,-18.216,-16.929,-13.662,76.4676,46.36
--14.21,-18.13,-16.856,-13.426,75.6952,45.96
--13.92435,-17.66952,-16.51716,-12.96405,74.173572,44.4745
--14.16492,-17.75466,-16.59042,-13.29174,74.938248,44.345
--13.59552,-17.04096,-15.92352,-12.75744,71.925888,43.6985
--14.308,-18.032,-16.856,-13.72,75.6952,44.639
--13.3152,-16.9632,-15.6864,-12.768,70.44288,43.0656
--13.5926,-17.3166,-16.1063,-12.8478,72.05009,43.073
--13.73714,-17.40665,-16.18348,-12.98442,72.665707,43.1165
--13.82976,-17.31072,-16.18176,-12.88896,72.667392,42.4704
--13.97088,-17.48736,-16.34688,-13.11552,73.541952,42.4704
--13.68864,-17.13408,-16.01664,-12.85056,72.065568,42.6816
--14.11788,-17.7674,-16.61492,-13.54164,74.315752,43.855
--14.11788,-17.7674,-16.61492,-13.4456,74.181296,43.2768
--13.9194,-17.4933,-16.27065,-12.9789,72.64422,42.408
--13.6382,-17.04775,-15.94195,-12.7167,71.17666,41.667
--14.8,-18.5,-17.3,-13.8,77.24,44.24
--13.357,-16.606,-15.61325,-12.4545,69.700075,41.667
--13.7788,-17.2235,-16.1063,-12.8478,71.91044,42.5125
--14.304,-17.856,-16.704,-13.44,74.1504,44.86
--14.45598,-18.04572,-16.88148,-13.5828,74.938248,44.8866
--14.453,-18.042,-16.878,-13.58,74.9131,46.66
--13.87488,-17.32032,-16.20288,-12.94368,71.916576,45.9295
--15,-18.6,-17.4,-13.9,77.23,46.36
--13.968,-17.2272,-16.20288,-13.12992,71.925888,44.5056
--15,-18.6,-17.4,-14.3,77.24,46.36
--14.25,-17.765,-16.53,-13.585,73.378,46.77
--14.553,-18.14274,-16.9785,-13.77684,74.938248,46.5795
--13.965,-17.4097,-16.2925,-12.9409,71.91044,47.481
--14.4,-17.856,-16.704,-13.44,74.1504,46.128
--13.62775,-16.69625,-15.7035,-12.635,69.7091,45.258
--14.20155,-17.39925,-16.45875,-13.3551,72.64422,44.6975
--14.35104,-17.67744,-16.632,-13.68576,73.399392,45.552
--14.35406,-17.77622,-16.6355,-13.49852,73.424344,46.5108
--14.44608,-17.67744,-16.632,-13.3056,73.408896,46.128
--14.30016,-17.49888,-16.464,-13.1712,72.667392,46.9812
--14.74704,-17.9487,-16.9785,-13.5828,74.938248,46.795
--14.44912,-17.5861,-16.6355,-13.49852,73.424344,46.1874
--14.592,-17.952,-16.8,-13.728,74.1504,45.168
--14.89752,-18.32787,-17.15175,-14.01543,75.702924,46.5795
--14.99553,-18.32787,-17.15175,-14.11344,75.702924,46.4805
--14.38965,-17.58735,-16.45875,-13.07295,72.77589,46.4706
--13.9536,-16.9632,-15.96,-12.6768,70.57968,44.4315
--14.69259,-17.86158,-16.80525,-13.54023,74.308014,46.3716
--14.2443,-17.4097,-16.3856,-13.3133,72.04078,45.325
--14.79016,-18.05552,-16.90304,-13.54164,74.325356,45.2172
--14.94108,-18.23976,-17.07552,-13.67982,74.938248,45.1192
--14.78862,-18.05364,-16.90128,-13.63626,74.173572,45.8964
--15.246,-18.513,-17.424,-13.959,76.3686,46.04
--14.94108,-18.14274,-17.07552,-13.5828,74.841228,44.8252
--14.88,-17.952,-16.896,-13.44,74.0544,44.016
--14.4305,-17.5028,-16.3856,-13.2202,71.72424,45.2172
--14.5824,-17.78112,-16.55808,-13.35936,72.479232,44.8252
--15.345,-18.711,-17.424,-14.157,76.1805,45.55
--14.88,-18.144,-16.896,-13.344,73.872,45.74
--14.37696,-17.32608,-16.22016,-12.99456,70.82496,44.1888
--15.444,-18.513,-17.424,-13.959,75.9825,46.04
--14.82936,-17.87128,-16.73056,-13.49852,72.95855,44.8625
--14.3754,-17.41635,-16.31055,-13.36175,70.632975,43.738
--15.13512,-18.33678,-17.17254,-13.97088,74.375532,45.9756
--14.3184,-17.2368,-16.1424,-13.1328,69.9048,44.7936
--14.77213,-17.68892,-16.65393,-13.26669,72.035304,45.7161
--14.61984,-17.50656,-16.48224,-13.12992,71.292672,45.744
--14.6167,-17.5028,-16.3856,-13.3133,71.18426,46.9812
--15.38757,-18.52389,-17.34777,-13.91742,74.938446,47.4606
--14.77056,-17.78112,-16.65216,-13.45344,71.92416,45.5616
--14.56128,-17.5104,-16.31232,-13.17888,70.45632,46.512
--15.326,-18.333,-17.169,-13.774,74.0692,47.9568
--15.17274,-18.14967,-16.99731,-13.54023,73.338111,48.4612
--14.5597,-17.3242,-16.31055,-13.0853,70.282805,47.4525
--14.86464,-17.78112,-16.65216,-13.6416,71.754816,48.1344
--15.484,-18.62,-17.444,-14.014,74.7446,50.14
--15.105,-18.05,-16.91,-13.585,72.447,49.95
--14.95395,-17.8695,-16.7409,-13.44915,71.72253,49.4505
--15.58359,-18.6219,-17.44578,-13.81941,74.742426,49.2426
--15.264,-18.144,-16.992,-13.728,73.1136,49.74
--14.95395,-17.77545,-16.7409,-13.63725,71.637885,49.1634
--15.36,-18.24,-17.088,-13.824,73.2192,47.568
--15.2,-18.145,-16.91,-13.585,72.447,47.0725
--15.52,-18.43,-17.266,-13.968,73.9722,47.9568
--15.0528,-17.78112,-16.74624,-13.45344,71.745408,48.3434
--15.5232,-18.33678,-17.26956,-13.77684,73.997154,48.265
--15.52,-18.333,-17.266,-14.162,73.9722,47.6658
--14.83776,-17.60256,-16.49664,-13.63968,70.281216,46.9728
--14.6832,-17.5104,-16.3248,-13.3152,69.55824,46.9728
--15.617,-18.527,-17.363,-13.871,73.9722,48.74
--15.14205,-17.8695,-16.83495,-13.5432,71.731935,46.303
--14.83615,-17.5085,-16.49485,-13.36175,70.27359,47.2778
--15.456,-18.144,-17.088,-13.824,73.2096,46.6848
--15.39648,-17.96256,-16.91712,-13.87584,72.477504,48.3615
--15.87762,-18.6219,-17.44578,-14.11344,74.742426,47.9655
--15.55686,-18.2457,-17.18937,-13.92435,73.328508,47.1711
--16.038,-18.909,-17.721,-14.355,75.5964,48.24
--15.39,-18.145,-17.005,-13.87,72.542,48.45
--15.24096,-17.8752,-16.84032,-13.45344,71.839488,46.4352
--15.65289,-18.2457,-17.18937,-13.82832,73.338111,47.9754
--15.71724,-18.4338,-17.26956,-14.16492,74.084472,47.6784
--15.02208,-17.60256,-16.49664,-13.3632,70.373376,46.2336
--15.17856,-17.87904,-16.66848,-13.5024,71.106432,46.2108
--15.49478,-18.25152,-17.01574,-13.97382,72.682876,46.0265
--15.81426,-18.53082,-17.36658,-14.16492,74.181492,46.6872
--15.2684,-17.7821,-16.6649,-13.4995,71.18426,45.752
--15.42912,-17.8752,-16.84032,-13.54752,71.933568,45.7344
--15.11424,-17.60256,-16.49664,-13.54752,70.465536,45.2448
--16.236,-19.008,-17.721,-14.553,75.6954,47.2725
--15.27168,-17.87904,-16.7616,-13.59552,71.199552,46.0362
--15.91128,-18.62784,-17.4636,-14.0679,74.181492,46.1874
--15.4242,-18.0576,-16.929,-13.63725,71.91063,44.878
--15.908,-18.527,-17.46,-14.162,74.2632,47.13
--15.908,-18.527,-17.46,-13.968,74.2632,47.24
--15.048,-17.4192,-16.3248,-13.4064,69.8136,44.784
--16.17,-18.816,-17.64,-14.504,75.019,45.619
--15.84495,-18.53379,-17.2854,-14.21244,73.520568,45.3669
--16.17,-18.914,-17.64,-14.406,75.019,45.913
--15.6849,-18.25152,-17.1108,-13.7837,72.76843,46.109
--16.434,-19.008,-17.82,-14.355,75.7944,46.4706
--15.77664,-18.15264,-17.1072,-14.06592,72.75312,46.3023
--15.61728,-18.06336,-16.9344,-14.01792,72.027648,46.011
--15.61728,-18.15744,-17.02848,-13.92384,72.01824,45.5112
--15.94098,-18.62982,-17.38143,-14.11641,73.520568,44.6588
--14.9815,-17.41825,-16.33525,-13.1765,69.0954,44.2225
--16.533,-19.008,-17.919,-14.454,75.7944,46.66
--15.61894,-18.06528,-17.03029,-13.73714,72.129394,45.0468
--16.20234,-18.62784,-17.4636,-14.16492,74.36583,46.0012
--15.55104,-17.87904,-16.85472,-13.68864,71.37648,44.5824
--16.03868,-18.53572,-17.38324,-14.11788,73.61466,45.7268
--16.03701,-18.53379,-17.38143,-14.11641,73.606995,45.6786
--15.38905,-17.8771,-16.67915,-13.6382,70.64219,45.8228
--15.87502,-18.34658,-17.20586,-13.97382,72.86349,44.7558
--16.20234,-18.72486,-17.56062,-13.97088,74.36583,45.0408
--16.128,-18.528,-17.376,-14.208,73.5936,44.7936
--15.3216,-17.6928,-16.5072,-13.4976,69.9048,43.833
--15.80712,-18.25346,-17.12438,-13.92532,72.119985,44.7558
--16.29936,-18.9189,-17.65764,-14.16492,74.36583,45.5697
--15.97008,-18.5367,-17.30092,-13.97382,72.86349,44.7468
--16.22907,-18.62982,-17.47746,-14.21244,73.606995,45.4905
--15.57335,-17.78495,-16.7713,-13.6382,70.64219,43.2725
--15.4128,-17.6016,-16.5072,-13.3152,69.91392,44.688
--15.90121,-18.15937,-17.12438,-14.1135,72.129394,44.2902
--15.73728,-18.1584,-17.04096,-14.06112,71.385792,43.8336
--16.9,-19.6,-18.3,-15.1,76.75,45.55
--15.73728,-18.1584,-17.04096,-13.87488,71.385792,44.1984
--15.7339,-18.1545,-16.9442,-13.8719,71.45425,43.377
--16.15,-18.525,-17.29,-14.06,72.9125,45.66
--16.1568,-18.43776,-17.29728,-13.87584,72.9432,43.5264
--16.3251,-18.53379,-17.47746,-14.11641,73.712628,44.8625
--15.9953,-18.25346,-17.12438,-14.01941,72.214075,44.3678
--15.504,-17.6928,-16.6896,-13.7712,69.996,44.3136
--16.49,-18.915,-17.751,-14.647,74.4475,45.74
--16.3251,-18.72585,-17.57349,-14.21244,73.703025,44.0865
--16.3251,-18.72585,-17.57349,-14.4045,73.703025,44.9856
--15.6672,-17.87904,-16.77312,-13.63968,70.7328,43.9104
--15.75765,-17.8771,-16.86345,-13.6382,70.725125,42.8925
--16.587,-18.915,-17.751,-14.356,74.4475,43.9701
--16.758,-19.11,-17.934,-14.7,75.215,44.8252
--17.1,-19.6,-18.3,-15,76.75,45.66
--16.25526,-18.63176,-17.39598,-14.35406,72.95855,45.1192
--17.1,-19.6,-18.4,-14.9,76.76,45.45
--15.92352,-18.1584,-17.04096,-13.68864,71.4696,44.1835
--16.42113,-18.72585,-17.57349,-14.11641,73.703025,44.6985
--16.512,-18.72,-17.568,-14.304,73.6896,45.74
--16.01664,-18.25152,-17.04096,-14.06112,71.478912,42.96
--16.51716,-18.82188,-17.57349,-14.4045,73.703025,44.5995
--16.34,-18.62,-17.48,-14.345,72.9125,45.85
--16.51716,-18.82188,-17.66952,-14.21244,73.703025,44.8767
--15.6864,-17.8752,-16.7808,-13.4976,69.996,43.7376
--16.34688,-18.62784,-17.48736,-14.256,72.9432,43.8336
--15.94195,-17.96925,-16.9556,-13.6382,70.725125,44.2902
--16.27584,-18.43968,-17.31072,-14.30016,72.2064,43.5264
--16.61319,-18.91791,-17.66952,-14.30847,73.703025,43.7955
--16.1063,-18.3407,-17.1304,-13.5926,71.45425,44.149
--15.94195,-18.15355,-17.04775,-13.54605,70.725125,44.3678
--16.61319,-18.91791,-17.66952,-14.50053,73.703025,45.0945
--16.954,-19.208,-18.032,-15.092,75.215,44.345
--16.435,-18.525,-17.48,-14.155,72.922,42.997
--16.61319,-18.82188,-17.66952,-14.59656,73.703025,45.0945
--16.53696,-18.72288,-17.5824,-14.63616,72.933696,44.6985
--15.8688,-18.0576,-16.872,-13.8624,69.996,43.5168
--16.36992,-18.53376,-17.4048,-14.39424,72.2064,43.8336
--16.53696,-18.81792,-17.5824,-14.54112,72.9432,43.5264
--17.226,-19.602,-18.315,-14.949,75.9825,44.3025
--17.226,-19.602,-18.414,-14.949,75.9825,44.9856
--16.8,-19.008,-17.76,-14.496,73.6896,45.74
--16.2925,-18.3407,-17.2235,-14.1512,71.46356,42.617
--17.052,-19.404,-18.228,-14.994,75.215,44.94
--16.296,-18.53088,-17.32032,-14.34048,71.4696,43.8925
--16.975,-19.303,-18.042,-15.035,74.4475,43.9798
--15.79375,-17.95975,-16.7865,-13.80825,69.3481,42.408
--16.625,-18.905,-17.67,-14.535,73.0075,42.693
--16.464,-18.72192,-17.59296,-14.39424,72.30048,44.2568
--17.325,-19.701,-18.414,-15.345,75.9825,44.1936
--15.79375,-18.05,-16.87675,-13.98875,69.266875,42.617
--16.38912,-18.624,-17.41344,-14.24736,71.478912,43.248
--16.90304,-19.208,-17.95948,-14.8862,73.80674,43.855
--16.38912,-18.624,-17.41344,-14.24736,71.56272,42.8544
--17.07552,-19.404,-18.23976,-14.94108,74.55987,44.4234
--17.248,-19.698,-18.424,-15.19,75.215,44.0412
--16.72704,-19.008,-17.86752,-14.63616,73.03824,43.728
--17.072,-19.4,-18.236,-14.938,74.5445,42.9128
--16.2184,-18.43,-17.3242,-14.28325,70.725125,42.693
--15.884,-18.14025,-16.967,-14.079,69.357125,43.0635
--17.248,-19.698,-18.424,-15.386,75.3228,44.95
--17.7,-20.1,-18.9,-15.6,76.76,44.86
--16.82562,-19.10706,-17.96634,-14.7343,72.95855,44.149
--16.82562,-19.10706,-17.96634,-14.7343,72.95855,44.247
--16.65393,-19.00618,-17.78301,-14.48986,72.308165,43.9798
--16.99908,-19.30404,-18.15156,-14.8862,73.80674,43.6688
--17.17254,-19.50102,-18.33678,-15.0381,74.55987,44.0412
--16.48224,-18.624,-17.59968,-14.4336,71.553408,43.1424
--16.1424,-18.24,-17.2368,-14.136,70.0872,43.8336
--16.82562,-19.10706,-17.96634,-14.7343,73.05361,43.855
--17.444,-19.796,-18.522,-15.288,75.313,44.933
--17.09334,-19.39806,-18.2457,-15.07671,73.799055,44.4906
--17.09334,-19.39806,-18.2457,-15.07671,73.799055,44.6985
--17.8,-20.2,-18.9,-15.6,76.85,46.15
--17.09512,-19.40008,-18.2476,-14.8862,73.80674,44.2568
--16.7409,-18.9981,-17.8695,-14.76585,72.26802,45.0945
--17.26956,-19.50102,-18.4338,-15.13512,74.55987,45.031
--17.266,-19.594,-18.43,-15.326,74.5542,45.26
--17.54379,-19.89603,-18.6219,-15.38757,75.320685,44.8767
--16.3248,-18.5136,-17.328,-14.2272,70.07808,44.016
--17.444,-19.894,-18.718,-15.484,75.3032,45.05
--17.54379,-19.89603,-18.71991,-15.28956,75.320685,46.1934
--16.84211,-19.10027,-17.97119,-14.77213,72.214075,44.0768
--17.542,-19.894,-18.718,-15.484,75.215,44.75
--17.9,-20.3,-19.1,-15.8,76.75,45.33
--16.66848,-18.90336,-17.78592,-14.52672,71.56272,44.016
--17.28,-19.488,-18.336,-15.36,73.6896,43.8336
--17.46,-19.691,-18.527,-15.229,74.4475,44.2902
--16.587,-18.70645,-17.60065,-14.65185,70.725125,42.8925
--17.6418,-19.99404,-18.71991,-15.6816,75.320685,44.4114
--16.416,-18.6048,-17.5104,-14.4096,70.0872,43.248
--16.929,-19.1862,-18.0576,-14.76585,72.277425,42.693
--17.1,-19.38,-18.24,-14.915,73.0075,44.94
--17.2854,-19.49409,-18.43776,-15.07671,73.799055,43.8925
--16.9344,-19.09824,-18.06336,-15.0528,72.2064,44.2568
--17.38143,-19.49409,-18.43776,-15.07671,73.799055,44.3678
--17.919,-20.196,-19.008,-15.642,76.0716,44.8866
--16.68096,-18.80064,-17.69472,-14.7456,70.815744,43.44
--17.919,-20.196,-19.008,-15.543,76.0815,45.2826
--17.56062,-19.79208,-18.62784,-15.23214,74.55987,43.855
--17.557,-19.788,-18.624,-15.326,74.5445,45.26
--17.376,-19.584,-18.432,-15.36,73.68,45.05
--17.03029,-19.19436,-18.06528,-14.77213,72.308165,44.1835
--17.557,-19.788,-18.624,-15.229,74.4475,43.7955
--17.47746,-19.59012,-18.43776,-15.17274,73.703025,44.6588
--17.83782,-19.99404,-18.81792,-15.48558,75.222675,44.5995
--17.47746,-19.59012,-18.43776,-15.3648,73.703025,44.5995
--17.836,-19.992,-18.816,-15.386,75.3032,44.149
--17.83782,-19.99404,-18.81792,-15.48558,75.320685,45.3915
--17.47746,-19.59012,-18.43776,-15.07671,73.799055,44.7975
--17.47928,-19.59216,-18.43968,-15.27036,73.80674,44.933
--17.472,-19.584,-18.432,-15.072,73.776,45.15
--17.29728,-19.38816,-18.24768,-15.01632,73.028736,43.2576
--17.47928,-19.59216,-18.43968,-15.17432,73.80674,44.2568
--16.94784,-18.99648,-17.87904,-14.71296,71.553408,42.672
--16.86345,-18.7986,-17.6928,-14.65185,70.817275,44.0768
--18.117,-20.196,-19.008,-15.543,75.9825,45.25
--18.117,-20.196,-19.008,-15.444,75.9825,45.25
--16.86345,-18.7986,-17.78495,-14.65185,70.80806,43.377
--17.39232,-19.38816,-18.24768,-14.82624,72.9432,43.728
--17.385,-19.38,-18.24,-15.105,72.9125,45.55
--17.934,-19.992,-18.816,-15.386,75.313,44.639
--17.04096,-18.99648,-17.97216,-14.80608,71.4696,43.44
--17.57349,-19.59012,-18.43776,-15.17274,73.703025,44.2902
--17.48736,-19.4832,-18.34272,-15.01632,72.9432,43.44
--17.48736,-19.38816,-18.24768,-14.92128,72.9432,43.5168
--16.606,-18.411,-17.41825,-14.34975,69.266875,43.2725
--16.9556,-18.89075,-17.78495,-14.5597,70.725125,44.0768
--17.31072,-19.2864,-18.15744,-14.86464,72.2064,44.541
--17.664,-19.68,-18.528,-15.168,73.68,43.3536
--17.48736,-19.4832,-18.34272,-15.01632,73.03824,43.0656
--18.4,-20.5,-19.3,-15.9,76.75,45.15
--18.216,-20.196,-19.107,-15.444,75.9726,45.44
--16.606,-18.411,-17.41825,-14.16925,69.266875,42.997
--17.664,-19.584,-18.432,-15.264,73.68,43.5264
--16.872,-18.6048,-17.5104,-14.4096,69.996,43.9104
--17.945,-19.788,-18.624,-15.326,74.4475,43.9798
--18.13,-19.992,-18.816,-15.484,75.215,44.86
--17.39925,-19.28025,-18.0576,-14.8599,72.183375,42.408
--16.69625,-18.50125,-17.328,-14.34975,69.2759,42.693
--17.575,-19.475,-18.335,-15.105,72.9125,42.5125
--16.872,-18.696,-17.6016,-14.5008,69.996,42.028
--18.13,-20.09,-18.914,-15.582,75.215,44.86
--18.414,-20.295,-19.107,-15.84,75.9825,45.25
--17.86158,-19.68615,-18.53379,-15.17274,73.703025,44.7975
--17.4933,-19.28025,-18.15165,-14.76585,72.183375,45.0945
--18.414,-20.295,-19.107,-15.543,75.9825,44.4114
--17.68116,-19.4873,-18.34658,-15.2096,72.95855,43.8925
--17.4933,-19.28025,-18.15165,-14.8599,72.19278,42.3415
--17.4933,-19.1862,-18.15165,-14.8599,72.183375,43.5006
--17.4933,-19.1862,-18.15165,-14.95395,72.183375,44.1144
--17.32032,-18.99648,-17.97216,-14.71296,71.4696,42.9128
--17.23205,-18.7986,-17.78495,-14.744,70.725125,43.6985
--17.14176,-18.80064,-17.78688,-14.65344,70.7328,43.1424
--18.7,-20.5,-19.3,-16,76.75,45.16
--17.23205,-18.89075,-17.78495,-14.65185,70.725125,43.5142
--17.58735,-19.28025,-18.15165,-15.048,72.183375,44.7975
--18.139,-19.885,-18.721,-15.423,74.4572,43.9022
--17.59483,-19.28845,-18.15937,-14.96031,72.214075,43.6985
--17.77248,-19.38816,-18.34272,-15.11136,72.9432,44.4906
--17.952,-19.584,-18.528,-15.264,73.68,42.96
--17.95761,-19.59012,-18.43776,-15.26877,73.712628,43.3008
--17.4097,-18.9924,-17.9683,-14.7098,71.45425,44.4234
--18.23976,-19.79208,-18.62784,-15.42618,74.46285,44.5995
--17.59296,-19.2864,-18.15744,-15.0528,72.2064,42.6816
--17.77622,-19.4873,-18.34658,-15.2096,72.95855,43.6791
--18.612,-20.295,-19.107,-15.741,75.9924,46.26
--17.86,-19.475,-18.335,-15.2,72.9125,42.5125
--18.8,-20.5,-19.3,-15.9,76.75,44.05
--18.048,-19.68,-18.528,-15.168,73.68,44.45
--18.424,-20.09,-18.914,-15.484,75.215,43.561
--17.50656,-19.0896,-17.97216,-14.8992,71.4696,43.0656
--17.68704,-19.2864,-18.15744,-15.0528,72.11232,43.7472
--17.5028,-19.0855,-17.9683,-14.8029,71.37046,44.2568
--17.5028,-19.0855,-17.9683,-14.896,71.36115,43.561
--17.1456,-18.696,-17.6016,-14.592,69.9048,42.7975
--17.59968,-19.0896,-17.97216,-14.99232,71.37648,43.0098
--17.955,-19.57,-18.335,-15.2,72.8175,44.34
--18.333,-19.982,-18.721,-15.617,74.3602,44.86
--17.96634,-19.58236,-18.34658,-15.30466,72.86349,43.561
--18.333,-19.885,-18.721,-15.52,74.3505,43.1165
--18.33678,-19.98612,-18.72486,-15.42618,74.375532,44.1936
--17.41635,-18.89075,-17.78495,-14.744,70.632975,43.4075
--17.78112,-19.38048,-18.25152,-15.0528,72.121728,43.9628
--17.78112,-19.38048,-18.25152,-14.95872,72.11232,43.6688
--17.2368,-18.7872,-17.6928,-14.4096,69.9048,42.028
--17.41635,-18.9829,-17.8771,-14.744,70.632975,43.1165
--17.955,-19.57,-18.43,-15.105,72.8175,44.16
--18.4338,-19.98612,-18.72486,-15.5232,74.375532,43.0254
--17.8752,-19.2864,-18.25152,-14.86464,72.11232,42
--18.711,-20.295,-19.107,-15.939,75.8835,43.0254
--17.8752,-19.2864,-18.15744,-15.0528,72.121728,42.5908
--17.6928,-19.18272,-18.06528,-14.8992,71.385792,42.3405
--18.6219,-20.19006,-19.01394,-15.58359,75.134466,43.6095
--17.8695,-19.3743,-18.2457,-15.2361,72.089325,43.5006
--18.4338,-19.98612,-18.82188,-15.62022,74.36583,43.0254
--17.6928,-19.18272,-18.06528,-14.8992,71.37648,42.4375
--17.8752,-19.38048,-18.25152,-15.14688,72.11232,42.875
--18.4338,-19.98612,-18.82188,-15.5232,74.36583,43.6688
--17.328,-18.7872,-17.6928,-14.7744,69.9048,42.8544
--18.05,-19.57,-18.43,-15.2,72.8175,42.5125
--19,-20.6,-19.4,-16,76.76,45.55
--18.336,-19.776,-18.624,-15.456,73.584,44.75
--17.8695,-19.3743,-18.2457,-15.14205,72.183375,43.6095
--18.71991,-20.19006,-19.01394,-15.58359,75.134466,43.6095
--18.53082,-20.08314,-18.82188,-15.5232,74.375532,43.9628
--17.96928,-19.38048,-18.25152,-15.14688,72.2064,43.855
--18.34173,-19.87821,-18.72585,-15.3648,73.703025,43.3224
--18.53082,-20.08314,-18.9189,-15.62022,74.46285,42.8848
--18.145,-19.57,-18.43,-15.295,72.9125,43.86
--18.34364,-19.78424,-18.63176,-15.46244,73.7107,42.8848
--18.15646,-19.58236,-18.44164,-15.2096,72.95855,42.875
--18.909,-20.394,-19.206,-15.939,75.9825,42.8175
--17.96355,-19.3743,-18.2457,-15.14205,72.183375,43.5006
--17.60256,-18.98496,-17.9712,-14.92992,70.7328,42
--18.53082,-20.08314,-18.9189,-15.62022,74.46285,43.2036
--17.7821,-19.2717,-18.1545,-14.9891,71.45425,41.363
--18.24768,-19.67328,-18.5328,-15.2064,73.03824,43.4214
--18.909,-20.493,-19.305,-15.741,76.0815,43.6
--17.6928,-18.9829,-17.96925,-14.744,70.817275,41.667
--18.816,-20.286,-19.11,-15.876,75.313,42.9828
--18.816,-20.286,-19.012,-15.68,75.313,43.7472
--17.87904,-19.27584,-18.1584,-14.8992,71.56272,42.3936
--18.25152,-19.67742,-18.5367,-15.30466,73.05361,43.6688
--18.24,-19.665,-18.525,-15.295,73.0075,42.2275
--18.624,-20.079,-18.915,-15.714,74.5445,43.76
--18.24,-19.665,-18.525,-15.39,73.0075,41.667
--18.624,-20.079,-18.915,-15.714,74.6415,43.75
--18.06528,-19.47663,-18.34755,-15.14849,72.392846,43.3008
--18.624,-20.079,-18.915,-15.52,74.6415,43.54
--19.008,-20.493,-19.305,-15.84,76.1706,43.9065
--18.24768,-19.57824,-18.5328,-15.30144,73.13328,41.904
--18.816,-20.286,-19.11,-15.974,75.411,43.76
--18.914,-20.286,-19.11,-15.68,75.411,43.36
--18.34658,-19.67742,-18.5367,-15.39972,73.14867,42.4375
--17.78495,-19.07505,-17.96925,-14.744,70.909425,41.4675
--18.53379,-19.87821,-18.72585,-15.46083,73.904688,42.1562
--17.41825,-18.68175,-17.59875,-14.53025,69.447375,41.8475
--18.15165,-19.46835,-18.33975,-15.2361,72.371475,43.5006
--17.9683,-19.2717,-18.1545,-14.896,71.72424,43.071
--18.528,-19.872,-18.72,-15.456,73.9584,43.87
--18.721,-20.079,-18.915,-15.52,74.7288,44.16
--17.9683,-19.2717,-18.1545,-14.896,71.72424,42.028
--19.3,-20.7,-19.5,-16.2,77.04,43.76
--18.914,-20.384,-19.11,-15.582,75.509,43.54
--18.53572,-19.88028,-18.7278,-15.46244,73.99882,43.1788
--17.41825,-18.68175,-17.59875,-14.71075,69.5286,41.363
--19.4,-20.7,-19.5,-16.1,77.04,44.56
--18.0614,-19.3648,-18.1545,-14.9891,71.72424,41.952
--18.25152,-19.56864,-18.3456,-14.95872,72.48864,41.993
--18.624,-19.968,-18.816,-15.36,73.9584,41.136
--18.06528,-19.27584,-18.1584,-14.99232,71.74896,41.5645
--17.87904,-19.07712,-17.9712,-14.83776,71.092224,41.3472
--18.25152,-19.56864,-18.43968,-15.33504,72.573312,41.0592
--19.01394,-20.38608,-19.20996,-15.87762,75.614715,42.5304
--18.62982,-19.87821,-18.82188,-15.3648,74.077542,43.4214
--17.87904,-19.07712,-17.9712,-14.83776,71.092224,42.7776
--18.2457,-19.5624,-18.33975,-15.2361,72.55017,43.7976
--17.5085,-18.772,-17.59875,-14.53025,69.61885,41.4675
--18.43776,-19.76832,-18.62784,-15.39648,73.313856,42.288
--18.43,-19.76,-18.62,-15.295,73.283,41.667
--18.44164,-19.77248,-18.63176,-15.2096,73.329284,42.2338
--18.62982,-19.97424,-18.82188,-15.65289,74.077542,42.1562
--18.915,-20.176,-19.012,-15.617,74.8355,43.36
--17.784,-18.9696,-17.8752,-14.6832,70.35168,41.192
--18.43,-19.76,-18.62,-15.39,73.2735,43.36
--17.784,-18.9696,-17.8752,-14.7744,70.3608,41.192
--19.11195,-20.38608,-19.20996,-15.87762,75.604914,43.0254
--18.9189,-20.18016,-19.01592,-15.71724,74.841228,42.1988
--18.7278,-19.97632,-18.82384,-15.55848,74.085256,42.777
--18.5328,-19.76832,-18.62784,-15.39648,73.304352,41.3376
--18.5328,-19.76832,-18.62784,-15.49152,73.313856,42.4215
--18.1545,-19.3648,-18.2476,-15.1753,71.81734,42.1988
--19.305,-20.592,-19.404,-16.038,76.4676,42.8175
--18.1584,-19.36896,-18.25152,-15.08544,71.832768,41.5645
--19.5,-20.9,-19.6,-16.2,77.23,43.25
--17.96925,-19.25935,-18.0614,-14.9283,71.08451,41.6712
--18.915,-20.176,-19.012,-15.908,74.9228,42.85
--18.72,-19.968,-18.816,-15.552,74.1408,41.3376
--18.915,-20.273,-19.012,-15.811,74.9228,42.77
--18.33975,-19.5624,-18.4338,-15.33015,72.653625,42.4215
--18.816,-19.968,-18.816,-15.648,74.1504,40.9536
--17.59875,-18.772,-17.689,-14.801,69.7091,40.2515
--18.43968,-19.56864,-18.43968,-15.24096,72.657984,41.5912
--18.2476,-19.3648,-18.2476,-15.0822,71.91044,41.601
--18.82188,-20.07027,-18.82188,-15.65289,74.077542,41.4315
--18.06336,-19.16928,-18.15552,-15.11424,71.175168,42.576
--18.2476,-19.4579,-18.3407,-15.0822,71.81734,42.1988
--19.404,-20.691,-19.404,-16.038,76.3686,43.06
--19.404,-20.592,-19.404,-16.038,76.2795,43.55
--18.816,-19.968,-18.912,-15.84,73.9584,45.45
--17.689,-18.86225,-17.77925,-14.6205,69.537625,40.147
--18.82188,-19.97424,-18.91791,-15.55686,73.981512,44.3678
--18.43968,-19.66272,-18.53376,-15.33504,72.39456,41.0592
--18.82188,-20.07027,-18.91791,-15.74892,73.895085,43.7184
--18.82188,-20.07027,-18.91791,-15.65289,73.895085,43.2135
--18.4338,-19.65645,-18.52785,-15.2361,72.371475,42.9264
--19.012,-20.273,-19.109,-15.908,74.6415,43.36
--19.6,-20.9,-19.7,-16.6,76.95,43.25
--18.62,-19.855,-18.715,-15.485,73.1025,45.85
--19.01592,-20.27718,-19.11294,-15.91128,74.65689,47.2824
--19.503,-20.691,-19.503,-16.137,76.1805,43.7184
--18.0614,-19.25935,-18.15355,-15.1126,70.90021,43.5918
--19.30797,-20.48409,-19.30797,-15.97563,75.418695,44.1144
--18.91791,-20.07027,-18.91791,-15.55686,73.895085,52.6185
--18.91791,-20.07027,-18.91791,-15.84495,73.895085,51.5458
--18.15552,-19.26144,-18.15552,-15.11424,70.91712,50.736
--19.306,-20.482,-19.306,-16.072,75.4208,50.36
--18.3407,-19.4579,-18.3407,-15.2684,71.54735,44.5075
--18.34464,-19.46208,-18.34464,-15.27168,71.65584,46.9728
--19.109,-20.273,-19.109,-15.908,74.6318,51.35
--18.15355,-19.25935,-18.15355,-14.9283,70.909425,44.327
--18.53573,-19.66481,-18.53573,-15.33667,72.402255,47.1032
--17.9664,-19.0608,-17.9664,-14.9568,70.1784,49.9584
--18.52785,-19.65645,-18.52785,-15.2361,72.371475,44.118
--18.52785,-19.65645,-18.52785,-15.51825,72.371475,44.8866
--17.9664,-19.0608,-17.9664,-14.8656,70.16928,49.0675
--18.52785,-19.7505,-18.52785,-15.6123,72.371475,51.6285
--18.53573,-19.66481,-18.53573,-15.43076,72.402255,47.8598
--18.912,-20.064,-18.912,-15.84,73.8624,44.784
--18.53376,-19.7568,-18.53376,-15.42912,72.39456,50.9012
--19.30797,-20.48409,-19.30797,-16.07364,75.408894,55.2717
--19.11294,-20.27718,-19.11294,-15.71724,74.65689,55.3112
--19.109,-20.273,-19.109,-15.811,74.6415,55.64
--18.62784,-19.66272,-18.53376,-15.33504,72.39456,53.3414
--19.40598,-20.48409,-19.30797,-15.97563,75.408894,48.0744
--18.43776,-19.46208,-18.34464,-15.17856,71.65584,51.5904
--18.24768,-19.26144,-18.15552,-15.11424,70.91712,53.7024
--18.81792,-19.86336,-18.72288,-15.58656,73.13328,53.3088
--19.404,-20.482,-19.306,-16.17,75.411,54.94
--17.8695,-18.86225,-17.77925,-14.71075,69.447375,52.3735
--19.404,-20.58,-19.306,-15.974,75.411,54.84
--18.62784,-19.7568,-18.53376,-15.33504,72.39456,52.3712
--18.6219,-19.65645,-18.52785,-15.51825,72.465525,49.8275
--18.81,-19.855,-18.715,-15.58,73.188,50.4925
--18.62784,-19.66272,-18.53376,-15.5232,72.479232,50.736
--18.62982,-19.7589,-18.53573,-15.33667,72.581026,50.8668
--18.82188,-19.86754,-18.82188,-15.58984,73.234224,49.9162
--19.01394,-20.07027,-18.91791,-15.74892,74.077542,48.2526
--19.20996,-20.27718,-19.11294,-16.0083,74.744208,47.5888
--18.81,-19.855,-18.81,-15.675,73.283,46.303
--18.6219,-19.7505,-18.6219,-15.2361,72.55017,48.1536
--18.4338,-19.4579,-18.3407,-15.2684,71.82665,45.448
--19.404,-20.58,-19.306,-16.072,75.4992,46.85
--18.62784,-19.7568,-18.53376,-15.33504,72.48864,45.168
--19.20996,-20.3742,-19.11294,-15.71724,74.75391,45.9756
--19.404,-20.482,-19.306,-15.974,75.5972,46.14
--18.1488,-19.0608,-17.9664,-14.9568,70.35168,43.662
--19.10997,-20.07027,-18.91791,-15.84495,74.077542,44.1835
--18.5269,-19.4579,-18.3407,-15.1753,71.81734,44.639
--19.502,-20.482,-19.306,-15.974,75.5972,45.33
--19.30698,-20.27718,-19.11294,-15.91128,74.744208,44.149
--19.303,-20.37,-19.109,-15.908,74.8258,44.94
--18.72192,-19.66272,-18.53376,-15.5232,72.573312,43.5264
--18.33785,-19.3515,-18.15355,-15.1126,71.08451,42.8925
--18.905,-19.95,-18.715,-15.485,73.283,42.9875
--18.905,-19.95,-18.715,-15.675,73.283,45.66
--18.91694,-19.9626,-18.82188,-15.49478,73.329284,44.149
--19.701,-20.79,-19.503,-16.533,76.3686,44.94
--19.502,-20.482,-19.306,-16.072,75.6952,45.16
--19.30698,-20.3742,-19.11294,-16.0083,74.938248,43.9628
--18.91296,-19.9584,-18.72288,-15.39648,73.399392,42.4704
--18.53088,-19.5552,-18.34464,-15.27168,71.925888,43.2232
--18.91694,-19.9626,-18.82188,-15.6849,73.424344,43.1165
--19.50399,-20.5821,-19.30797,-16.07364,75.693123,44.1144
--19.104,-20.16,-19.008,-15.648,74.1504,44.46
--18.72391,-19.7589,-18.62982,-15.43076,72.806842,43.0195
--18.72391,-19.7589,-18.62982,-15.43076,72.806842,43.1165
--19.30698,-20.3742,-19.11294,-15.91128,75.083778,44.1144
--19.502,-20.58,-19.404,-16.17,75.8324,44.05
--18.91694,-19.9626,-18.72682,-15.6849,73.557428,42.8352
--18.91296,-19.9584,-18.81792,-15.58656,73.541952,43.7976
--18.91296,-19.9584,-18.81792,-15.6816,73.551456,42.3936
--19.303,-20.37,-19.206,-15.908,75.0586,44.16
--19.602,-20.5821,-19.40598,-16.26966,75.938148,43.7976
--18.624,-19.5552,-18.43776,-15.27168,72.149376,42.1152
--18.624,-19.5552,-18.43776,-15.27168,72.149376,42.4704
--19.303,-20.37,-19.206,-15.908,75.1556,42.8352
--19.404,-20.3742,-19.20996,-15.91128,75.171096,43.6095
--19.2,-20.16,-19.008,-15.744,74.3808,42.1152
--19.602,-20.5821,-19.40598,-16.17165,75.938148,43.3224
--20,-21,-19.8,-16.5,77.48,43.36
--19.012,-19.9626,-18.82188,-15.58984,73.652488,42.2338
--18.62,-19.551,-18.4338,-15.2684,72.13388,42.5908
--18.816,-19.7568,-18.62784,-15.61728,72.893184,41.7216
--19.6,-20.58,-19.404,-16.072,75.9304,43.65
--18.62,-19.551,-18.4338,-15.3615,72.14319,43.071
--18.81,-19.7505,-18.6219,-15.6123,72.86994,43.5006
--19,-20.045,-18.81,-15.675,73.606,44.16
--18.05,-18.9525,-17.8695,-14.89125,70.01595,41.4675
--19.208,-20.26444,-19.01592,-15.8466,74.411792,43.0612
--20,-21.1,-19.8,-16.5,77.58,43.87
--19.404,-20.3742,-19.20996,-15.81426,75.268116,43.0612
--20,-21,-19.8,-16.3,77.57,43.86
--19.8,-20.79,-19.602,-16.038,76.7943,43.6095
--18.62,-19.551,-18.4338,-15.2684,72.22698,41.6765
--19.6,-20.58,-19.404,-16.072,76.0284,43.75
--18.62,-19.6441,-18.4338,-15.3615,72.22698,42.385
--19.8,-20.889,-19.602,-16.236,76.7943,43.54
--18.624,-19.5552,-18.43776,-15.3648,72.242496,42.4472
--19.2,-20.16,-19.008,-15.648,74.4768,43.46
--19.008,-20.05344,-18.81792,-15.58656,73.732032,43.3224
--19.30404,-20.26444,-19.01592,-15.8466,74.498228,42.777
--18.432,-19.3536,-18.24768,-15.11424,71.497728,41.424
--19.698,-20.678,-19.404,-16.072,76.0186,42.8848
--18.7131,-19.551,-18.4338,-15.2684,72.22698,43.071
--19.50102,-20.3742,-19.20996,-15.91128,75.268116,43.4214
--18.05,-19.04275,-17.8695,-14.801,70.01595,41.6765
--18.3312,-19.152,-18.0576,-15.048,70.75296,41.5625
--18.71712,-19.5552,-18.43776,-15.3648,72.242496,42.96
--19.497,-20.37,-19.206,-16.005,75.2526,44.16
--19.296,-20.16,-19.008,-15.744,74.4672,42.4704
--19.497,-20.37,-19.206,-16.199,75.2526,43.95
--19.698,-20.58,-19.404,-16.17,76.0284,42.8848
--18.90405,-19.7505,-18.6219,-15.51825,72.96399,41.363
--19.497,-20.467,-19.206,-16.005,75.2526,43.46
--18.71712,-19.5552,-18.43776,-15.27168,72.233184,42.7285
--18.3312,-19.2432,-18.0576,-15.1392,70.75296,42.4704
--19.095,-20.045,-18.81,-15.77,73.701,41.952
--18.90405,-19.84455,-18.71595,-15.51825,72.954585,41.7525
--19.70001,-20.5821,-19.40598,-16.17165,76.036158,43.4214
--18.71712,-19.5552,-18.43776,-15.27168,72.242496,42.4704
--19.30203,-20.26233,-19.01394,-15.84495,74.500074,42.9264
--18.52215,-19.44365,-18.2457,-15.20475,71.48997,41.8458
--18.91209,-19.85299,-18.62982,-15.52485,72.995022,41.2735
--18.52416,-19.3536,-18.24768,-15.11424,71.488512,40.848
--19.899,-20.79,-19.602,-16.335,76.8042,43.2135
--18.90405,-19.7505,-18.6219,-15.6123,72.96399,41.667
--18.3312,-19.152,-18.0576,-15.048,70.75296,40.4225
--19.899,-20.79,-19.602,-16.434,76.8042,42.0255
--18.71712,-19.46208,-18.43776,-15.27168,72.251808,41.3802
--19.296,-20.16,-19.008,-15.84,74.4768,42.04
--19.10304,-19.86336,-18.81792,-15.6816,73.732032,41.136
--18.14025,-18.86225,-17.8695,-14.9815,70.01595,41.0875
--19.296,-20.064,-19.008,-15.744,74.4768,41.136
--19.70001,-20.48409,-19.40598,-16.07364,76.036158,43.9065
--19.095,-19.855,-18.81,-15.58,73.701,40.9165
--19.50102,-20.27718,-19.20996,-16.0083,75.268116,43.0254
--18.7131,-19.4579,-18.3407,-15.2684,72.22698,43.5708
--19.998,-20.79,-19.602,-16.236,76.8042,42.86
--18.81024,-19.5552,-18.43776,-15.27168,72.233184,40.9536
--18.7131,-19.551,-18.4338,-15.2684,72.22698,42.287
--19.19,-19.95,-18.81,-15.675,73.6915,42.55
--18.8062,-19.551,-18.4338,-15.2684,72.22698,42.385
--19.594,-20.37,-19.206,-16.199,75.2526,41.8555
--19.79802,-20.68011,-19.40598,-16.07364,76.036158,42.7086
--19.19808,-20.05344,-18.81792,-15.6816,73.732032,41.52
--19.19,-20.045,-18.81,-15.675,73.701,43.86
--19.392,-20.256,-19.008,-15.84,74.4768,43.76
--18.8062,-19.551,-18.4338,-15.1753,72.21767,42.1325
--19.796,-20.678,-19.404,-16.17,76.0284,42.777
--18.4224,-19.152,-18.1488,-15.048,70.75296,41.6256
--18.6143,-19.44365,-18.33785,-15.1126,71.48997,42.028
--19.00618,-19.85299,-18.62982,-15.52485,72.995022,42.9128
--20.2,-21.1,-19.8,-16.7,77.58,44.16
--19.796,-20.678,-19.502,-16.366,76.0284,43.54
--18.81024,-19.64832,-18.43776,-15.27168,72.158688,43.1424
--19.79802,-20.68011,-19.50399,-16.07364,76.036158,43.9065
--19.392,-20.256,-19.104,-15.936,74.4768,44.16
--18.4224,-19.2432,-18.1488,-15.048,70.66176,42.96
--19.594,-20.467,-19.303,-16.102,75.1556,43.94
--19.392,-20.256,-19.104,-15.84,74.4672,42.96
--19.392,-20.256,-19.104,-15.648,74.4768,44.35
--19.39806,-20.26233,-19.10997,-15.84495,74.413647,43.7184
--19.19,-20.045,-18.905,-15.865,73.606,43.86
--19.20212,-20.05766,-18.91694,-15.6849,73.747548,44.2568
--19.19,-19.95,-18.905,-15.77,73.606,41.952
--19.998,-20.889,-19.701,-16.335,76.7052,44.24
--19.59804,-20.3742,-19.30698,-15.81426,75.171096,43.5006
--19.19808,-19.9584,-18.91296,-15.6816,73.636992,42.96
--19.594,-20.467,-19.303,-16.102,75.1556,42.5442
--19.19808,-20.05344,-18.91296,-15.87168,73.636992,44.1936
--18.61632,-19.44576,-18.33984,-15.29856,71.405568,43.1424
--19.392,-20.256,-19.104,-15.84,74.3808,42.672
--18.9981,-19.84455,-18.71595,-15.51825,72.879345,41.952
--19.594,-20.467,-19.303,-16.005,75.1653,43.0195
--19.00416,-19.85088,-18.72192,-15.5232,72.893184,42.96
--19.392,-20.256,-19.104,-15.936,74.3808,44.16
--18.4224,-19.2432,-18.1488,-14.9568,70.66176,42.1325
--19.29718,-20.05766,-18.91694,-15.58984,73.652488,43.0195
--18.9981,-19.84455,-18.71595,-15.51825,72.86994,41.5625
--19.09824,-19.85088,-18.72192,-15.80544,72.893184,42.3936
--19.10027,-19.85299,-18.818,-15.61894,72.900932,42.3405
--19.49409,-20.26233,-19.10997,-15.94098,74.404044,42.9128
--20.097,-20.889,-19.8,-16.434,76.7052,43.9065
--20.097,-20.889,-19.701,-16.236,76.7052,43.94
--20.097,-20.988,-19.8,-16.434,76.7151,44.56
--19.49612,-20.36048,-19.11196,-15.94264,74.411792,43.169
--19.29312,-20.05344,-19.008,-15.6816,73.636992,42.96
--19.69506,-20.56824,-19.30698,-16.10532,75.171096,43.5006
--18.32075,-19.133,-17.95975,-14.9815,69.9257,41.952
--19.09215,-19.9386,-18.81,-15.6123,72.86994,43.7976
--19.69506,-20.56824,-19.404,-16.0083,75.171096,44.1144
--20.3,-21.2,-20,-16.6,77.48,44.16
--19.09215,-19.9386,-18.81,-15.6123,72.86994,43.4214
--19.49612,-20.36048,-19.208,-15.8466,74.411792,42.7672
--19.488,-20.256,-19.2,-16.128,74.3808,43.65
--19.29718,-20.05766,-18.91694,-15.58984,73.652488,42.3405
--19.49409,-20.35836,-19.206,-15.74892,74.404044,42.6315
--19.09824,-19.94496,-18.816,-15.61728,72.893184,41.2416
--18.5136,-19.2432,-18.24,-15.048,70.67088,41.363
--19.29312,-20.05344,-19.008,-15.6816,73.636992,42.0096
--19.29312,-20.05344,-19.008,-15.6816,73.636992,43.5006
--20.097,-20.889,-19.701,-16.236,76.7052,43.2135
--19.09215,-19.1862,-17.21115,-15.9885,72.86994,43.7184
--19.10027,-18.25346,-15.9953,-16.55984,72.900932,42.5442
--20.097,-18.216,-15.741,-17.028,76.7052,43.9065
--18.90336,-16.57536,-14.24736,-16.296,72.149376,41.9525
--20.3,-17.3,-14.6,-17.1,77.48,43.65
--20.3,-18.8,-15.5,-15.4,77.48,42.77
--18.5136,-17.9664,-15.1392,-14.5008,70.66176,41.7984
--19.49612,-19.11196,-16.3268,-14.98224,74.411792,43.2768
--19.691,-19.303,-16.587,-15.035,75.1556,42.3405
--19.09824,-18.72192,-16.27584,-14.30016,72.893184,42.777
--19.285,-18.81,-16.625,-14.345,73.5205,41.287
--19.89603,-19.30797,-17.24976,-14.99553,75.840138,42.8175
--18.8993,-18.3407,-16.4787,-14.2443,72.04078,40.983
--19.488,-18.912,-17.088,-14.688,74.2848,41.3568
--18.70645,-18.15355,-16.4027,-14.0068,71.314885,41.0892
--19.10027,-18.62982,-16.84211,-14.30168,72.816251,41.2735
--19.49409,-19.01394,-17.2854,-14.88465,74.308014,42.0592
--18.8993,-18.5269,-16.8511,-14.4305,72.04078,41.363
--18.90336,-18.71712,-17.04096,-14.52672,72.056256,41.6256
--19.69506,-19.50102,-17.75466,-15.23214,75.074076,42.4215
--18.90336,-18.81024,-17.13408,-14.52672,72.065568,41.7216
--19.691,-19.594,-17.848,-15.229,75.0683,42.0592
--19.09215,-18.9981,-17.39925,-14.8599,72.77589,41.0875
--20.3,-20.2,-18.6,-15.6,77.39,44.45
--18.32075,-18.32075,-16.87675,-14.2595,69.844475,41.743
--18.90336,-18.90336,-17.41344,-14.71296,72.065568,42.4472
--19.691,-19.788,-18.236,-15.229,74.9228,41.8555
--19.488,-19.584,-18.144,-15.36,74.1504,42.1056
--19.29312,-19.38816,-17.96256,-15.30144,73.408896,42.6294
--19.49409,-19.59012,-18.14967,-15.26877,74.163969,43.7184
--19.69506,-19.79208,-18.4338,-15.42618,74.938248,43.0254
--19.29718,-19.39224,-18.0614,-15.2096,73.43385,42.2338
--18.70645,-18.89075,-17.5085,-14.9283,71.167445,41.0875
--19.09824,-19.2864,-17.96928,-15.0528,72.667392,43.2768
--19.285,-19.475,-18.145,-15.2,73.378,42.1325
--18.70645,-18.89075,-17.60065,-14.83615,71.17666,42.2275
--20.097,-20.295,-18.909,-15.939,76.4676,44.0055
--19.49409,-19.78218,-18.43776,-15.46083,74.077542,43.5142
--19.89603,-20.28807,-18.91593,-15.77961,75.702924,43.7184
--18.32075,-18.68175,-17.41825,-14.6205,69.7091,41.743
--19.29718,-19.58236,-18.34658,-15.30466,73.33879,43.5142
--20.3,-20.7,-19.3,-16.1,77.14,44.35
--19.894,-20.286,-18.914,-15.778,75.5972,42.9828
--19.285,-19.665,-18.43,-15.58,73.283,42.9875
--18.5136,-18.8784,-17.6928,-14.592,70.35168,43.5264
--18.5136,-18.8784,-17.6928,-14.9568,70.35168,41.952
--19.488,-19.872,-18.624,-15.552,74.0544,43.1424
--20.3,-20.7,-19.4,-16.2,77.14,44.24
--19.69506,-19.98612,-18.82188,-15.91128,74.841228,43.7976
--19.29718,-19.67742,-18.5367,-15.39972,73.329284,43.2329
--19.00618,-19.47663,-18.34755,-15.33667,72.581026,43.0195
--19.20212,-19.67742,-18.5367,-15.39972,73.329284,44.3548
--19.69506,-20.08314,-18.9189,-15.71724,74.841228,44.4906
--18.81024,-19.27584,-18.1584,-14.99232,71.832768,43.2232
--19.09824,-19.47456,-18.3456,-15.24096,72.573312,42.875
--18.70848,-19.07712,-17.9712,-14.92992,71.092224,42.8544
--19.39806,-19.87821,-18.82188,-15.74892,74.077542,42.4375
--18.61632,-19.07712,-17.9712,-15.02208,71.092224,42.288
--19.29718,-19.67742,-18.5367,-15.30466,73.329284,42.9128
--19.39806,-19.87821,-18.82188,-15.74892,73.981512,44.9856
--19.10027,-19.57072,-18.44164,-15.14849,72.590435,43.5142
--20.2,-20.9,-19.6,-16.4,77.14,44.45
--20.3,-20.9,-19.6,-16.4,77.04,45.25
--18.61632,-19.26144,-18.15552,-15.29856,71.092224,43.1424
--18.8062,-19.4579,-18.3407,-15.3615,71.73355,43.073
--18.8062,-19.4579,-18.3407,-15.2684,71.81734,44.1392
--19.19,-19.855,-18.715,-15.58,73.188,45.05
--19.40008,-20.07236,-18.91988,-15.65452,74.085256,44.345
--19.796,-20.482,-19.306,-16.072,75.4992,44.639
--18.9981,-19.7505,-18.52785,-15.4242,72.465525,43.1775
--19.392,-20.064,-18.912,-15.744,73.968,43.6224
--19.00618,-19.7589,-18.53573,-15.43076,72.486936,43.6985
--19.00416,-19.7568,-18.53376,-15.24096,72.479232,43.5168
--19.79802,-20.5821,-19.30797,-15.97563,75.506904,45.2826
--18.6143,-19.3515,-18.2457,-15.02045,71.08451,42.902
--18.61632,-19.3536,-18.15552,-15.11424,71.000064,43.248
--18.81024,-19.5552,-18.43776,-15.17856,71.739648,43.8925
--19.79802,-20.5821,-19.40598,-16.07364,75.506904,44.4906
--18.81024,-19.5552,-18.43776,-15.17856,71.74896,43.4496
--19.59804,-20.3742,-19.20996,-15.81426,74.744208,44.7975
--19.09215,-19.7505,-18.6219,-15.33015,72.45612,44.1936
--19.20212,-19.9626,-18.82188,-15.58984,73.234224,43.7472
--18.9981,-19.7505,-18.6219,-15.2361,72.45612,42.7975
--18.2305,-18.9525,-17.8695,-14.71075,69.5286,43.2725
--19.796,-20.58,-19.404,-15.974,75.4992,46.25
--19.285,-19.95,-18.81,-15.39,73.188,46.36
--19.59804,-20.3742,-19.20996,-16.0083,74.744208,44.639
--18.8062,-19.551,-18.4338,-15.4546,71.72424,42.7975
--19.594,-20.37,-19.206,-15.908,74.7288,43.8925
--19.00618,-19.7589,-18.62982,-15.33667,72.486936,43.7955
--18.81024,-19.5552,-18.43776,-15.27168,71.65584,43.8925
--19.998,-20.79,-19.602,-16.137,76.2696,45.3915
--19.392,-20.16,-19.008,-15.744,73.9584,45.44
--19.594,-20.37,-19.206,-15.908,74.7288,44.0768
--19.19,-19.95,-18.81,-15.675,73.188,42.788
--19.594,-20.37,-19.206,-15.908,74.6318,44.6588
--19.392,-20.16,-19.008,-15.936,73.872,43.1424
--18.2305,-19.04275,-17.8695,-14.801,69.447375,42.408
--18.61632,-19.44576,-18.24768,-15.11424,70.907904,43.8336
--19.19808,-19.9584,-18.81792,-15.49152,73.123776,44.0055
--19.998,-20.79,-19.602,-16.137,76.1706,44.75
--19.00416,-19.7568,-18.62784,-15.5232,72.39456,44.0412
--19.59804,-20.3742,-19.20996,-15.91128,74.647188,43.9628
--18.2305,-19.04275,-17.8695,-14.801,69.43835,42.693
--19.392,-20.256,-19.008,-15.744,73.8624,43.728
--19.79802,-20.68011,-19.40598,-16.17165,75.408894,44.7975
--18.6143,-19.44365,-18.33785,-15.1126,70.90021,43.7955
--19.594,-20.467,-19.303,-16.005,74.6318,43.1165
--19.59804,-20.3742,-19.30698,-16.0083,74.647188,44.8074
--18.8062,-19.551,-18.5269,-15.3615,71.64045,43.855
--19.19808,-19.9584,-18.91296,-15.6816,73.123776,45.0945
--19.392,-20.256,-19.104,-15.744,73.8624,42.7776
--19.00416,-19.85088,-18.72192,-15.5232,72.385152,43.561
--19.19,-20.045,-18.905,-15.58,73.093,44.94
--20.2,-21.1,-19.9,-16.5,76.94,44.86
--19.894,-20.678,-19.502,-16.268,75.4012,44.64
--19.392,-20.256,-19.104,-15.936,73.8624,44.56
--19.39806,-20.26233,-19.10997,-15.94098,73.885482,43.7976
--19.796,-20.678,-19.502,-16.268,75.411,43.0612
--18.8062,-19.6441,-18.5269,-15.1753,71.64045,42.5125
--18.8062,-19.6441,-18.5269,-15.3615,71.63114,41.8475
--19.79802,-20.68011,-19.50399,-16.26966,75.408894,44.4114
--20.3,-21.1,-19.9,-16.5,76.94,44.64
--18.6143,-19.1672,-17.5085,-14.65185,70.90021,42.5125
--19.00618,-18.62982,-16.55984,-13.64305,72.392846,42.6218
--19.594,-18.43,-16.005,-12.804,74.6415,43.1262
--18.8062,-16.9442,-14.6167,-11.6375,71.63114,42.875
--19.00618,-16.55984,-14.01941,-10.91444,72.402255,42.8352
--19.49409,-16.3251,-13.63626,-10.08315,73.885482,42.8352
--19.10027,-15.52485,-12.79624,-9.03264,72.392846,43.4075
--20.097,-15.84,-12.771,-8.514,76.0815,44.45
--19.691,-15.132,-11.931,-7.663,74.6318,44.45
--19.09824,-14.20608,-10.8192,-6.67968,72.30048,43.0656
--18.5136,-13.4064,-9.9408,-6.2016,70.0872,42.8544
--18.8062,-13.1271,-9.5893,-6.4239,71.54735,43.855
--19.285,-12.825,-9.12,-7.03,73.0075,42.332
--19.39806,-12.38787,-8.93079,-7.20225,73.789452,43.0195
--18.5136,-11.0352,-8.0256,-6.9312,70.07808,42.576
--19.796,-11.368,-8.232,-6.958,75.313,43.9628
--18.81024,-9.96384,-7.26336,-5.95968,71.56272,43.5168
--18.9981,-9.2169,-6.48945,-5.36085,72.277425,42.408
--19.20212,-8.84058,-5.79866,-5.2283,73.05361,44.3548
--18.61632,-7.64928,-4.88448,-4.88448,70.815744,43.344
--18.9981,-6.9597,-3.85605,-4.60845,72.26802,44.7975
--19.998,-6.534,-2.97,-4.059,75.9825,44.3025
--19.39806,-5.7618,-1.9206,-3.45708,73.789452,44.4906
--19.00416,-4.704,-0.4704,-2.8224,72.2064,44.1392
--19.19808,-3.99168,0.4752,-2.47104,72.9432,42.672
--19.19,-3.325,1.615,-2.09,72.9125,41.8475
--18.3312,-2.4624,2.6448,-1.4592,69.996,42.5125
--19.899,-2.178,3.96,-1.287,75.9825,44.4114
--19.296,-1.344,4.8,-1.056,73.68,42.96
--19.296,-0.672,5.952,-0.576,73.68,44.64
--19.698,-0.098,7.252,-0.098,75.215,45.33
--18.81,0.65835,7.9002,0.1881,72.183375,44.4906
--18.818,1.22317,9.03264,0.47045,72.214075,42.9128
--18.05,1.6245,9.747,0.9025,69.266875,41.743
--18.43,2.11945,10.96585,1.6587,70.725125,42.693
--18.81,2.91555,12.2265,2.0691,72.183375,42.332
--18.53088,3.35232,13.12992,2.328,71.4696,43.4075
--18.72391,4.23405,14.30168,3.10497,72.129394,43.4075
--19.01394,4.89753,15.84495,3.74517,73.703025,43.6985
--19.404,5.684,17.248,4.41,75.117,45.66
--18.4338,6.1446,17.2235,4.4688,71.36115,44.0412
--18.81792,6.84288,18.62784,5.13216,72.838656,44.1936
--18.15552,7.09632,18.80064,5.25312,70.64064,43.344
--18.53376,8.27904,20.32128,5.73888,72.11232,43.6224
--18.62784,9.0288,21.384,6.36768,72.84816,42.4704
--18.82384,9.79608,22.5694,6.7228,73.61466,44.345
--18.62784,10.64448,23.37984,7.22304,72.857664,44.1243
--18.5367,11.12202,24.33536,7.69986,72.86349,43.8052
--19.305,12.177,26.235,8.613,75.8835,44.24
--18.0614,12.3823,25.4163,8.5652,71.36115,42.1325
--17.8771,13.0853,26.07845,8.8464,70.632975,43.3008
--18.72486,14.26194,28.1358,9.89604,74.26881,43.9628
--18.06336,14.39424,28.224,10.06656,72.01824,45.2172
--18.43968,15.55848,29.48428,10.94856,73.51862,43.7472
--17.78592,15.73728,29.23968,10.80192,71.28336,44.0768
--18.2457,16.70922,30.63357,11.5236,73.520568,43.1262
--17.8695,17.1171,30.75435,11.8503,71.995275,43.168
--17.955,17.765,31.445,12.635,72.7225,46.36
--18.144,18.432,32.352,13.248,73.392,46.65
--17.3242,18.2457,31.97605,12.901,70.45789,43.9701
--18.513,20.394,35.145,14.355,75.6855,45.85
--18.414,21.087,35.838,15.147,75.6855,44.23
--16.872,19.8816,33.744,14.5008,69.73152,42.8544
--17.04775,20.6416,34.8327,15.02045,70.448675,42.522
--17.848,22.504,37.442,16.199,74.1565,44.1835
--16.86528,21.6576,36.31104,15.85152,70.465536,42.8544
--17.12256,22.5792,37.53792,16.55808,71.933568,43.6224
--17.20224,23.66496,38.58624,17.29728,72.65808,43.2384
--16.587,23.4061,37.87365,17.1399,70.45789,43.4075
--17.01216,24.90048,39.72672,18.34272,72.65808,42.3936
--16.5718,24.9508,39.5675,18.4338,71.17495,42.9875
--16.992,26.304,41.28,19.584,73.4016,43.94
--17.07552,27.06858,42.10668,19.98612,74.181492,44.7468
--16.2925,26.5335,41.0571,19.9234,71.09116,42.2275
--17.226,28.908,44.154,21.582,75.5964,44.7975
--16.27584,27.94176,42.71232,21.168,71.92416,44.345
--16.01664,28.21536,42.55584,21.4176,71.106432,43.9104
--16.66,29.89,45.374,23.03,74.8328,44.5312
--15.89952,29.07072,44.12352,22.20288,71.839488,44.5312
--15.6408,29.1403,44.0363,22.5302,71.09116,43.453
--15.5477,29.5127,44.5018,22.9026,71.09116,44.5312
--16.0083,31.14342,46.95768,24.255,74.084472,43.6095
--16.07364,32.14728,47.92689,25.09056,74.830635,44.3025
--15.02208,30.50496,45.6192,24.05376,70.373376,43.6224
--14.99232,31.00896,46.37376,24.58368,71.106432,42.1824
--15.2064,31.93344,47.80512,25.37568,72.477504,44.4
--15.11454,32.3204,48.29048,25.95138,72.492756,44.8625
--14.61984,32.1264,47.77056,25.88736,71.013312,43.6985
--14.3754,32.2525,47.82585,25.89415,70.27359,43.2725
--14.48832,33.49248,49.10976,26.71872,71.745408,42.5664
--14.39424,33.8688,49.58016,27.37728,71.745408,43.9104
--14.798,35.574,51.94,28.42,74.7348,44.15
--14.01792,34.3392,49.392,29.07072,71.745408,43.728
--13.357,32.851,46.7495,29.241,68.82465,42.788
--13.73568,34.15104,48.07488,31.0464,71.745408,44.1392
--14.21,35.476,49.294,31.654,74.7348,44.86
--13.3133,33.6091,46.1776,29.9782,70.99806,41.743
--13.54023,34.28271,46.28646,33.99462,73.232478,44.5896
--13.5828,32.69574,44.53218,34.15104,73.987452,43.5006
--12.9789,30.56625,41.1939,32.44725,71.731935,44.0055
--12.274,28.42875,37.7245,30.324,68.82465,41.667
--12.86802,29.28915,38.50803,31.11372,73.232478,43.4075
--12.768,28.032,36.864,30.528,73.2096,44.24
--12.57993,27.17649,35.43507,29.86533,73.242081,44.1936
--12.38787,26.12016,34.18668,29.00106,73.232478,44.1936
--11.8237,24.3922,31.8402,27.5576,71.00737,43.561
--11.4,23.1648,30.096,26.448,69.54912,42.7776
--11.57307,23.24023,30.01471,26.15702,71.753034,43.0098
--11.0352,21.7968,28.1808,24.9888,69.54912,42.028
--11.781,22.77,29.601,26.532,75.4974,44.24
--11.583,21.978,28.611,25.938,75.4974,44.6985
--11.5,21.5,28.1,25.6,76.26,45.95
--10.73952,19.86336,25.85088,23.66496,72.477504,44.8767
--10.5633,19.49409,25.35192,23.43132,73.232478,43.7955
--10.26432,18.62784,24.42528,22.61952,72.477504,44.1936
--10.6,19,24.9,23.2,76.26,44.85
--10.192,18.13,23.716,22.344,74.7348,44.56
--10.098,17.82,23.364,21.978,75.4974,44.0055
--9.9,17.226,22.671,21.384,75.4974,44.45
--9.31,15.96,21.09,19.95,72.447,41.5625
--9.0288,15.2361,20.40885,19.3743,71.72253,41.743
--8.93376,14.92128,19.9584,19.19808,72.477504,42.288
--8.924,14.841,19.885,19.206,73.9722,42.2241
--8.4681,13.92532,18.72391,18.06528,71.753034,42.1562
--8.36352,13.68576,18.43776,17.77248,72.477504,43.6095
--7.8432,12.768,17.1456,16.6896,69.64032,42.3936
--7.9002,12.69675,17.21115,16.64685,71.81658,42.9264
--7.7273,12.103,16.4787,16.1994,71.09116,43.0612
--7.524,11.8503,16.27065,15.89445,71.81658,43.1046
--7.9,12.2,16.8,16.7,76.35,43.86
--7.7,11.8,16.3,16.3,76.36,43.46
--6.84,10.3968,14.4096,14.4096,69.6312,41.667
--7.008,10.56,14.688,14.784,73.3056,43.06
--6.816,10.176,14.304,14.4,73.3056,43.14
--6.55776,9.59904,13.68576,13.87584,72.572544,42.288
--6.2377,9.0307,13.034,13.4064,71.09116,43.0612
--6.468,9.212,13.328,13.72,74.8328,42.4928
--6.02112,8.56128,12.41856,12.7008,71.839488,42.581
--5.952,8.448,12.192,12.864,73.3056,43.75
--5.529,7.64845,11.2423,11.70305,70.36574,40.907
--5.723,7.76,11.446,12.222,74.0692,41.9525
--5.36085,7.24185,10.81575,11.4741,71.81658,41.192
--5.1216,6.89088,10.33632,11.08128,71.106432,41.232
--5.08032,6.5856,10.06656,10.8192,71.839488,41.0592
--4.8412,6.2377,9.5893,10.5203,71.09116,41.1894
--4.752,6.08256,9.40896,10.4544,72.572544,41.8275
--4.60992,5.73888,9.03168,10.16064,71.933568,40.848
--4.512,5.568,8.928,9.984,73.3056,43.36
--4.2389,4.9761,8.20135,9.215,70.448675,41.6615
--4.0964,4.655,7.9135,9.0307,71.17495,42.1988
--3.96245,4.33105,7.46415,8.75425,70.448675,39.938
--3.97782,4.3659,7.56756,8.92584,74.084472,41.5912
--3.8016,4.08672,7.22304,8.64864,72.667584,42.0156
--3.783,3.977,6.984,8.439,74.1565,40.7012
--3.62637,3.62637,6.66468,8.33085,74.928645,41.6196
--3.3174,3.1331,5.98975,7.27985,70.45789,40.8855
--3.19872,2.91648,5.73888,7.33824,71.933568,40.3584
--3.0723,2.6068,5.3998,7.0756,71.18426,41.5912
--3.104,2.522,5.335,7.275,74.0692,43.06
--2.88,2.4,5.088,7.008,73.4016,43.46
--2.6448,2.0064,4.56,6.2928,69.7224,40.9536
--2.63452,1.78771,4.42223,6.30403,71.941214,41.6712
--2.592,1.44,4.32,6.144,73.3056,42.04
--2.6,1.3,4.1,6.2,76.45,43.14
--2.328,1.067,3.783,5.723,74.1565,42.76
--2.25792,0.9408,3.38688,5.36256,71.92416,41.5128
--2.09,0.76,3.23,5.035,72.6275,39.9285
--1.97505,0.5643,3.0096,4.98465,71.901225,39.862
--1.98,0.396,2.871,5.148,75.6954,41.9364
--1.75104,0.09216,2.39616,4.23936,70.45632,40.56
--1.782,-0.099,2.376,4.455,75.6954,42.2334
--1.64934,-0.38808,2.03742,4.07484,74.181492,42.1245
--1.5048,-0.65835,1.78695,3.9501,71.91063,40.622
--1.4553,-0.77616,1.55232,3.68676,74.181492,41.699
--1.2635,-0.81225,1.2635,3.51975,69.00515,39.938
--1.235,-1.045,1.14,3.42,72.6275,42.25
--1.15236,-1.15236,0.9603,3.36105,73.414935,41.5404
--1.2,-1.4,0.8,3.3,76.45,41.67
--1.01365,-1.56655,0.46075,2.7645,70.45789,39.5865
--0.95,-1.9,0.285,2.47,72.6275,39.862
--0.873,-2.134,0,2.328,74.1565,41.67
--0.76048,-2.28144,-0.09506,2.3765,72.682876,40.0319
--0.7524,-2.35125,-0.28215,2.16315,71.91063,41.2533
--0.65184,-2.42112,-0.4656,1.95552,71.19024,40.3132
--0.57036,-2.66168,-0.66542,1.80614,72.682876,40.621
--0.57618,-2.78487,-0.86427,1.72854,73.424538,41.3226
--0.48,-2.976,-1.056,1.344,73.392,41.26
--0.396,-3.366,-1.287,1.287,75.6954,41.0355
--0.3724,-3.4447,-1.4896,1.1172,71.17495,40.5132
--0.29403,-3.82239,-1.76418,0.88209,74.938446,40.9266
--0.285,-3.895,-1.9,0.855,72.637,39.482
--0.19,-3.895,-1.995,0.855,72.637,41.85
--0.2,-4.2,-2.3,0.5,76.46,42.04
--0.09603,-4.22532,-2.30472,0.38412,73.424538,41.3226
--0.09702,-4.3659,-2.52252,0.29106,74.181492,41.3226
-0,-4.37276,-2.56662,0.09506,72.67337,41.1992
-0,-4.704,-2.842,-0.294,74.9308,41.85
-0,-4.851,-3.00762,-0.19404,74.17179,41.1444
-0.09506,-4.94312,-3.13698,-0.57036,72.67337,41.1992
-0.09216,-4.88448,-3.13344,-0.55296,70.465536,40.176
-0.095,-5.13,-3.42,-0.57,72.637,41.56
-0.19008,-5.2272,-3.51648,-0.9504,72.667584,41.8275
-0.198,-5.643,-3.861,-1.188,75.6855,41.6196
-0.1881,-5.54895,-3.762,-1.3167,71.901225,41.1444
-0.19012,-5.89372,-4.08758,-1.80614,72.682876,40.9052
-0.294,-6.37,-4.41,-1.764,74.9308,41.74
-0.28512,-6.1776,-4.37184,-1.52064,72.667584,41.4315
-0.297,-6.336,-4.653,-1.584,75.6855,41.3226
-0.27645,-5.8976,-4.4232,-1.56655,70.36574,39.3775
-0.388,-6.208,-4.753,-1.746,74.1662,40.2065
-0.38,-6.27,-4.75,-2.28,72.637,39.273
-0.3724,-6.4239,-4.8412,-2.6999,71.18426,40.5132
-0.396,-7.128,-5.346,-2.772,75.6954,41.35
-0.38016,-6.93792,-5.2272,-2.47104,72.667584,39.5136
-0.37636,-6.86857,-5.26904,-2.54043,71.950623,39.9252
-0.38412,-6.91416,-5.47371,-2.49678,73.424538,40.6395
-0.38416,-6.91488,-5.57032,-2.401,73.432184,40.4348
-0.37632,-6.86784,-5.55072,-3.19872,71.933568,39.3024
-0.384,-7.296,-5.856,-3.552,73.4016,41.26
-0.38016,-7.50816,-5.89248,-3.61152,72.667584,40.5306
-0.388,-7.857,-6.208,-3.298,74.1662,39.8185
-0.3724,-7.5411,-6.0515,-3.1654,71.17495,40.1212
-0.3686,-7.46415,-6.0819,-3.3174,70.448675,38.893
-0.37248,-7.54272,-6.23904,-3.35232,71.208864,39.408
-0.38808,-7.95564,-6.59736,-3.58974,74.181492,40.9266
-0.3762,-7.80615,-6.48945,-3.5739,71.901225,38.9975
-0.38808,-8.2467,-6.7914,-3.8808,74.181492,40.229
-0.38412,-8.35461,-6.81813,-4.41738,73.424538,40.0222
-0.3686,-8.2935,-6.72695,-4.2389,70.45789,39.9252
-0.294,-8.918,-7.252,-4.312,74.9308,40.86
-0.28812,-8.83568,-7.29904,-4.22576,73.432184,39.935
-0.285,-8.74,-7.22,-4.37,72.637,40.94
-0.27645,-8.4778,-7.09555,-4.2389,70.45789,39.7215
-0.3,-9.2,-7.8,-4.6,76.46,40.86
-0.18432,-8.57088,-7.28064,-4.51584,70.465536,39.3024
-0.291,-9.118,-7.76,-4.656,74.1662,40.86
-0.198,-9.405,-8.019,-5.148,75.6855,40.86
-0.2,-9.6,-8.2,-5.1,76.46,40.75
-0.19,-9.31,-7.885,-4.94,72.637,38.7125
-0.0931,-9.2169,-7.8204,-5.0274,71.18426,40.4348
-0.09025,-8.93475,-7.67125,-5.054,68.996125,38.608
-0.095,-9.595,-8.17,-5.32,72.637,40.57
-0.09504,-9.78912,-8.26848,-5.51232,72.667584,40.0554
-0,-10.29,-8.722,-5.782,75.019,40.1212
-0,-10.08315,-8.6427,-5.7618,73.424538,40.3425
-0,-9.975,-8.55,-5.51,72.6275,40.94
--0.09216,-9.6768,-8.38656,-5.5296,70.45632,39.3024
--0.09215,-9.9522,-8.56995,-6.17405,70.45789,39.7118
--0.09603,-10.65933,-9.12285,-6.43401,73.414935,39.8185
--0.19,-10.545,-9.025,-6.27,72.637,38.7125
--0.196,-10.78,-9.408,-6.174,74.921,40.86
--0.196,-10.682,-9.408,-6.174,74.9308,40.0428
--0.29106,-10.57518,-9.41094,-6.20928,74.17179,40.6395
--0.288,-10.464,-9.312,-6.24,73.4016,39.5136
--0.396,-10.89,-9.702,-6.732,75.6954,40.94
--0.384,-10.848,-9.504,-7.104,73.392,40.86
--0.3686,-10.6894,-9.30715,-6.72695,70.448675,38.817
--0.495,-11.484,-9.999,-6.93,75.6954,40.86
--0.4656,-10.80192,-9.49824,-6.5184,71.199552,39.7118
--0.588,-11.27,-9.996,-6.86,74.921,40.86
--0.57,-10.925,-9.785,-6.65,72.637,38.532
--0.57,-10.925,-9.785,-6.65,72.6275,40.75
--0.67914,-11.25432,-10.09008,-6.98544,74.17179,40.3425
--0.784,-11.466,-10.29,-6.958,74.921,39.935
--0.7372,-10.96585,-9.67575,-6.8191,70.45789,38.437
--0.73728,-11.0592,-9.76896,-7.00416,70.465536,39.2256
--0.84645,-11.286,-10.06335,-7.1478,71.901225,40.0554
--0.83808,-11.36064,-10.05696,-7.17024,71.199552,38.8416
--0.9702,-11.83644,-10.57518,-7.56756,74.17179,40.1544
--0.9504,-11.68992,-10.4544,-7.41312,72.667584,40.4514
--1.01365,-11.4266,-10.22865,-7.27985,70.45789,39.4208
--1.01376,-11.52,-10.32192,-7.55712,70.557696,39.12
--1.14,-11.97,-10.735,-7.98,72.6275,40.45
--1.188,-12.771,-11.286,-8.514,75.6954,39.9465
--1.24839,-12.4839,-11.04345,-8.16255,73.424538,39.3432
--1.287,-12.87,-11.484,-8.217,75.7944,40.45
--1.358,-12.513,-11.252,-7.954,74.1662,39.2462
--1.2768,-11.7648,-10.6704,-7.8432,69.7224,38.4275
--1.47,-12.838,-11.564,-8.722,74.9308,40.56
--1.3965,-12.4754,-11.0789,-8.6583,71.17495,39.6508
--1.50528,-12.7008,-11.2896,-8.56128,71.933568,38.8416
--1.53648,-12.86802,-11.61963,-8.45064,73.424538,40.3425
--1.7,-13.3,-12.1,-8.7,76.45,40.56
--1.74636,-12.90366,-11.73942,-8.44074,74.181492,40.1643
--1.8,-13.2,-12.1,-8.7,76.46,40.75
--1.71475,-12.00325,-11.0105,-7.7615,69.00515,38.7125
--1.84338,-13.00068,-11.83644,-8.7318,74.181492,40.5306
--1.96,-13.328,-12.152,-9.212,74.921,39.8272
--2.058,-13.524,-12.25,-9.408,75.0288,40.0428
--2.079,-13.761,-12.474,-9.405,75.6954,40.86
--1.9855,-12.54475,-11.3715,-8.39325,68.996125,38.817
--2.0273,-12.80885,-11.6109,-8.56995,70.45789,39.7118
--2.25423,-13.62339,-12.34926,-9.11493,74.938446,40.7484
--2.254,-13.622,-12.446,-9.31,74.9308,41.26
--2.23488,-12.94368,-11.91936,-8.75328,71.28336,39.408
--2.352,-13.1712,-12.04224,-8.9376,71.933568,40.3368
--2.328,-13.0368,-11.91936,-8.93952,71.28336,39.9252
--2.42112,-13.12992,-12.01248,-8.93952,71.28336,39.3024
--2.47,-13.49,-12.255,-9.405,72.732,38.9975
--2.59281,-13.73229,-12.4839,-9.50697,73.510965,40.5306
--2.63452,-13.54896,-12.32579,-9.31491,72.025895,39.6342
--2.6334,-13.63725,-12.4146,-9.405,71.901225,40.2336
--2.6448,-13.224,-12.0384,-9.0288,69.73152,38.608
--2.70048,-13.59552,-12.38496,-9.49824,71.28336,39.408
--2.94,-14.308,-13.132,-10.094,75.019,40.94
--2.976,-14.112,-12.864,-9.792,73.4016,40.75
--2.8861,-13.7788,-12.5685,-9.6824,71.26805,38.608
--3.104,-14.453,-13.095,-10.185,74.2535,39.3432
--3.267,-14.751,-13.464,-10.494,75.7845,40.3425
--3.13698,-14.259,-13.02322,-10.17142,72.76843,39.4208
--3.13344,-13.824,-12.62592,-9.76896,70.557696,38.8416
--3.1008,-13.68,-12.5856,-9.7584,69.82272,38.437
--3.465,-14.949,-13.761,-10.692,75.7845,40.0455
--3.564,-15.147,-13.86,-10.989,75.7845,40.1544
--3.6,-15.5,-14.1,-11.1,76.55,40.45
--3.40955,-14.28325,-12.99315,-10.04435,70.540825,38.4275
--3.648,-14.784,-13.632,-10.176,73.488,38.832
--3.686,-14.841,-13.774,-10.476,74.2535,40.56
--3.74517,-14.69259,-13.63626,-10.46727,73.510965,39.6342
--3.59385,-14.28325,-13.17745,-10.59725,70.540825,39.2365
--3.7248,-14.61984,-13.40928,-10.80192,71.292672,39.2462
--4.059,-15.642,-14.355,-11.286,75.7845,40.2336
--3.85728,-14.77056,-13.6416,-10.44288,72.01824,39.8272
--3.9102,-14.6167,-13.4995,-10.3341,71.27736,38.437
--4.128,-14.976,-13.92,-10.56,73.488,40.35
--3.88075,-14.079,-13.1765,-9.9275,69.086375,38.3325
--4.18176,-14.82624,-13.7808,-10.73952,72.75312,40.1544
--4.1472,-14.37696,-13.45536,-10.41408,70.54848,38.832
--4.23225,-14.76585,-13.7313,-10.9098,71.995275,38.4275
--4.41784,-15.27036,-14.11788,-11.0446,73.528224,39.3568
--4.3757,-14.896,-13.7788,-10.7996,71.27736,39.4352
--4.653,-15.939,-14.751,-11.682,75.7845,40.35
--4.60992,-15.55848,-14.30996,-11.23668,73.51862,39.543
--4.4688,-15.0822,-13.8719,-10.8927,71.26805,39.7488
--4.753,-15.617,-14.453,-11.252,74.2535,39.2365
--4.95,-16.038,-14.85,-11.682,75.7845,40.45
--4.85,-15.714,-14.55,-11.446,74.2535,39.3432
--4.74912,-15.17856,-14.06112,-11.08128,71.292672,39.6342
--5.044,-15.908,-14.744,-11.737,74.2535,39.6342
--4.992,-15.84,-14.688,-11.712,73.488,39.0144
--5.09012,-15.94264,-14.69412,-11.5248,73.51862,40.1212
--5.238,-16.102,-14.841,-11.834,74.2632,40.64
--5.238,-16.005,-14.938,-11.737,74.2535,41.05
--5.17495,-15.61894,-14.48986,-11.38489,72.025895,39.7118
--5.6,-16.7,-15.5,-12.1,76.55,41.05
--5.21472,-15.64416,-14.4336,-11.64,71.28336,39.5275
--5.41842,-15.97008,-14.82936,-11.8825,72.76843,39.7118
--5.47371,-16.22907,-14.98068,-12.09978,73.520568,40.4514
--5.45664,-15.89952,-14.77056,-11.76,72.01824,39.408
--5.43685,-15.57335,-14.46755,-11.4266,70.540825,38.893
--5.7618,-16.3251,-15.17274,-12.09978,73.510965,40.4514
--5.94,-16.83,-15.642,-12.672,75.7845,40.7385
--5.97861,-16.75971,-15.58359,-12.54528,75.026655,40.3425
--5.73705,-16.08255,-14.95395,-12.0384,72.00468,38.893
--5.7722,-16.0132,-14.8029,-11.8237,71.26805,38.817
--5.92704,-16.27584,-15.0528,-12.2304,72.027648,39.3024
--6.237,-17.127,-15.939,-12.771,75.7845,40.64
--6.208,-16.781,-15.617,-12.61,74.2535,39.2365
--6.3063,-16.78446,-15.62022,-12.51558,74.26881,39.7488
--6.11325,-16.3647,-15.2361,-12.2265,72.00468,38.608
--6.27396,-16.54044,-15.39972,-12.45286,72.682876,38.9552
--6.17472,-16.128,-14.92992,-12.07296,70.465536,39.792
--6.30403,-16.46575,-15.33667,-12.04352,71.941214,40.0222
--6.59736,-17.07552,-15.81426,-12.6126,74.17179,39.7488
--6.62607,-16.90128,-15.74892,-12.77199,73.424538,39.3432
--6.42528,-16.38912,-15.27168,-12.38496,71.199552,39.3432
--6.72,-16.992,-15.84,-12.768,73.4016,40.848
--6.74784,-16.72704,-15.6816,-12.54528,72.572544,41.3376
--6.40775,-15.97425,-14.89125,-12.00325,68.9149,38.608
--7.128,-17.523,-16.335,-13.365,75.5964,41.95
--6.77448,-16.74802,-15.61894,-12.70215,71.847124,39.7118
--6.86565,-16.7409,-15.6123,-12.69675,71.81658,41.1444
--7.326,-17.721,-16.533,-13.464,75.5964,41.5404
--7.10696,-17.2872,-16.03868,-13.34956,73.345748,41.1208
--7.2765,-17.56062,-16.29936,-13.38876,74.084472,42.1146
--7.2765,-17.56062,-16.29936,-13.48578,73.997154,42.7086
--7.00416,-16.68096,-15.57504,-12.71808,70.281216,46.6848
--7.47054,-17.56062,-16.39638,-13.48578,73.987452,47.7477
--7.47054,-17.65764,-16.4934,-13.48578,73.997154,47.187
--7.33824,-17.12256,-15.9936,-13.1712,71.754816,47.8464
--7.821,-18.117,-16.929,-13.86,75.4974,45.5697
--7.42995,-17.3052,-16.08255,-13.167,71.72253,47.1636
--7.4496,-17.13408,-16.01664,-13.0368,71.022624,43.3008
--7.69824,-17.48736,-16.34688,-13.3056,72.477504,44.9856
--7.62048,-17.31072,-16.18176,-13.1712,71.745408,44.8252
--7.63584,-17.13408,-16.01664,-13.40928,71.013312,46.4064
--7.7273,-17.2235,-16.1063,-13.4995,71.00737,45.717
--7.885,-17.67,-16.53,-13.585,72.447,47.34
--8.4,-18.6,-17.4,-14.1,76.26,47.24
--7.90272,-17.49888,-16.36992,-13.45344,71.839488,46.3104
--8.33,-18.228,-17.15,-14.014,74.8328,46.3932
--7.83275,-17.23205,-16.12625,-13.2696,70.374955,44.9825
--8.09088,-17.68704,-16.464,-13.82976,71.839488,45.8248
--8.18235,-17.6814,-16.5528,-13.63725,71.81658,42.5125
--8.26848,-17.96256,-16.72704,-13.68576,72.572544,41.8944
--8.0256,-17.1456,-16.0512,-13.3152,69.73152,41.8475
--8.455,-17.86,-16.72,-13.585,72.6275,40.8025
--8.03225,-16.967,-15.97425,-13.08625,69.00515,40.8025
--8.7318,-18.33678,-17.17254,-14.16492,74.181492,41.9832
--8.6436,-18.2476,-17.09512,-14.30996,73.432184,41.7774
--8.65046,-18.15646,-17.01574,-14.06888,72.682876,41.4869
--8.47872,-17.60256,-16.49664,-13.54752,70.54848,40.848
--8.65536,-17.96928,-16.84032,-14.01792,72.027648,41.136
--8.74665,-17.96355,-16.83495,-13.82535,72.00468,40.4225
--8.84058,-18.0614,-17.01574,-14.06888,72.76843,40.8758
--8.93564,-18.15646,-17.1108,-14.06888,72.777936,40.8855
--9.306,-19.008,-17.82,-14.751,75.7944,42.55
--9.12,-18.528,-17.376,-14.4,73.4976,42.44
--9.504,-19.107,-17.919,-14.949,75.7944,42.55
--9.50697,-18.91593,-17.73981,-14.60349,75.134466,42.3324
--9.312,-18.528,-17.376,-14.304,73.584,42.66
--9.22082,-18.34658,-17.20586,-14.259,72.86349,41.9048
--9.1238,-17.9683,-16.9442,-14.0581,71.37046,40.527
--9.504,-18.624,-17.472,-14.496,73.584,40.7424
--9.604,-18.7278,-17.57532,-14.406,73.61466,41.699
--10,-19.5,-18.3,-15.2,76.66,42.55
--9.696,-18.72,-17.664,-14.592,73.5936,40.848
--9.999,-19.305,-18.216,-15.048,75.8934,42.1245
--9.49824,-18.1584,-17.13408,-14.06112,71.37648,40.9536
--9.3024,-17.784,-16.7808,-13.9536,69.9048,40.812
--9.29575,-17.59875,-16.606,-13.80825,69.176625,40.8025
--10.09503,-19.20996,-18.03384,-15.09354,75.124665,42.4215
--10.19304,-19.20996,-18.13185,-15.28956,75.222675,42.3324
--9.87525,-18.52785,-17.39925,-14.4837,72.183375,40.622
--9.975,-18.81,-17.67,-14.63,72.9125,40.8025
--9.8686,-18.3407,-17.3166,-14.3374,71.45425,40.983
--10.07424,-18.72288,-17.67744,-14.63616,72.857664,42.4215
--10.16928,-18.72288,-17.67744,-14.44608,72.9432,42.5304
--10.06656,-18.62784,-17.49888,-14.5824,72.2064,41.4144
--10.476,-19.206,-18.139,-15.132,74.4475,41.8458
--10.46727,-19.10997,-17.95761,-14.98068,73.703025,42.8175
--10.46836,-19.11196,-17.95948,-15.07828,73.7107,42.6692
--10.241,-18.5269,-17.4097,-14.3374,71.45425,41.192
--10.5633,-19.10997,-17.95761,-14.88465,73.703025,42.9264
--10.54944,-18.91296,-17.86752,-14.7312,72.9432,43.0254
--10.54944,-18.91296,-17.86752,-14.7312,72.9432,43.0254
--10.75648,-19.11196,-18.05552,-14.98224,73.7107,42.385
--11.074,-19.502,-18.424,-15.19,75.215,43.25
--10.62765,-18.71595,-17.6814,-14.57775,72.183375,41.0875
--10.61568,-18.53088,-17.50656,-14.4336,71.4696,41.9525
--11.4,-19.9,-18.8,-15.4,76.75,43.25
--10.7065,-18.62,-17.5959,-14.7098,71.45425,41.192
--11.04,-19.2,-18.144,-14.976,73.68,43.06
--10.7996,-18.7131,-17.5959,-14.7098,71.45425,40.983
--10.5792,-18.24,-17.2368,-14.4096,69.996,40.983
--10.78272,-18.52416,-17.41824,-14.37696,70.7328,41.6256
--10.78155,-18.43,-17.41635,-14.5597,70.725125,42.0592
--11.8,-20.1,-19,-15.7,76.75,43.25
--10.9858,-18.7131,-17.689,-14.7098,71.45425,42.1988
--11.781,-19.899,-18.81,-15.741,75.9825,42.6294
--11.424,-19.296,-18.24,-15.264,73.68,42.95
--11.6424,-19.50102,-18.4338,-15.13512,74.46285,42.4116
--12,-20.2,-19,-16,76.75,42.93
--11.73942,-19.69506,-18.53082,-15.42618,74.46285,42.4215
--11.61963,-19.49409,-18.34173,-15.26877,73.703025,42.1245
--11.36064,-18.90336,-17.78592,-14.71296,71.4696,40.848
--11.59732,-19.20212,-18.15646,-15.01948,72.95855,41.1668
--11.931,-19.691,-18.527,-15.423,74.4475,42.55
--11.4266,-18.6143,-17.60065,-14.65185,70.725125,40.527
--11.78496,-19.19808,-18.15264,-15.01632,72.9432,42.1245
--11.51875,-18.70645,-17.60065,-14.744,70.725125,40.4225
--12.1275,-19.69506,-18.62784,-15.5232,74.46285,41.5128
--11.6375,-18.8993,-17.8752,-14.9891,71.45425,41.8068
--12.6,-20.4,-19.2,-16,76.75,42.44
--12.07008,-19.38816,-18.24768,-15.11136,72.9432,42.0156
--12.065,-19.38,-18.24,-15.39,72.903,42.15
--12.04224,-19.19232,-18.06336,-15.0528,72.2064,41.405
--11.6736,-18.6048,-17.5104,-14.4096,69.996,40.033
--12.26274,-19.39224,-18.34658,-15.2096,72.95855,40.9825
--12.13245,-19.1862,-18.15165,-15.14205,72.183375,40.242
--12.48,-19.68,-18.528,-15.456,73.68,40.3584
--12.4852,-19.6882,-18.53572,-15.3664,73.7107,41.1208
--12.32055,-19.28025,-18.2457,-15.33015,72.183375,40.242
--12.707,-19.885,-18.818,-15.52,74.4475,42.45
--12.0384,-18.696,-17.6928,-14.6832,69.996,39.938
--12.80664,-19.8891,-18.82188,-15.81426,74.46285,41.2972
--12.635,-19.475,-18.43,-15.295,72.903,42.04
--12.25728,-18.8928,-17.87904,-14.7456,70.7328,40.3584
--12.90366,-19.98612,-18.82188,-15.5232,74.46285,41.013
--12.6027,-19.3743,-18.2457,-15.2361,72.19278,41.6196
--12.312,-18.7872,-17.6928,-14.8656,69.9048,40.3584
--12.312,-18.7872,-17.6928,-14.8656,69.996,40.3584
--12.825,-19.57,-18.525,-15.58,72.9125,39.9285
--12.92544,-19.57824,-18.5328,-15.58656,72.857664,41.6097
--12.7908,-19.46835,-18.33975,-15.2361,72.183375,40.1375
--12.89033,-19.47663,-18.34755,-15.33667,72.119985,40.5945
--13.15748,-19.88028,-18.7278,-15.75056,73.61466,41.111
--12.9789,-19.46835,-18.4338,-15.4242,72.089325,39.7575
--13.662,-20.493,-19.305,-16.137,75.8934,41.5404
--12.5856,-18.8784,-17.8752,-14.8656,69.9048,39.7575
--12.81024,-19.07712,-18.06336,-15.11424,70.649856,40.176
--12.9409,-19.2717,-18.2476,-15.3615,71.36115,40.8268
--13.72,-20.384,-19.208,-15.974,75.117,41.1208
--13.0368,-19.36896,-18.25152,-15.3648,71.37648,40.176
--13.26105,-19.5624,-18.4338,-15.4242,72.089325,41.2533
--12.72525,-18.772,-17.689,-14.801,69.176625,39.482
--13.08672,-19.16928,-18.06336,-15.11424,70.64064,39.8976
--12.9504,-18.9696,-17.8752,-15.1392,69.9048,39.482
--12.8155,-18.772,-17.77925,-14.71075,69.176625,39.7575
--13.17888,-19.16928,-18.15552,-15.2064,70.64064,39.8976
--13.0416,-19.0608,-17.9664,-14.9568,69.9048,39.7575
--13.40928,-19.46208,-18.34464,-15.17856,71.37648,40.3132
--13.54752,-19.66272,-18.53376,-15.42912,72.121728,40.8366
--14.4,-20.9,-19.8,-16.5,76.65,41.45
--13.224,-19.0608,-18.0576,-15.1392,69.91392,39.482
--13.4995,-19.551,-18.4338,-15.5477,71.36115,39.482
--14.16492,-20.27718,-19.20996,-16.20234,74.375532,40.6308
--14.016,-20.064,-19.008,-15.744,73.584,41.45
--14.26194,-20.27718,-19.20996,-16.10532,74.36583,41.2533
--13.97088,-19.86336,-18.81792,-15.77664,72.84816,39.792
--13.68864,-19.5552,-18.43776,-15.45792,71.37648,40.2065
--14.06592,-19.9584,-18.91296,-15.6816,72.762624,40.0704
--13.92384,-19.38048,-17.96928,-15.24096,72.11232,40.7288
--14.453,-19.303,-16.975,-16.781,74.3602,40.4878
--14.16096,-17.96256,-15.6816,-16.53696,72.84816,40.0704
--14.602,-17.738,-15.288,-17.248,75.0288,41.96
--14.406,-16.807,-14.21392,-16.90304,73.61466,41.013
--14.85,-17.523,-14.553,-13.761,75.7944,41.4315
--14.06112,-17.87904,-15.08544,-14.80608,71.292672,40.0032
--15.1,-19.6,-16.8,-15.8,76.56,41.74
--14.35406,-18.72682,-16.1602,-14.63924,72.777936,40.9052
--14.30168,-18.53573,-16.18348,-14.30168,72.035304,40.4878
--14.44,-18.715,-16.53,-14.44,72.732,41.67
--14.59808,-18.82384,-16.807,-14.50204,73.528224,40.9052
--14.09895,-18.0614,-16.2184,-14.0068,70.55004,40.4878
--14.2443,-18.2476,-16.4787,-14.0581,71.27736,39.6625
--15.147,-19.404,-17.622,-15.048,75.7944,41.2533
--15.09354,-19.20996,-17.54379,-15.09354,75.036456,41.5404
--14.34048,-18.34464,-16.7616,-14.71296,71.292672,40.5945
--14.19264,-18.33984,-16.68096,-14.37696,70.557696,40.0704
--14.136,-18.1488,-16.5984,-14.3184,69.82272,39.862
--14.725,-19,-17.385,-14.725,72.732,39.653
--14.976,-19.2,-17.664,-14.88,73.5072,41.67
--14.67648,-18.816,-17.4048,-14.86464,72.027648,40.0704
--15.132,-19.497,-17.945,-15.132,74.2632,40.2065
--15.132,-19.497,-18.042,-15.423,74.2632,40.3132
--15.7,-20.1,-18.7,-15.8,76.56,41.26
--14.61984,-18.81024,-17.41344,-14.71296,71.292672,39.6096
--15.17274,-19.39806,-17.95761,-15.07671,73.520568,40.0998
--15.01948,-19.10706,-17.87128,-15.01948,72.777936,40.1095
--15.8,-20.2,-18.8,-15.9,76.46,41.34
--15.01632,-19.19808,-17.96256,-15.2064,72.677088,40.9365
--15.01632,-19.29312,-17.96256,-15.2064,72.762624,40.9365
--14.65344,-18.80064,-17.5104,-14.7456,70.557696,39.8976
--14.5008,-18.6048,-17.328,-14.592,69.82272,39.792
--15.9,-20.3,-19,-16,76.56,41.26
--15.3648,-19.59012,-18.34173,-15.46083,73.520568,40.9266
--14.592,-18.696,-17.4192,-14.6832,69.82272,39.8976
--15.84,-20.295,-19.008,-16.038,75.7944,40.7484
--14.83615,-18.89075,-17.6928,-14.83615,70.45789,39.9252
--15.14205,-19.28025,-18.0576,-14.95395,71.91063,40.7484
--15.30466,-19.4873,-18.34658,-15.39972,72.682876,40.0222
--14.83615,-18.89075,-17.78495,-14.83615,70.45789,39.2825
--15.714,-19.982,-18.721,-15.714,74.1662,40.0319
--15.24258,-19.38254,-18.15937,-15.24258,71.941214,39.9252
--14.92992,-18.98496,-17.87904,-14.7456,70.465536,39.6096
--15.811,-20.079,-18.818,-15.908,74.1662,39.9252
--15.65452,-19.88028,-18.63176,-15.46244,73.432184,40.229
--16.137,-20.493,-19.305,-16.137,75.6954,41.26
--15.65289,-19.87821,-18.62982,-15.55686,73.424538,39.9252
--15.27168,-19.27584,-18.06528,-15.27168,71.199552,39.8185
--15.58,-19.665,-18.525,-15.39,72.637,41.05
--15.3615,-19.2717,-18.1545,-15.0822,71.18426,38.9975
--15.58656,-19.76832,-18.5328,-15.58656,72.667584,39.3024
--16.17165,-20.38608,-19.20996,-16.07364,74.938446,40.7484
--15.6816,-19.76832,-18.62784,-15.49152,72.65808,40.6395
--16.17165,-20.38608,-19.20996,-16.07364,74.938446,40.6395
--15.6816,-19.76832,-18.62784,-15.58656,72.667584,39.408
--16.434,-20.592,-19.404,-16.236,75.6954,40.6395
--15.1392,-19.0608,-17.9664,-14.9568,69.73152,38.9975
--15.2304,-19.0608,-17.9664,-15.1392,69.73152,39.273
--15.07175,-18.86225,-17.77925,-14.89125,69.00515,38.9975
--15.07175,-18.86225,-17.77925,-14.801,69.00515,38.9975
--15.07175,-18.86225,-17.77925,-14.89125,69.00515,38.893
--16.366,-20.482,-19.306,-16.268,74.9308,40.229
--16.296,-20.37,-19.206,-16.005,74.1662,40.94
--16.296,-20.37,-19.206,-16.199,74.1759,39.7118
--15.97008,-19.9626,-18.82188,-15.77996,72.682876,40.1212
--16.296,-20.37,-19.206,-16.102,74.1662,39.7118
--16.39638,-20.3742,-19.20996,-16.20234,74.181492,40.5306
--15.4128,-19.2432,-18.1488,-15.1392,69.73152,39.197
--15.4128,-18.6048,-16.7808,-15.048,69.73152,39.6864
--16.06176,-18.5328,-16.25184,-16.25184,72.572544,39.408
--16.66,-18.032,-15.778,-17.248,74.8328,41.05
--15.9953,-16.84211,-14.39577,-16.27757,71.856533,39.9252
--15.9885,-16.27065,-13.63725,-16.64685,71.825985,39.102
--16.1568,-17.48736,-14.44608,-14.16096,72.572544,39.6096
--16.245,-18.525,-15.675,-15.105,72.542,39.102
--16.758,-19.404,-16.562,-15.288,74.8328,41.45
--15.75765,-18.2457,-15.75765,-14.1911,70.36574,39.482
--16.59042,-19.11294,-16.78446,-14.94108,74.084472,40.8474
--16.18176,-18.53376,-16.36992,-14.39424,71.839488,40.621
--16.85772,-19.20996,-17.15175,-14.79951,74.840436,40.7385
--16.68744,-19.01592,-17.07552,-14.74704,74.084472,40.8474
--16.684,-19.109,-17.169,-14.938,74.0789,39.9252
--15.523,-17.77925,-16.15475,-13.8985,68.9149,38.9975
--16.27065,-18.6219,-16.929,-14.57775,71.81658,39.102
--16.781,-19.303,-17.557,-15.229,74.0692,40.0222
--16.781,-19.4,-17.654,-15.326,74.0692,40.0222
--16.44192,-19.10304,-17.39232,-14.82624,72.572544,40.5306
--15.94368,-18.52416,-16.95744,-14.56128,70.373376,40.0704
--16.70922,-19.30203,-17.76555,-14.98068,73.328508,41.7285
--16.53,-19.19,-17.575,-15.01,72.542,39.102
--16.88148,-19.59804,-18.04572,-15.13512,74.094174,40.8366
--16.54044,-19.20212,-17.68116,-15.01948,72.587816,40.9052
--16.53696,-19.19808,-17.77248,-14.92128,72.477504,39.6096
--16.71096,-19.49612,-18.05552,-15.46244,73.249708,40.7288
--16.70922,-19.49409,-18.05364,-15.26877,73.242081,41.3226
--15.96,-18.6048,-17.2368,-14.6832,69.55824,39.8976
--16.12625,-18.7986,-17.5085,-14.83615,70.27359,40.5945
--16.46575,-19.19436,-17.8771,-15.14849,71.753034,40.8758
--16.625,-19.38,-18.05,-15.105,72.447,41.95
--17.15,-20.09,-18.718,-15.68,74.7446,40.9052
--16.3856,-19.0855,-17.7821,-15.0822,70.99806,40.7288
--17.07552,-19.8891,-18.62784,-15.71724,73.987452,42.1245
--16.55808,-19.2864,-18.06336,-15.0528,71.754816,40.8366
--16.896,-19.776,-18.432,-15.456,73.2192,40.848
--17.072,-19.982,-18.721,-15.714,73.9819,42.55
--16.48224,-19.18272,-17.97216,-15.08544,71.013312,40.6656
--16.64685,-19.3743,-18.15165,-15.2361,71.637885,40.318
--16.992,-19.776,-18.528,-15.648,73.1232,42.85
--17.169,-20.079,-18.818,-15.714,73.8849,42.66
--17.169,-20.079,-18.818,-15.714,73.8849,42.76
--16.82562,-19.67742,-18.5367,-15.58984,72.407202,40.9825
--16.74624,-19.47456,-18.3456,-15.33504,71.660736,40.6656
--17.444,-20.384,-19.11,-15.876,74.6466,41.9048
--16.4027,-19.1672,-17.96925,-15.02045,70.190655,41.2735
--16.2336,-18.9696,-17.784,-14.9568,69.46704,40.242
--16.5718,-19.3648,-18.2476,-15.2684,70.91427,40.242
--16.91712,-19.76832,-18.62784,-15.58656,72.391968,40.4544
--17.542,-20.384,-19.208,-16.072,74.6368,42.44
--16.6649,-19.4579,-18.2476,-15.2684,70.91427,40.033
--16.6649,-19.4579,-18.3407,-15.4546,70.91427,42.091
--17.005,-19.855,-18.715,-15.675,72.2665,40.4225
--17.54379,-20.48409,-19.30797,-16.17165,74.654217,42.1245
--16.66848,-19.46208,-18.34464,-15.45792,70.836384,41.2735
--16.84032,-19.66272,-18.53376,-15.61728,71.566656,41.4144
--16.929,-19.65645,-18.52785,-15.6123,71.543835,40.318
--16.929,-19.7505,-18.6219,-15.6123,71.55324,41.8275
--16.416,-19.152,-18.0576,-15.048,69.37584,40.4225
--17.1108,-19.9626,-18.82188,-15.6849,72.312142,41.9525
--16.9362,-19.7589,-18.62982,-15.71303,71.574263,41.3802
--17.2854,-20.26233,-19.01394,-15.74892,73.050021,42.0592
--17.557,-20.467,-19.303,-16.005,73.7879,41.7682
--17.20586,-20.05766,-18.91694,-15.77996,72.312142,42.1988
--16.85472,-19.46208,-17.87904,-15.08544,70.836384,41.0892
--16.5072,-18.24,-16.1424,-15.7776,69.37584,40.1375
--17.919,-18.711,-16.335,-18.018,75.3192,42.96
--16.85472,-16.94784,-14.71296,-17.04096,70.836384,40.7788
--17.38324,-16.90304,-14.30996,-17.19116,73.057628,42.7672
--16.94784,-16.296,-13.59552,-13.5024,70.836384,42.1465
--16.5984,-17.5104,-14.592,-14.4096,69.37584,40.7424
--17.12438,-18.53573,-15.80712,-14.86622,71.574263,40.9825
--17.30092,-18.82188,-16.1602,-14.82936,72.312142,42.385
--16.5984,-18.1488,-15.7776,-14.136,69.37584,40.983
--17.836,-19.404,-17.052,-15.19,74.5486,42.6594
--17.65764,-19.11294,-16.9785,-14.94108,73.803114,42.3423
--17.385,-18.715,-16.72,-14.535,72.2665,43.06
--17.75466,-19.11294,-17.26956,-14.84406,73.803114,42.385
--17.75466,-19.11294,-17.26956,-14.84406,73.803114,44.5896
--17.751,-19.206,-17.46,-15.035,73.7879,43.45
--17.21847,-18.72391,-17.03029,-14.58395,71.574263,41.7682
--17.93583,-19.602,-17.83782,-15.28956,74.556207,43.1046
--16.6896,-18.3312,-16.6896,-14.3184,69.37584,41.3535
--17.39232,-19.10304,-17.48736,-15.01632,72.296928,42.4608
--18.3,-20.1,-18.4,-15.8,75.98,43.06
--17.39598,-19.10706,-17.5861,-14.92442,72.312142,40.9825
--17.49104,-19.20212,-17.68116,-15.01948,72.312142,42.9828
--18.216,-19.998,-18.513,-15.741,75.3093,43.64
--18.032,-19.796,-18.326,-15.484,74.4506,42.7672
--17.31072,-19.09824,-17.68704,-14.95872,71.472576,42.1056
--17.13408,-18.90336,-17.59968,-14.8992,70.752576,42.0592
--18.032,-19.992,-18.522,-15.68,74.3036,44.1392
--18.032,-19.992,-18.62,-15.68,74.3134,45.23
--18.032,-19.992,-18.62,-15.68,74.3232,47.35
--16.69625,-18.50125,-17.1475,-14.6205,68.436575,44.3175
--17.76555,-19.68615,-18.34173,-15.65289,72.819549,42.9264
--18.315,-20.295,-18.909,-15.84,75.0618,44.15
--18.315,-20.295,-19.008,-15.939,75.0618,42.2235
--17.9487,-19.8891,-18.62784,-15.81426,73.560564,42.3324
--17.9487,-19.98612,-18.62784,-15.91128,73.473246,42.8175
--17.04775,-18.9829,-17.78495,-14.9283,69.785195,40.8758
--16.872,-18.8784,-17.6016,-14.7744,69.06576,39.0925
--18.315,-20.493,-19.206,-16.137,74.9727,41.0355
--16.872,-18.8784,-17.6928,-14.9568,69.06576,39.6864
--18.414,-20.493,-19.206,-16.236,74.9727,41.4315
--17.856,-19.872,-18.624,-15.648,72.7008,43.53
--17.856,-19.968,-18.72,-15.744,72.7008,44.34
--17.67,-19.76,-18.525,-15.58,71.9435,45.15
--17.856,-19.968,-18.72,-15.552,72.7008,42.1824
--17.86344,-19.97632,-18.7278,-15.8466,72.731092,41.9832
--17.856,-19.968,-18.816,-15.744,72.7008,40.944
--16.9632,-19.0608,-17.8752,-14.8656,69.06576,41.4144
--17.4933,-19.65645,-18.4338,-15.6123,71.224065,42.408
--18.228,-20.482,-19.306,-16.366,74.2154,45.04
--18.14274,-20.27718,-19.11294,-16.0083,73.473246,43.0155
--17.23392,-19.3536,-18.15552,-15.2064,69.875712,43.056
--18.7,-21,-19.7,-16.6,75.82,45.15
--18.7,-21,-19.8,-16.6,75.83,46.24
--17.95948,-20.1684,-19.01592,-15.94264,72.817528,43.855
--18.139,-20.37,-19.206,-16.199,73.5551,45.1438
--17.77622,-20.05766,-18.82188,-15.87502,72.074492,45.5318
--17.952,-20.16,-19.008,-16.032,72.7968,46.03
--18.424,-20.188,-18.13,-16.17,74.3134,44.7468
--17.5028,-18.3407,-16.0132,-16.3856,70.59773,45.9032
--17.68892,-17.59483,-15.24258,-16.65393,71.348447,46.3175
--17.86752,-17.1072,-14.54112,-17.01216,72.068832,45.8865
--18.424,-17.052,-14.308,-17.346,74.3036,47.187
--18.42588,-17.83782,-14.7015,-14.21145,74.320983,50.6088
--17.6814,-18.2457,-15.33015,-15.048,71.318115,48.5735
--17.68704,-18.62784,-15.80544,-14.86464,71.331456,51.9694
--17.87128,-18.82188,-16.1602,-14.7343,72.217082,49.9841
--17.50656,-18.43776,-16.01664,-14.34048,70.743264,51.0511
--17.86,-18.715,-16.435,-14.345,72.1715,51.05
--17.50656,-18.34464,-16.296,-14.15424,70.752576,50.2751
--18.711,-19.503,-17.424,-15.048,75.2103,52.55
--18.9,-19.7,-17.7,-15.2,76.07,53.03
--18.14967,-19.01394,-17.09334,-14.59656,72.963594,50.4691
--17.78112,-18.62784,-16.84032,-14.48832,71.576064,50.9088
--18.15156,-19.11196,-17.38324,-14.98224,73.057628,53.263
--18.522,-19.6,-17.836,-15.484,74.5584,53.0474
--18.711,-19.899,-18.117,-15.543,75.3093,54.24
--18.14967,-19.206,-17.57349,-14.98068,73.050021,52.7098
--18.14967,-19.30203,-17.66952,-15.17274,73.146051,53.9847
--17.2368,-18.3312,-16.872,-14.2272,69.38496,52.3735
--17.955,-19.19,-17.67,-14.915,72.3615,56.14
--17.78301,-19.00618,-17.50074,-15.0544,71.668353,54.5334
--18.144,-19.392,-17.952,-15.264,73.1328,55.6224
--19,-20.3,-18.8,-15.9,76.07,55.63
--18.144,-19.584,-18.048,-15.264,73.1232,53.5104
--18.05,-19.38,-17.955,-15.01,72.3615,51.908
--18.62,-19.992,-18.522,-15.582,74.6466,56.23
--17.8695,-19.1862,-17.8695,-15.14205,71.62848,54.5688
--17.5104,-18.8928,-17.5104,-14.92992,70.189056,51.6768
--18.43,-19.885,-18.43,-15.714,73.8849,51.8368
--18.24,-19.776,-18.336,-15.456,73.1232,50.5248
--17.5085,-18.9829,-17.6928,-14.9283,70.190655,49.9985
--18.0576,-19.57824,-18.24768,-15.2064,72.391968,50.7276
--17.5085,-18.9829,-17.78495,-15.02045,70.190655,47.7375
--17.8695,-19.3743,-18.15165,-15.2361,71.637885,47.0725
--18.62,-20.286,-18.914,-15.778,74.6466,49.1372
--18.62,-20.286,-18.914,-15.876,74.6466,49.1372
--18.43,-20.079,-18.818,-15.908,73.8849,49.55
--18.336,-19.968,-18.624,-15.648,73.1232,48.6912
--18.34364,-19.88028,-18.63176,-15.65452,73.163272,48.1572
--18.53082,-20.18016,-18.82188,-15.81426,73.900134,50.7934
--18.05,-19.76,-18.525,-15.58,72.3615,51.94
--18.53082,-20.18016,-18.9189,-15.71724,73.900134,47.9655
--18.53082,-20.18016,-18.9189,-15.81426,73.900134,50.4994
--18.909,-20.691,-19.404,-16.137,75.4083,50.9355
--18.145,-19.855,-18.62,-15.77,72.3615,50.54
--17.96355,-19.65645,-18.4338,-15.4242,71.637885,49.6386
--17.4192,-19.0608,-17.8752,-15.048,69.46704,46.7875
--18.909,-20.691,-19.404,-16.335,75.4182,48.8466
--17.60065,-19.25935,-18.15355,-15.1126,70.190655,48.9171
--18.34173,-20.07027,-18.91791,-15.74892,73.146051,50.9355
--17.96355,-19.7505,-18.52785,-15.33015,71.62848,51.2226
--17.96355,-19.7505,-18.52785,-15.51825,71.637885,46.8635
--18.527,-20.273,-19.109,-16.005,73.8849,48.3448
--17.23775,-18.86225,-17.77925,-14.89125,68.743425,47.9085
--18.43776,-20.07027,-18.91791,-15.84495,73.146051,47.7477
--18.432,-20.064,-18.912,-15.936,73.1232,48.24
--18.24768,-19.86336,-18.72288,-15.77664,72.391968,50.2368
--18.81792,-20.48409,-19.40598,-16.46568,74.654217,49.4505
--18.24768,-19.9584,-18.81792,-15.77664,72.391968,47.3517
--17.6928,-19.25935,-18.2457,-15.20475,70.190655,48.6358
--18.816,-20.58,-19.404,-16.366,74.6466,46.501
--17.328,-18.9525,-17.8695,-14.9815,68.743425,44.593
--17.5104,-18.9696,-17.5104,-14.6832,69.46704,46.512
--17.6928,-18.33785,-16.31055,-16.12625,70.190655,44.7735
--18.06336,-17.78112,-15.61728,-16.464,71.660736,46.795
--17.87904,-16.85472,-14.71296,-15.73728,70.929504,45.9295
--18.53572,-16.71096,-14.11788,-16.3268,73.144064,48.7354
--18.0576,-16.5528,-13.7313,-12.9789,71.637885,45.923
--18.53379,-18.43776,-15.46083,-15.17274,73.146051,48.6358
--18.34658,-18.82188,-15.87502,-15.11454,72.407202,48.6358
--17.41825,-17.8695,-15.3425,-13.98875,68.743425,47.8325
--18.15165,-18.6219,-16.1766,-14.38965,71.543835,48.2885
--18.34658,-18.72682,-16.54044,-14.44912,72.312142,49.0294
--17.6016,-17.9664,-15.96,-13.7712,69.37584,48.24
--18.15744,-18.53376,-16.55808,-14.30016,71.660736,49.8624
--18.15165,-18.52785,-16.64685,-14.20155,71.637885,45.8185
--18.15937,-18.53573,-16.65393,-14.20759,71.668353,47.7725
--18.15165,-18.52785,-16.83495,-14.4837,71.543835,50.5395
--18.15937,-18.62982,-16.9362,-14.58395,71.574263,48.0635
--18.914,-19.502,-17.738,-15.288,74.5486,48.6668
--18.15165,-18.81,-17.1171,-14.6718,71.543835,47.633
--18.721,-19.497,-17.751,-14.938,73.7879,51.13
--18.53379,-19.206,-17.66952,-14.98068,73.146051,49.5297
--17.97216,-18.71712,-17.13408,-14.71296,70.836384,48.8395
--18.335,-19.095,-17.575,-15.01,72.2665,46.303
--18.53379,-19.39806,-17.76555,-15.17274,73.050021,48.3448
--17.97216,-18.81024,-17.41344,-14.80608,70.836384,47.9568
--18.335,-19.285,-17.765,-14.915,72.2665,47.348
--18.528,-19.488,-17.952,-15.168,73.0176,50.94
--18.721,-19.691,-18.236,-15.52,73.7879,48.15
--18.34272,-19.29312,-17.86752,-15.11136,72.296928,48.0744
--18.34658,-19.29718,-17.96634,-15.01948,72.312142,46.7831
--18.624,-19.488,-18.144,-15.264,73.0272,49.14
--19.012,-19.992,-18.62,-15.68,74.5486,48.8432
--17.9683,-19.0855,-17.7821,-14.896,70.82117,47.481
--19.3,-20.5,-19,-16.2,76.07,49.95
--17.8771,-18.89075,-17.60065,-14.9283,70.098505,47.6658
--18.43776,-19.4832,-18.15264,-15.30144,72.296928,47.3517
--18.25346,-19.28845,-18.06528,-15.14849,71.574263,48.1605
--18.44164,-19.4873,-18.25152,-15.39972,72.312142,49.1372
--18.818,-19.885,-18.624,-15.617,73.7976,49.85
--18.43,-19.57,-18.24,-15.485,72.2665,47.0725
--18.62982,-19.78218,-18.53379,-15.55686,73.050021,47.1032
--18.06528,-19.27584,-17.97216,-15.3648,70.836384,47.28
--18.25152,-19.47456,-18.25152,-15.42912,71.566656,48.4512
--18.0614,-19.2717,-18.0614,-15.1753,70.82117,46.6872
--17.87904,-19.07712,-17.87904,-15.02208,70.013952,46.6848
--18.25152,-19.47456,-18.25152,-15.42912,71.566656,47.6736
--19.01394,-20.38608,-19.01394,-15.97563,74.556207,49.9257
--18.25152,-19.47456,-18.3456,-15.42912,71.576064,46.7904
--18.25152,-19.56864,-18.3456,-15.5232,71.566656,46.512
--18.0614,-19.3648,-18.1545,-15.1753,70.72807,45.3625
--18.2457,-19.5624,-18.33975,-15.51825,71.449785,48.2526
--18.06528,-19.36896,-18.25152,-15.3648,70.743264,47.2778
--18.06528,-19.36896,-18.25152,-15.17856,70.836384,48.9024
--18.62982,-19.97424,-18.82188,-15.74892,72.953991,47.4621
--19.206,-20.691,-19.404,-16.335,75.2103,46.9755
--18.25152,-19.66272,-18.43968,-15.5232,71.472576,46.6848
--18.25346,-19.66481,-18.44164,-15.80712,71.489582,46.3951
--17.6928,-19.0608,-17.9664,-14.9568,69.28464,46.5785
--18.25152,-19.66272,-18.53376,-15.5232,71.472576,47.0688
--18.34755,-19.66481,-18.53573,-15.52485,71.480173,48.2381
--18.72585,-20.1663,-18.91791,-15.84495,72.953991,48.3448
--18.1545,-19.551,-18.4338,-15.5477,70.73738,45.4385
--19.305,-20.79,-19.602,-16.335,75.2103,47.4606
--18.1545,-19.6441,-18.4338,-15.3615,70.72807,46.132
--18.33975,-19.7505,-18.6219,-15.70635,71.449785,48.6486
--18.5328,-20.05344,-18.81792,-15.77664,72.211392,49.1634
--19.305,-20.889,-19.602,-16.533,75.2103,48.2526
--18.525,-19.855,-18.335,-15.39,72.1715,47.34
--18.3456,-18.72192,-16.55808,-16.18176,71.472576,45.84
--18.7278,-18.15156,-15.75056,-17.2872,72.961588,47.481
--18.1545,-16.8511,-14.4305,-16.4787,70.72807,45.1535
--19.5,-17.6,-14.7,-17.9,75.97,47.94
--19.5,-17.5,-14.5,-14.4,75.97,49.44
--18.1584,-17.78592,-14.8992,-14.80608,70.743264,47.1711
--18.525,-18.715,-15.865,-15.2,72.0385,45.3625
--18.72,-19.008,-16.32,-14.688,72.9312,47.13
--18.1584,-18.43776,-16.01664,-14.4336,70.743264,45.7344
--18.1584,-18.43776,-16.10976,-14.34048,70.743264,46.4064
--19.404,-19.503,-17.226,-14.949,75.2103,48.45
--18.1545,-18.3407,-16.3856,-14.0581,70.59773,44.973
--17.9712,-18.15552,-16.31232,-14.19264,69.875712,46.8864
--18.7278,-18.91988,-17.09512,-14.8862,72.827132,46.2952
--18.44164,-18.53573,-16.84211,-14.48986,71.348447,47.7725
--18.34755,-18.53573,-16.9362,-14.48986,71.339038,45.8228
--18.5367,-18.82188,-17.20586,-14.82936,72.074492,46.9965
--19.404,-19.701,-18.018,-15.543,75.0618,47.3517
--18.9189,-19.404,-17.75466,-15.23214,73.560564,46.5795
--19.01592,-19.404,-17.85168,-15.32916,73.570266,46.403
--19.01592,-19.404,-17.9487,-15.23214,73.560564,46.501
--18.63176,-19.012,-17.5861,-15.01948,72.074492,46.0265
--18.915,-19.497,-18.042,-15.423,73.5551,46.54
--19.11,-19.698,-18.228,-15.68,74.3134,47.24
--17.689,-18.14025,-16.87675,-14.44,68.42755,45.0775
--18.33975,-18.9981,-17.6814,-14.95395,71.318115,47.3517
--18.44164,-19.00618,-17.68892,-15.14849,71.339038,45.6385
--18.1584,-18.90336,-17.59968,-14.8992,70.603584,48.1605
--18.5367,-19.39224,-17.96634,-15.49478,72.083998,45.5014
--18.816,-19.584,-18.144,-15.36,72.7968,48.45
--18.44164,-19.19436,-17.8771,-15.0544,71.348447,47.3845
--19.012,-19.788,-18.43,-15.617,73.5454,46.0265
--18.0614,-18.7986,-17.60065,-14.744,69.877345,46.3951
--18.816,-19.68,-18.432,-15.648,72.7872,49.14
--18.5367,-19.4873,-18.25152,-15.11454,72.074492,48.0494
--19.6,-20.5,-19.2,-16,75.83,48.85
--18.0614,-18.89075,-17.6928,-15.20475,69.86813,46.132
--18.0614,-18.89075,-17.6928,-14.83615,69.86813,46.398
--18.43968,-19.2864,-18.15744,-15.24096,71.340864,46.6848
--18.62,-19.475,-18.335,-15.485,72.029,48.15
--18.0614,-18.89075,-17.78495,-14.9283,69.877345,46.7875
--17.8752,-18.7872,-17.6016,-14.7744,69.15696,46.4075
--19.20996,-20.28807,-19.01394,-15.6816,74.320983,48.3516
--18.816,-19.872,-18.624,-15.552,72.7872,48.04
--18.63176,-19.67742,-18.44164,-15.39972,72.083998,48.1572
--18.82188,-19.87821,-18.62982,-15.55686,72.819549,48.4407
--18.62,-19.76,-18.525,-15.58,72.029,47.75
--18.816,-19.968,-18.72,-15.936,72.7872,46.6176
--18.82188,-19.97424,-18.72585,-15.84495,72.819549,47.5688
--18.82384,-19.97632,-18.7278,-15.75056,72.817528,48.0494
--19.01592,-20.27718,-19.01592,-16.0083,73.570266,49.1634
--18.62,-19.855,-18.62,-15.58,72.029,46.303
--19.208,-20.482,-19.208,-16.072,74.3036,49.95
--18.63176,-19.86754,-18.63176,-15.58984,71.988938,46.8734
--17.8752,-19.0608,-17.9664,-15.1392,69.06576,46.224
--19.208,-20.482,-19.306,-16.17,74.3134,47.2752
--18.63176,-19.86754,-18.72682,-15.87502,71.988938,47.5688
--19.404,-20.691,-19.503,-16.335,74.9727,48.0744
--18.816,-20.064,-18.912,-16.032,72.6912,46.3488
--17.8752,-19.0608,-17.9664,-15.048,69.06576,47.3568
--18.62,-19.855,-18.715,-15.77,71.9435,48.74
--18.4338,-19.65645,-18.6219,-15.8004,71.224065,45.7425
--18.25152,-19.46208,-18.43776,-15.45792,70.519776,47.8464
--18.0614,-19.3515,-18.2457,-15.4812,69.785195,47.0725
--17.8752,-18.9696,-17.6928,-14.6832,69.06576,47.3568
--17.689,-17.95975,-15.884,-15.43275,68.346325,46.398
--18.43968,-17.78112,-15.5232,-16.9344,71.340864,47.1744
--18.91791,-17.18937,-14.88465,-17.47746,72.723519,48.7575
--19.208,-16.954,-14.308,-17.346,74.2154,48.93
--19.208,-16.856,-13.916,-14.994,74.2154,47.83
--19.503,-18.711,-15.642,-15.345,74.9727,49.1535
--19.11294,-19.01592,-16.0083,-15.32916,73.473246,48.7575
--18.3407,-18.2476,-15.6408,-14.6167,70.50463,48.0494
--18.72682,-18.72682,-16.1602,-14.54418,71.988938,48.4515
--18.912,-18.816,-16.512,-14.496,72.7008,49.03
--18.72288,-18.5328,-16.44192,-14.35104,71.973792,49.1535
--18.91988,-18.7278,-16.71096,-14.59808,72.731092,48.4512
--18.912,-18.72,-16.8,-14.688,72.7008,48.45
--18.72288,-18.5328,-16.72704,-14.35104,71.973792,48.4128
--18.15355,-17.96925,-16.31055,-13.91465,69.785195,47.3748
--18.72288,-18.5328,-16.91712,-14.35104,71.973792,45.9168
--18.72682,-18.63176,-17.01574,-14.44912,71.979432,46.795
--17.9664,-17.9664,-16.416,-13.9536,69.06576,46.1985
--18.34464,-18.43776,-16.85472,-14.34048,70.519776,47.1711
--18.3407,-18.4338,-16.9442,-14.2443,70.50463,48.8432
--19.11294,-19.20996,-17.75466,-15.0381,73.482948,48.951
--18.72682,-18.82188,-17.39598,-14.63924,71.988938,47.8501
--18.53376,-18.62784,-17.31072,-14.5824,71.246784,46.6848
--18.912,-19.104,-17.664,-14.688,72.7008,46.896
--18.91791,-19.10997,-17.76555,-14.98068,72.713916,48.3448
--18.715,-19,-17.575,-14.725,71.934,46.474
--18.72288,-19.008,-17.67744,-14.82624,71.964288,47.4624
--19.11294,-19.404,-18.04572,-15.0381,73.473246,48.0744
--19.306,-19.6,-18.228,-15.288,74.2154,48.265
--18.72682,-19.10706,-17.77622,-14.82936,71.998444,46.9965
--18.34464,-18.624,-17.41344,-14.61984,70.519776,47.2778
--17.77925,-18.14025,-16.967,-14.079,68.346325,45.8185
--19.503,-19.899,-18.612,-15.444,74.9727,48.04
--18.91988,-19.30404,-18.15156,-15.07828,72.721488,47.187
--18.52785,-18.90405,-17.77545,-14.8599,71.224065,45.4385
--18.15355,-18.6143,-17.41635,-14.65185,69.785195,48.3448
--18.53376,-18.91008,-17.78112,-14.86464,71.246784,48.1344
--18.72288,-19.10304,-17.96256,-15.01632,71.973792,48.9456
--18.72288,-19.19808,-17.96256,-14.92128,71.973792,46.7904
--19.503,-19.998,-18.81,-15.741,74.9727,48.4308
--17.9664,-18.4224,-17.328,-14.4096,69.06576,45.258
--18.15355,-18.6143,-17.5085,-14.5597,69.77598,47.9568
--18.715,-19.19,-18.05,-14.915,71.934,46.1985
--19.306,-19.796,-18.62,-15.484,74.2154,47.9514
--18.53376,-19.09824,-17.8752,-14.86464,71.246784,48.951
--19.30797,-19.89603,-18.71991,-15.6816,74.222973,48.3516
--19.7,-20.3,-19.1,-15.9,75.72,49.95
--18.52785,-19.09215,-17.96355,-15.048,71.224065,46.303
--19.503,-20.097,-18.909,-15.741,74.9727,47.2725
--18.15355,-18.70645,-17.60065,-14.65185,69.785195,46.7831
--18.53376,-19.09824,-18.06336,-15.0528,71.237376,47.089
--19.503,-20.097,-19.008,-15.741,74.9628,46.6587
--18.15552,-18.80064,-17.69472,-14.65344,69.792768,44.5824
--18.3407,-18.9924,-17.8752,-14.896,70.50463,45.5014
--18.34464,-18.99648,-17.87904,-14.8992,70.519776,45.3572
--18.72288,-19.4832,-18.24768,-15.30144,71.973792,45.6288
--19.30797,-19.99404,-18.91593,-15.6816,74.213172,45.9657
--17.9664,-18.6048,-17.6016,-14.5008,69.06576,44.5728
--18.912,-19.584,-18.528,-15.36,72.6912,44.8896
--18.91791,-19.59012,-18.53379,-15.3648,72.713916,46.5988
--18.34464,-19.0896,-17.97216,-14.8992,70.519776,44.5824
--18.91791,-19.68615,-18.53379,-15.3648,72.713916,46.2108
--18.15355,-18.7986,-17.78495,-14.83615,69.785195,45.0775
--18.91988,-19.6882,-18.53572,-15.55848,72.721488,47.187
--18.53573,-19.28845,-18.15937,-14.96031,71.254357,46.1041
--18.91791,-19.68615,-18.53379,-15.3648,72.723519,46.7831
--19.30797,-20.09205,-19.01394,-15.87762,74.222973,47.4507
--18.52785,-19.28025,-18.2457,-15.048,71.224065,45.258
--17.9664,-18.696,-17.6928,-14.7744,69.06576,45.84
--18.912,-19.68,-18.624,-15.648,72.7008,46.512
--19.109,-19.982,-18.818,-15.52,73.4581,46.3951
--18.912,-19.776,-18.624,-15.36,72.7008,47.83
--18.15552,-18.8928,-17.87904,-14.83776,69.792768,45.3504
--18.53376,-19.38048,-18.25152,-15.14688,71.246784,47.5888
--19.11294,-19.98612,-18.82188,-15.81426,73.473246,47.6574
--19.503,-20.394,-19.206,-15.84,74.9727,48.9456
--19.11294,-19.98612,-18.82188,-15.62022,73.473246,49.1535
--19.7,-20.5,-19.5,-16.2,75.72,48.74
--19.503,-20.394,-19.305,-15.939,74.8836,48.05
--18.15552,-18.98496,-17.9712,-14.65344,69.71904,46.7808
--19.306,-20.188,-19.11,-15.778,74.1272,48.73
--19.30797,-20.19006,-19.11195,-15.6816,74.213172,46.8666
--18.912,-19.776,-18.72,-15.552,72.624,47.94
--18.15355,-18.9829,-17.96925,-14.9283,69.711475,45.0775
--18.52785,-19.3743,-18.33975,-15.4242,71.224065,46.132
--18.912,-19.776,-18.72,-15.552,72.624,47.45
--18.53376,-19.38048,-18.3456,-15.14688,71.237376,46.8636
--18.72288,-19.67328,-18.5328,-15.39648,71.973792,47.2626
--18.715,-19.57,-18.525,-15.485,71.9435,45.638
--18.72288,-19.67328,-18.5328,-15.49152,71.973792,46.224
--18.72288,-19.67328,-18.5328,-15.30144,71.935776,45.552
--17.77925,-18.68175,-17.59875,-14.71075,68.346325,47.2435
--18.72682,-19.67742,-18.63176,-15.30466,71.988938,47.481
--19.30797,-20.28807,-19.11195,-15.97563,74.134764,48.4308
--19.503,-20.493,-19.404,-16.038,74.8935,47.3517
--17.9664,-18.8784,-17.8752,-14.7744,68.9928,46.683
--18.72682,-19.67742,-18.63176,-15.39972,71.91289,47.8501
--18.72288,-19.67328,-18.62784,-15.58656,71.973792,48.3516
--18.912,-19.872,-18.816,-15.456,72.7008,46.224
--19.306,-20.286,-19.208,-15.974,74.1272,49.33
--19.306,-20.286,-19.208,-15.778,74.137,48.0494
--18.15355,-19.1672,-18.0614,-14.9283,69.711475,46.683
--19.11294,-20.08314,-19.01592,-15.81426,73.385928,47.9514
--19.503,-20.493,-19.404,-16.236,74.8935,47.8566
--17.77925,-18.68175,-17.689,-14.6205,68.274125,47.5285
--19.20996,-20.08314,-19.01592,-15.62022,73.385928,47.9655
--18.72682,-19.67742,-18.63176,-15.39972,71.903384,46.9812
--19.602,-20.592,-19.404,-16.137,74.8935,48.04
--18.53376,-19.47456,-18.43968,-15.24096,71.246784,46.795
--19.503,-20.592,-19.503,-16.137,74.9727,47.6784
--17.9664,-18.9696,-17.8752,-15.048,68.9928,46.4064
--18.52785,-19.5624,-18.52785,-15.33015,71.224065,45.258
--18.81,-19.76,-18.715,-15.675,71.9435,45.923
--19.206,-20.176,-19.109,-15.811,73.3805,46.76
--19.602,-20.592,-19.503,-16.137,74.9727,47.5596
--18.0576,-18.9696,-17.9664,-14.9568,69.06576,46.224
--19.503,-20.592,-19.503,-16.236,74.9727,47.23
--18.62784,-19.56864,-18.53376,-15.42912,71.246784,46.224
--19.008,-19.968,-18.912,-15.648,72.7008,48.85
--19.008,-19.968,-18.912,-15.552,72.624,47.13
--19.602,-20.592,-19.503,-16.236,74.8935,48.7575
--19.206,-20.176,-19.109,-15.908,73.4581,46.7831
--18.2457,-19.1672,-18.15355,-15.20475,69.785195,46.0265
--18.6219,-19.5624,-18.52785,-15.33015,71.148825,47.1636
--19.602,-20.691,-19.503,-16.335,74.9727,46.4706
--18.2457,-19.25935,-18.15355,-15.1126,69.711475,45.3625
--18.6219,-19.65645,-18.6219,-15.4242,71.23347,44.042
--19.404,-20.482,-19.404,-16.17,74.137,47.04
--18.0576,-19.0608,-18.0576,-15.048,69.06576,45.4464
--18.81792,-19.76832,-18.72288,-15.58656,71.89776,46.6752
--19.8,-20.9,-19.8,-16.4,75.65,48.15
--18.81,-19.855,-18.81,-15.39,71.8675,48.23
--18.81792,-19.86336,-18.81792,-15.58656,71.89776,47.3517
--19.8,-20.9,-19.8,-16.5,75.65,48.84
--19.20996,-20.27718,-19.20996,-15.81426,73.39563,46.1874
--18.0576,-19.0608,-18.0576,-14.9568,69.06576,46.512
--19.20996,-19.98612,-18.53082,-15.5232,73.39563,46.6587
--18.62784,-18.53376,-16.18176,-16.18176,71.17152,45.4464
--18.62982,-17.50074,-14.96031,-16.65393,71.254357,46.1041
--18.6219,-16.64685,-14.01345,-16.3647,71.224065,47.8566
--18.43776,-16.01664,-13.22304,-16.48224,70.519776,46.2108
--19.404,-16.268,-13.034,-17.346,74.137,46.84
--18.81,-15.485,-11.97,-16.815,71.8675,48.56
--19.206,-15.52,-11.737,-16.49,73.3805,46.5988
--18.82188,-15.01948,-10.83684,-16.06514,71.91289,44.9692
--18.62784,-14.48832,-10.06656,-15.24096,71.246784,46.795
--19.008,-14.4,-9.696,-15.36,72.7008,48.45
--19.20996,-14.26194,-9.31392,-15.42618,73.39563,45.9032
--19.404,-14.112,-8.918,-15.386,74.137,46.6872
--18.43776,-13.22304,-7.9152,-14.71296,70.44528,45.5318
--18.6219,-12.9789,-7.524,-14.6718,71.148825,46.2924
--19.40598,-13.32936,-7.35075,-15.19155,74.144565,47.5596
--18.43776,-12.38496,-6.61152,-14.52672,70.44528,46.224
--19.008,-12.48,-6.432,-14.88,72.624,45.5616
--18.81,-12.16,-5.89,-14.82,71.8675,45.7425
--19.404,-12.152,-5.684,-15.092,74.137,47.13
--19.008,-11.712,-5.28,-14.784,72.624,47.64
--19.602,-11.781,-4.95,-15.246,74.8935,46.14
--19.404,-11.368,-4.508,-15.092,74.137,46.54
--18.81792,-10.83456,-3.99168,-14.63616,71.89776,46.1835
--19.40598,-10.68309,-3.72438,-14.79951,74.144565,46.4706
--19.40598,-10.68309,-3.52836,-14.89752,74.144565,46.0251
--18.2457,-9.86005,-2.9488,-14.0068,69.711475,45.1535
--19.008,-11.616,-3.648,-9.312,72.624,45.95
--18.24768,-12.9024,-5.43744,-10.32192,69.709824,44.496
--18.2457,-13.73035,-6.4505,-9.9522,69.711475,44.973
--19.306,-14.798,-7.84,-10.486,74.2154,46.0012
--18.3407,-14.0581,-8.0997,-9.8686,70.43015,45.1535
--18.15552,-14.00832,-8.57088,-9.6768,69.71904,44.496
--19.306,-14.896,-9.604,-10.388,74.137,46.65
--18.72288,-14.44608,-9.78912,-10.26432,71.888256,46.3716
--19.306,-15.092,-10.486,-11.074,74.2154,46.109
--18.53573,-14.67804,-10.53808,-11.10262,71.254357,45.5318
--18.816,-15.264,-11.232,-11.328,72.7008,44.0064
--19.012,-15.423,-11.737,-11.058,73.3805,44.9595
--19.01592,-15.42618,-12.03048,-10.96326,73.463544,46.2952
--19.01592,-15.32916,-12.22452,-10.96326,73.473246,46.109
--18.0614,-14.46755,-11.7952,-10.41295,69.785195,44.498
--18.4338,-14.76585,-12.2265,-10.62765,71.224065,45.9657
--18.3456,-14.86464,-12.51264,-10.8192,71.246784,44.8896
--18.72585,-15.3648,-12.96405,-11.33154,72.646695,46.6587
--18.5367,-15.39972,-13.11828,-11.4072,71.988938,45.2172
--18.5328,-15.58656,-13.3056,-11.49984,71.973792,46.7577
--18.1584,-15.3648,-13.12992,-10.98816,70.519776,44.4
--19.11195,-16.17165,-14.01543,-11.85921,74.222973,45.9657
--18.3456,-15.42912,-13.54752,-11.10144,71.246784,46.795
--17.96925,-15.1126,-13.36175,-10.96585,69.711475,43.8235
--18.62982,-15.74892,-14.02038,-11.5236,72.723519,44.1738
--18.25152,-15.42912,-13.82976,-11.19552,71.256192,45.5112
--18.43,-15.675,-14.06,-11.495,71.9435,46.14
--17.6928,-15.1392,-13.5888,-11.0352,69.06576,44.9664
--18.82188,-16.20234,-14.553,-11.83644,73.39563,46.0746
--17.6016,-15.3216,-13.7712,-11.3088,69.06576,44.973
--17.97216,-15.73728,-14.15424,-11.73312,70.44528,43.7955
--18.528,-16.32,-14.688,-11.904,72.624,42.7776
--18.15165,-15.89445,-14.38965,-11.6622,71.13942,42.9875
--17.78495,-15.6655,-14.1911,-11.51875,69.711475,43.6525
--18.91593,-16.6617,-15.19155,-12.25125,74.144565,44.4906
--17.6928,-15.75765,-14.3754,-11.6109,69.711475,43.548
--18.335,-16.34,-14.82,-12.16,71.9435,44.973
--18.25152,-16.35032,-14.92442,-12.07262,71.988938,45.717
--18.816,-16.954,-15.484,-12.544,74.2154,46.54
--17.69472,-15.94368,-14.65344,-11.79648,69.71904,44.5824
--18.24768,-16.44192,-15.11136,-12.3552,71.973792,46.3716
--17.87904,-16.20288,-14.8992,-11.91936,70.44528,46.0265
--19.1,-17.5,-16,-13,75.65,46.43
--18.527,-16.975,-15.617,-12.513,73.3805,44.6588
--18.34173,-16.80525,-15.46083,-12.38787,72.646695,44.6491
--18.145,-16.72,-15.39,-12.445,71.8675,44.0325
--18.145,-16.72,-15.39,-12.54,71.858,45.65
--17.328,-16.0512,-14.7744,-11.9472,68.9928,43.3675
--18.43,-17.072,-15.811,-12.707,73.3805,45.54
--19,-17.7,-16.3,-13.2,75.65,46.35
--18.81,-17.523,-16.236,-12.969,74.8935,46.94
--18.0614,-16.82562,-15.58984,-12.54792,71.91289,46.0012
--18.2457,-17.09334,-15.84495,-12.77199,72.646695,46.7676
--19,-17.9,-16.5,-13.3,75.65,47.23
--17.5085,-16.49485,-15.20475,-12.3481,69.711475,45.7161
--18.333,-17.363,-16.102,-13.095,73.3805,48.23
--17.59968,-16.66848,-15.45792,-12.47808,70.44528,46.4064
--18.711,-17.721,-16.434,-13.365,74.8935,46.6587
--17.96256,-17.1072,-15.87168,-13.02048,71.888256,45.168
--17.78112,-17.02848,-15.71136,-12.60672,71.162112,45.3408
--17.3242,-16.67915,-15.38905,-12.5324,69.711475,45.6385
--17.59968,-16.85472,-15.64416,-12.94368,70.44528,45.5318
--17.68704,-17.12256,-15.80544,-12.98304,71.162112,44.5728
--18.612,-17.919,-16.731,-13.563,74.8836,46.76
--17.50656,-16.85472,-15.73728,-12.75744,70.44528,45.9198
--18.048,-17.472,-16.32,-13.344,72.624,45.168
--17.50656,-17.04096,-15.73728,-12.85056,70.44528,46.5018
--18.05364,-17.66952,-16.3251,-13.25214,72.637092,46.3716
--17.41344,-17.13408,-15.92352,-12.94368,70.44528,44.2944
--17.77248,-17.48736,-16.25184,-13.21056,71.89776,44.9856
--17.59296,-17.31072,-16.08768,-13.07712,71.17152,45.2172
--17.765,-17.48,-16.245,-13.205,71.8675,46.03
--18.139,-17.848,-16.587,-13.289,73.3805,46.03
--17.952,-17.76,-16.512,-13.344,72.624,43.5168
--18.326,-18.13,-16.954,-13.916,74.137,45.15
--17.59483,-17.50074,-16.27757,-13.07851,71.169676,44.8528
--17.32032,-17.32032,-16.10976,-13.12992,70.44528,42.384
--16.9632,-16.9632,-15.7776,-12.6768,68.9928,44.1888
--16.7865,-16.7865,-15.7035,-12.72525,68.28315,45.7425
--16.9632,-16.9632,-15.8688,-13.0416,68.9928,45.7344
--17.50074,-17.59483,-16.46575,-13.36078,71.169676,46.7055
--17.3166,-17.5028,-16.2925,-13.2202,70.42084,45.717
--16.9632,-17.1456,-15.96,-12.9504,68.9928,44.784
--17.68116,-17.87128,-16.6355,-13.49852,71.91289,45.423
--17.14176,-17.23392,-16.128,-13.08672,69.709824,44.8896
--17.945,-18.139,-16.975,-13.968,73.3805,46.1041
--17.2235,-17.5028,-16.3856,-13.5926,70.43015,45.4385
--17.5861,-17.96634,-16.82562,-13.7837,71.91289,44.8625
--17.39925,-17.8695,-16.64685,-13.44915,71.148825,45.0775
--18.315,-18.711,-17.523,-14.058,74.8935,47.3517
--17.04775,-17.3242,-16.31055,-13.0853,69.711475,44.973
--17.2272,-17.50656,-16.48224,-13.22304,70.435968,45.6385
--17.2272,-17.50656,-16.48224,-13.59552,70.435968,44.8625
--17.5861,-17.96634,-16.92068,-13.87876,71.81783,43.5045
--17.76555,-14.02038,-14.78862,0.76824,72.550665,46.0746
--17.9487,-13.38876,-14.35896,-8.2467,73.29861,45.5014
--17.76555,-15.26877,-15.07671,-11.23551,72.560268,46.1934
--17.31256,-15.52485,-14.96031,-11.57307,71.179085,45.5318
--17.66952,-16.03701,-15.3648,-12.00375,72.637092,44.7558
--17.13408,-15.73728,-14.8992,-12.29184,70.435968,43.6224
--16.9556,-15.94195,-14.83615,-12.62455,69.711475,44.1085
--17.48736,-16.53696,-15.39648,-12.64032,71.89776,44.4
--17.13408,-16.20288,-15.08544,-12.1056,70.44528,44.9595
--16.7808,-15.8688,-14.7744,-11.856,68.9928,44.6784
--17.66952,-16.61319,-15.55686,-12.67596,72.637092,46.0746
--17.848,-16.781,-15.714,-12.707,73.3805,45.0468
--17.67136,-16.61492,-15.65452,-12.58124,72.65426,45.8248
--17.664,-16.608,-15.552,-12.768,72.624,46.35
--16.7808,-15.8688,-14.8656,-12.1296,68.98368,44.2944
--17.21115,-16.5528,-15.4242,-12.69675,71.148825,45.9657
--16.6896,-16.1424,-14.9568,-12.4944,68.9928,44.1888
--17.39598,-16.92068,-15.6849,-12.92816,71.91289,44.0768
--17.0373,-16.5718,-15.3615,-12.8478,70.43015,44.213
--17.39598,-16.92068,-15.77996,-12.92816,71.91289,44.9595
--17.751,-17.363,-16.102,-13.192,73.3805,46.55
--17.934,-17.542,-16.366,-13.622,74.137,44.8154
--17.0373,-16.758,-15.5477,-12.9409,70.42084,42.0185
--16.6896,-16.416,-15.3216,-12.768,68.9928,44.422
--17.0373,-16.8511,-15.6408,-13.034,70.43015,44.6292
--16.77312,-16.68096,-15.57504,-12.81024,69.71904,44.3904
--17.836,-17.738,-16.562,-13.524,74.137,46.94
--17.472,-17.472,-16.224,-13.344,72.6144,45.95
--17.1171,-17.1171,-15.9885,-13.26105,71.148825,45.2727
--17.29,-17.385,-16.15,-13.3,71.8675,42.8925
--16.94784,-17.04096,-15.8304,-13.22304,70.519776,43.824
--17.654,-17.751,-16.587,-13.774,73.4581,44.93
--17.29,-17.48,-16.245,-13.49,71.9435,43.168
--17.654,-17.848,-16.587,-13.677,73.4581,44.94
--17.1171,-17.39925,-16.1766,-13.3551,71.224065,42.788
--18.018,-18.315,-17.028,-14.058,74.9727,44.85
--17.1171,-17.39925,-16.1766,-13.5432,71.224065,44.1144
--17.47928,-17.86344,-16.61492,-13.82976,72.731092,44.5312
--17.29,-17.67,-16.53,-13.585,71.9435,45.33
--17.03029,-17.59483,-16.37166,-13.36078,71.339038,43.5045
--17.195,-17.67,-16.53,-13.585,72.0385,45.05
--17.20586,-17.77622,-16.54044,-13.68864,72.083998,43.4532
--17.02305,-17.6814,-16.45875,-13.7313,71.318115,44.3025
--17.02305,-17.6814,-16.45875,-13.5432,71.318115,43.7085
--17.02305,-17.77545,-16.5528,-13.63725,71.30871,41.9425
--17.195,-17.86,-16.625,-13.585,72.029,42.028
--16.85472,-17.41344,-16.296,-13.31616,70.612896,42.7776
--17.20586,-17.87128,-16.73056,-13.87876,72.074492,43.7472
--17.195,-17.955,-16.815,-13.775,72.029,41.9425
--16.85472,-17.59968,-16.48224,-13.5024,70.603584,42.1465
--16.8511,-17.5959,-16.4787,-13.4995,70.58842,43.2725
--17.195,-17.955,-16.815,-13.68,72.1715,43.3675
--16.67915,-17.41635,-16.31055,-13.2696,69.86813,43.1165
--17.20586,-17.87128,-16.82562,-13.97382,72.083998,42.7285
--17.376,-18.24,-17.088,-14.208,72.7872,42.4608
--17.56062,-18.53082,-17.26956,-14.35896,73.570266,43.4532
--18.1,-19.1,-17.9,-14.5,75.82,44.04
--16.33525,-17.23775,-16.15475,-12.996,68.42755,42.123
--16.5072,-17.328,-16.2336,-13.1328,69.28464,42.672
--16.85472,-17.59968,-16.57536,-13.31616,70.743264,42.5664
--16.8511,-17.5959,-16.5718,-13.4064,70.72807,42.5125
--16.8511,-17.5959,-16.5718,-13.4064,70.72807,43.2768
--17.03029,-17.8771,-16.84211,-13.73714,71.480173,43.1165
--16.67915,-17.60065,-16.49485,-13.54605,70.006355,42.2275
--17.20586,-18.15646,-17.01574,-13.87876,72.217082,43.5918
--16.5888,-17.69472,-16.5888,-13.3632,70.013952,42.672
--17.738,-18.816,-17.64,-14.21,74.4506,43.4532
--17.02305,-17.96355,-16.929,-13.5432,71.449785,43.7976
--17.38143,-18.2457,-17.2854,-14.11641,73.050021,43.7877
--16.67915,-17.5085,-16.49485,-13.6382,70.08929,42.7285
--16.8511,-17.8752,-16.758,-13.8719,70.81186,41.838
--17.1072,-18.34272,-17.20224,-13.97088,72.296928,43.7976
--17.1072,-18.34272,-17.1072,-13.87584,72.287424,42.1824
--16.67915,-17.6928,-16.587,-13.36175,70.098505,42.7285
--16.68096,-17.60256,-16.5888,-13.3632,70.106112,42
--17.02848,-17.96928,-16.9344,-13.6416,71.566656,42.6594
--16.85472,-17.87904,-16.85472,-13.78176,70.836384,42.2338
--16.8511,-17.9683,-16.8511,-14.1512,70.82117,41.287
--16.8511,-17.9683,-16.8511,-13.7788,70.82117,42.2275
--17.38143,-18.53379,-17.38143,-14.02038,73.050021,44.1144
--16.5072,-17.6016,-16.5072,-13.3152,69.45792,41.7984
--17.64,-18.816,-17.738,-14.406,74.6368,43.94
--16.85472,-17.87904,-16.85472,-13.59552,70.920192,42.4375
--18,-19.3,-18.2,-15,76.16,43.75
--17.02848,-18.25152,-17.12256,-14.112,71.651328,42.1056
--17.919,-19.305,-18.018,-14.85,75.3984,43.1046
--17.28,-18.624,-17.472,-14.304,73.1136,43.54
--16.33525,-17.5085,-16.4255,-13.357,68.7344,41.667
--17.38143,-18.53379,-17.47746,-14.30847,73.146051,42.2338
--17.20586,-18.34658,-17.30092,-14.259,72.397696,41.8458
--17.195,-18.335,-17.29,-14.25,72.3615,43.14
--17.02848,-18.3456,-17.21664,-14.112,71.660736,41.3376
--17.38143,-18.72585,-17.57349,-14.4045,73.232478,41.9525
--16.5072,-17.784,-16.6896,-13.5888,69.54912,41.0875
--17.56062,-18.9189,-17.75466,-14.553,73.987452,42.1988
--17.46,-18.818,-17.751,-14.453,73.9722,43.14
--17.557,-18.818,-17.751,-14.55,73.9722,43.46
--17.20224,-18.43776,-17.39232,-14.256,72.477504,41.7984
--17.738,-19.11,-17.934,-14.994,74.7348,42.483
--17.02305,-18.4338,-17.21115,-14.01345,71.731935,40.812
--16.67915,-18.0614,-16.9556,-13.8225,70.27359,40.8025
--16.68096,-18.06336,-16.95744,-13.824,70.281216,41.1264
--17.919,-19.404,-18.216,-14.751,75.5073,42.6294
--17.20586,-18.63176,-17.49104,-14.259,72.492756,41.7682
--17.20586,-18.63176,-17.49104,-14.16394,72.492756,41.8458
--16.67915,-18.0614,-16.9556,-13.8225,70.27359,41.8458
--17.02848,-18.53376,-17.4048,-14.20608,71.745408,42.2772
--17.56062,-19.11294,-17.9487,-14.65002,73.987452,42.5205
--16.85472,-18.34464,-17.2272,-13.968,71.022624,41.3376
--17.56062,-19.11294,-17.9487,-14.553,73.987452,42.8175
--17.20586,-18.63176,-17.5861,-14.35406,72.492756,41.9525
--16.8511,-18.2476,-17.2235,-13.965,71.00737,42.1988
--16.33525,-17.689,-16.69625,-13.62775,68.905875,41.0875
--17.738,-19.306,-18.13,-14.896,74.8328,43.25
--17.02848,-18.53376,-17.49888,-14.20608,71.839488,41.4144
--17.20224,-18.81792,-17.67744,-14.44608,72.56304,42.8175
--16.68096,-18.15552,-17.0496,-14.10048,70.373376,41.6256
--17.20224,-18.72288,-17.67744,-14.35104,72.572544,42.6294
--16.9442,-18.3407,-17.3166,-14.1512,71.09116,41.993
--17.56062,-19.11294,-18.04572,-14.65002,74.084472,42.6294
--17.12438,-18.53573,-17.50074,-14.48986,71.847124,41.5645
--17.29728,-18.81792,-17.67744,-14.54112,72.572544,42.7086
--17.29728,-18.81792,-17.67744,-14.44608,72.572544,41.136
--17.29728,-18.81792,-17.67744,-14.44608,72.572544,42.7086
--17.83782,-19.40598,-18.22986,-14.79951,74.840436,42.6294
--16.7713,-18.2457,-17.1399,-14.09895,70.36574,41.6615
--17.12256,-18.53376,-17.49888,-14.20608,71.848896,41.52
--16.7713,-18.2457,-17.1399,-14.09895,70.36574,41.9525
--17.29728,-18.81792,-17.67744,-14.54112,72.572544,42.6294
--17.472,-19.008,-17.856,-14.688,73.392,41.232
--17.47928,-19.01592,-17.95948,-14.59808,73.32654,42.1988
--17.12256,-18.72192,-17.59296,-14.39424,71.839488,42.2772
--16.7713,-18.33785,-17.23205,-14.09895,70.45789,40.7075
--16.5984,-18.1488,-17.0544,-14.0448,69.73152,41.0496
--16.7713,-18.33785,-17.23205,-14.09895,70.45789,41.5548
--17.1171,-18.71595,-17.58735,-14.38965,71.91063,42.5304
--17.65764,-19.30698,-18.14274,-14.94108,74.181492,42.6294
--17.654,-19.303,-18.139,-15.035,74.1662,41.6615
--16.77312,-18.33984,-17.32608,-14.10048,70.465536,40.848
--18.2,-19.9,-18.7,-15.3,76.46,42.84
--16.4255,-17.95975,-16.967,-13.80825,69.00515,40.622
--17.57349,-19.10997,-18.05364,-14.88465,73.424538,42.4215
--17.568,-19.104,-18.048,-14.592,73.4016,41.3376
--17.0373,-18.5269,-17.5028,-14.3374,71.18426,40.983
--18.3,-19.9,-18.8,-15.4,76.45,43.25
--16.86345,-18.33785,-17.3242,-14.28325,70.45789,41.2735
--17.21115,-18.71595,-17.6814,-14.38965,71.901225,42.5205
--17.568,-19.104,-18.048,-14.688,73.4016,43.06
--17.385,-18.905,-17.86,-14.63,72.637,42.76
--18.3,-20,-18.8,-15.4,76.46,42.85
--18.117,-19.8,-18.612,-15.444,75.6954,42.3423
--17.385,-19,-17.86,-14.63,72.637,42.55
--17.57349,-19.206,-18.05364,-14.78862,73.424538,41.6615
--16.86345,-18.43,-17.3242,-14.1911,70.45789,40.907
--17.57349,-19.206,-18.14967,-14.59656,73.424538,42.3324
--17.0373,-18.5269,-17.5028,-14.3374,71.17495,41.797
--17.31256,-18.818,-17.68892,-14.48986,71.941214,41.7682
--17.3052,-18.81,-17.77545,-14.57775,71.91063,42.6294
--17.21115,-18.81,-17.77545,-14.57775,71.91063,40.907
--17.3052,-18.81,-17.77545,-14.38965,71.91063,42.9264
--18.03384,-19.50399,-18.42588,-14.99553,74.938446,42.8175
--18.032,-19.6,-18.424,-15.19,75.0288,43.06
--17.48,-19,-17.86,-14.82,72.7225,42.76
--16.7808,-18.24,-17.2368,-13.9536,69.8136,41.192
--17.3052,-18.81,-17.77545,-14.20155,72.00468,43.0254
--17.664,-19.2,-18.144,-14.4,73.488,41.4144
--17.66952,-19.206,-18.14967,-14.59656,73.510965,42.5304
--18.4,-20,-18.9,-15.5,76.55,43.54
--17.3052,-18.71595,-17.77545,-14.57775,71.995275,41.192
--18.032,-19.502,-18.424,-15.288,75.019,43.25
--17.13408,-18.53088,-17.50656,-14.52672,71.199552,41.7682
--18.032,-19.502,-18.424,-15.288,74.9308,43.64
--17.39925,-18.81,-17.6814,-14.6718,71.995275,41.192
--17.04775,-18.43,-17.41635,-14.3754,70.448675,41.667
--17.7674,-19.40008,-18.15156,-15.17432,73.42258,42.875
--18.315,-19.899,-18.711,-15.246,75.6954,42.36
--16.872,-18.4224,-17.328,-14.2272,69.73152,42.617
--17.40665,-18.91209,-17.8771,-14.77213,71.941214,42.8352
--17.2235,-18.7131,-17.5959,-14.5236,71.09116,42.6075
--18.5,-20.1,-19,-15.6,76.36,44.45
--17.04775,-18.52215,-17.5085,-14.46755,70.36574,42.7285
--17.2235,-18.7131,-17.689,-14.6167,71.10047,42.1325
--17.5824,-19.10304,-18.0576,-14.92128,72.572544,42.3936
--17.9487,-19.59804,-18.4338,-15.5232,74.181492,43.4214
--17.04775,-18.6143,-17.5085,-14.3754,70.45789,41.458
--17.9487,-19.59804,-18.4338,-15.42618,74.094174,43.2135
--17.9487,-19.59804,-18.4338,-15.13512,74.084472,43.3125
--17.40665,-19.10027,-17.97119,-14.86622,71.941214,42.3308
--17.945,-19.691,-18.527,-15.132,74.1662,43.86
--17.67744,-19.29312,-18.15264,-14.7312,72.667584,43.2036
--17.2235,-18.8993,-17.7821,-14.7098,71.18426,42.6692
--17.1399,-18.70645,-17.60065,-14.46755,70.45789,41.192
--17.4933,-19.09215,-17.96355,-15.048,71.91063,43.2036
--18.042,-19.691,-18.527,-15.326,74.1662,42.6218
--17.14176,-18.70848,-17.60256,-14.7456,70.465536,42
--17.1399,-18.70645,-17.60065,-14.65185,70.45789,42.4375
--17.49888,-19.09824,-17.96928,-14.95872,71.933568,41.7888
--18.414,-20.097,-19.008,-15.642,75.6954,43.3125
--17.856,-19.488,-18.336,-15.36,73.4016,43.75
--17.86158,-19.49409,-18.43776,-15.17274,73.424538,42.5442
--18.04572,-19.69506,-18.62784,-15.23214,74.181492,43.4214
--17.95761,-19.49409,-18.43776,-15.3648,73.424538,43.0098
--17.67744,-19.29312,-18.24768,-15.30144,72.667584,43.7481
--18.04572,-19.79208,-18.62784,-15.5232,74.181492,43.8966
--17.59483,-19.19436,-18.06528,-14.86622,71.941214,42.6218
--17.77248,-19.38816,-18.24768,-15.30144,72.667584,43.1046
--17.765,-19.38,-18.335,-15.2,72.6275,43.94
--17.77622,-19.39224,-18.34658,-14.92442,72.67337,44.0768
--18.139,-19.788,-18.721,-15.423,74.1662,43.3008
--17.95948,-19.59216,-18.53572,-15.3664,73.51862,43.9628
--17.0544,-18.6048,-17.6016,-14.592,69.73152,43.168
--17.41344,-18.99648,-17.97216,-14.80608,71.19024,43.0098
--17.765,-19.38,-18.335,-15.2,72.732,42.0185
--18.326,-19.992,-18.914,-15.68,75.0288,43.3552
--17.77622,-19.39224,-18.34658,-15.2096,72.682876,42.9128
--17.23205,-18.70645,-17.78495,-14.65185,70.55004,41.743
--18.236,-19.788,-18.721,-15.52,74.2535,42.8352
--17.3242,-18.7986,-17.78495,-14.5597,70.55004,43.2232
--18.05552,-19.6882,-18.53572,-15.3664,73.528224,43.561
--17.6814,-19.28025,-18.15165,-15.14205,71.995275,43.7976
--17.68704,-19.2864,-18.15744,-15.0528,72.027648,44.933
--17.86752,-19.4832,-18.34272,-15.2064,72.762624,42.5664
--18.23976,-19.79208,-18.72486,-15.42618,74.26881,44.3025
--17.1456,-18.696,-17.6016,-14.592,69.8136,42.7776
--17.68704,-19.19232,-18.15744,-15.14688,72.01824,44.0412
--18.048,-19.68,-18.624,-15.36,73.4976,42.3936
--17.1456,-18.696,-17.6928,-14.592,69.8136,42.408
--17.86,-19.475,-18.43,-15.2,72.732,44.64
--18.236,-19.885,-18.818,-15.714,74.2535,43.4075
--17.5959,-19.0855,-18.0614,-14.9891,71.27736,42.693
--17.96634,-19.58236,-18.44164,-15.2096,72.76843,43.7472
--18.333,-19.885,-18.818,-15.423,74.2535,44.4648
--17.5959,-19.0855,-18.0614,-14.896,71.26805,45.2172
--18.52389,-20.09205,-19.01394,-15.6816,75.026655,45.5697
--17.78112,-19.2864,-18.25152,-15.0528,72.01824,44.9232
--18.33678,-19.79208,-18.82188,-15.32916,74.26881,46.5795
--18.333,-19.788,-18.818,-15.423,74.2535,46.14
--18.9,-20.5,-19.4,-16.1,76.55,46.65
--17.955,-19.475,-18.43,-15.105,72.732,45.44
--18.15156,-19.6882,-18.63176,-15.3664,73.51862,45.031
--17.96634,-19.4873,-18.44164,-14.92442,72.777936,44.5715
--17.41635,-18.89075,-17.8771,-14.65185,70.55004,44.2902
--17.2368,-18.696,-17.6928,-14.592,69.82272,43.6224
--17.41635,-18.7986,-17.8771,-14.744,70.55004,43.168
--18.81,-20.295,-19.206,-15.84,75.7845,45.04
--17.328,-18.696,-17.6928,-14.5008,69.8136,43.44
--17.41635,-18.89075,-17.8771,-14.5597,70.540825,43.548
--18.9,-20.5,-19.4,-16,76.56,45.85
--18.43,-19.885,-18.818,-15.52,74.2535,44.0768
--17.328,-18.696,-17.6928,-14.5008,69.8136,43.1424
--18.4338,-19.8891,-18.82188,-15.42618,74.26881,44.0412
--17.8695,-19.1862,-18.2457,-14.76585,72.00468,44.3025
--18.2476,-19.59216,-18.53572,-15.27036,73.51862,43.9628
--18.0614,-19.39224,-18.34658,-15.11454,72.76843,43.9628
--17.5085,-18.7986,-17.78495,-14.744,70.45789,43.3008
--18.43,-19.885,-18.818,-15.52,74.2535,45.04
--18.62,-20.09,-18.914,-15.484,74.9406,44.86
--18.0614,-19.4873,-18.44164,-15.30466,72.682876,43.5918
--18.24,-19.68,-18.624,-15.36,73.4016,42.7776
--17.96355,-19.28025,-18.15165,-14.95395,71.91063,44.4114
--18.336,-19.68,-18.528,-15.168,73.4016,44.45
--18.15646,-19.4873,-18.34658,-15.11454,72.682876,43.5142
--18.336,-19.68,-18.528,-15.36,73.4016,43.344
--18.71991,-20.09205,-19.01394,-15.6816,74.938446,44.7975
--18.909,-20.196,-19.107,-15.84,75.6855,44.94
--19.1,-20.5,-19.3,-15.8,76.46,45.16
--17.78592,-19.0896,-17.97216,-14.61984,71.19024,43.4075
--17.23775,-18.50125,-17.5085,-14.2595,69.00515,42.2275
--18.53082,-19.8891,-18.82188,-15.5232,74.181492,43.6688
--18.15646,-19.4873,-18.44164,-15.11454,72.682876,43.5708
--17.78592,-19.0896,-17.97216,-14.8992,71.199552,43.4075
--17.4192,-18.696,-17.6016,-14.6832,69.73152,42.028
--17.4192,-18.696,-17.6928,-14.5008,69.73152,42.332
--17.4192,-18.696,-17.6928,-14.592,69.73152,42.332
--18.24768,-19.4832,-18.43776,-15.2064,72.65808,43.0656
--18.24,-19.475,-18.43,-15.295,72.6275,44.56
--17.4192,-18.696,-17.6928,-14.592,69.73152,42.7975
--19.008,-20.394,-19.206,-15.741,75.6954,44.16
--18.25152,-19.4873,-18.44164,-15.11454,72.682876,42.9128
--17.6928,-18.89075,-17.8771,-14.83615,70.45789,42.8352
--18.24768,-19.4832,-18.43776,-15.30144,72.667584,43.9065
--17.328,-18.5915,-17.5085,-14.53025,69.00515,43.2725
--18.0576,-18.9981,-17.3052,-14.2956,71.920035,44.8074
--18.43776,-18.53379,-16.22907,-14.11641,73.424538,44.9856
--18.624,-17.751,-15.035,-13.192,74.1662,43.4075
--17.8752,-16.1994,-13.4995,-11.3582,71.17495,43.0635
--17.5104,-15.3216,-12.4944,-9.9408,69.73152,43.2384
--18.62784,-15.62022,-12.6126,-9.60498,74.181492,44.1936
--18.432,-15.072,-11.808,-8.544,73.4016,45.15
--17.8752,-14.1512,-10.7065,-7.2618,71.09116,43.7285
--18.816,-14.602,-10.682,-6.468,74.8328,43.9628
--18.432,-13.728,-9.696,-5.856,73.3152,42.576
--18.24,-13.11,-8.93,-5.13,72.542,45.44
--18.24768,-12.64032,-8.36352,-4.56192,72.572544,43.248
--18.06336,-11.94816,-7.62048,-4.51584,71.839488,43.0656
--18.43776,-11.42757,-7.29828,-5.18562,73.328508,44.8767
--18.24,-10.545,-6.935,-5.605,72.5325,42.693
--19.008,-10.296,-6.93,-5.643,75.5964,45.55
--18.62784,-9.50796,-6.11226,-5.04504,74.084472,45.4905
--18.25152,-8.65046,-5.41842,-4.56288,72.549792,44.345
--17.97216,-7.4496,-4.656,-4.46976,71.115744,43.248
--18.816,-7.154,-4.116,-3.724,74.8328,45.25
--19.008,-6.435,-3.267,-3.465,75.5073,45.2034
--18.432,-5.472,-2.208,-2.88,73.2096,46.14
--17.6928,-4.6075,-1.1058,-2.5802,70.27359,43.453
--18.432,-3.936,0,-2.208,73.2096,46.03
--18.624,-3.201,0.873,-1.455,73.9722,46.36
--18.06336,-2.352,1.78752,-1.03488,71.754816,43.824
diff --git a/tests/integration/models/refrig_case_osw/python/mt-open_data.csv b/tests/integration/models/refrig_case_osw/python/mt-open_data.csv
deleted file mode 100644
index fb786211..00000000
--- a/tests/integration/models/refrig_case_osw/python/mt-open_data.csv
+++ /dev/null
@@ -1,8187 +0,0 @@
-1,2,3,4,5,6
-prod,case,supply,return,zone,rh
-degF,degF,degF,degF,degF,pct
--5.79744,-14.7312,-13.97088,-10.64448,68.85648,52.6272
--5.952,-14.88,-14.016,-10.944,69.5616,54.63
--5.80545,-14.28325,-13.4539,-10.5051,66.77189,52.9911
--6.08,-14.82,-13.965,-11.115,68.837,51.984
--6.08,-15.105,-13.965,-11.21,68.837,54.72
--6.37,-15.68,-14.504,-11.662,71.1088,54.72
--5.928,-14.592,-13.5888,-10.7616,66.09264,52.7328
--6.20994,-15.0544,-14.01941,-11.10262,68.177614,53.2821
--6.17405,-14.65185,-13.73035,-10.6894,66.77189,53.2821
--6.499,-15.326,-14.356,-11.252,70.2862,53.0008
--6.53072,-15.17432,-14.21392,-10.85252,69.686624,53.6158
--6.39812,-14.86622,-13.92532,-10.91444,68.271704,53.0687
--6.55914,-15.01948,-14.06888,-10.9319,68.975536,53.1754
--6.42528,-14.80608,-13.87488,-10.98816,67.55856,53.0687
--6.65,-15.105,-14.155,-11.115,68.932,54.64
--6.74784,-15.2064,-14.16096,-11.21472,68.961024,52.7328
--6.816,-15.456,-14.4,-11.328,69.648,52.5312
--6.77376,-15.14688,-14.112,-11.00736,68.264448,52.4448
--6.84432,-15.30466,-14.259,-11.31214,69.051584,53.2532
--7.081,-15.617,-14.647,-11.446,70.4608,54.33
--6.935,-15.295,-14.345,-11.305,68.9985,54.23
--7.17948,-15.62022,-14.65002,-11.54538,70.475328,53.9847
--7.125,-15.295,-14.345,-11.4,69.0935,51.6135
--7.2765,-15.71724,-14.65002,-11.73942,70.572348,52.8514
--7.448,-15.974,-14.896,-11.858,71.2852,53.94
--7.07712,-15.17856,-14.15424,-11.26752,67.726176,52.2151
--7.0224,-14.8656,-13.8624,-10.944,66.42096,51.2928
--7.623,-16.137,-15.048,-11.979,72.1017,53.54
--7.722,-16.137,-15.048,-11.979,72.2007,52.8957
--7.584,-15.648,-14.688,-11.712,70.0128,51.0048
--7.43232,-15.42912,-14.39424,-11.57184,68.612544,50.7168
--7.58716,-15.75056,-14.69412,-11.71688,70.041972,52.3614
--7.5264,-15.5232,-14.48832,-11.47776,68.753664,50.8992
--7.776,-15.744,-14.784,-11.808,70.1472,52.43
--7.857,-15.908,-14.938,-12.125,70.8779,51.5361
--7.5563,-15.20475,-14.1911,-11.33445,67.426155,49.704
--7.5563,-15.20475,-14.1911,-11.4266,67.426155,49.989
--7.80615,-15.6123,-14.57775,-11.6622,68.816385,50.654
--7.98504,-15.77996,-14.7343,-11.8825,69.555402,51.5676
--8.316,-16.434,-15.345,-12.375,72.4383,53.32
--7.98,-15.77,-14.725,-11.97,69.6065,52.62
--8.0801,-15.77996,-14.7343,-11.78744,69.659968,50.8571
--7.9968,-15.5232,-14.5824,-11.66592,68.932416,49.9392
--8.17344,-15.77664,-14.7312,-11.78496,69.721344,49.5648
--8.6,-16.7,-15.6,-12.6,73.37,51.93
--8.26848,-15.96672,-14.82624,-12.07008,69.730848,50.1312
--8.439,-16.199,-15.132,-12.028,71.1689,51.0414
--8.2764,-15.8004,-14.76585,-11.75625,69.08913,52.3116
--8.722,-16.464,-15.386,-12.348,71.9908,51.0874
--8.20135,-15.4812,-14.46755,-11.51875,67.69339,54.2424
--8.208,-15.3216,-14.3184,-11.4,67.00464,53.4048
--8.208,-15.3216,-14.3184,-11.4,66.99552,52.7328
--8.918,-16.464,-15.386,-12.25,71.9908,52.4692
--8.918,-16.464,-15.386,-12.446,72.0888,53.93
--9.016,-16.464,-15.386,-12.25,72.0888,52.6554
--8.3904,-15.3216,-14.3184,-11.5824,67.08672,51.0435
--8.928,-16.224,-15.168,-12.288,70.6176,52.0608
--8.39325,-15.25225,-14.2595,-11.3715,66.47815,52.079
--8.84352,-15.89952,-14.86464,-12.04224,69.299328,52.7328
--8.75328,-15.73728,-14.71296,-11.91936,68.592192,53.2918
--9.215,-16.393,-15.326,-12.222,71.5472,53.1754
--9.31,-16.562,-15.484,-12.348,72.2848,55.23
--8.9376,-15.89952,-14.95872,-12.2304,69.384,53.9392
--8.93952,-15.8304,-14.80608,-12.01248,68.676,52.5312
--9.0288,-15.9885,-14.95395,-12.0384,69.37128,54.3807
--9.0307,-15.827,-14.8029,-11.9168,68.67056,54.1254
--9.604,-16.66,-15.582,-12.544,72.2848,54.42
--9.31392,-16.1568,-15.11136,-12.3552,70.101504,51.7824
--9.1238,-15.827,-14.896,-12.103,68.75435,51.528
--9.31095,-16.08255,-15.048,-12.2265,69.455925,53.6877
--9.50697,-16.42113,-15.3648,-12.38787,70.918155,52.7098
--9.215,-15.75765,-14.744,-11.7952,68.052775,52.573
--9.603,-16.42113,-15.3648,-12.57993,71.014185,54.1728
--9.59904,-16.25184,-15.30144,-12.26016,70.28208,54.0936
--9.69903,-16.42113,-15.46083,-12.38787,71.004582,54.2817
--9.3024,-15.5952,-14.592,-11.7648,67.4424,51.984
--9.69612,-16.35032,-15.30466,-12.16768,70.287364,52.7098
--9.78912,-16.34688,-15.30144,-12.16512,70.28208,51.9648
--9.69024,-16.18176,-15.14688,-12.13632,69.57216,53.4394
--9.68715,-16.1766,-15.14205,-12.13245,69.54057,52.573
--10.19304,-16.85772,-15.77961,-12.7413,72.478395,53.8758
--10.296,-17.028,-15.939,-13.068,73.2996,54.82
--9.7776,-16.01664,-14.99232,-12.19872,68.946048,52.7424
--10.08,-16.608,-15.456,-12.48,71.088,53.94
--10.07636,-16.44538,-15.39972,-12.45286,70.382424,52.6031
--10.6,-17.2,-16.2,-13.1,74.05,54.53
--9.87072,-16.10976,-15.08544,-12.29184,68.95536,52.3994
--10.486,-16.954,-15.876,-12.936,72.569,52.9396
--10.593,-17.127,-16.038,-12.969,73.2996,53.0046
--10.0548,-16.1063,-15.0822,-12.2892,68.94055,51.1385
--10.37124,-16.61319,-15.55686,-12.86802,71.110215,51.8271
--10.25581,-16.27757,-15.24258,-12.2317,69.664236,52.0405
--10.25145,-16.3647,-15.2361,-12.4146,69.63462,53.1927
--10.791,-17.226,-16.137,-13.068,73.3095,53.6877
--10.2432,-16.20288,-15.17856,-12.38496,69.04848,51.7301
--10.1365,-16.12625,-15.02045,-12.25595,68.32001,51.243
--10.44288,-16.36992,-15.33504,-12.51264,69.750912,52.3614
--11.1,-17.4,-16.3,-13.5,74.14,53.25
--10.545,-16.53,-15.58,-12.635,70.433,50.863
--10.75536,-16.70922,-15.74892,-12.86802,71.196642,53.1927
--10.976,-17.15,-16.072,-13.034,72.6572,51.5676
--10.85139,-16.80525,-15.74892,-12.86802,71.196642,52.2027
--11.187,-17.325,-16.236,-13.167,73.4877,51.9057
--11.3,-17.5,-16.4,-13.5,74.25,52.44
--10.61568,-16.296,-15.27168,-12.5712,69.132288,51.2548
--10.3968,-15.96,-14.9568,-12.1296,67.69776,50.6208
--10.59725,-16.2184,-15.1126,-12.3481,68.41216,50.6534
--11.27,-17.248,-16.072,-13.132,72.7552,52.22
--11.1573,-17.07552,-16.0083,-13.00068,72.027648,50.7836
--10.5792,-16.0512,-15.048,-12.1296,67.70688,49.153
--11.6,-17.6,-16.5,-13.5,74.24,51.93
--10.89504,-16.38912,-15.3648,-12.47808,69.132288,50.2368
--11.466,-17.248,-16.17,-13.23,72.7552,50.4994
--11.115,-16.72,-15.675,-12.92,70.623,49.153
--11.21708,-16.73056,-15.6849,-12.73804,70.572544,51.0972
--10.7616,-16.0512,-15.048,-12.1296,67.70688,50.2368
--11.446,-17.072,-16.005,-12.998,72.1098,51.05
--11.54538,-17.07552,-16.0083,-13.29174,72.124668,50.7177
--11.54538,-17.07552,-16.0083,-13.29174,72.124668,51.2325
--11.286,-16.5528,-15.6123,-12.88485,69.91677,50.8266
--11.52,-16.896,-15.936,-13.152,71.3664,49.9488
--11.88,-17.523,-16.434,-13.464,73.5867,51.3018
--11.15015,-16.31055,-15.2969,-12.5324,68.50431,49.4285
--11.49984,-16.91712,-15.77664,-13.02048,70.652736,49.6704
--11.50226,-16.92068,-15.77996,-12.92816,70.667604,49.9065
--11.95722,-17.34777,-16.26966,-13.42737,72.860634,51.4107
--11.83644,-17.26956,-16.20234,-13.0977,72.124668,50.5395
--11.24352,-16.31232,-15.29856,-12.71808,68.640768,49.5648
--11.2176,-16.2336,-15.2304,-12.4032,67.92576,48.108
--11.93346,-17.26956,-16.20234,-13.0977,72.270198,50.7052
--11.191,-16.0645,-15.07175,-12.36425,67.227225,49.3335
--11.54688,-16.57536,-15.55104,-12.75744,69.458208,49.9584
--11.90772,-17.18937,-16.03701,-13.15611,71.619174,52.0146
--11.875,-17.005,-15.865,-13.015,70.851,52.03
--12.1275,-17.36658,-16.20234,-13.29174,72.347814,50.7177
--11.76,-16.74624,-15.71136,-12.88896,70.164864,49.6272
--11.7306,-16.5718,-15.5477,-12.7547,69.42467,48.2885
--11.73312,-16.66848,-15.55104,-12.85056,69.458208,49.2864
--12.222,-17.363,-16.296,-13.289,72.3426,50.94
--12.19708,-17.19116,-16.13472,-13.15748,71.626632,50.8914
--12.07262,-17.01574,-15.97008,-13.02322,70.895748,50.1074
--11.94816,-16.84032,-15.80544,-12.98304,70.164864,50.4994
--12.29312,-17.19116,-16.13472,-13.34956,71.722672,50.421
--11.6736,-16.3248,-15.3216,-12.5856,68.01696,48.4975
--12.16,-17.005,-15.96,-13.015,70.946,51.23
--12.38787,-17.18937,-16.13304,-13.15611,71.715204,48.9171
--11.88735,-16.49485,-15.4812,-12.62455,68.81762,47.2435
--11.88735,-16.49485,-15.4812,-12.62455,68.81762,48.5291
--12.35,-17.005,-15.96,-13.3,70.946,50.43
--12.1056,-16.66848,-15.64416,-12.85056,69.542016,48.7968
--12.61,-17.46,-16.296,-13.386,72.4299,48.7328
--12.57993,-17.2854,-16.13304,-13.06008,71.715204,50.1878
--12.45286,-17.01574,-15.97008,-13.11828,70.981302,49.5194
--11.82275,-16.245,-15.25225,-12.54475,67.389675,47.6235
--13.068,-17.82,-16.632,-13.761,74.0223,49.4505
--12.29184,-16.7616,-15.73728,-12.75744,69.542016,47.8464
--12.54792,-17.1108,-16.06514,-13.02322,70.990808,48.1702
--12.54792,-17.20586,-16.06514,-13.21334,70.990808,48.7354
--12.901,-17.46,-16.393,-13.483,72.5366,49.95
--12.1296,-16.416,-15.4128,-12.4944,68.19936,47.348
--12.25595,-16.587,-15.57335,-12.7167,68.900555,49.4118
--12.86802,-17.2854,-16.22907,-13.25214,71.801631,47.9568
--13.266,-17.82,-16.731,-13.662,74.0322,51.13
--12.73,-17.1,-16.055,-13.3,71.0315,49.153
--12.44025,-16.67915,-15.57335,-12.80885,68.992705,47.633
--12.7008,-16.9344,-15.89952,-12.98304,70.437696,47.28
--12.312,-16.5072,-15.4128,-12.768,68.28144,49.0752
--13.06008,-17.2854,-16.22907,-13.15611,71.897661,49.3416
--12.79488,-17.02848,-15.9936,-13.1712,70.447104,48.5184
--12.4032,-16.5072,-15.504,-12.6768,68.28144,47.28
--12.92816,-17.20586,-16.1602,-13.3084,71.171422,48.0538
--13.15611,-17.38143,-16.3251,-13.4442,71.897661,48.1605
--12.88485,-17.02305,-15.9885,-13.3551,70.415235,47.063
--12.62592,-16.77312,-15.6672,-12.9024,69.000192,47.3568
--13.152,-17.376,-16.32,-13.344,71.8848,48.1344
--13.386,-17.557,-16.49,-13.58,72.6239,48.8298
--12.4545,-16.4255,-15.3425,-12.635,67.570175,47.6235
--13.662,-18.018,-16.83,-13.959,74.1213,49.44
--12.5856,-16.5072,-15.504,-12.768,68.28144,46.5785
--13.205,-17.195,-16.15,-13.49,71.1265,46.303
--12.6768,-16.5984,-15.5952,-12.8592,68.28144,46.7904
--12.94368,-16.94784,-15.92352,-13.0368,69.718944,47.4621
--13.3056,-17.29728,-16.25184,-13.3056,71.156448,49.0446
--13.86,-18.018,-16.929,-13.959,74.2203,47.8566
--13.4456,-17.47928,-16.3268,-13.34956,72.001188,51.6754
--13.034,-16.8511,-15.9201,-13.1271,69.78776,49.153
--13.67982,-17.65764,-16.59042,-13.67982,72.735894,50.7934
--13.40064,-17.29728,-16.25184,-13.3056,71.260992,49.1535
--12.8592,-16.5984,-15.5952,-12.768,68.37264,47.3568
--13.3551,-17.1171,-16.08255,-13.167,70.509285,49.3416
--13.77684,-17.65764,-16.59042,-13.5828,72.735894,47.5888
--13.2202,-17.0373,-15.9201,-13.2202,69.78776,47.6574
--12.9504,-16.6896,-15.5952,-12.8592,68.36352,47.7408
--13.45487,-17.21847,-16.18348,-13.26669,70.548682,47.5591
--13.17888,-16.77312,-15.85152,-12.99456,69.092352,47.5584
--12.90575,-16.4255,-15.43275,-12.72525,67.660425,47.063
--12.90575,-16.51575,-15.523,-12.8155,67.660425,47.5285
--13.59358,-17.39598,-16.35032,-13.49852,71.266482,49.0294
--13.97088,-17.75466,-16.68744,-13.77684,72.735894,49.0446
--14.11344,-17.93583,-16.85772,-13.81941,73.576107,49.2426
--13.1328,-16.6896,-15.6864,-12.8592,68.37264,47.4525
--13.82832,-17.66952,-16.51716,-13.4442,72.089721,53.2917
--13.5024,-17.13408,-16.01664,-13.22304,69.905184,47.4621
--13.63725,-17.3052,-16.1766,-13.3551,70.603335,49.5297
--14.355,-18.216,-17.028,-14.157,74.3193,50.34
--14.02038,-17.66952,-16.51716,-13.63626,72.089721,48.1437
--14.162,-17.848,-16.781,-14.065,72.8082,47.6658
--14.16492,-17.85168,-16.78446,-13.97088,72.823212,49.2352
--13.3152,-16.7808,-15.7776,-12.8592,68.46384,46.6848
--13.4539,-16.86345,-15.94195,-12.99315,69.16779,47.1711
--14.02184,-17.67136,-16.51888,-13.73372,72.087624,47.6574
--13.83123,-17.31256,-16.27757,-13.54896,70.623954,47.4621
--14.26194,-17.85168,-16.78446,-13.87386,72.823212,49.0545
--14.259,-17.945,-16.781,-13.774,72.8179,48.55
--13.54605,-16.9556,-15.94195,-12.99315,69.177005,48.1605
--14.21392,-17.67136,-16.61492,-13.54164,72.183664,48.8432
--14.06,-17.385,-16.435,-13.585,71.3165,49.14
--13.9194,-17.39925,-16.27065,-13.44915,70.68798,48.7575
--14.453,-18.042,-16.878,-13.968,72.9149,47.7725
--14.16394,-17.68116,-16.54044,-13.7837,71.447096,49.3332
--14.751,-18.315,-17.226,-14.157,74.4084,49.84
--14.9,-18.4,-17.4,-14.3,75.16,50.03
--14.01792,-17.31072,-16.27584,-13.45344,70.710528,48.8432
--13.68,-16.872,-15.8688,-13.1328,68.54592,46.8864
--14.7015,-18.13185,-17.05374,-14.11344,73.674117,50.0346
--14.553,-17.9487,-16.88148,-13.87386,72.920232,47.8632
--13.968,-17.2272,-16.20288,-13.31616,69.988992,48.9024
--14.553,-17.9487,-16.88148,-13.97088,72.929934,48.9357
--14.35406,-17.5861,-16.54044,-13.68864,71.447096,46.7055
--14.20608,-17.49888,-16.36992,-13.54752,70.710528,47.7652
--14.949,-18.414,-17.226,-14.157,74.4183,48.63
--14.0581,-17.3166,-16.1994,-13.4064,69.97396,48.7354
--13.91465,-17.04775,-16.0341,-13.2696,69.25994,49.5088
--14.44912,-17.5861,-16.54044,-13.7837,71.447096,47.4524
--14.44912,-17.5861,-16.54044,-13.68864,71.447096,48.1572
--15.2,-18.7,-17.5,-14.7,75.16,48.04
--14.744,-18.139,-16.975,-14.065,72.9052,46.7831
--14.1512,-17.4097,-16.2925,-13.4995,69.97396,47.579
--14.59808,-17.86344,-16.807,-13.9258,72.183664,47.3732
--13.9536,-16.9632,-15.96,-13.1328,68.63712,46.6848
--14.38965,-17.4933,-16.3647,-13.63725,70.78203,48.3516
--14.69259,-17.76555,-16.70922,-13.82832,72.176148,46.7055
--14.38965,-17.4933,-16.45875,-13.7313,70.68798,47.7477
--14.0448,-17.0544,-15.96,-13.224,68.63712,46.968
--14.3374,-17.4097,-16.2925,-13.4064,70.06706,46.398
--15.09354,-18.22986,-17.15175,-14.21145,73.762326,49.3416
--14.0448,-16.9632,-15.96,-13.1328,68.628,46.6848
--14.94108,-18.04572,-16.9785,-13.87386,73.017252,47.7477
--14.725,-17.67,-16.625,-13.775,71.497,45.638
--14.4305,-17.4097,-16.2925,-13.4995,70.06706,47.481
--14.5824,-17.59296,-16.464,-13.54752,70.804608,46.8864
--14.4305,-17.4097,-16.2925,-13.4064,70.06706,47.7554
--14.7312,-17.67744,-16.632,-13.68576,71.527104,47.1744
--15.19,-18.228,-17.15,-14.21,73.7548,46.795
--14.3754,-17.23205,-16.2184,-13.4539,69.35209,46.1985
--14.67804,-17.59483,-16.55984,-13.92532,70.821543,46.6085
--14.6718,-17.6814,-16.5528,-13.82535,70.78203,48.4308
--14.52672,-17.41344,-16.38912,-13.40928,70.082112,46.5018
--14.976,-17.952,-16.896,-13.632,72.3456,47.664
--14.67648,-17.49888,-16.55808,-13.6416,70.898688,46.7808
--14.6167,-17.3166,-16.3856,-13.3133,70.06706,46.1985
--14.77056,-17.59296,-16.55808,-13.6416,70.898688,46.4064
--14.16925,-16.87675,-15.884,-13.08625,68.003375,47.2435
--15.23214,-18.23976,-17.07552,-14.16492,73.10457,47.4606
--15.229,-18.139,-17.072,-13.968,73.0895,48.4515
--14.2595,-16.7865,-15.884,-12.8155,68.0124,46.5785
--14.86464,-17.49888,-16.55808,-13.6416,70.898688,47.8464
--14.56128,-17.14176,-16.22016,-13.27104,69.451776,48.1344
--14.71296,-17.41344,-16.38912,-13.59552,70.16592,48.0538
--15.168,-18.048,-16.896,-14.112,72.3456,50.14
--14.80608,-17.50656,-16.38912,-13.5024,70.16592,46.3008
--14.65344,-17.23392,-16.22016,-13.27104,69.44256,47.28
--15.26877,-17.86158,-16.90128,-13.82832,72.368208,47.9568
--15.11136,-17.67744,-16.72704,-13.68576,71.61264,46.8864
--14.8029,-17.4097,-16.3856,-13.4995,70.16016,46.588
--14.95872,-17.68704,-16.55808,-13.92384,70.88928,48.6144
--14.7456,-17.32608,-16.22016,-13.45536,69.44256,47.5584
--15.3664,-17.95948,-16.90304,-13.9258,72.36614,47.3732
--14.8992,-17.32032,-16.38912,-13.40928,70.16592,47.9568
--15.2064,-17.67744,-16.72704,-13.68576,71.61264,47.4528
--14.896,-17.3166,-16.3856,-13.4064,70.16016,48.7452
--15.2096,-17.77622,-16.73056,-13.87876,71.62771,47.4524
--14.592,-17.1456,-16.0512,-13.224,68.7192,46.7808
--15.295,-17.86,-16.72,-13.68,71.6775,46.683
--14.9891,-17.4097,-16.3856,-13.5926,70.24395,48.8432
--14.83615,-17.1399,-16.2184,-13.2696,69.435025,46.9965
--14.99232,-17.41344,-16.38912,-13.5024,70.268352,46.3175
--15.62022,-18.23976,-17.07552,-14.26194,73.211292,47.9514
--15.617,-18.333,-17.169,-14.162,73.0992,48.84
--15.55686,-18.05364,-16.90128,-13.92435,72.358605,47.9655
--15.71724,-18.14274,-17.07552,-13.97088,73.114272,48.0744
--15.552,-17.952,-16.896,-13.824,72.336,48.92
--15.71724,-18.14274,-17.07552,-13.97088,73.20159,47.3517
--15.0822,-17.5028,-16.3856,-13.5926,70.24395,46.1985
--14.6205,-16.967,-15.884,-13.26675,68.093625,45.638
--15.55848,-18.05552,-16.90304,-14.11788,72.46218,47.2654
--15.97563,-18.32787,-17.24976,-14.30946,73.948545,47.8566
--15.974,-18.326,-17.248,-14.21,73.941,47.8632
--15.49152,-17.86752,-16.82208,-13.97088,71.70768,46.8666
--15.1753,-17.5959,-16.4787,-13.5926,70.24395,47.481
--15.49152,-17.96256,-16.82208,-13.97088,71.70768,45.84
--16.137,-18.612,-17.523,-14.256,74.7054,47.64
--16.137,-18.612,-17.523,-14.355,74.6955,48.15
--15.908,-18.236,-17.169,-14.065,73.1865,47.4524
--15.744,-18.048,-16.992,-14.304,72.4416,47.64
--15.74892,-18.14967,-16.99731,-14.21244,72.464238,48.5397
--15.744,-18.144,-16.992,-14.112,72.432,46.6848
--14.801,-17.05725,-15.97425,-13.1765,68.093625,45.923
--16.07364,-18.42588,-17.34777,-14.30946,73.948545,46.3716
--15.42912,-17.68704,-16.65216,-13.6416,70.98336,46.8636
--15.048,-17.1456,-16.1424,-13.3152,68.91072,46.5785
--15.84,-18.144,-16.992,-14.112,72.432,45.84
--15.6849,-17.96634,-16.92068,-13.97382,71.72277,46.2108
--15.5232,-17.78112,-16.74624,-13.82976,70.98336,46.4064
--15.3648,-17.50656,-16.48224,-13.5024,70.268352,46.8898
--15.84,-18.048,-16.992,-14.112,72.432,48.15
--15.51825,-17.77545,-16.7409,-14.01345,70.960725,45.3625
--15.936,-18.24,-17.088,-14.304,72.432,45.4464
--15.94098,-18.2457,-17.09334,-14.30847,72.454635,45.6385
--15.61894,-17.8771,-16.74802,-13.73714,71.094404,46.3175
--16.102,-18.333,-17.169,-14.162,73.1865,46.1041
--15.77,-17.86,-16.91,-13.775,71.6775,47.05
--15.77664,-17.86752,-16.82208,-13.87584,71.80272,46.6587
--15.94264,-18.05552,-16.99908,-14.11788,72.567824,46.795
--16.6,-18.9,-17.8,-14.7,75.55,47.04
--15.61728,-17.8752,-16.74624,-14.01792,70.98336,48.0494
--15.865,-17.955,-16.91,-13.965,71.7725,44.973
--16.03701,-18.14967,-17.09334,-14.02038,72.454635,46.6587
--15.70635,-17.6814,-16.7409,-13.7313,71.06418,47.4606
--15.55104,-17.50656,-16.57536,-13.68864,70.35216,46.7831
--15.87502,-17.96634,-16.92068,-13.97382,71.81783,45.717
--15.39072,-17.5104,-16.40448,-13.824,69.62688,45.552
--15.71136,-17.8752,-16.74624,-14.01792,71.07744,45.4464
--15.97008,-18.0614,-16.92068,-13.87876,71.81783,46.1874
--15.8004,-17.77545,-16.7409,-13.82535,71.054775,44.498
--15.96,-17.86,-16.91,-14.06,71.7725,47.13
--15.96,-17.86,-16.91,-14.06,71.7725,47.74
--15.80544,-17.78112,-16.74624,-13.82976,71.086848,46.9812
--15.4812,-17.5085,-16.4027,-13.54605,69.619325,44.498
--16.13304,-18.2457,-17.09334,-14.30847,72.550665,46.3716
--16.06514,-18.0614,-16.92068,-13.68864,71.81783,47.4712
--15.25225,-17.05725,-16.0645,-13.08625,68.183875,45.5335
--15.89445,-17.6814,-16.7409,-13.82535,71.054775,47.348
--15.73728,-17.6928,-16.57536,-14.06112,70.35216,45.6288
--16.22907,-18.43776,-17.18937,-14.50053,72.550665,46.2108
--16.39638,-18.53082,-17.36658,-14.45598,73.29861,47.7477
--16.224,-18.24,-17.184,-14.112,72.528,47.05
--15.73728,-17.59968,-16.66848,-13.68864,70.35216,46.9868
--16.393,-18.236,-17.266,-14.065,73.2835,46.7055
--15.73728,-17.50656,-16.57536,-13.68864,70.35216,46.5018
--16.1568,-17.86752,-16.91712,-13.7808,71.80272,46.7676
--16.3251,-18.14967,-17.09334,-14.21244,72.550665,47.5596
--16.66,-18.522,-17.444,-14.504,74.039,46.0012
--16.1602,-17.96634,-16.92068,-14.259,71.81783,46.3175
--15.827,-17.689,-16.5718,-13.7788,70.34636,46.1874
--16.1568,-18.0576,-16.91712,-13.97088,71.793216,46.4706
--16.1568,-18.0576,-16.91712,-14.06592,71.80272,46.0746
--16.6617,-18.52389,-17.44578,-14.40747,74.046555,46.1835
--15.9885,-17.77545,-16.7409,-13.7313,71.054775,46.9755
--16.4934,-18.4338,-17.26956,-14.45598,73.29861,46.4706
--15.9201,-17.7821,-16.5718,-13.5926,70.33705,46.8734
--16.245,-18.05,-16.91,-13.68,71.7725,43.3675
--16.587,-18.43,-17.266,-14.065,73.2835,46.84
--16.08768,-17.78112,-16.74624,-13.82976,71.086848,44.9664
--16.758,-18.522,-17.444,-14.504,74.039,46.795
--16.25526,-17.96634,-16.92068,-14.06888,71.81783,46.109
--16.59042,-18.4338,-17.26956,-14.45598,73.29861,45.0945
--16.25526,-18.15646,-16.92068,-14.16394,71.91289,46.1874
--16.34688,-18.15264,-17.01216,-14.16096,71.80272,45.6786
--15.5952,-17.4192,-16.3248,-13.5888,68.9928,44.422
--15.9201,-17.7821,-16.6649,-13.7788,70.43015,47.0792
--16.856,-18.62,-17.542,-14.7,74.137,47.45
--16.51716,-18.2457,-17.18937,-14.21244,72.560268,45.9198
--16.684,-18.43,-17.363,-14.453,73.2835,46.35
--16.856,-18.718,-17.542,-14.798,74.039,46.24
--16.684,-18.624,-17.363,-14.55,73.3708,46.94
--16.35032,-18.25152,-17.1108,-14.259,71.91289,46.3078
--16.34,-18.24,-17.1,-14.25,71.858,47.45
--15.6864,-17.4192,-16.416,-13.68,68.9928,43.833
--16.51888,-18.34364,-17.2872,-14.21392,72.644656,44.737
--17.028,-18.909,-17.82,-14.85,74.8935,46.84
--15.7776,-17.5104,-16.416,-13.8624,68.9928,44.0064
--17.127,-19.107,-17.919,-15.246,74.8836,45.8865
--15.94195,-17.78495,-16.67915,-13.91465,69.711475,44.593
--16.781,-18.721,-17.557,-14.744,73.3805,45.9198
--16.27065,-18.15165,-17.02305,-14.1075,71.13942,45.543
--16.781,-18.527,-17.557,-14.647,73.3805,46.76
--15.7776,-17.4192,-16.416,-13.8624,68.9928,44.4125
--16.10976,-17.78592,-16.7616,-13.87488,70.44528,44.8896
--16.61492,-18.43968,-17.38324,-14.50204,72.644656,46.5794
--16.95573,-18.91593,-17.73981,-14.99553,74.154366,46.5795
--17.052,-18.914,-17.738,-14.994,74.1272,46.43
--16.88148,-18.82188,-17.56062,-14.74704,73.385928,46.1874
--16.53,-18.335,-17.195,-14.345,71.8675,44.593
--16.3647,-18.15165,-17.02305,-14.20155,71.13942,45.9756
--16.20288,-17.87904,-16.85472,-13.968,70.44528,45.168
--16.0341,-17.6928,-16.67915,-13.91465,69.711475,44.9595
--16.37166,-18.06528,-17.03029,-14.30168,71.179085,44.6491
--16.53696,-18.34272,-17.20224,-14.63616,71.89776,44.496
--15.8688,-17.6928,-16.5984,-13.8624,68.9928,44.2944
--17.052,-19.012,-17.836,-14.896,74.137,44.5312
--17.4,-19.4,-18.2,-15.2,75.55,46.35
--16.704,-18.528,-17.472,-14.496,72.528,44.6784
--16.6355,-18.25152,-17.20586,-14.35406,71.91289,45.0371
--16.464,-18.15744,-17.12256,-14.30016,71.17152,44.9232
--16.296,-18.06528,-16.94784,-14.24736,70.35216,44.496
--16.45875,-18.33975,-17.1171,-14.38965,71.054775,46.3716
--16.128,-17.9712,-16.77312,-14.00832,69.636096,44.5824
--16.8,-18.624,-17.472,-14.784,72.624,47.34
--16.975,-18.818,-17.654,-14.647,73.3805,45.3572
--16.632,-18.34272,-17.29728,-14.256,71.89776,46.4706
--16.632,-18.43776,-17.29728,-14.44608,71.80272,45.552
--16.128,-17.87904,-16.86528,-14.19264,69.636096,45.2448
--16.72704,-18.5328,-17.39232,-14.63616,71.89776,45.84
--16.3856,-18.1545,-17.0373,-14.2443,70.43015,46.1874
--17.424,-19.305,-18.117,-15.048,74.8935,47.24
--16.90128,-18.62982,-17.57349,-14.59656,72.560268,47.1735
--17.072,-18.818,-17.751,-14.841,73.3805,47.75
--17.07552,-18.82188,-17.65764,-14.94108,73.39563,46.7577
--16.72704,-18.5328,-17.39232,-14.7312,71.89776,46.6587
--16.5528,-18.4338,-17.3052,-14.4837,71.148825,47.8566
--15.884,-17.689,-16.606,-13.80825,68.274125,46.0275
--16.38912,-18.25152,-17.13408,-14.24736,70.44528,46.0224
--16.65216,-18.3456,-17.31072,-14.39424,71.17152,47.481
--15.97425,-17.59875,-16.606,-13.80825,68.274125,46.0275
--17.523,-19.305,-18.117,-15.147,74.9034,47.9655
--17.17254,-18.9189,-17.75466,-14.84406,73.39563,48.3615
--16.99731,-18.72585,-17.57349,-14.59656,72.646695,47.9655
--16.1424,-17.784,-16.7808,-14.0448,68.9928,45.3625
--16.1424,-17.784,-16.7808,-14.0448,68.9928,46.512
--17.34777,-19.20996,-18.03384,-14.99553,74.144565,47.6685
--16.64685,-18.33975,-17.3052,-14.38965,71.148825,47.0547
--17.346,-19.11,-18.032,-14.994,74.137,47.64
--16.1424,-17.6928,-16.6896,-13.7712,68.9928,45.258
--16.48224,-18.06528,-17.04096,-13.87488,70.44528,45.3504
--16.31055,-17.96925,-16.86345,-14.09895,69.711475,46.1041
--16.2336,-17.8752,-16.6896,-14.2272,68.9928,45.7344
--16.57536,-18.25152,-17.13408,-14.15424,70.44528,47.1711
--16.74624,-18.3456,-17.21664,-14.20608,71.17152,46.224
--16.4027,-17.96925,-16.86345,-14.09895,69.711475,45.4385
--16.74802,-18.25346,-17.21847,-14.30168,71.084995,46.7055
--17.266,-18.818,-17.751,-14.647,73.3708,48.24
--16.40448,-17.87904,-16.86528,-13.91616,69.71904,47.1744
--16.91,-18.43,-17.385,-14.63,71.8675,49.34
--17.622,-19.305,-18.117,-15.345,74.8935,48.8367
--17.088,-18.72,-17.568,-14.784,72.624,47.1744
--16.2336,-17.784,-16.6896,-14.0448,68.9928,46.1184
--17.622,-19.305,-18.117,-15.048,74.8836,48.15
--16.66848,-18.1584,-17.13408,-14.24736,70.44528,46.3175
--17.184,-18.624,-17.568,-14.688,72.6144,47.45
--16.6649,-18.0614,-17.0373,-14.3374,70.43015,46.683
--17.54379,-19.01394,-17.93583,-14.79951,74.144565,48.2526
--17.01216,-18.5328,-17.39232,-14.54112,71.89776,47.1636
--16.66848,-18.25152,-17.04096,-14.24736,70.44528,46.6085
--17.18937,-18.72585,-17.57349,-14.69259,72.646695,45.8228
--17.184,-18.72,-17.664,-14.688,72.624,45.84
--17.18937,-18.62982,-17.57349,-14.50053,72.637092,47.1636
--17.542,-19.012,-17.934,-14.896,74.137,47.83
--17.005,-18.335,-17.385,-14.345,71.8675,45.8185
--16.6649,-18.0614,-17.0373,-14.2443,70.43015,45.1535
--17.005,-18.525,-17.385,-14.535,71.9435,47.75
--17.363,-19.012,-17.751,-14.744,73.3805,46.5018
--17.363,-18.818,-17.751,-14.841,73.3805,46.7831
--17.1,-18.525,-17.385,-14.345,71.9435,47.94
--17.46,-18.818,-17.751,-14.647,73.4581,46.3951
--17.28,-18.624,-17.568,-14.592,72.7008,47.64
--17.1072,-18.43776,-17.39232,-14.63616,71.973792,46.0128
--16.9362,-18.34755,-17.21847,-14.58395,71.254357,46.3175
--16.7616,-18.25152,-17.04096,-14.24736,70.519776,46.7831
--17.2872,-18.82384,-17.57532,-14.69412,72.740696,46.403
--17.2872,-18.7278,-17.57532,-14.79016,72.731092,47.187
--16.9344,-18.3456,-17.21664,-14.20608,71.246784,46.9812
--16.758,-18.0614,-17.0373,-14.0581,70.50463,46.5794
--17.2872,-18.53572,-17.57532,-14.69412,72.731092,46.109
--17.2854,-18.62982,-17.57349,-14.98068,72.723519,46.1041
--16.67915,-18.0614,-16.9556,-14.1911,69.785195,45.8228
--17.64,-19.208,-18.032,-14.896,74.2154,46.5794
--17.376,-18.72,-17.664,-14.688,72.7008,45.552
--17.919,-19.305,-18.117,-15.147,74.9826,46.4805
--17.195,-18.43,-17.385,-14.44,71.9435,47.83
--17.738,-18.914,-17.934,-14.798,74.2154,48.23
--17.56062,-18.82188,-17.75466,-14.74704,73.473246,46.0012
--17.38143,-18.72585,-17.57349,-14.98068,72.723519,45.5318
--17.02305,-18.4338,-17.3052,-14.4837,71.224065,45.1535
--16.67915,-18.0614,-16.86345,-14.1911,69.785195,46.7928
--17.02848,-18.3456,-17.21664,-14.48832,71.340864,47.187
--17.20224,-18.43776,-17.39232,-14.54112,71.973792,46.7676
--17.20224,-18.43776,-17.39232,-14.44608,72.068832,45.456
--17.738,-19.012,-17.934,-14.896,74.3134,48.05
--17.38143,-18.62982,-17.57349,-14.4045,72.809946,47.1636
--17.20586,-18.5367,-17.39598,-14.7343,72.083998,46.8734
--16.67915,-18.0614,-16.86345,-14.1911,69.877345,44.973
--16.94784,-18.1584,-17.04096,-14.4336,70.612896,46.1184
--17.30092,-18.5367,-17.49104,-14.63924,71.988938,46.501
--17.47746,-18.72585,-17.57349,-14.69259,72.819549,47.0547
--17.29,-18.43,-17.385,-14.44,72.0385,45.923
--16.4255,-17.5085,-16.51575,-13.62775,68.436575,44.498
--16.7713,-17.8771,-16.86345,-14.0068,69.877345,46.0265
--17.65764,-18.82188,-17.75466,-15.0381,73.570266,46.4706
--17.29728,-18.5328,-17.39232,-14.7312,72.068832,44.9664
--17.12256,-18.43968,-17.21664,-14.39424,71.340864,45.2448
--17.654,-19.012,-17.848,-14.744,73.5454,45.3572
--18.2,-19.5,-18.3,-15.3,75.82,47.64
--17.83782,-19.11195,-17.93583,-14.79951,74.320983,47.3517
--17.65764,-18.82188,-17.75466,-14.94108,73.570266,47.285
--16.4255,-17.59875,-16.51575,-13.8985,68.436575,45.2675
--16.9442,-18.1545,-17.1304,-14.4305,70.59773,45.4385
--17.654,-18.915,-17.848,-14.938,73.5454,46.5988
--16.9442,-18.1545,-17.0373,-14.1512,70.59773,45.543
--16.5984,-17.8752,-16.7808,-14.136,69.15696,45.3625
--17.04096,-18.1584,-17.13408,-14.15424,70.612896,46.6848
--17.93583,-19.11195,-17.93583,-14.79951,74.311182,48.4407
--17.57349,-18.72585,-17.66952,-14.69259,72.819549,47.1711
--17.57349,-18.72585,-17.66952,-14.78862,72.819549,46.3951
--17.39598,-18.63176,-17.49104,-14.44912,72.074492,47.481
--17.04096,-18.34464,-17.13408,-14.52672,70.612896,46.5018
--17.568,-18.816,-17.664,-14.688,72.7968,45.6288
--18.117,-19.404,-18.216,-15.147,75.0717,47.53
--16.86345,-18.0614,-16.9556,-14.1911,70.006355,44.878
--17.385,-18.525,-17.48,-14.25,72.0385,48.45
--17.385,-18.525,-17.48,-14.63,72.029,45.087
--17.57349,-18.72585,-17.66952,-14.59656,72.819549,46.2108
--17.57349,-18.72585,-17.66952,-14.69259,72.829152,46.2108
--17.751,-19.109,-17.848,-15.035,73.5551,45.7161
--17.21115,-18.52785,-17.3052,-14.38965,71.30871,45.163
--17.57349,-18.82188,-17.66952,-14.78862,72.819549,45.6786
--16.86528,-18.06336,-16.95744,-14.10048,70.013952,45.7344
--17.93583,-19.20996,-18.03384,-15.19155,74.467998,47.7477
--18.032,-19.208,-18.032,-15.092,74.4604,48.63
--17.664,-18.72,-17.664,-14.88,72.9312,45.9168
--17.39598,-18.5367,-17.49104,-14.7343,72.083998,46.0012
--17.85168,-18.9189,-17.85168,-14.94108,73.570266,46.109
--17.1304,-18.2476,-17.1304,-14.2443,70.72807,45.258
--17.13408,-18.25152,-17.13408,-14.4336,70.612896,46.1138
--16.606,-17.689,-16.606,-14.079,68.562925,45.4385
--17.85168,-19.01592,-17.85168,-14.94108,73.570266,46.9854
--17.67136,-18.91988,-17.7674,-14.98224,72.827132,46.109
--16.95744,-18.15552,-17.0496,-14.19264,70.013952,45.4464
--17.66952,-18.82188,-17.76555,-14.78862,72.953991,45.8228
--17.49104,-18.63176,-17.5861,-14.54418,72.217082,45.6385
--18.032,-19.208,-18.13,-15.092,74.3232,46.36
--16.7808,-17.8752,-16.872,-14.136,69.29376,45.0775
--16.7808,-17.8752,-16.872,-14.136,69.28464,46.1985
--16.9556,-18.15355,-17.04775,-14.28325,70.006355,46.2108
--17.67136,-18.91988,-17.7674,-14.69412,72.961588,46.2952
--17.848,-19.109,-17.945,-15.035,73.6909,47.05
--17.848,-19.012,-17.945,-14.841,73.6909,49.14
--16.9556,-18.0614,-17.04775,-14.28325,70.006355,47.633
--17.66952,-18.82188,-17.76555,-14.59656,72.953991,46.8898
--16.7808,-17.9664,-16.872,-14.0448,69.29376,45.9168
--17.76555,-18.91791,-17.76555,-14.78862,72.953991,49.2327
--17.945,-19.109,-17.945,-15.035,73.6909,47.2778
--17.39925,-18.4338,-17.39925,-14.57775,71.318115,47.2725
--17.2272,-18.25152,-17.2272,-14.24736,70.743264,46.5988
--17.9487,-19.01592,-17.9487,-14.84406,73.706094,47.6685
--17.39925,-18.4338,-17.39925,-14.57775,71.318115,47.6685
--16.69625,-17.689,-16.69625,-14.079,68.562925,45.543
--17.40665,-18.53573,-17.40665,-14.67804,71.348447,46.0944
--17.39925,-18.52785,-17.39925,-14.38965,71.45919,47.0646
--17.4048,-18.62784,-17.4048,-14.5824,71.331456,46.5794
--17.2235,-18.3407,-17.2235,-14.5236,70.72807,45.8248
--18.13,-19.306,-18.13,-15.288,74.4506,47.53
--18.13,-19.306,-18.13,-15.092,74.4604,46.501
--17.40665,-18.44164,-17.40665,-14.58395,71.489582,46.2108
--18.13185,-19.30797,-18.13185,-14.99553,74.458197,47.5596
--17.2272,-18.34464,-17.2272,-14.52672,70.743264,45.9295
--17.40665,-18.53573,-17.40665,-14.77213,71.489582,46.2108
--16.69625,-17.77925,-16.69625,-13.98875,68.562925,45.638
--17.5824,-18.81792,-17.67744,-14.92128,72.201888,48.3615
--16.872,-17.9664,-16.9632,-14.3184,69.28464,46.512
--18.13,-19.306,-18.13,-14.994,74.4506,47.2654
--17.39925,-18.52785,-17.39925,-14.57775,71.449785,46.8765
--17.2235,-18.2476,-17.2235,-14.4305,70.72807,45.923
--17.1399,-18.0614,-17.04775,-14.3754,70.006355,47.348
--16.9632,-17.9664,-16.872,-14.136,69.28464,45.7425
--17.856,-18.912,-17.76,-15.072,72.9408,48.35
--17.3166,-18.4338,-17.3166,-14.6167,70.72807,44.422
--18.6,-19.7,-18.6,-15.6,75.97,48.34
--17.68116,-18.72682,-17.5861,-14.7343,72.217082,48.1572
--17.49888,-18.53376,-17.49888,-14.5824,71.472576,46.4064
--17.67744,-18.72288,-17.67744,-14.63616,72.201888,45.84
--18.414,-19.602,-18.414,-15.345,75.2103,48.93
--17.4933,-18.52785,-17.4933,-14.57775,71.318115,45.923
--17.67744,-18.72288,-17.5824,-14.82624,72.059328,46.6176
--17.1399,-18.15355,-17.1399,-14.3754,69.877345,46.7152
--17.3166,-18.4338,-17.3166,-14.6167,70.59773,45.258
--18.04572,-19.20996,-18.04572,-15.13512,73.570266,47.2725
--18.22986,-19.40598,-18.22986,-15.28956,74.311182,48.3516
--17.86158,-19.01394,-17.86158,-15.07671,72.963594,46.6085
--17.86344,-19.01592,-17.86344,-14.8862,72.961588,47.873
--17.68116,-18.82188,-17.68116,-14.92442,72.074492,46.2952
--17.67744,-18.81792,-17.67744,-14.63616,72.201888,47.7477
--17.856,-19.008,-17.952,-14.976,72.9312,48.85
--17.4933,-18.6219,-17.58735,-14.76585,71.318115,46.4835
--17.23392,-18.24768,-17.23392,-14.46912,70.023168,46.512
--18.04572,-19.20996,-18.14274,-15.0381,73.706094,47.5888
--17.68116,-18.72682,-17.68116,-14.7343,72.217082,47.9514
--17.765,-18.715,-17.67,-14.82,72.029,47.05
--17.765,-18.715,-17.67,-14.63,72.0385,46.4075
--18.139,-19.206,-18.042,-15.035,73.5551,48.63
--17.41344,-18.43776,-17.41344,-14.52672,70.612896,46.0224
--17.58735,-18.71595,-17.58735,-14.57775,71.318115,47.4606
--17.58735,-18.6219,-17.4933,-14.8599,71.318115,48.0744
--17.95948,-19.01592,-17.95948,-15.07828,72.827132,48.0494
--17.0544,-18.0576,-17.0544,-14.136,69.15696,46.0128
--17.952,-19.008,-17.856,-14.976,72.7968,45.7344
--17.95761,-19.01394,-17.86158,-15.07671,72.819549,47.5591
--17.0544,-18.0576,-16.9632,-14.0448,69.15696,46.224
--17.41344,-18.43776,-17.32032,-14.4336,70.612896,47.0688
--18.32787,-19.40598,-18.32787,-15.38757,74.311182,46.8666
--17.952,-19.104,-17.952,-14.88,72.7968,48.91
--17.41344,-18.53088,-17.41344,-14.4336,70.612896,46.3175
--17.0544,-18.1488,-17.0544,-14.3184,69.14784,45.552
--17.77248,-18.91296,-17.77248,-14.7312,72.068832,45.168
--17.58735,-18.6219,-17.58735,-14.6718,71.318115,48.7575
--17.23205,-18.2457,-17.1399,-14.3754,69.877345,46.8898
--18.513,-19.602,-18.513,-15.444,75.0717,47.9655
--17.95761,-19.01394,-17.95761,-14.98068,72.809946,47.6685
--17.95761,-19.01394,-17.95761,-15.07671,72.819549,48.0744
--18.048,-19.104,-17.952,-15.072,72.7968,48.34
--17.4097,-18.5269,-17.4097,-14.6167,70.59773,45.4385
--17.0544,-18.1488,-17.0544,-14.3184,69.14784,47.4624
--17.58735,-18.71595,-17.58735,-14.76585,71.30871,48.0744
--17.50656,-18.43776,-17.41344,-14.61984,70.612896,45.0624
--17.77622,-18.82188,-17.77622,-14.92442,72.074492,46.7055
--18.23976,-19.20996,-18.14274,-15.32916,73.706094,46.795
--18.612,-19.602,-18.513,-15.642,75.0717,48.1437
--18.612,-19.701,-18.513,-15.543,75.0717,47.83
--17.5028,-18.5269,-17.4097,-14.7098,70.60704,45.2675
--17.5028,-18.5269,-17.4097,-14.4305,70.59773,45.543
--17.1456,-18.1488,-17.0544,-14.3184,69.15696,46.683
--17.87128,-18.82188,-17.77622,-15.01948,72.217082,46.5018
--18.8,-19.8,-18.7,-15.7,75.97,47.45
--18.8,-19.8,-18.7,-15.9,75.98,48.15
--18.23976,-19.30698,-18.14274,-15.23214,73.706094,47.8566
--17.3242,-18.33785,-17.23205,-14.5597,70.006355,45.828
--17.5028,-18.5269,-17.4097,-14.6167,70.72807,45.1535
--17.86752,-18.91296,-17.77248,-14.92128,72.068832,45.552
--17.87128,-18.82188,-17.77622,-14.82936,72.217082,46.2952
--17.5028,-18.5269,-17.4097,-14.6167,70.72807,45.8185
--17.5028,-18.5269,-17.4097,-14.6167,70.72807,47.5888
--17.86752,-18.91296,-17.77248,-14.92128,72.201888,46.4064
--18.236,-19.303,-18.139,-15.326,73.7006,47.53
--17.5028,-18.5269,-17.4097,-14.6167,70.72807,45.638
--17.68704,-18.72192,-17.59296,-14.67648,71.472576,45.9032
--17.6814,-18.71595,-17.58735,-14.8599,71.45919,46.2924
--17.2368,-18.1488,-17.1456,-14.2272,69.29376,44.8896
--17.41635,-18.33785,-17.23205,-14.3754,70.006355,46.1138
--17.5959,-18.5269,-17.4097,-14.6167,70.72807,46.6872
--17.78112,-18.72192,-17.59296,-14.77056,71.481984,46.0224
--17.41635,-18.33785,-17.23205,-14.28325,70.006355,46.5785
--18.711,-19.701,-18.612,-15.444,75.2103,48.23
--17.2368,-18.1488,-17.1456,-14.3184,69.28464,45.6475
--18.333,-19.303,-18.139,-15.326,73.6909,47.94
--18.333,-19.303,-18.236,-15.326,73.7006,46.9965
--17.2368,-18.1488,-17.1456,-14.5008,69.29376,45.5616
--17.96256,-18.91296,-17.86752,-14.92128,72.201888,45.552
--17.77545,-18.81,-17.6814,-14.76585,71.449785,45.4385
--17.2368,-18.1488,-17.1456,-14.3184,69.29376,44.6975
--18.711,-19.8,-18.612,-15.444,75.2103,47.4606
--18.144,-19.2,-18.048,-14.976,72.9312,45.0624
--18.144,-19.2,-18.048,-15.168,72.9312,48.63
--17.59968,-18.53088,-17.41344,-14.52672,70.743264,47.7725
--18.522,-19.502,-18.424,-15.288,74.4604,47.81
--18.15156,-19.208,-18.05552,-14.98224,72.961588,46.6872
--18.711,-19.8,-18.612,-15.642,75.2103,48.23
--17.78112,-18.816,-17.68704,-14.86464,71.481984,45.4464
--17.955,-19,-17.86,-15.01,72.1715,44.8685
--17.78301,-18.72391,-17.68892,-14.96031,71.489582,45.5318
--17.41635,-18.33785,-17.3242,-14.46755,70.006355,44.422
--18.522,-19.502,-18.424,-15.582,74.4506,47.24
--17.41635,-18.33785,-17.3242,-14.46755,70.006355,46.132
--18.522,-19.502,-18.424,-15.484,74.4604,47.2654
--17.78301,-18.818,-17.68892,-15.14849,71.480173,47.7725
--18.33678,-19.404,-18.23976,-15.23214,73.706094,47.0792
--18.711,-19.8,-18.612,-15.741,75.2103,48.2526
--18.2457,-19.206,-18.05364,-15.17274,72.953991,47.7477
--17.5104,-18.432,-17.32608,-14.65344,70.013952,46.4064
--17.96256,-19.008,-17.86752,-14.82624,72.211392,45.7344
--18.43,-19.4,-18.236,-15.326,73.7006,46.1138
--18.0614,-19.012,-17.87128,-15.01948,72.217082,45.8248
--18.24,-19.2,-18.048,-15.168,72.9408,47.83
--18.05,-19,-17.86,-14.915,72.1715,47.83
--19,-19.9,-18.8,-15.9,75.97,48.56
--18.81,-19.8,-18.612,-15.84,75.2103,48.05
--18.0576,-19.008,-17.86752,-14.92128,72.201888,46.6587
--17.689,-18.62,-17.5028,-14.6167,70.72807,45.325
--18.0576,-19.008,-17.86752,-15.30144,72.201888,46.9728
--18.0614,-19.012,-17.87128,-15.01948,72.217082,47.2654
--18.05,-19,-17.86,-15.01,72.1715,45.4385
--17.328,-18.24,-17.1456,-14.5008,69.29376,46.8635
--18.05,-19,-17.86,-15.105,72.181,51.05
--17.6928,-18.624,-17.50656,-14.80608,70.612896,48.1344
--18.0614,-19.012,-17.87128,-15.01948,72.083998,46.8734
--18.24,-19.2,-18.048,-15.072,72.9312,48.45
--18.0576,-19.008,-17.86752,-15.01632,72.201888,48.2526
--17.8695,-18.90405,-17.6814,-15.048,71.45919,46.0746
--18.05,-19,-17.86,-15.2,72.0385,44.878
--17.8752,-18.91008,-17.78112,-15.0528,71.40672,46.9728
--18.05,-19.095,-17.955,-15.2,72.048,46.84
--17.8752,-18.91008,-17.78112,-14.86464,71.472576,46.795
--18.0576,-19.10304,-17.96256,-15.11136,72.068832,44.5824
--18.6219,-19.70001,-18.52389,-15.58359,74.320983,46.0746
--18.24,-19.2,-18.144,-15.264,72.7968,48.15
--17.8695,-18.81,-17.77545,-15.048,71.318115,45.7425
--18.15264,-19.008,-17.86752,-15.11136,72.068832,44.2944
--17.328,-18.3312,-17.2368,-14.592,69.15696,44.6975
--17.96928,-18.91008,-17.78112,-14.95872,71.340864,47.0688
--19.1,-20,-18.9,-15.8,75.83,47.94
--19.1,-20.1,-18.9,-16,75.97,45.84
--17.7821,-18.7131,-17.5959,-14.8029,70.59773,46.8734
--19.1,-20.1,-18.9,-15.8,75.83,47.94
--17.78592,-18.71712,-17.59968,-14.80608,70.612896,46.0265
--17.96355,-18.90405,-17.77545,-14.8599,71.318115,46.5785
--18.71991,-19.70001,-18.52389,-15.58359,74.320983,46.6587
--17.78592,-18.71712,-17.59968,-14.8992,70.612896,46.5018
--17.4192,-18.3312,-17.2368,-14.6832,69.15696,45.7344
--18.53082,-19.50102,-18.33678,-15.5232,73.570266,46.7676
--17.60065,-18.52215,-17.41635,-14.744,69.877345,43.7285
--17.78592,-18.71712,-17.59968,-14.80608,70.603584,46.224
--18.145,-19.095,-17.955,-15.2,72.0385,44.422
--18.145,-19.095,-17.955,-15.105,72.0385,47.34
--18.336,-19.296,-18.144,-15.36,72.7968,46.54
--17.78592,-18.71712,-17.59968,-14.99232,70.612896,44.5056
--17.7821,-18.7131,-17.5959,-15.0822,70.59773,44.6975
--17.78592,-18.71712,-17.59968,-14.8992,70.603584,46.2108
--17.60065,-18.52215,-17.5085,-14.65185,69.877345,46.3175
--18.145,-19.095,-17.955,-15.01,72.0385,43.738
--17.96928,-18.91008,-17.78112,-15.0528,71.340864,45.913
--18.718,-19.698,-18.522,-15.68,74.3134,45.85
--18.336,-19.296,-18.144,-15.264,72.7872,45.168
--19.1,-20.1,-18.9,-15.9,75.83,47.35
--17.23775,-18.14025,-17.05725,-14.53025,68.436575,44.7735
--17.78592,-18.71712,-17.59968,-14.99232,70.612896,45.84
--18.34364,-19.30404,-18.15156,-15.46244,72.817528,45.717
--18.53082,-19.59804,-18.33678,-15.42618,73.570266,45.1094
--17.97119,-18.91209,-17.8771,-14.96031,71.348447,44.8625
--17.78592,-18.71712,-17.59968,-14.71296,70.612896,45.5318
--19.008,-19.899,-18.711,-15.939,75.0618,47.05
--18.909,-19.899,-18.711,-15.741,75.0618,46.14
--17.60065,-18.52215,-17.41635,-14.83615,69.877345,43.833
--18.34173,-19.30203,-18.14967,-15.26877,72.819549,45.3816
--19.008,-19.899,-18.711,-15.84,75.0717,46.25
--18.527,-19.594,-18.43,-15.617,73.5551,46.1041
--18.432,-19.392,-18.144,-15.36,72.7968,45.66
--17.6928,-18.6143,-17.41635,-14.65185,69.877345,43.833
--18.15264,-19.19808,-18.0576,-15.11136,72.068832,45.9657
--17.328,-18.14025,-17.1475,-14.44,68.436575,43.738
--18.432,-19.296,-18.144,-15.264,72.7968,43.6224
--17.87904,-18.71712,-17.59968,-14.80608,70.612896,44.1835
--17.87904,-18.71712,-17.6928,-14.8992,70.603584,44.7558
--18.43968,-19.30404,-18.15156,-15.46244,72.817528,45.2172
--17.328,-18.2305,-17.1475,-14.53025,68.436575,44.213
--18.43968,-19.40008,-18.2476,-15.46244,72.827132,46.109
--18.24,-19.19,-18.05,-15.295,72.0385,46.14
--18.43776,-19.30203,-18.2457,-15.26877,72.819549,44.5715
--19.2,-20.1,-19,-16,75.83,47.13
--18.43968,-19.30404,-18.2476,-15.27036,72.731092,45.2172
--17.8752,-18.7131,-17.689,-14.9891,70.51394,44.933
--18.432,-19.296,-18.24,-15.264,72.7968,44.4
--18.06528,-18.91209,-17.8771,-14.96031,71.339038,44.8625
--18.24,-19.095,-18.05,-15.295,71.9435,43.7285
--18.24768,-19.19808,-18.0576,-15.30144,72.068832,43.9008
--18.62784,-19.50102,-18.4338,-15.62022,73.473246,45.5697
--18.624,-19.594,-18.43,-15.714,73.4581,46.54
--17.5104,-18.4224,-17.328,-14.6832,69.15696,45.168
--18.06336,-19.00416,-17.8752,-15.24096,71.246784,45.717
--18.0576,-18.9981,-17.8695,-15.2361,71.23347,45.163
--19.2,-20.2,-19,-16.1,75.83,45.73
--18.43776,-19.39806,-18.2457,-15.46083,72.723519,45.5697
--18.06336,-19.00416,-17.8752,-14.95872,71.246784,44.112
--18.43776,-19.39806,-18.2457,-15.65289,72.723519,45.1935
--18.34272,-19.19808,-18.0576,-15.39648,71.973792,45.5697
--18.0576,-18.90405,-17.8695,-15.14205,71.224065,46.0746
--18.432,-19.296,-18.24,-15.36,72.7008,48.85
--19.008,-19.899,-18.81,-15.84,74.9727,47.75
--17.9683,-18.8062,-17.689,-14.9891,70.50463,46.109
--17.9683,-18.8062,-17.689,-14.896,70.50463,46.5794
--18.432,-19.296,-18.24,-15.264,72.7008,44.112
--18.34272,-19.10304,-18.0576,-15.2064,71.973792,43.9104
--18.72486,-19.50102,-18.4338,-15.5232,73.473246,45.7875
--18.34272,-19.10304,-18.0576,-15.2064,71.973792,44.016
--17.78688,-18.61632,-17.5104,-14.83776,69.792768,44.5824
--18.72486,-19.69506,-18.4338,-15.71724,73.473246,45.8248
--18.72486,-19.69506,-18.4338,-15.62022,73.473246,45.8248
--17.78495,-18.6143,-17.60065,-14.83615,69.785195,43.453
--17.6016,-18.4224,-17.328,-14.592,69.06576,43.548
--18.34658,-19.20212,-18.0614,-15.11454,71.988938,45.6385
--18.528,-19.392,-18.24,-15.36,72.7008,44.688
--17.78688,-18.61632,-17.60256,-14.83776,69.792768,44.4
--18.34272,-19.19808,-18.0576,-15.11136,71.973792,47.1636
--18.53379,-19.39806,-18.2457,-15.26877,72.723519,47.0547
--18.15744,-19.00416,-17.8752,-15.0528,71.246784,44.639
--17.41825,-18.2305,-17.1475,-14.71075,68.346325,43.453
--18.528,-19.392,-18.336,-15.36,72.7008,44.8896
--18.53379,-19.39806,-18.2457,-15.46083,72.723519,45.1438
--17.97216,-18.81024,-17.78592,-15.08544,70.519776,44.8896
--17.41825,-18.2305,-17.1475,-14.53025,68.346325,43.2725
--18.15937,-19.00618,-17.8771,-15.0544,71.254357,44.6491
--17.78688,-18.70848,-17.5104,-14.7456,69.792768,44.8896
--17.97216,-18.90336,-17.78592,-15.08544,70.519776,45.8228
--18.914,-19.894,-18.718,-15.68,74.2154,45.4328
--18.721,-19.691,-18.527,-15.617,73.4678,45.15
--18.335,-19.285,-18.145,-15.295,71.934,43.168
--18.914,-19.796,-18.718,-15.876,74.2056,45.85
--17.9683,-18.8062,-17.7821,-14.9891,70.50463,45.1094
--19.3,-20.3,-19.1,-16,75.73,46.54
--18.34272,-19.19808,-18.15264,-15.30144,71.973792,46.0746
--18.528,-19.392,-18.336,-15.552,72.7008,45.3504
--18.335,-19.19,-18.145,-15.105,71.9435,46.84
--17.97216,-18.81024,-17.78592,-14.99232,70.519776,44.2944
--19.107,-19.998,-18.909,-15.84,74.9727,45.85
--18.34658,-19.29718,-18.15646,-15.2096,71.979432,45.1438
--18.25152,-19.09824,-17.96928,-15.24096,71.246784,45.031
--17.6928,-18.5136,-17.4192,-14.7744,69.06576,44.0325
--18.44164,-19.29718,-18.15646,-15.39972,71.988938,46.795
--19.206,-20.097,-18.909,-16.038,74.9727,46.1835
--19.012,-19.894,-18.718,-15.876,74.2154,46.65
--18.82188,-19.69506,-18.53082,-15.62022,73.473246,45.6786
--19.012,-19.894,-18.718,-15.778,74.2154,46.54
--18.818,-19.691,-18.527,-15.617,73.4678,45.5318
--18.624,-19.488,-18.336,-15.456,72.7008,45.0624
--19.01394,-19.79802,-18.71991,-15.77961,74.222973,46.5795
--18.2457,-19.09215,-17.96355,-15.14205,71.224065,44.593
--18.82188,-19.69506,-18.53082,-15.81426,73.473246,46.8666
--18.43776,-19.29312,-18.15264,-15.39648,71.973792,44.4
--17.8771,-18.70645,-17.60065,-14.83615,69.785195,45.258
--18.43,-19.285,-18.145,-15.39,71.9435,45.66
--18.624,-19.488,-18.336,-15.552,72.7008,46.416
--18.624,-19.584,-18.432,-15.456,72.7104,44.4
--17.6928,-18.6048,-17.4192,-14.7744,69.06576,44.498
--18.0614,-18.9924,-17.8752,-14.9891,70.50463,45.4385
--18.06528,-18.90336,-17.78592,-14.8992,70.519776,45.6288
--18.43776,-19.29312,-18.15264,-15.30144,71.964288,44.5824
--18.0614,-18.9924,-17.8752,-15.0822,70.50463,43.7285
--18.06528,-18.99648,-17.87904,-14.99232,70.519776,45.1438
--18.63176,-19.49612,-18.43968,-15.55848,72.731092,46.3932
--18.2457,-19.09215,-18.0576,-15.33015,71.224065,47.1636
--19.206,-20.097,-19.008,-15.939,74.9727,46.14
--19.4,-20.3,-19.2,-16.3,75.73,47.13
--18.43,-19.285,-18.24,-15.295,71.953,44.973
--18.44164,-19.29718,-18.25152,-15.11454,71.988938,45.7161
--18.2457,-19.09215,-18.0576,-14.8599,71.224065,44.422
--18.43,-19.38,-18.24,-15.295,71.9435,46.76
--17.6928,-18.6048,-17.5104,-14.6832,69.06576,44.6784
--18.62982,-19.49409,-18.43776,-15.46083,72.723519,46.0746
--18.2457,-19.09215,-18.0576,-15.2361,71.224065,46.5795
--19.206,-20.097,-19.008,-16.038,74.9727,46.03
--18.624,-19.488,-18.432,-15.456,72.7008,45.3408
--18.63176,-19.49612,-18.43968,-15.55848,72.731092,46.3932
--18.82188,-19.69506,-18.62784,-15.62022,73.473246,48.5496
--18.818,-19.788,-18.624,-15.811,73.4581,44.8625
--18.43,-19.38,-18.24,-15.58,71.953,47.75
--18.1584,-19.0896,-17.87904,-15.17856,70.519776,44.1888
--19.11,-20.09,-18.816,-16.17,74.2154,47.089
--19.11,-20.09,-18.914,-16.072,74.2154,47.3732
--18.9189,-19.8891,-18.72486,-15.81426,73.473246,45.2034
--17.784,-18.696,-17.6016,-14.6832,69.06576,44.878
--18.525,-19.38,-18.335,-15.485,71.9435,47.45
--18.915,-19.788,-18.721,-15.811,73.4581,45.5318
--18.34755,-19.28845,-18.15937,-15.52485,71.254357,45.1632
--18.525,-19.475,-18.335,-15.58,71.9435,45.163
--18.525,-19.475,-18.335,-15.77,71.9435,44.878
--18.0614,-19.1786,-17.9683,-15.3615,70.50463,44.6975
--18.33975,-19.3743,-18.2457,-15.51825,71.224065,46.9755
--18.9189,-19.98612,-18.72486,-16.10532,73.473246,45.5112
--18.9189,-19.8891,-18.82188,-15.81426,73.473246,45.9756
--18.915,-19.982,-18.721,-15.811,73.4581,45.0468
--18.33975,-19.3743,-18.2457,-15.51825,71.224065,46.9755
--18.5328,-19.57824,-18.43776,-15.77664,71.973792,44.1984
--17.96925,-18.9829,-17.8771,-15.20475,69.785195,45.1535
--17.9712,-18.98496,-17.87904,-15.39072,69.792768,44.4
--18.1584,-19.18272,-18.06528,-15.45792,70.529088,44.304
--17.784,-18.7872,-17.6928,-15.2304,69.06576,43.9375
--18.5367,-19.67742,-18.5367,-15.6849,71.988938,44.7558
--17.784,-18.8784,-17.784,-15.048,69.06576,45.0775
--18.9189,-20.08314,-18.9189,-15.91128,73.473246,46.109
--18.72,-19.776,-18.72,-15.936,72.7008,45.6288
--17.96925,-18.9829,-17.96925,-15.2969,69.785195,45.4348
--17.96925,-18.9829,-17.96925,-15.20475,69.785195,44.6975
--18.33975,-19.46835,-18.33975,-15.70635,71.224065,44.7735
--17.9712,-19.07712,-17.9712,-15.2064,69.792768,45.7344
--17.96925,-19.07505,-17.96925,-15.20475,69.785195,44.8625
--18.9189,-20.08314,-18.9189,-16.0083,73.473246,46.9755
--18.33975,-19.46835,-18.33975,-15.51825,71.224065,46.2924
--18.3456,-19.47456,-18.3456,-15.61728,71.246784,47.2752
--18.525,-19.665,-18.525,-15.865,71.9435,46.5785
--17.8752,-18.8784,-17.784,-15.048,69.06576,45.9168
--18.3456,-19.47456,-18.3456,-15.71136,71.246784,45.7344
--19.404,-20.493,-19.305,-16.434,74.9727,47.83
--18.62,-19.76,-18.525,-15.77,71.9435,45.0775
--18.816,-19.872,-18.816,-15.936,72.7008,47.24
--18.62,-19.665,-18.525,-15.865,71.953,45.258
--18.816,-19.872,-18.816,-15.936,72.7008,46.128
--18.82188,-19.97424,-18.82188,-16.13304,72.723519,46.2924
--18.62,-19.76,-18.62,-15.675,71.9435,44.6975
--18.816,-19.968,-18.816,-16.128,72.7968,46.65
--18.43968,-19.47456,-18.43968,-15.61728,71.340864,45.0624
--19.208,-20.384,-19.208,-16.366,74.3134,45.619
--18.62,-19.665,-18.62,-15.96,72.0385,46.94
--19.208,-20.384,-19.208,-16.366,74.3134,45.5112
--19.20996,-20.28807,-19.20996,-16.26966,74.320983,45.9657
--18.2476,-19.3648,-18.2476,-15.7339,70.59773,44.737
--18.4338,-19.5624,-18.4338,-15.70635,71.30871,46.0746
--18.43968,-19.56864,-18.43968,-15.61728,71.340864,44.5824
--19.6,-20.8,-19.6,-16.5,75.82,46.25
--18.43968,-19.56864,-18.43968,-15.5232,71.331456,44.9232
--19.012,-20.176,-19.012,-16.102,73.5454,44.6491
--17.689,-18.68175,-17.689,-14.89125,68.436575,43.6525
--18.4338,-19.46835,-18.4338,-15.51825,71.30871,46.1835
--18.2476,-19.2717,-18.2476,-15.3615,70.59773,45.9032
--18.2476,-19.3648,-18.2476,-15.3615,70.58842,43.548
--18.82384,-19.88028,-18.82384,-15.75056,72.817528,45.3152
--19.109,-20.079,-19.012,-16.005,73.5551,44.6491
--19.6,-20.7,-19.6,-16.3,75.83,45.95
--18.0614,-19.07505,-18.0614,-15.1126,70.01557,44.7655
--18.25152,-19.18272,-18.1584,-15.3648,70.612896,44.2902
--18.25152,-19.18272,-18.1584,-15.45792,70.743264,44.6588
--19.208,-20.286,-19.11,-16.17,74.3134,45.325
--18.91791,-19.87821,-18.72585,-16.03701,72.953991,44.8625
--18.816,-19.872,-18.816,-15.936,72.9312,44.5824
--19.01592,-20.08314,-19.01592,-16.0083,73.715796,45.2826
--18.72682,-19.67742,-18.5367,-15.49478,72.217082,45.1094
--18.53376,-19.47456,-18.3456,-15.5232,71.472576,44.1888
--18.3407,-19.2717,-18.1545,-15.2684,70.73738,43.662
--19.503,-20.493,-19.305,-16.137,75.2103,46.03
--18.3407,-19.1786,-18.1545,-15.3615,70.72807,43.453
--19.503,-20.493,-19.305,-16.137,75.2103,45.55
--18.91988,-19.88028,-18.7278,-15.94264,72.961588,44.639
--18.52785,-19.46835,-18.33975,-15.51825,71.449785,45.5697
--19.30797,-20.28807,-19.11195,-16.07364,74.458197,45.2034
--18.72288,-19.67328,-18.5328,-15.6816,72.201888,43.5168
--19.306,-20.188,-19.11,-15.974,74.4506,45.25
--18.52785,-19.46835,-18.33975,-15.4242,71.449785,42.8925
--18.15355,-18.9829,-17.96925,-15.02045,70.006355,43.2725
--18.72682,-19.58236,-18.5367,-15.6849,72.217082,43.9701
--17.9664,-18.7872,-17.784,-15.1392,69.28464,43.1424
--19.30797,-20.09205,-19.11195,-16.17165,74.458197,44.7975
--18.53376,-19.38048,-18.3456,-15.42912,71.472576,44.0412
--18.53573,-19.47663,-18.34755,-15.61894,71.480173,43.7955
--19.109,-20.079,-18.915,-16.005,73.6909,43.4075
--18.34464,-19.27584,-18.1584,-15.27168,70.743264,42.96
--19.11294,-19.98612,-18.9189,-15.81426,73.706094,44.4114
--19.503,-20.394,-19.305,-16.236,75.2103,44.56
--18.715,-19.57,-18.525,-15.58,72.1715,44.34
--17.9664,-18.8784,-17.784,-15.048,69.28464,42.2275
--18.53376,-19.47456,-18.3456,-15.61728,71.472576,43.7472
--18.72288,-19.67328,-18.5328,-15.58656,72.211392,44.4906
--18.53376,-19.38048,-18.3456,-15.5232,71.472576,44.0412
--18.91791,-19.87821,-18.72585,-15.74892,72.953991,44.1144
--19.11294,-20.08314,-18.9189,-15.81426,73.706094,44.4114
--18.6219,-19.3743,-18.33975,-15.4242,71.449785,44.1144
--19.11294,-19.98612,-18.9189,-15.91128,73.706094,43.7472
--19.602,-20.394,-19.305,-16.335,75.2103,44.64
--18.4338,-19.1786,-18.1545,-15.3615,70.72807,43.4532
--17.8695,-18.5915,-17.59875,-14.9815,68.562925,42.123
--19.01592,-19.78424,-18.7278,-15.8466,72.971192,43.3552
--18.81,-19.57,-18.525,-15.77,72.181,44.35
--18.0576,-18.7872,-17.784,-15.048,69.28464,42.384
--18.43776,-18.53088,-16.48224,-14.34048,70.743264,42.8544
--18.4338,-17.5959,-15.0822,-13.034,70.72807,42.123
--19.404,-17.64,-14.896,-12.74,74.4506,44.45
--17.8695,-15.61325,-12.90575,-10.55925,68.562925,41.9425
--18.62982,-15.61894,-12.60806,-9.69127,71.480173,42.5442
--18.24768,-14.83776,-11.61216,-8.66304,70.013952,42.4704
--18.43776,-14.61984,-11.08128,-7.9152,70.752576,42.8352
--18.82188,-14.44912,-10.64672,-7.41468,72.217082,43.4532
--18.0576,-13.3152,-9.6672,-6.1104,69.29376,42
--19.20996,-13.67982,-9.60498,-5.91822,73.715796,43.561
--18.4338,-12.6616,-8.4721,-6.1446,70.72807,41.5625
--19.008,-12.384,-8.256,-7.008,72.9312,44.34
--19.20996,-11.83644,-7.7616,-6.7914,73.706094,44.0055
--18.4338,-10.5203,-7.2618,-6.7963,70.72807,43.0612
--18.82188,-10.17142,-7.03444,-6.74926,72.217082,43.0612
--18.6219,-9.2169,-6.3954,-6.3954,71.449785,41.743
--18.81,-8.645,-5.795,-5.605,72.162,43.86
--18.2457,-7.64845,-4.88395,-4.88395,70.01557,42.7285
--19.206,-7.275,-4.171,-4.656,73.6909,44.05
--19.008,-6.432,-3.168,-3.936,72.9312,43.94
--18.715,-5.51,-2.185,-3.515,72.181,43.86
--18.82188,-4.84806,-1.04566,-3.3271,72.217082,42.5442
--18.53573,-3.95178,-0.18818,-2.72861,71.489582,42.8255
--17.9664,-3.192,0.912,-2.0976,69.28464,42.1056
--18.15552,-2.58048,2.11968,-1.75104,70.013952,42.1824
--18.53376,-2.352,3.10464,-1.31712,71.472576,42.9828
--18.34464,-1.3968,4.09728,-1.21056,70.743264,41.8944
--18.53573,-0.9409,5.17495,-0.37636,71.480173,42.1465
--18.53376,-0.37632,6.20928,-0.09408,71.472576,42.63
--18.62,0.285,7.505,0.57,72.1715,43.65
--18.62,1.045,8.455,0.95,72.1715,43.75
--19.404,1.485,9.9,1.386,75.2103,43.64
--19.208,1.96,11.074,2.058,74.4506,42.777
--19.305,2.871,12.177,2.376,75.2103,43.4214
--17.96925,3.5017,12.62455,2.85665,70.006355,41.363
--17.96925,4.0546,13.54605,3.22525,70.006355,41.9425
--18.5328,4.94208,15.30144,3.51648,72.201888,42.1824
--18.63176,5.57032,16.61492,4.22576,72.961588,43.169
--19.206,6.336,18.315,4.851,75.2103,43.7085
--19.012,7.35,19.306,5.194,74.4506,43.463
--18.72486,7.95564,20.08314,5.62716,73.715796,43.5708
--18.72486,8.44074,21.05334,6.40332,73.706094,43.7184
--18.816,9.408,22.246,6.664,74.4506,44.56
--18.06336,9.59616,22.29696,7.15008,71.472576,42.8544
--17.60065,10.04435,22.76105,7.1877,70.006355,41.8475
--18.53082,11.44836,24.93414,7.85862,73.706094,42.9828
--17.5085,11.4266,24.6962,8.1092,70.006355,42.3308
--18.24,12.576,26.4,8.832,72.9312,43.94
--17.77545,13.07295,26.80425,9.31095,71.449785,43.5006
--17.78301,13.83123,27.47428,9.69127,71.489582,42.3405
--17.1456,14.0448,27.36,9.7584,69.29376,41.667
--18.14274,15.5232,29.97918,10.96326,73.706094,42.9828
--17.41344,15.73728,29.51904,11.08128,70.743264,41.7984
--17.67,16.53,30.97,11.59,72.1715,43.86
--18.6,18,33.2,12.7,75.97,43.94
--18.315,18.414,33.462,12.87,75.2103,43.64
--17.49104,18.25152,32.89076,13.3084,72.217082,42.7672
--17.21115,18.71595,33.38775,13.26105,71.449785,41.2775
--17.04096,19.0896,33.70944,13.59552,70.743264,42.4472
--17.38143,20.26233,35.43507,14.30847,72.953991,43.4214
--16.67915,20.0887,34.8327,14.46755,70.006355,41.743
--16.5888,20.64384,35.38944,14.83776,70.013952,42.1824
--17.54379,22.5423,38.41992,16.17165,74.458197,43.0947
--16.2336,21.432,36.48,15.6864,69.28464,41.3535
--16.31232,22.21056,37.50912,16.22016,70.013952,42
--16.5528,23.23035,39.1248,17.1171,71.449785,42.9264
--17.15175,24.79653,41.36022,18.32787,74.458197,42.6294
--16.53,24.7,40.755,18.145,72.1715,43.25
--15.94195,24.5119,39.9931,18.0614,70.006355,41.287
--16.01664,25.23552,40.9728,18.71712,70.743264,41.9525
--16.758,27.244,43.61,19.796,74.4506,43.75
--16.3251,27.17649,43.50159,20.07027,72.963594,42.4375
--16.06514,27.47234,43.53748,20.4379,72.217082,42.875
--16.8,29.4,46.3,22,75.97,43.65
--15.4546,27.93,43.6639,20.9475,70.72807,42.6692
--16.17,29.792,46.55,22.54,74.4506,42.9828
--15.91128,30.0762,46.66662,22.89672,73.706094,42.6692
--15.1753,29.2334,45.1535,22.344,70.72807,40.983
--16.038,31.383,48.411,24.255,75.2103,43.2135
--15.2064,30.69792,46.94976,23.66496,72.201888,43.1046
--15.423,31.913,48.5,24.444,73.6909,43.75
--14.86464,31.42272,47.5104,24.27264,71.472576,41.4144
--14.52672,31.56768,47.39808,24.49056,70.743264,41.0592
--15.0381,33.27786,49.77126,25.90434,73.706094,42.4116
--14.3374,32.4919,48.2258,25.3232,70.73738,40.812
--14.744,34.338,50.828,26.869,73.6909,41.7682
--13.62775,32.3095,47.652,25.4505,68.562925,41.192
--14.9,36.3,53.3,28.7,75.97,43.25
--13.9194,34.6104,50.50485,27.4626,71.449785,42.9264
--14.308,36.554,53.116,29.008,74.4506,43.3552
--13.968,36.666,52.962,29.1,73.6909,43.25
--14.3,38.2,54.5,30.6,75.97,43.06
--13.959,37.818,53.262,32.274,75.2103,43.25
--13.48578,36.8676,51.51762,32.88978,73.706094,42.777
--12.98442,35.7542,49.30316,31.42606,71.470764,42.2241
--13.328,37.142,50.666,32.536,74.4506,43.94
--12.96,36.384,48.96,31.68,72.9312,43.46
--12.77332,35.15064,46.96356,35.63084,72.951984,43.3552
--12.19872,32.49888,43.11456,34.54752,70.743264,42.3405
--12.51558,32.88978,42.78582,35.21826,73.706094,42.581
--12.04224,30.95232,40.36032,32.73984,71.472576,42.2772
--11.85408,29.6352,38.76096,31.89312,71.472576,41.8944
--12.03048,29.20302,38.12886,32.5017,73.706094,43.4214
--11.834,28.421,36.569,31.816,73.6909,43.64
--11.1744,26.5392,33.70944,29.51904,70.743264,42.5442
--11.0979,25.7697,32.82345,29.1555,71.449785,44.0055
--11.36916,25.97265,33.12738,29.89305,74.458197,43.6095
--10.3968,23.4384,29.8224,26.904,69.28464,41.287
--10.864,24.25,30.652,28.033,73.6909,43.14
--10.89,23.958,30.096,28.017,75.2103,42.9264
--10.692,23.265,29.304,27.522,75.2103,42.8175
--10.29,22.344,28.126,26.558,74.5486,42.5908
--9.888,21.216,26.688,25.44,72.9312,41.8944
--9.4031,19.9234,25.137,24.1129,70.72807,41.192
--9.2169,19.3648,24.3922,23.5543,70.71876,41.363
--9.0307,18.8993,23.7405,22.9957,70.72807,41.2775
--9.215,18.915,24.056,23.28,73.6909,42.0495
--8.56995,17.5085,22.20815,21.83955,70.006355,42.1562
--8.56128,17.4048,22.01472,21.73248,71.472576,42.5908
--8.544,17.28,21.888,21.6,73.0272,41.7888
--8.18235,16.45875,20.78505,20.59695,71.543835,42.9264
--8.0784,16.06176,20.52864,20.4336,72.296928,42.6294
--8.134,16.072,20.58,20.58,74.5388,43.25
--7.5272,14.96031,19.19436,19.28845,71.574263,41.9525
--7.644,15.288,19.502,19.698,74.5486,43.46
--7.623,14.949,19.206,19.503,75.3093,44.24
--6.8894,13.5926,17.5959,17.7821,70.82117,42.5908
--6.935,13.3,17.385,17.86,72.257,41.5625
--6.54265,12.5324,16.4027,16.9556,70.098505,41.3705
--6.831,13.068,17.127,17.82,75.2994,42.8175
--6.499,12.513,16.49,17.072,73.7782,41.9525
--6.0515,11.5444,15.2684,16.0132,70.82117,40.907
--5.8653,11.172,14.8029,15.6408,70.82117,40.527
--5.73949,10.82035,14.67804,15.33667,71.574263,41.4772
--5.7024,10.64448,14.35104,15.11136,72.296928,43.0254
--5.51232,10.26432,13.97088,14.82624,72.296928,43.0254
--5.1604,9.5836,13.0853,14.0068,70.08929,40.8025
--5.29254,9.801,13.52538,14.60349,74.566008,42.3324
--4.8906,9.12285,12.6027,13.5432,71.543835,41.192
--4.79808,8.74944,12.2304,13.26528,71.566656,41.8944
--4.4688,8.1168,11.4,12.4032,69.37584,41.7984
--4.42035,7.99425,11.38005,12.69675,71.543835,42.5205
--4.41045,8.13483,11.46717,12.93732,74.556207,42.9165
--4.0128,7.2048,10.3968,11.6736,69.37584,40.7075
--4.158,7.524,10.89,12.375,75.3093,42.5205
--3.8412,6.91416,10.27521,11.42757,73.050021,41.7682
--3.63168,6.33216,9.59136,11.08128,70.845696,40.9536
--3.663,6.435,9.801,11.385,75.3093,42.76
--3.45708,6.14592,9.21888,10.85139,73.050021,41.3802
--3.298,5.917,9.021,10.67,73.7879,41.2735
--3.267,5.742,8.811,10.791,75.3093,42.66
--2.8861,5.1205,8.0066,9.6824,70.82117,40.698
--2.88,4.992,7.872,9.504,73.0272,42.66
--2.744,4.704,7.742,9.506,74.5486,41.699
--2.54016,4.2336,7.056,8.84352,71.566656,42.091
--2.3765,4.18264,6.84432,8.93564,72.321648,41.5912
--2.1888,3.7392,6.384,8.2992,69.37584,40.9536
--2.23146,3.78378,6.50034,8.53776,73.803114,42.091
--2.04864,3.35232,5.95968,8.00832,70.836384,41.6712
--1.96,3.332,5.978,7.938,74.5486,41.9048
--1.80576,2.8512,5.51232,7.31808,72.296928,41.232
--1.764,2.548,5.39,7.35,74.5486,42.1988
--1.64934,2.32848,5.04504,7.2765,73.803114,42.2772
--1.47,2.254,4.9,7.35,74.5486,42.77
--1.37214,2.05821,4.60647,6.95871,74.566008,42.5304
--1.19795,1.843,4.0546,6.2662,70.006355,41.3802
--1.1058,1.6587,3.8703,5.98975,70.098505,41.7682
--1.05644,1.34456,3.74556,5.95448,73.057628,41.5912
--0.95,1.045,3.42,5.7,72.1715,40.907
--0.855,0.76,3.135,5.51,72.1715,40.622
--0.7372,0.64505,2.9488,5.3447,70.098505,41.7682
--0.66528,0.4752,2.75616,5.32224,72.296928,41.7984
--0.576,0.48,2.592,5.184,73.0272,42.76
--0.4704,0.28224,2.352,4.89216,71.576064,41.9146
--0.384,0.096,2.208,4.608,72.9408,42.44
--0.291,-0.194,2.037,4.268,73.6909,41.3705
--0.18816,-0.56448,1.69344,4.13952,71.481984,41.3376
--0.09603,-0.67221,1.53648,4.12929,72.953991,42.4116
--0.09504,-0.76032,1.33056,3.8016,72.201888,41.1264
-0,-0.83808,1.11744,3.7248,70.743264,41.0496
-0.09216,-1.01376,0.9216,3.40992,70.013952,41.4144
-0.19404,-1.26126,0.77616,3.49272,73.706094,42.7086
-0.1862,-1.3965,0.5586,2.9792,70.72807,41.993
-0.285,-1.615,0.38,3.135,72.1715,42.84
-0.3648,-1.7328,0.1824,2.736,69.28464,40.622
-0.4851,-2.03742,-0.09702,2.61954,73.706094,42.3324
-0.4608,-2.11968,-0.27648,2.304,70.013952,40.848
-0.57036,-2.28144,-0.38024,2.3765,72.217082,41.9525
-0.55872,-2.42112,-0.55872,2.04864,70.743264,41.3376
-0.66528,-2.56608,-0.76032,1.99584,72.201888,43.1046
-0.686,-2.842,-0.98,1.96,74.4506,42.091
-0.75264,-2.91648,-1.03488,1.59936,71.472576,41.4144
-0.78408,-3.23433,-1.27413,1.47015,74.458197,43.3125
-0.85554,-3.3271,-1.4259,1.33084,72.217082,42.581
-0.9405,-3.3858,-1.59885,1.22265,71.449785,42.7086
-1,-3.7,-1.9,1,75.97,42.76
-0.9603,-3.74517,-1.9206,0.76824,72.953991,42.2241
-1.0241,-3.8171,-2.0482,0.5586,70.72807,41.0875
-0.99275,-3.88075,-2.166,0.5415,68.562925,41.2775
-1.06722,-4.26888,-2.4255,0.29106,73.570266,42.091
-1.10592,-4.1472,-2.48832,0.27648,69.884928,41.616
-1.15236,-4.51341,-2.78487,0.19206,72.809946,42.6294
-1.15248,-4.60992,-2.8812,-0.38416,72.961588,42.6692
-1.2103,-4.7481,-3.0723,-0.6517,70.72807,42.385
-1.24839,-5.18562,-3.36105,-0.28809,72.809946,42.0495
-1.22304,-4.98624,-3.38688,-0.37632,71.340864,41.6256
-1.274,-5.096,-3.528,-0.49,74.4506,42.1988
-1.248,-4.992,-3.648,-0.384,72.7968,41.3376
-1.30368,-5.02848,-3.53856,-0.65184,70.752576,41.2416
-1.372,-5.39,-3.92,-1.862,74.3134,42.385
-1.33084,-5.60854,-3.99252,-1.61602,72.083998,41.7682
-1.31712,-5.73888,-4.13952,-1.50528,71.472576,41.4144
-1.31712,-5.73888,-4.2336,-1.31712,71.340864,42.1988
-1.386,-6.039,-4.554,-1.386,75.0717,42.7086
-1.37214,-5.97861,-4.60647,-1.37214,74.311182,43.3125
-1.37214,-6.07662,-4.70448,-1.66617,74.311182,42.9264
-1.372,-6.272,-4.802,-2.45,74.3134,42.385
-1.4,-6.8,-5.1,-2.6,75.83,43.25
-1.344,-6.72,-5.088,-2.4,72.7872,42.95
-1.35828,-6.7914,-5.23908,-2.13444,73.570266,42.1988
-1.41075,-6.5835,-5.17275,-2.0691,71.30871,43.0155
-1.386,-6.831,-5.544,-2.079,75.0717,42.8175
-1.33,-6.65,-5.415,-2.185,72.029,43.14
-1.5,-7.1,-5.8,-2.5,75.82,43.14
-1.34442,-7.01019,-5.66577,-2.59281,72.819549,42.5205
-1.372,-7.35,-5.88,-2.744,74.3036,42.2772
-1.37214,-7.44876,-5.97861,-3.03831,74.320983,43.1046
-1.3167,-7.3359,-5.92515,-2.8215,71.30871,43.0155
-1.33084,-7.50974,-6.08384,-3.04192,72.074492,41.9525
-1.19795,-7.27985,-5.98975,-3.04095,69.86813,41.7682
-1.2768,-7.296,-6.0192,-3.192,69.15696,40.907
-1.17325,-7.31025,-6.04675,-3.33925,68.436575,41.1825
-1.23552,-7.88832,-6.46272,-3.70656,72.068832,41.232
-1.21056,-7.9152,-6.5184,-3.7248,70.612896,41.4144
-1.235,-8.265,-6.745,-3.8,72.0385,43.86
-1.1172,-8.0997,-6.7032,-3.724,70.59773,42.385
-1.22304,-8.18496,-6.86784,-3.7632,71.331456,42.091
-1.0944,-8.0256,-6.7488,-3.8304,69.14784,41.232
-1.16424,-8.63478,-7.2765,-4.17186,73.570266,42.5205
-1.2,-9.2,-7.7,-4.7,75.83,43.14
-1.0032,-8.664,-7.2048,-4.2864,69.15696,41.0875
-1.0241,-8.7514,-7.3549,-4.3757,70.59773,40.8025
-1.06722,-9.11988,-7.7616,-4.65696,73.570266,42.2235
-0.9506,-8.93564,-7.69986,-4.37276,72.083998,42.0495
-0.9408,-8.84352,-7.62048,-4.2336,71.340864,41.6256
-0.9405,-8.93475,-7.7121,-4.60845,71.318115,42.4215
-0.87318,-9.31392,-8.05266,-4.94802,73.570266,42.4215
-0.84672,-9.12576,-7.90272,-5.1744,71.331456,41.4144
-0.855,-9.405,-8.17,-5.225,72.0385,40.8025
-0.76032,-9.59904,-8.26848,-5.2272,72.068832,41.3376
-0.76032,-9.59904,-8.26848,-5.13216,72.059328,42.3324
-0.7524,-9.5931,-8.2764,-5.0787,71.318115,42.5205
-0.65856,-9.59616,-8.37312,-5.26848,71.340864,41.9146
-0.6517,-9.5893,-8.379,-5.2136,70.58842,40.242
-0.576,-9.984,-8.736,-5.664,72.7968,41.1264
-0.6,-10.5,-9.2,-5.8,75.83,42.44
-0.45125,-9.5665,-8.39325,-5.5955,68.436575,40.4225
-0.48015,-10.27521,-9.02682,-5.95386,72.809946,41.4772
-0.4802,-10.37232,-9.1238,-6.14656,72.817528,41.5912
-0.3648,-9.8496,-8.7552,-5.5632,69.15696,40.4225
-0.36864,-10.1376,-8.84736,-5.80608,69.884928,40.56
-0.27648,-10.1376,-8.93952,-5.9904,69.894144,41.4144
-0.291,-10.864,-9.603,-6.305,73.5454,41.2638
-0.18818,-10.63217,-9.31491,-6.30403,71.348447,42.2338
-0.18818,-10.72626,-9.409,-6.20994,71.348447,41.8458
-0.2,-11.4,-10.1,-6.9,75.82,43.14
-0.095,-10.83,-9.69,-6.555,72.029,40.622
-0.099,-11.385,-10.197,-7.029,75.0717,42.6294
-0,-11.21708,-9.88624,-6.93938,72.074492,41.4772
-0,-11.305,-9.975,-6.84,72.029,40.4225
--0.1,-11.9,-10.6,-7.2,75.83,42.95
--0.09408,-11.10144,-9.97248,-6.96192,71.331456,42.483
--0.19208,-11.33272,-10.27628,-6.91488,72.817528,41.9048
--0.28224,-11.19552,-10.06656,-6.96192,71.331456,41.797
--0.297,-11.979,-10.791,-7.92,75.0618,42.0156
--0.3648,-11.3088,-10.032,-7.296,69.15696,40.983
--0.36864,-11.52,-10.22976,-7.18848,69.875712,40.9536
--0.4655,-11.4513,-10.3341,-7.1687,70.58842,40.622
--0.4608,-11.24352,-10.22976,-7.00416,69.884928,41.232
--0.5643,-11.4741,-10.43955,-7.24185,71.318115,42.3423
--0.55872,-11.36064,-10.42944,-7.35648,70.603584,41.1668
--0.672,-11.904,-10.752,-7.776,72.7968,42.36
--0.76032,-11.97504,-10.83456,-7.88832,72.068832,42.3324
--0.75272,-12.04352,-10.82035,-7.90356,71.348447,41.2735
--0.83808,-11.91936,-10.7088,-7.54272,70.612896,40.9536
--0.84645,-11.94435,-10.9098,-7.61805,71.30871,42.5205
--0.98,-12.446,-11.368,-8.134,74.3036,42.76
--0.9312,-11.82624,-10.80192,-7.72896,70.612896,40.9825
--1.05644,-12.19708,-11.23668,-7.97132,72.827132,41.8068
--1.1,-12.8,-11.7,-8.4,75.82,42.65
--1.14072,-12.16768,-11.21708,-7.98504,72.083998,41.5912
--1.22265,-12.13245,-11.0979,-8.0883,71.318115,40.1375
--1.235,-12.445,-11.305,-8.36,72.029,42.25
--1.37214,-12.93732,-11.7612,-8.8209,74.311182,42.6294
--1.33,-12.73,-11.495,-8.455,72.029,42.65
--1.4256,-12.73536,-11.49984,-8.26848,72.059328,42.3324
--1.52064,-12.73536,-11.59488,-8.5536,72.068832,40.848
--1.683,-13.266,-12.078,-8.811,75.0618,43.14
--1.5827,-12.5685,-11.4513,-8.1928,70.59773,40.4225
--1.6929,-12.6027,-11.56815,-8.2764,71.318115,42.3324
--1.67616,-12.5712,-11.54688,-8.3808,70.603584,41.2735
--1.78752,-12.7008,-11.66592,-8.56128,71.331456,40.4544
--1.75104,-12.53376,-11.52,-8.47872,69.875712,40.6656
--1.824,-12.4944,-11.4912,-8.4816,69.15696,40.318
--1.95552,-12.94368,-11.82624,-8.8464,70.603584,40.8384
--2.03742,-13.48578,-12.32154,-9.2169,73.570266,41.2972
--2.11266,-13.4442,-12.29184,-9.21888,72.809946,40.8758
--2.18592,-13.3056,-12.26016,-9.21888,72.059328,40.272
--2.0976,-12.8592,-11.7648,-8.8464,69.15696,40.4544
--2.304,-13.536,-12.48,-9.312,72.7872,42.25
--2.4255,-13.77684,-12.6126,-9.50796,73.570266,41.8275
--2.35225,-13.54896,-12.32579,-9.409,71.339038,41.1668
--2.3959,-13.36175,-12.1638,-9.215,69.877345,40.033
--2.51424,-13.40928,-12.29184,-9.312,70.612896,40.7691
--2.48805,-13.36175,-12.25595,-9.12285,69.877345,40.1375
--2.527,-13.08625,-12.00325,-9.2055,68.436575,40.6315
--2.871,-14.553,-13.365,-10.395,75.0618,42.03
--2.70048,-13.87488,-12.66432,-9.7776,70.612896,40.3584
--2.9403,-14.60349,-13.32936,-9.99702,74.311182,41.7186
--2.793,-13.6857,-12.6616,-9.4962,70.58842,41.013
--3.007,-14.162,-13.192,-9.894,73.5454,42.14
--3.04128,-13.7808,-12.92544,-9.59904,72.059328,41.7186
--3.04192,-13.7837,-12.92816,-9.79118,72.074492,40.7788
--3.234,-14.406,-13.426,-10.486,74.3134,40.9052
--3.23136,-14.256,-13.11552,-10.35936,72.059328,40.176
--3.1977,-14.20155,-13.07295,-9.9693,71.318115,41.9364
--3.3264,-14.35104,-13.21056,-9.9792,72.059328,40.3584
--3.2832,-13.68,-12.6768,-9.7584,69.14784,39.862
--3.492,-14.453,-13.483,-10.185,73.5454,41.95
--3.589,-14.453,-13.483,-10.185,73.5551,40.5945
--3.5378,-13.965,-12.9409,-9.6824,70.58842,41.2972
--3.8,-15,-14,-10.6,75.82,42.25
--3.783,-14.55,-13.58,-10.379,73.5551,41.96
--3.762,-14.20155,-13.26105,-10.1574,71.318115,41.2533
--3.7632,-14.30016,-13.26528,-10.3488,71.340864,40.5132
--3.8171,-14.2443,-13.1271,-10.241,70.58842,41.111
--3.8171,-14.3374,-13.2202,-10.1479,70.50463,41.1992
--3.8304,-14.0448,-13.0416,-10.1232,69.15696,40.242
--4.0033,-14.4305,-13.3133,-10.241,70.50463,41.192
--4.08758,-14.82936,-13.68864,-10.74178,72.074492,41.9048
--4.22532,-14.98068,-13.82832,-10.85139,72.723519,40.8758
--4.32,-14.976,-13.92,-10.848,72.7008,44.05
--4.462,-15.229,-14.065,-11.058,73.4581,41.7682
--4.37276,-15.01948,-13.87876,-10.83684,71.988938,41.5128
--4.3757,-14.8029,-13.6857,-10.6134,70.50463,39.7575
--4.33105,-14.65185,-13.54605,-10.59725,69.785195,40.7788
--4.4232,-14.65185,-13.54605,-10.5051,69.785195,39.9285
--4.65696,-15.11136,-14.06592,-11.02464,71.973792,41.3226
--4.56288,-14.80608,-13.78176,-10.89504,70.519776,40.5945
--5,-16.1,-14.9,-11.8,75.73,41.74
--4.74912,-15.08544,-13.87488,-10.98816,70.519776,40.2816
--5.049,-16.038,-14.85,-11.583,74.9727,42.55
--4.8412,-15.0822,-13.965,-11.0789,70.50463,40.4225
--5.141,-15.714,-14.647,-11.737,73.4581,40.2065
--5.03818,-15.39972,-14.35406,-11.4072,71.988938,40.5945
--5.0787,-15.33015,-14.2956,-11.0979,71.224065,41.4315
--5.225,-15.485,-14.44,-11.305,71.934,39.9285
--5.39055,-16.07364,-14.99553,-11.85921,74.222973,42.5205
--5.488,-16.17,-14.994,-11.956,74.2154,43.53
--5.1984,-15.1392,-14.0448,-11.0352,69.06576,41.3376
--5.30784,-15.3648,-14.34048,-11.26752,70.519776,41.712
--5.684,-16.17,-15.092,-11.662,74.2154,41.2972
--5.45722,-15.61894,-14.58395,-11.2908,71.254357,41.4772
--5.55131,-15.61894,-14.58395,-11.57307,71.254357,41.1668
--5.7624,-16.03868,-14.8862,-11.90896,72.731092,41.1992
--5.5872,-15.64416,-14.52672,-11.64,70.519776,40.0032
--5.917,-16.296,-15.229,-11.931,73.4581,40.4878
--5.7722,-15.6408,-14.6167,-11.5444,70.43946,39.653
--5.7722,-15.6408,-14.6167,-11.7306,70.50463,41.405
--5.80545,-15.57335,-14.5597,-11.70305,69.785195,40.9825
--5.95968,-15.73728,-14.71296,-11.91936,70.519776,41.4144
--6.08256,-16.1568,-15.11136,-12.07008,71.89776,42.0156
--6.1152,-15.9936,-14.95872,-12.2304,71.17152,41.232
--6.2426,-16.42284,-15.27036,-12.29312,72.65426,41.9832
--6.534,-17.028,-15.84,-12.87,74.8935,42.5205
--6.23904,-16.01664,-14.8992,-12.1056,70.435968,40.6656
--6.1104,-15.7776,-14.6832,-11.856,69.00192,41.232
--6.46272,-16.44192,-15.30144,-12.3552,71.89776,42.0156
--6.4239,-16.1063,-14.9891,-12.1961,70.43015,41.1894
--6.2928,-15.8688,-14.7744,-11.856,68.9928,40.8025
--6.8607,-17.05374,-15.87762,-12.83931,74.144565,41.7186
--7.029,-17.226,-16.137,-13.068,74.8836,42.44
--6.887,-16.975,-15.811,-13.095,73.3805,43.86
--6.63552,-16.22016,-15.11424,-12.25728,69.62688,42.7776
--6.86565,-16.5528,-15.4242,-12.50865,71.148825,42.4116
--7.01092,-16.90304,-15.8466,-12.86936,72.567824,43.2768
--6.7488,-16.1424,-15.048,-12.1296,68.9016,41.2775
--7.275,-17.169,-16.005,-12.901,73.2835,40.9825
--6.91125,-16.4027,-15.2969,-12.5324,69.619325,41.1825
--7.524,-17.622,-16.434,-13.365,74.7945,42.4116
--7.00416,-16.40448,-15.39072,-12.53376,69.62688,41.232
--7.1687,-16.6649,-15.5477,-12.6616,70.33705,41.9425
--7.17024,-16.66848,-15.55104,-12.5712,70.35216,41.4772
--7.1877,-16.49485,-15.4812,-12.62455,69.619325,40.413
--7.742,-17.64,-16.464,-13.426,74.0488,42.77
--7.9,-18,-16.8,-13.7,75.55,42.95
--7.6824,-17.2854,-16.22907,-13.25214,72.550665,42.8175
--7.77843,-17.2854,-16.22907,-13.34817,72.560268,42.2241
--7.46496,-16.68096,-15.6672,-12.62592,69.62688,41.616
--7.71538,-17.12438,-15.9953,-13.07851,71.084995,42.0495
--7.80615,-17.1171,-15.9885,-13.26105,71.054775,43.5006
--7.80864,-17.21664,-16.08768,-13.07712,71.07744,42.384
--8.14968,-17.75466,-16.59042,-13.48578,73.29861,42.8652
--7.9002,-17.1171,-16.08255,-13.07295,71.054775,42.9264
--7.752,-16.6896,-15.6864,-12.768,68.9016,42.7776
--8.17,-17.48,-16.435,-13.395,71.7725,44.15
--8.25944,-17.67136,-16.61492,-13.4456,72.55822,42.4928
--8.7,-18.4,-17.3,-14.1,75.55,44.56
--7.9344,-16.7808,-15.7776,-12.9504,68.9016,41.8944
--8.36352,-17.39232,-16.44192,-13.40064,71.80272,43.4214
--8.0256,-16.6896,-15.7776,-12.768,68.89248,41.712
--8.37312,-17.31072,-16.36992,-13.45344,71.07744,42.6692
--8.2935,-17.1399,-16.0341,-13.17745,69.619325,41.9525
--8.6427,-17.95761,-16.80525,-13.63626,72.550665,43.4214
--8.82882,-18.14274,-16.9785,-13.97088,73.29861,44.1144
--8.2992,-16.9632,-15.96,-12.9504,68.9016,42
--9.016,-18.228,-17.15,-13.916,74.039,43.6688
--9.207,-18.414,-17.325,-14.157,74.7945,44.93
--8.66016,-17.32032,-16.38912,-13.31616,70.35216,43.6224
--8.75328,-17.32032,-16.38912,-13.5024,70.35216,45.3504
--9.306,-18.612,-17.523,-14.355,74.7054,44.16
--9.025,-17.955,-16.815,-13.965,71.6775,43.75
--9.2169,-18.23976,-17.17254,-14.0679,73.20159,43.4532
--9.12,-17.86,-16.815,-13.68,71.6775,44.74
--9.40896,-18.42588,-17.34777,-14.01543,73.948545,44.6985
--9.22082,-17.87128,-16.82562,-13.59358,71.72277,42.8255
--9.506,-18.333,-17.266,-14.162,73.1865,44.1835
--9.22082,-17.8771,-16.74802,-13.83123,71.000314,45.7161
--9.31491,-17.8771,-16.84211,-13.54896,70.990905,45.2505
--9.7,-18.333,-17.266,-14.162,73.1962,45.55
--9.504,-17.96256,-17.01216,-13.7808,71.70768,42.8544
--9.49905,-17.77545,-16.83495,-13.44915,70.960725,42.332
--9.898,-18.522,-17.542,-14.21,73.843,45.66
--9.3024,-17.2368,-16.3248,-13.3152,68.8104,42.123
--9.3993,-17.60065,-16.49485,-13.36175,69.53639,42.332
--9.29575,-17.23775,-16.15475,-13.26675,68.093625,43.168
--9.49145,-17.60065,-16.587,-13.4539,69.44424,44.2805
--9.7812,-17.96355,-16.929,-13.7313,70.866675,44.3175
--10.192,-18.62,-17.64,-14.308,73.8528,46.109
--9.9792,-17.96256,-17.1072,-13.7808,71.61264,43.344
--9.97248,-17.8752,-16.9344,-13.6416,70.898688,43.2384
--10.388,-18.718,-17.64,-14.7,73.8528,46.76
--10.379,-18.624,-17.557,-14.356,73.0895,45.15
--9.86005,-17.6928,-16.67915,-13.73035,69.435025,43.168
--10.26432,-18.24768,-17.20224,-13.97088,71.61264,45.2727
--9.9522,-17.60065,-16.67915,-13.4539,69.435025,44.2225
--9.9408,-17.4192,-16.5072,-13.224,68.72832,44.498
--10.25581,-17.97119,-17.03029,-13.73714,70.906224,44.5715
--10.3455,-17.8695,-17.02305,-13.7313,70.866675,44.8767
--10.78,-18.62,-17.738,-14.406,73.8528,44.5312
--10.54944,-18.24768,-17.20224,-14.35104,71.61264,43.344
--10.44288,-18.15744,-17.12256,-14.30016,70.88928,43.056
--10.64672,-18.34658,-17.30092,-14.16394,71.637216,43.8925
--10.63217,-18.15937,-17.12438,-14.01941,70.896815,44.0768
--10.85139,-18.53379,-17.47746,-14.21244,72.358605,44.8767
--10.74178,-18.25152,-17.30092,-14.16394,71.637216,43.7472
--10.6134,-17.8752,-16.9442,-13.7788,70.16016,43.6688
--10.7088,-17.87904,-16.94784,-13.968,70.175232,43.44
--11.385,-19.107,-18.018,-14.751,74.5965,46.25
--10.9098,-18.2457,-17.21115,-14.20155,70.87608,44.5896
--10.80192,-18.06528,-17.04096,-14.06112,70.175232,43.3008
--11.00736,-18.25152,-17.21664,-14.01792,70.88928,46.501
--11.232,-18.624,-17.568,-14.496,72.336,46.03
--11.21,-18.43,-17.385,-14.25,71.5825,42.2275
--10.9858,-18.0614,-17.0373,-13.8719,70.16016,43.4435
--11.19195,-18.2457,-17.3052,-14.20155,70.866675,42.6835
--11.08128,-18.06528,-17.13408,-14.06112,70.16592,43.5168
--11.172,-18.1545,-17.1304,-14.0581,70.16016,45.5014
--11.6424,-18.9189,-17.85168,-14.553,73.10457,43.9628
--11.737,-18.915,-17.848,-14.647,73.0992,43.9701
--11.0352,-17.8752,-16.872,-13.7712,68.7192,42.9875
--11.47776,-18.43968,-17.4048,-14.30016,70.88928,42.9504
--11.3582,-18.1545,-17.2235,-14.0581,70.05775,44.8252
--11.4741,-18.33975,-17.39925,-14.1075,70.87608,45.6786
--11.81292,-18.7278,-17.7674,-14.59808,72.36614,44.1392
--11.4266,-17.96925,-17.04775,-13.91465,69.435025,43.3978
--11.90896,-18.91988,-17.7674,-14.79016,72.36614,45.325
--12.028,-19.109,-18.042,-14.744,73.0992,45.25
--12.5,-19.7,-18.6,-15.1,75.26,46.84
--11.51875,-18.15355,-17.1399,-14.0068,69.342875,43.5821
--11.7306,-18.3407,-17.3166,-14.3374,70.06706,43.9628
--12.07008,-18.72288,-17.67744,-14.54112,71.527104,43.728
--12.07262,-18.72682,-17.68116,-14.63924,71.542156,44.3678
--11.94943,-18.53573,-17.59483,-14.48986,70.812134,44.4648
--11.7952,-18.15355,-17.1399,-14.1911,69.35209,43.548
--12.41856,-19.11294,-18.14274,-14.94108,73.017252,44.6985
--12.26016,-18.81792,-17.77248,-14.54112,71.527104,43.2384
--11.88735,-18.2457,-17.23205,-14.1911,69.342875,44.8625
--12.01248,-18.43776,-17.50656,-14.34048,70.082112,43.44
--12.4839,-19.10997,-17.95761,-14.78862,72.262575,44.0055
--12.70962,-19.30698,-18.23976,-15.0381,73.017252,44.247
--12.83931,-19.50399,-18.42588,-15.09354,73.772127,44.6985
--12.707,-19.303,-18.236,-15.132,72.9925,45.54
--12.54792,-18.91694,-17.87128,-14.82936,71.542156,44.737
--12.41856,-18.72192,-17.68704,-14.77056,70.804608,44.1392
--12.41988,-18.72391,-17.68892,-14.48986,70.802725,42.9031
--12.77199,-19.206,-18.05364,-14.98068,72.272178,43.0098
--13.167,-19.8,-18.711,-15.444,74.5074,44.7975
--12.86936,-19.208,-18.15156,-14.8862,72.279704,43.953
--12.2208,-18.24,-17.2368,-14.2272,68.63712,42.408
--12.312,-18.24,-17.2368,-14.2272,68.64624,44.2944
--13.095,-19.303,-18.333,-15.132,73.0022,44.4648
--12.79488,-18.816,-17.78112,-14.5824,70.710528,44.1392
--12.92816,-19.012,-17.96634,-15.01948,71.542156,43.561
--13.32936,-19.70001,-18.6219,-15.48558,73.664316,44.4906
--12.88485,-18.90405,-17.8695,-14.76585,70.78203,42.9875
--13.563,-19.899,-18.81,-15.543,74.5074,45.2727
--13.11552,-19.10304,-18.0576,-14.82624,71.527104,44.1888
--13.662,-19.998,-18.81,-15.444,74.5074,46.3716
--12.80885,-18.52215,-17.5085,-14.46755,69.25994,43.8925
--12.94368,-18.71712,-17.78592,-14.71296,69.988992,42.5664
--13.07712,-18.91008,-17.96928,-14.95872,70.719936,44.1888
--12.9024,-18.52416,-17.60256,-14.65344,69.267456,44.112
--13.58,-19.594,-18.527,-15.326,72.9052,44.3581
--13.54164,-19.40008,-18.34364,-15.17432,72.183664,45.8248
--12.99315,-18.6143,-17.60065,-14.5597,69.25994,44.8625
--13.54023,-19.39806,-18.43776,-15.07671,72.176148,45.6786
--13.08672,-18.61632,-17.69472,-14.46912,69.267456,44.1888
--13.49568,-19.19808,-18.24768,-15.11136,71.432064,44.6784
--13.36078,-19.00618,-18.06528,-14.86622,70.718044,43.5821
--13.3133,-18.8062,-17.8752,-14.8029,69.97396,45.5014
--13.0416,-18.5136,-17.5104,-14.6832,68.54592,43.056
--13.82976,-19.49612,-18.43968,-15.27036,72.097228,43.6688
--13.82832,-19.49409,-18.43776,-15.26877,72.089721,44.1835
--14.355,-20.097,-19.107,-15.84,74.3094,44.55
--14.065,-19.691,-18.624,-15.423,72.8082,45.04
--13.36175,-18.70645,-17.6928,-14.65185,69.177005,43.6888
--13.5926,-18.8993,-17.8752,-14.8029,69.88086,43.3454
--13.73568,-19.09824,-18.06336,-15.0528,70.616448,44.5728
--14.016,-19.488,-18.528,-15.456,72.0672,43.344
--13.26675,-18.411,-17.41825,-14.2595,67.74165,43.3675
--13.26675,-18.411,-17.41825,-14.44,67.74165,42.332
--14.21392,-19.59216,-18.53572,-15.27036,72.087624,43.953
--13.92532,-19.19436,-18.15937,-15.0544,70.623954,43.4075
--13.6382,-18.7986,-17.78495,-14.65185,69.177005,43.5142
--14.155,-19.38,-18.43,-15.105,71.3165,42.617
--14.01792,-19.19232,-18.15744,-15.14688,70.616448,45.2172
--13.5888,-18.6048,-17.6016,-14.6832,68.45472,43.9008
--14.453,-19.788,-18.818,-15.423,72.8082,44.15
--14.4,-19.584,-18.528,-15.456,72.0576,43.5168
--13.824,-18.80064,-17.87904,-14.7456,69.175296,43.5168
--14.647,-19.788,-18.818,-15.714,72.8179,43.0098
--13.91616,-18.8928,-17.87904,-14.92992,69.175296,42.672
--14.35104,-19.4832,-18.43776,-15.30144,71.251488,42.2784
--14.35104,-19.4832,-18.43776,-15.2064,71.251488,43.9104
--14.592,-19.68,-18.72,-15.36,71.9616,43.7184
--14.38965,-19.28025,-18.33975,-15.2361,70.603335,43.548
--14.841,-19.885,-18.818,-15.52,72.7209,44.93
--14.39577,-19.28845,-18.25346,-15.0544,70.529864,43.3978
--14.841,-19.885,-18.915,-15.617,72.7112,45.04
--15.246,-20.295,-19.305,-15.939,74.2104,44.0055
--14.3374,-19.0855,-18.1545,-15.2684,69.78776,42.5125
--15.246,-20.394,-19.305,-16.038,74.2104,45.44
--14.57775,-19.3743,-18.33975,-15.2361,70.509285,43.7184
--14.28325,-18.9829,-17.96925,-14.83615,69.07564,44.1738
--13.98875,-18.5915,-17.59875,-14.53025,67.660425,42.332
--14.82,-19.57,-18.525,-15.39,71.2215,43.94
--14.67648,-19.38048,-18.3456,-15.24096,70.531776,43.344
--15.6,-20.6,-19.5,-16.2,74.97,44.85
--14.77056,-19.38048,-18.43968,-15.42912,70.531776,43.953
--15.07671,-19.78218,-18.72585,-15.65289,71.993691,45.1438
--15.168,-19.872,-18.816,-15.744,71.9712,43.5168
--15.32916,-20.08314,-19.01592,-15.81426,72.745596,44.0154
--15.484,-20.188,-19.208,-15.778,73.4706,43.659
--14.86622,-19.38254,-18.44164,-15.14849,70.539273,43.6985
--14.5008,-18.8784,-17.8752,-14.7744,68.36352,44.0064
--14.5008,-18.8784,-17.8752,-14.8656,68.36352,43.1328
--14.5008,-18.8784,-17.8752,-14.7744,68.28144,42.9875
--15.3648,-19.87821,-18.82188,-15.84495,71.897661,44.4807
--15.6816,-20.28807,-19.20996,-15.87762,73.380087,45.1935
--14.8992,-19.27584,-18.25152,-15.08544,69.718944,42.9312
--15.048,-19.46835,-18.4338,-15.4242,70.415235,44.7975
--15.46083,-19.87821,-18.91791,-15.55686,71.897661,44.1936
--14.83615,-19.07505,-18.15355,-14.83615,68.992705,43.2232
--15.46083,-19.97424,-18.91791,-15.55686,71.897661,43.3008
--16.2,-20.7,-19.7,-16.3,74.87,44.23
--15.24258,-19.57072,-18.53573,-15.14849,70.445183,44.4648
--15.811,-20.079,-19.109,-15.811,72.6239,43.6888
--16.137,-20.592,-19.503,-16.335,74.1213,46.3716
--15.648,-19.872,-18.912,-15.648,71.8752,43.056
--15.81426,-20.08314,-19.11294,-15.81426,72.638874,43.855
--15.17856,-19.27584,-18.34464,-15.17856,69.718944,42.8544
--15.75056,-19.88028,-18.91988,-15.65452,71.905148,43.953
--15.908,-20.079,-19.109,-15.811,72.6239,44.4648
--16.236,-20.592,-19.503,-16.434,74.1213,44.64
--16.335,-20.592,-19.503,-16.236,74.1213,44.93
--15.20475,-19.1672,-18.15355,-15.2969,68.992705,42.123
--15.675,-19.76,-18.715,-15.675,71.1265,42.9875
--16.17,-20.384,-19.306,-15.974,73.3824,44.933
--15.77,-19.76,-18.715,-15.485,71.1265,42.788
--16.434,-20.592,-19.503,-16.335,74.1213,44.4807
--15.6123,-19.5624,-18.52785,-15.4242,70.415235,42.6075
--15.77996,-19.77248,-18.82188,-15.49478,71.161916,42.8255
--15.70635,-19.5624,-18.6219,-15.51825,70.415235,41.9425
--15.87502,-19.77248,-18.82188,-15.49478,71.171422,44.2805
--16.366,-20.384,-19.306,-15.68,73.3726,44.8154
--15.64416,-18.53088,-16.296,-15.55104,69.625824,43.344
--15.4812,-17.41635,-15.02045,-16.0341,69.00192,41.8475
--15.80544,-16.84032,-14.30016,-16.55808,70.343616,44.345
--15.97008,-16.44538,-13.49852,-17.01574,71.171422,44.5312
--15.89952,-16.27584,-13.07712,-13.35936,70.437696,42.4608
--16.055,-18.05,-14.82,-14.63,71.1265,41.2775
--16.06514,-18.5367,-15.58984,-14.92442,71.171422,42.8255
--16.1602,-18.63176,-15.87502,-14.54418,71.171422,42.9031
--15.9885,-18.4338,-15.89445,-14.20155,70.415235,42.788
--16.32,-18.72,-16.416,-14.304,71.8752,42.7776
--15.9953,-18.25346,-16.18348,-14.20759,70.454592,43.6985
--15.827,-18.0614,-16.1994,-13.8719,69.70397,42.2275
--15.504,-17.6928,-15.96,-13.5888,68.28144,41.192
--16.25184,-18.43776,-16.72704,-14.54112,71.156448,42.5664
--16.08768,-18.25152,-16.65216,-14.30016,70.437696,42.8544
--16.245,-18.525,-16.91,-14.44,71.1265,42.503
--16.416,-18.72,-17.184,-14.784,71.8752,42.4608
--16.08768,-18.53376,-16.9344,-14.67648,70.437696,44.345
--16.18176,-18.62784,-17.02848,-14.48832,70.437696,44.4234
--16.1766,-18.6219,-17.1171,-14.4837,70.42464,42.2275
--15.6864,-18.0576,-16.5984,-14.0448,68.19936,44.2944
--16.85772,-19.40598,-17.93583,-15.19155,73.282077,44.3025
--15.85152,-18.24768,-16.95744,-14.2848,68.908032,42.4608
--16.781,-19.206,-17.848,-14.938,72.5269,45.25
--15.61325,-17.8695,-16.69625,-13.98875,67.479925,42.123
--16.781,-19.303,-17.945,-15.035,72.5269,43.2232
--17.127,-19.701,-18.414,-15.246,74.0223,45.15
--16.27584,-18.72192,-17.49888,-14.67648,70.353024,43.0612
--15.94195,-18.43,-17.1399,-14.28325,68.90977,43.0098
--16.88148,-19.404,-18.14274,-15.13512,72.541854,44.4234
--15.7035,-18.05,-16.87675,-14.2595,67.479925,41.743
--16.03584,-18.432,-17.32608,-14.56128,68.908032,44.2944
--15.8688,-18.3312,-17.1456,-14.4096,68.19024,44.6784
--15.79375,-18.14025,-16.967,-14.16925,67.479925,42.5125
--16.632,-19.10304,-17.86752,-15.11136,71.061408,42.9504
--16.6355,-19.20212,-17.96634,-14.82936,71.076362,42.3308
--17.325,-19.998,-18.81,-15.543,74.0223,44.45
--16.80525,-19.39806,-18.2457,-15.17274,71.811234,43.5996
--16.73056,-19.20212,-18.0614,-14.92442,71.076362,43.561
--16.3856,-18.8062,-17.689,-14.7098,69.62018,44.5312
--17.07552,-19.59804,-18.4338,-15.23214,72.541854,44.1936
--16.55808,-19.09824,-17.96928,-14.86464,70.343616,42.7776
--16.3856,-18.8993,-17.7821,-14.7098,69.62018,41.458
--17.24976,-19.89603,-18.71991,-15.38757,73.282077,43.7976
--17.424,-20.097,-18.909,-15.939,74.0223,43.3125
--16.72,-19.285,-18.145,-15.2,71.0315,41.667
--16.65393,-19.10027,-18.06528,-14.86622,70.351093,43.7955
--16.1424,-18.5136,-17.5104,-14.592,68.19024,42.332
--16.65216,-19.19232,-18.06336,-15.14688,70.353024,43.9628
--16.992,-19.584,-18.432,-15.36,71.7792,44.6784
--16.99731,-19.59012,-18.43776,-15.26877,71.801631,43.6888
--16.31232,-18.80064,-17.78688,-14.83776,68.908032,43.344
--17.622,-20.196,-19.107,-15.84,74.0223,43.8966
--17.266,-19.788,-18.721,-15.52,72.5269,44.85
--16.5718,-18.9924,-17.9683,-14.896,69.61087,44.247
--17.444,-19.992,-18.914,-15.68,73.2746,45.15
--16.2336,-18.6048,-17.6016,-14.592,68.19024,42.2275
--16.92068,-19.4873,-18.34658,-15.2096,71.076362,43.5142
--16.3248,-18.696,-17.6016,-14.5008,68.19024,42.788
--17.9,-20.4,-19.4,-16.1,74.77,44.56
--17.36658,-19.8891,-18.72486,-15.5232,72.541854,44.737
--17.19116,-19.6882,-18.63176,-15.46244,71.809108,44.639
--16.84032,-19.2864,-18.25152,-15.14688,70.343616,44.9664
--17.36658,-19.98612,-18.82188,-15.71724,72.541854,46.0746
--17.01216,-19.57824,-18.43776,-15.39648,71.061408,43.1424
--17.1072,-19.57824,-18.43776,-15.39648,71.061408,44.784
--16.929,-19.3743,-18.2457,-15.2361,70.321185,42.332
--17.4636,-19.98612,-18.9189,-15.62022,72.541854,44.0314
--17.64,-20.188,-19.11,-15.876,73.2746,44.1392
--16.929,-19.3743,-18.33975,-15.14205,70.321185,42.6075
--17.64,-20.188,-19.11,-15.876,73.2746,44.34
--16.9344,-19.47456,-18.3456,-15.33504,70.343616,44.0314
--16.67915,-19.07505,-17.96925,-15.02045,68.900555,43.9701
--17.56062,-20.08314,-18.9189,-15.71724,72.541854,43.7472
--17.919,-20.493,-19.404,-16.236,74.0223,45.6786
--17.919,-20.394,-19.305,-15.939,74.0223,45.33
--16.67915,-18.9829,-17.96925,-14.83615,68.900555,43.7955
--16.85472,-19.18272,-18.1584,-14.8992,69.625824,42.7776
--17.29728,-19.67328,-18.62784,-15.39648,71.061408,44.4015
--16.77312,-18.98496,-18.06336,-15.02208,68.908032,42.384
--17.654,-19.982,-19.012,-15.811,72.5269,44.8528
--17.29728,-19.67328,-18.62784,-15.49152,71.061408,43.6128
--16.7713,-19.07505,-18.0614,-15.02045,68.900555,42.788
--16.5984,-18.8784,-17.8752,-14.7744,68.19936,42.503
--16.7713,-19.07505,-18.0614,-15.02045,68.900555,41.9425
--17.654,-20.079,-19.012,-15.811,72.5269,44.15
--17.75466,-20.08314,-19.01592,-15.81426,72.541854,43.561
--17.21847,-19.47663,-18.44164,-15.33667,70.351093,43.5821
--17.39598,-19.77248,-18.63176,-15.58984,71.076362,43.6888
--17.75466,-20.18016,-19.11294,-15.81426,72.541854,44.6292
--17.21847,-19.57072,-18.53573,-15.33667,70.351093,43.1165
--17.21664,-19.56864,-18.53376,-15.33504,70.343616,44.737
--18.216,-20.493,-19.503,-16.137,74.0223,45.1935
--17.75466,-20.18016,-19.11294,-16.0083,72.541854,44.9232
--18.117,-20.592,-19.503,-16.038,74.0223,44.4114
--17.13408,-19.36896,-18.34464,-15.17856,69.625824,42.7776
--17.66952,-19.97424,-18.91791,-15.74892,71.715204,43.7955
--17.48,-19.76,-18.715,-15.485,70.946,46.84
--16.7808,-18.9696,-17.9664,-14.7744,68.10816,42.8925
--16.7808,-18.9696,-17.9664,-15.048,68.09904,43.824
--17.49104,-19.77248,-18.72682,-15.6849,70.981302,43.7955
--17.5861,-19.77248,-18.82188,-15.39972,70.990808,43.4532
--17.0496,-19.26144,-18.15552,-15.11424,68.815872,43.344
--17.7674,-19.97632,-19.01592,-15.8466,71.722672,44.7468
--18.315,-20.691,-19.602,-16.236,73.9332,45.44
--17.945,-20.176,-19.206,-15.908,72.4396,45.25
--17.5824,-19.86336,-18.81792,-15.58656,71.070912,45.3816
--17.39925,-19.65645,-18.6219,-15.4242,70.227135,45.0846
--16.872,-18.8784,-17.2368,-14.5008,68.19024,43.344
--17.3166,-18.3407,-16.0132,-16.1063,69.51777,43.548
--18.13185,-18.22986,-15.6816,-17.54379,73.193868,45.8865
--17.49888,-16.65216,-14.01792,-17.02848,70.343616,44.4234
--17.14176,-15.85152,-12.99456,-16.68096,68.815872,44.5728
--17.67744,-16.632,-13.49568,-13.11552,71.061408,44.1936
--17.68116,-18.25152,-15.01948,-14.7343,71.076362,43.561
--17.4933,-18.4338,-15.51825,-14.57775,70.321185,42.123
--17.856,-18.816,-16.128,-14.688,71.7792,44.24
--18.326,-19.208,-16.562,-14.798,73.2746,43.86
--18.513,-19.305,-16.929,-14.751,74.0223,43.54
--16.87675,-17.59875,-15.61325,-13.62775,67.479925,41.9425
--18.513,-19.305,-17.226,-14.85,74.0223,44.94
--18.14274,-18.82188,-16.9785,-14.45598,72.551556,44.639
--18.139,-18.915,-17.072,-14.647,72.5269,45.9198
--17.41344,-18.1584,-16.48224,-14.15424,69.625824,43.2232
--17.41344,-18.1584,-16.57536,-14.24736,69.625824,42.7285
--18.513,-19.503,-17.721,-15.345,74.0223,43.75
--17.765,-18.81,-17.195,-14.535,71.041,41.287
--17.952,-19.008,-17.472,-14.592,71.7792,43.14
--17.77622,-18.91694,-17.30092,-14.7343,71.076362,42.7672
--18.326,-19.502,-17.934,-15.19,73.2746,43.4532
--17.952,-19.104,-17.664,-14.784,71.7888,43.65
--17.1456,-18.1488,-16.7808,-14.136,68.19024,41.52
--17.87128,-19.012,-17.5861,-14.7343,71.076362,42.2772
--17.68704,-18.816,-17.4048,-14.67648,70.343616,42.9828
--17.3242,-18.43,-17.1399,-14.46755,68.900555,41.0875
--17.68704,-18.816,-17.59296,-14.77056,70.343616,42.581
--18.048,-19.296,-17.952,-15.168,71.7792,43.14
--18.23976,-19.50102,-18.14274,-15.32916,72.629172,42.3324
--17.86752,-19.10304,-17.86752,-14.92128,71.061408,41.232
--17.68704,-18.91008,-17.68704,-14.77056,70.343616,41.1264
--18.048,-19.296,-18.144,-15.168,71.8752,43.14
--18.236,-19.594,-18.333,-15.423,72.6239,42.87
--18.05552,-19.40008,-18.15156,-15.07828,71.914752,42.1988
--18.05364,-19.39806,-18.14967,-15.3648,71.897661,41.6615
--18.612,-20.097,-18.81,-15.741,74.1213,43.0947
--18.15156,-19.49612,-18.2476,-15.27036,71.895544,41.6892
--17.59968,-18.90336,-17.6928,-14.8992,69.718944,41.2638
--18.144,-19.488,-18.336,-15.36,71.8656,42.95
--17.2368,-18.5136,-17.4192,-14.592,68.27232,40.622
--18.14967,-19.49409,-18.34173,-15.26877,71.897661,42.0156
--18.33678,-19.69506,-18.53082,-15.5232,72.638874,42.2772
--17.96256,-19.29312,-18.24768,-15.01632,71.156448,42.0156
--17.77545,-19.1862,-18.0576,-14.95395,70.415235,40.698
--17.5959,-18.9924,-17.8752,-14.896,69.70397,40.907
--17.59968,-18.99648,-17.87904,-14.80608,69.718944,41.232
--17.41635,-18.7986,-17.6928,-14.83615,68.992705,41.8458
--17.689,-18.9924,-17.9683,-14.8029,69.70397,40.318
--17.77545,-19.1862,-18.0576,-15.048,70.415235,40.4225
--18.15156,-19.59216,-18.53572,-15.27036,71.905148,41.797
--17.6928,-19.0896,-17.97216,-14.99232,69.812064,40.56
--17.328,-18.696,-17.6016,-14.6832,68.28144,40.56
--18.0614,-19.4873,-18.44164,-15.30466,71.171422,41.0892
--17.6928,-19.0896,-17.97216,-14.99232,69.718944,40.56
--18.81,-20.295,-19.206,-16.038,74.1213,41.9364
--18.43,-19.885,-18.818,-15.714,72.6239,40.9825
--17.8695,-19.28025,-18.2457,-15.14205,70.415235,40.033
--17.689,-19.1786,-18.0614,-14.9891,69.70397,40.242
--17.328,-18.7872,-17.784,-14.7744,68.28144,40.1375
--18.05,-19.57,-18.525,-15.2,71.136,41.96
--17.689,-19.1786,-18.1545,-15.0822,69.70397,41.5912
--18.62,-20.188,-19.11,-15.778,73.4608,42.35
--18.62,-20.188,-19.11,-15.974,73.4608,42.54
--18.0576,-19.57824,-18.5328,-15.39648,71.251488,41.8275
--17.689,-19.1786,-18.1545,-15.0822,69.78776,41.503
--18.909,-20.394,-19.305,-16.137,74.2203,42.1146
--18.718,-20.286,-19.11,-15.974,73.4706,41.6892
--17.60065,-18.9829,-18.0614,-14.83615,69.084855,40.242
--17.97119,-19.47663,-18.34755,-15.33667,70.539273,40.9825
--18.15264,-19.57824,-18.62784,-15.39648,71.241984,41.6097
--18.53082,-20.08314,-19.01592,-15.81426,72.735894,41.6892
--17.96928,-19.47456,-18.43968,-15.33504,70.522368,41.405
--17.60065,-19.07505,-18.0614,-15.02045,69.07564,39.9285
--18.527,-20.079,-19.012,-15.908,72.7112,40.8758
--18.909,-20.592,-19.404,-16.038,74.2203,41.6196
--17.96928,-19.56864,-18.43968,-15.33504,70.531776,40.6656
--17.78592,-19.36896,-18.34464,-15.08544,69.812064,40.4544
--17.96928,-19.56864,-18.53376,-15.24096,70.531776,41.405
--17.96928,-19.56864,-18.53376,-15.42912,70.522368,41.405
--17.97119,-19.57072,-18.53573,-15.52485,70.529864,40.6915
--17.78592,-19.36896,-18.34464,-15.3648,69.802752,41.1668
--18.624,-20.176,-19.109,-15.908,72.7112,40.7691
--17.5104,-18.9696,-17.9664,-14.8656,68.36352,39.8525
--18.816,-20.384,-19.306,-16.17,73.4706,42.35
--17.4192,-19.0608,-17.9664,-15.048,68.36352,40.4544
--18.06336,-19.66272,-18.62784,-15.5232,70.531776,41.111
--18.43776,-19.87821,-18.72585,-15.3648,71.993691,40.7691
--18.62784,-19.20996,-17.07552,-16.29936,72.726192,41.1894
--18.816,-18.326,-15.778,-17.052,73.4706,41.2972
--17.8752,-16.6649,-14.0581,-16.4787,69.79707,40.033
--18.43968,-16.51888,-13.63768,-16.90304,72.001188,41.0032
--18.24768,-16.632,-13.59072,-13.02048,71.346528,40.1664
--18.53379,-18.2457,-15.26877,-14.88465,71.984088,41.4216
--19.008,-19.305,-16.335,-15.444,74.3094,41.95
--17.87904,-18.25152,-15.64416,-14.34048,69.895872,39.9936
--18.62784,-19.01592,-16.4934,-14.65002,72.726192,41.2533
--18.06528,-18.34755,-16.18348,-14.1135,70.623954,40.6915
--18.53572,-18.7278,-16.61492,-14.50204,72.087624,41.111
--17.6016,-17.6928,-15.8688,-13.5888,68.45472,39.8976
--17.9683,-18.0614,-16.2925,-13.8719,69.78776,39.653
--18.34658,-18.44164,-16.73056,-14.16394,71.352036,40.6915
--17.8752,-18.0614,-16.4787,-14.1512,69.88086,39.748
--18.34658,-18.5367,-16.92068,-14.54418,71.352036,40.7288
--17.41825,-17.689,-16.15475,-13.8985,67.750675,39.577
--17.97216,-18.34464,-16.7616,-14.52672,69.895872,39.888
--18.72486,-19.20996,-17.56062,-15.23214,72.823212,40.621
--17.6016,-18.0576,-16.5984,-14.136,68.45472,39.888
--19.107,-19.602,-18.018,-15.147,74.3094,41.0355
--19.107,-19.602,-18.117,-15.345,74.3193,41.5305
--17.78495,-18.33785,-16.9556,-14.09895,69.16779,40.4102
--17.97216,-18.43776,-17.13408,-14.34048,69.895872,40.2065
--18.335,-18.81,-17.575,-14.725,71.307,39.577
--18.721,-19.303,-17.945,-15.035,72.8179,41.74
--18.34658,-18.91694,-17.68116,-14.63924,71.361542,41.013
--18.914,-19.6,-18.228,-15.092,73.5686,41.56
--17.9683,-18.62,-17.3166,-14.6167,69.88086,39.748
--18.528,-19.2,-17.952,-15.072,72.0672,41.95
--18.34658,-19.012,-17.77622,-14.63924,71.361542,40.8268
--18.914,-19.6,-18.424,-15.288,73.5588,40.8268
--18.721,-19.4,-18.236,-15.035,72.8082,40.3132
--19.107,-19.8,-18.612,-15.642,74.3193,41.74
--18.914,-19.698,-18.424,-15.288,73.5686,41.1992
--18.34272,-19.19808,-17.96256,-14.92128,71.337024,40.3584
--18.15937,-18.91209,-17.78301,-14.96031,70.633363,40.6915
--18.72486,-19.59804,-18.33678,-15.42618,72.832914,41.8275
--18.15937,-18.91209,-17.8771,-14.67804,70.623954,40.0998
--18.335,-19.095,-18.05,-14.915,71.3165,41.85
--18.15744,-19.00416,-17.8752,-14.67648,70.616448,41.405
--18.34272,-19.19808,-18.0576,-14.92128,71.346528,41.3226
--17.9683,-18.8062,-17.689,-14.7098,69.89017,40.9052
--18.44164,-19.20212,-18.0614,-15.11454,71.361542,40.8366
--17.78495,-18.6143,-17.60065,-14.65185,69.177005,39.9285
--17.78495,-18.70645,-17.60065,-14.5597,69.177005,39.748
--17.6016,-18.5136,-17.4192,-14.5008,68.46384,40.3488
--18.914,-19.894,-18.718,-15.582,73.5686,41.111
--17.8771,-18.70645,-17.60065,-14.65185,69.16779,39.9285
--18.0614,-18.8993,-17.7821,-14.4305,69.88086,39.8525
--17.8771,-18.70645,-17.60065,-14.46755,69.177005,39.9285
--18.06528,-18.90336,-17.87904,-14.8992,69.905184,40.56
--18.06528,-18.90336,-17.87904,-15.17856,69.905184,40.4544
--18.06528,-18.99648,-17.87904,-14.71296,69.905184,40.5848
--18.818,-19.788,-18.624,-15.423,72.8179,41.95
--18.44164,-19.39224,-18.25152,-15.2096,71.352036,41.1894
--18.25152,-19.19232,-18.15744,-15.24096,70.625856,40.8268
--18.43776,-19.38816,-18.34272,-15.39648,71.346528,40.176
--18.06528,-18.99648,-17.97216,-14.99232,69.905184,40.0704
--18.25152,-19.2864,-18.15744,-15.14688,70.625856,40.0704
--18.43,-19.475,-18.335,-15.39,71.3165,39.577
--19.206,-20.295,-19.206,-16.137,74.3193,41.2533
--17.6928,-18.696,-17.6928,-14.7744,68.46384,39.653
--18.0614,-19.1786,-18.0614,-15.1753,69.89017,40.8366
--17.8771,-18.9829,-17.8771,-15.02045,69.177005,40.5848
--17.8771,-18.9829,-17.8771,-14.9283,69.177005,39.577
--18.818,-19.982,-18.915,-16.005,72.8179,41.67
--18.06528,-19.18272,-18.1584,-15.17856,69.988992,40.2065
--17.8771,-19.07505,-17.96925,-15.02045,69.177005,39.482
--18.25152,-19.47456,-18.3456,-15.33504,70.625856,40.621
--18.25152,-19.47456,-18.3456,-15.42912,70.719936,41.013
--18.25152,-19.47456,-18.3456,-15.42912,70.625856,40.7288
--18.82188,-20.08314,-19.01592,-15.71724,72.823212,41.1444
--18.44164,-19.77248,-18.63176,-15.49478,71.361542,40.7288
--18.818,-20.176,-19.012,-15.908,72.8179,40.0222
--18.63176,-19.97632,-18.82384,-15.8466,72.097228,40.621
--17.5085,-18.772,-17.689,-14.801,67.8319,39.577
--17.8771,-19.1672,-18.0614,-15.2969,69.177005,39.577
--18.43,-19.76,-18.715,-15.675,71.3165,39.273
--17.6928,-18.9696,-17.9664,-15.048,68.46384,39.5865
--18.62982,-19.97424,-18.91791,-15.84495,72.089721,40.9266
--18.44164,-19.77248,-18.72682,-15.87502,71.447096,40.2065
--19.206,-20.592,-19.503,-16.434,74.4084,41.45
--18.9189,-20.27718,-19.11294,-15.91128,72.920232,40.621
--18.7278,-19.59216,-17.47928,-16.3268,72.097228,40.621
--18.1584,-17.97216,-15.55104,-16.20288,69.895872,40.4878
--19.305,-18.117,-15.246,-16.731,74.4084,41.3226
--18.72,-16.8,-14.016,-16.224,72.0768,41.96
--18.1584,-15.73728,-12.85056,-15.17856,69.988992,40.0704
--18.72585,-17.86158,-14.69259,-14.59656,72.080118,40.4102
--18.525,-18.43,-15.485,-15.01,71.402,39.653
--18.72,-18.816,-16.032,-15.072,72.1536,41.74
--17.9712,-18.06336,-15.57504,-14.00832,69.267456,40.176
--19.5,-19.6,-17.1,-15.1,75.17,41.96
--17.9712,-17.9712,-15.85152,-13.91616,69.267456,40.176
--18.5328,-18.43776,-16.53696,-14.54112,71.432064,40.272
--19.5,-19.5,-17.5,-15,75.17,41.96
--17.59875,-17.59875,-15.884,-13.357,67.8319,40.242
--17.784,-17.784,-16.1424,-13.7712,68.54592,40.1375
--18.5328,-18.5328,-16.91712,-14.35104,71.441568,40.3584
--18.1545,-18.2476,-16.6649,-14.3374,69.97396,41.405
--19.11,-19.306,-17.64,-15.288,73.6666,41.405
--18.72,-19.008,-17.376,-14.784,72.1632,40.6656
--18.525,-18.81,-17.29,-14.63,71.4115,42.25
--18.72,-19.104,-17.568,-14.976,72.1536,40.7424
--18.1545,-18.5269,-17.0373,-14.3374,69.98327,41.8068
--18.5367,-18.91694,-17.49104,-14.82936,71.447096,41.3705
--17.96925,-18.33785,-17.04775,-14.46755,69.25994,40.698
--18.5367,-19.012,-17.5861,-14.82936,71.447096,42.7672
--18.1545,-18.62,-17.3166,-14.5236,69.97396,42.1988
--18.33975,-18.81,-17.4933,-14.8599,70.68798,40.983
--18.9189,-19.404,-18.14274,-15.23214,72.920232,42.6294
--18.1584,-18.71712,-17.41344,-14.52672,69.998304,41.4144
--18.3456,-18.91008,-17.68704,-14.86464,70.710528,41.3376
--19.5,-20.1,-18.8,-15.7,75.16,43.06
--17.784,-18.4224,-17.2368,-14.5008,68.54592,41.1264
--18.525,-19.19,-17.955,-15.01,71.402,40.907
--18.915,-19.594,-18.333,-15.326,72.9052,42.0495
--17.784,-18.4224,-17.328,-14.4096,68.54592,41.3376
--18.72,-19.392,-18.24,-15.168,72.1536,41.232
--18.7278,-19.49612,-18.2476,-15.17432,72.193268,43.1592
--19.5,-20.3,-19,-15.7,75.16,43.75
--19.5,-20.3,-19.1,-15.8,75.16,44.34
--19.5,-20.3,-19.1,-15.8,75.16,43.64
--19.11,-19.894,-18.718,-15.582,73.6568,43.75
--17.96925,-18.70645,-17.60065,-14.5597,69.25994,41.3535
--19.11195,-19.89603,-18.71991,-15.48558,73.664316,42.9165
--18.72,-19.488,-18.336,-15.264,72.1536,43.53
--18.915,-19.691,-18.527,-15.326,72.9052,43.45
--17.9712,-18.70848,-17.69472,-14.7456,69.276672,41.7888
--17.784,-18.5136,-17.5104,-14.592,68.55504,41.3535
--19.5,-20.4,-19.2,-16,75.17,43.75
--18.82384,-19.59216,-18.43968,-15.46244,72.193268,42.9828
--17.96925,-18.7986,-17.78495,-14.65185,69.25994,42.5442
--17.96925,-18.7986,-17.78495,-14.65185,69.25994,41.458
--18.525,-19.38,-18.335,-15.39,71.402,43.64
--18.5367,-19.39224,-18.34658,-15.39972,71.447096,43.267
--17.96925,-18.89075,-17.78495,-14.65185,69.269155,41.743
--18.9189,-19.79208,-18.72486,-15.5232,72.920232,42.581
--18.62784,-19.4832,-18.34272,-15.39648,71.432064,42.4608
--18.72,-19.68,-18.528,-15.552,72.1632,41.4144
--18.44164,-19.28845,-18.25346,-15.33667,70.727453,42.3308
--19.01592,-19.8891,-18.82188,-15.5232,72.920232,42.9828
--18.9189,-19.8891,-18.82188,-15.62022,72.920232,42.7086
--18.62,-19.475,-18.43,-15.39,71.402,43.94
--18.06336,-18.8928,-17.87904,-14.92992,69.276672,43.2384
--18.72,-19.68,-18.624,-15.264,72.1632,42
--18.816,-19.68,-18.624,-15.456,72.1536,42.384
--18.63176,-19.4873,-18.44164,-15.30466,71.447096,42.7672
--18.5367,-19.58236,-18.5367,-15.30466,71.456602,42.1988
--17.9712,-18.98496,-17.9712,-14.7456,69.267456,41.8944
--19.012,-19.982,-18.818,-15.811,72.9149,44.45
--19.012,-19.982,-18.915,-15.617,72.9052,43.75
--18.62784,-19.57824,-18.5328,-15.2064,71.432064,41.712
--19.208,-20.188,-19.11,-16.072,73.6666,42.9828
--18.43968,-19.38048,-18.3456,-15.0528,70.719936,41.7216
--18.2476,-19.1786,-18.1545,-15.0822,69.98327,41.5625
--18.0614,-19.07505,-17.96925,-14.83615,69.25994,41.458
--18.62,-19.665,-18.525,-15.2,71.4115,43.36
--19.012,-19.982,-18.915,-15.811,72.9149,43.24
--18.816,-19.872,-18.816,-15.456,72.1536,43.06
--18.62784,-19.67328,-18.62784,-15.2064,71.441568,41.712
--19.01592,-20.08314,-19.01592,-15.5232,72.929934,42.483
--18.0614,-19.07505,-18.0614,-14.83615,69.25994,41.0875
--18.63176,-19.67742,-18.63176,-15.30466,71.456602,42.2772
--18.816,-19.872,-18.816,-15.552,72.1536,41.52
--19.208,-20.188,-19.208,-15.974,73.6568,42.65
--18.62784,-19.57824,-18.62784,-15.39648,71.441568,44.3025
--18.62,-19.665,-18.62,-15.295,71.402,48.15
--18.62,-19.665,-18.62,-15.485,71.402,42.84
--18.63176,-19.67742,-18.63176,-15.49478,71.447096,42.2772
--17.8752,-18.8784,-17.8752,-14.8656,68.54592,42.788
--18.82384,-19.88028,-18.82384,-15.46244,72.193268,43.3454
--17.8752,-18.8784,-17.8752,-14.7744,68.54592,41.1825
--18.43968,-19.56864,-18.43968,-15.42912,70.710528,42.7672
--19.01592,-20.08314,-19.01592,-15.71724,72.920232,42.6294
--18.43968,-19.47456,-18.53376,-15.24096,70.710528,42.384
--19.404,-20.592,-19.404,-16.137,74.4084,44.1936
--18.62784,-19.67328,-18.72288,-15.49152,71.432064,43.4214
--18.0614,-19.1672,-18.15355,-15.1126,69.269155,42.2241
--18.0614,-19.1672,-18.15355,-14.9283,69.25994,42.6218
--19.6,-20.8,-19.6,-16.3,75.17,44.45
--19.503,-20.592,-19.503,-16.038,74.4183,43.86
--19.503,-20.592,-19.503,-16.038,74.4084,43.0254
--18.72682,-19.77248,-18.72682,-15.39972,71.456602,42.581
--19.503,-20.592,-19.503,-16.137,74.4183,43.0947
--17.77925,-18.772,-17.77925,-14.801,67.840925,41.458
--19.11294,-20.18016,-19.11294,-15.81426,72.920232,42.483
--18.52785,-19.5624,-18.52785,-15.33015,70.68798,40.8025
--18.44164,-19.57072,-18.53573,-15.33667,70.812134,41.8458
--18.3407,-19.3648,-18.3407,-15.1753,70.06706,41.0875
--18.72288,-19.76832,-18.72288,-15.49152,71.527104,42.9165
--19.7,-20.8,-19.7,-16.2,75.26,43.14
--18.53573,-19.57072,-18.53573,-15.43076,70.812134,41.5645
--19.109,-20.176,-19.109,-15.908,73.0022,42.84
--19.109,-20.176,-19.206,-15.714,73.0022,41.7682
--18.52785,-19.5624,-18.6219,-15.51825,70.78203,40.907
--17.9664,-18.9696,-18.0576,-14.8656,68.63712,41.2775
--18.52785,-19.5624,-18.6219,-15.4242,70.791435,42.9165
--18.15355,-19.1672,-18.2457,-15.1126,69.35209,42.0495
--17.77925,-18.772,-17.77925,-14.89125,67.92215,40.907
--19.306,-20.482,-19.404,-16.072,73.7548,43.24
--18.72682,-19.77248,-18.82188,-15.6849,71.551662,42.0592
--18.15355,-19.25935,-18.2457,-15.02045,69.35209,40.907
--18.72682,-19.86754,-18.82188,-15.49478,71.551662,41.5548
--18.91791,-20.07027,-19.01394,-15.65289,72.272178,41.5548
--18.3407,-19.3648,-18.4338,-15.2684,70.06706,40.983
--17.77925,-18.772,-17.8695,-14.89125,67.92215,41.0875
--19.109,-20.176,-19.109,-15.908,73.0022,43.25
--18.715,-19.855,-18.81,-15.675,71.497,42.95
--18.715,-19.855,-18.81,-15.58,71.497,42.76
--18.72682,-19.77248,-18.72682,-15.58984,71.551662,41.9146
--18.91791,-19.97424,-19.01394,-15.74892,72.272178,42.6294
--18.715,-19.855,-18.81,-15.58,71.497,43.06
--18.912,-20.064,-19.008,-15.84,72.2496,41.712
--19.11294,-20.27718,-19.20996,-15.81426,73.017252,42.6294
--19.306,-20.482,-19.404,-16.17,73.7548,43.14
--18.62982,-19.66481,-18.62982,-15.33667,70.812134,41.5548
--19.404,-20.482,-19.404,-16.17,73.7548,42.95
--18.2457,-19.25935,-18.2457,-14.83615,69.35209,40.622
--18.62784,-19.09824,-16.9344,-16.08768,70.814016,41.1264
--18.81792,-18.15264,-15.6816,-16.44192,71.527104,40.8384
--18.62982,-17.03029,-14.48986,-16.46575,70.812134,41.4772
--18.81792,-16.53696,-13.7808,-17.01216,71.527104,40.944
--18.81792,-15.96672,-13.11552,-16.44192,71.527104,42.3324
--19.40598,-18.32787,-14.89752,-14.99553,73.762326,42.8175
--19.008,-18.624,-15.552,-14.976,72.2496,41.1264
--18.4338,-18.2476,-15.4546,-14.1512,70.06706,40.907
--18.62784,-18.43968,-15.89952,-14.30016,70.804608,41.136
--17.8695,-17.59875,-15.43275,-13.5375,67.92215,40.7075
--19.20996,-18.9189,-16.68744,-14.45598,73.017252,42.3324
--19.008,-18.624,-16.608,-14.4,72.2496,41.0496
--18.81792,-18.43776,-16.53696,-14.16096,71.527104,40.9536
--18.81792,-18.43776,-16.632,-14.256,71.536608,40.848
--19.01592,-18.63176,-16.90304,-14.406,72.279704,41.8068
--18.81,-18.525,-16.815,-14.535,71.5065,42.44
--18.4338,-18.2476,-16.5718,-14.2443,70.06706,40.318
--18.6219,-18.52785,-16.83495,-14.4837,70.78203,42.3324
--18.43776,-18.34464,-16.85472,-14.24736,70.082112,41.5548
--19.602,-19.602,-17.919,-15.147,74.5074,42.55
--17.8695,-17.8695,-16.4255,-13.80825,67.92215,40.5175
--19.20996,-19.11294,-17.75466,-15.13512,73.017252,42.5205
--18.2457,-18.2457,-16.86345,-14.28325,69.35209,41.5548
--19.008,-19.008,-17.664,-14.976,72.2496,41.1264
--18.43776,-18.53088,-17.13408,-14.4336,70.082112,41.3705
--18.2457,-18.33785,-17.04775,-14.46755,69.35209,40.318
--18.24768,-18.432,-17.0496,-14.2848,69.368832,41.0496
--18.24768,-18.33984,-17.14176,-14.37696,69.359616,40.944
--18.43776,-18.53088,-17.32032,-14.4336,70.082112,41.1264
--19.206,-19.303,-18.042,-14.938,73.0022,42.95
--19.206,-19.303,-18.139,-15.132,73.0022,41.1668
--18.62982,-18.818,-17.59483,-14.77213,70.812134,41.3802
--18.62784,-18.816,-17.68704,-14.77056,70.804608,40.944
--18.81,-19,-17.86,-14.63,71.497,42.54
--19.8,-20,-18.8,-15.6,75.26,42.66
--19.404,-19.6,-18.424,-15.19,73.7646,41.5128
--19.206,-19.4,-18.236,-15.132,73.0022,41.3705
--18.6219,-18.81,-17.6814,-14.57775,70.78203,40.4225
--19.01394,-19.30203,-18.14967,-15.17274,72.272178,42.2334
--19.008,-19.296,-18.144,-15.072,72.2496,42.95
--19.404,-19.698,-18.522,-15.288,73.7548,42.65
--19.40598,-19.70001,-18.52389,-15.38757,73.762326,42.4116
--18.4338,-18.7131,-17.5959,-14.3374,70.06706,40.5175
--19.01592,-19.30404,-18.2476,-15.17432,72.279704,41.797
--19.008,-19.296,-18.24,-15.072,72.2592,40.848
--18.81792,-19.10304,-18.0576,-15.01632,71.527104,40.848
--19.01394,-19.39806,-18.2457,-14.98068,72.272178,41.4772
--19.01394,-19.39806,-18.2457,-14.88465,72.272178,41.1668
--17.8695,-18.2305,-17.1475,-14.2595,67.92215,40.5175
--18.62784,-18.91008,-17.8752,-14.67648,70.804608,41.0496
--19.602,-19.899,-18.81,-15.543,74.5074,42.4116
--19.008,-19.392,-18.24,-15.264,72.2496,40.944
--18.62784,-19.00416,-17.8752,-14.86464,70.804608,42.091
--18.4338,-18.8062,-17.7821,-14.8029,70.06706,40.907
--18.81792,-19.29312,-18.15264,-15.11136,71.527104,40.944
--19.01394,-19.49409,-18.34173,-15.26877,72.272178,41.5548
--18.0576,-18.5136,-17.4192,-14.5008,68.63712,41.5625
--18.81792,-19.29312,-18.15264,-14.92128,71.527104,41.1264
--17.8695,-18.32075,-17.23775,-14.34975,67.92215,40.8025
--18.4338,-18.8993,-17.8752,-14.7098,70.06706,42.1988
--19.01394,-19.49409,-18.43776,-15.07671,72.272178,42.7086
--18.62784,-19.09824,-18.06336,-14.95872,70.804608,41.9832
--19.206,-19.691,-18.624,-15.229,73.0119,41.9525
--18.6219,-19.09215,-18.0576,-14.76585,70.78203,42.1245
--19.8,-20.3,-19.2,-15.8,75.26,42.55
--18.2457,-18.70645,-17.6928,-14.65185,69.35209,41.5548
--19.008,-19.488,-18.432,-15.36,72.2496,41.232
--18.81,-19.38,-18.24,-15.01,71.497,40.622
--18.43776,-18.99648,-17.87904,-14.80608,70.082112,41.6615
--18.81792,-19.29312,-18.34272,-15.2064,71.527104,41.232
--18.81792,-19.38816,-18.24768,-15.11136,71.527104,41.0496
--18.43776,-18.99648,-17.97216,-14.8992,70.082112,41.1668
--19.404,-19.992,-18.914,-15.582,73.7548,42.76
--18.81792,-19.38816,-18.24768,-15.11136,71.527104,40.944
--19.602,-20.196,-19.008,-15.741,74.5074,42.0156
--18.2457,-18.7986,-17.78495,-14.744,69.35209,40.622
--19.40598,-19.89603,-18.81792,-15.48558,73.762326,42.2235
--19.20996,-19.79208,-18.72486,-15.5232,72.920232,42.4116
--18.43776,-18.99648,-17.97216,-14.8992,70.082112,41.1264
--17.8695,-18.411,-17.41825,-14.34975,67.840925,40.1375
--18.0576,-18.6048,-17.6016,-14.6832,68.55504,40.1375
--19.20996,-19.79208,-18.72486,-15.32916,72.929934,41.503
--18.62982,-19.19436,-18.15937,-14.96031,70.727453,42.1465
--19.008,-19.584,-18.528,-15.168,72.1632,42.35
--19.01394,-19.59012,-18.53379,-15.46083,72.176148,41.6097
--19.20996,-19.79208,-18.72486,-15.42618,72.920232,43.7085
--18.62784,-19.2864,-18.15744,-14.95872,70.710528,43.659
--18.2457,-18.7986,-17.78495,-14.744,69.269155,42.0495
--19.20996,-19.8891,-18.72486,-15.42618,72.929934,42.3324
--18.43776,-19.0896,-17.97216,-14.99232,69.998304,40.7424
--18.62784,-19.2864,-18.25152,-14.95872,70.710528,41.7888
--18.81,-19.475,-18.43,-15.39,71.402,42.84
--18.62982,-19.28845,-18.25346,-14.96031,70.718044,41.4772
--18.2457,-18.89075,-17.8771,-14.65185,69.25994,41.4772
--18.4338,-19.0855,-18.0614,-14.896,69.97396,41.9048
--18.2457,-18.89075,-17.8771,-14.9283,69.25994,40.413
--19.602,-20.295,-19.206,-15.84,74.4084,42.7086
--19.01394,-19.68615,-18.62982,-15.3648,72.185751,41.9525
--18.2457,-18.89075,-17.8771,-14.83615,69.25994,41.6615
--18.4338,-19.0855,-18.0614,-14.896,69.98327,42.3752
--19.404,-20.09,-19.012,-15.68,73.6568,43.53
--19.01394,-19.68615,-18.62982,-15.3648,72.176148,43.5996
--19.008,-19.68,-18.624,-15.264,72.0576,40.3488
--19.404,-20.09,-19.012,-15.582,73.5686,41.9048
--18.62784,-19.2864,-18.25152,-15.0528,70.625856,42.5664
--19.602,-20.295,-19.206,-15.84,74.3193,43.86
--19.20996,-19.8891,-18.82188,-15.62022,72.842616,43.5708
--18.6219,-19.28025,-18.2457,-15.048,70.603335,44.7975
--18.62784,-19.2864,-18.25152,-15.14688,70.625856,41.232
--18.43776,-19.18272,-18.1584,-14.99232,69.812064,44.4648
--19.20996,-19.98612,-18.9189,-15.62022,72.832914,46.1874
--18.62784,-19.2864,-18.3456,-15.14688,70.531776,43.7472
--18.81,-19.57,-18.525,-15.2,71.2215,44.23
--19.602,-20.394,-19.305,-16.137,74.2203,43.2036
--17.8695,-18.5915,-17.59875,-14.34975,67.660425,42.2275
--18.4338,-19.1786,-18.1545,-14.8029,69.80638,42.693
--19.602,-20.295,-19.305,-15.84,74.2203,43.2036
--19.01394,-19.68615,-18.72585,-15.46083,71.993691,42.8255
--17.8695,-18.5915,-17.59875,-14.44,67.660425,42.0185
--19.20996,-19.98612,-18.9189,-15.81426,72.735894,43.5006
--19.008,-19.776,-18.72,-15.552,71.9712,41.7216
--19.20996,-19.98612,-18.9189,-15.71724,72.735894,43.6095
--18.81792,-19.57824,-18.5328,-15.49152,71.251488,43.0947
--18.43776,-19.18272,-18.1584,-14.99232,69.812064,42.384
--18.81,-19.475,-18.43,-15.01,71.2215,44.05
--18.6219,-19.3743,-18.33975,-15.048,70.509285,42.2235
--18.4338,-19.1786,-18.1545,-14.9891,69.79707,44.6292
--18.0576,-18.696,-17.784,-14.6832,68.37264,43.168
--18.0576,-18.7872,-17.784,-14.7744,68.37264,43.1328
--19.20996,-19.98612,-18.9189,-15.71724,72.735894,43.5996
--18.81,-19.57,-18.525,-15.39,71.2215,41.5625
--18.4338,-19.1786,-18.1545,-14.896,69.70397,43.6688
--18.62784,-19.38048,-18.3456,-15.14688,70.531776,42.581
--18.2457,-18.9829,-17.96925,-14.744,69.084855,41.9525
--19.20996,-19.98612,-18.9189,-15.5232,72.735894,42.9165
--19.404,-20.188,-19.11,-15.68,73.4706,43.6688
--19.01394,-19.78218,-18.72585,-15.55686,71.897661,41.5548
--18.4338,-19.1786,-18.1545,-15.0822,69.70397,41.1825
--19.01394,-19.78218,-18.72585,-15.55686,71.897661,42.7285
--18.6219,-19.3743,-18.33975,-15.14205,70.415235,43.548
--19.8,-20.6,-19.5,-16,74.87,45.84
--18.62784,-19.38048,-18.3456,-15.14688,70.447104,44.639
--19.206,-19.982,-18.915,-15.52,72.5366,46.7055
--18.81,-19.57,-18.525,-15.295,71.1265,46.84
--18.2457,-18.9829,-17.96925,-14.83615,68.900555,46.968
--18.2457,-18.9829,-17.96925,-14.83615,68.90977,49.6931
--18.6219,-19.3743,-18.33975,-14.95395,70.33059,53.1927
--19.206,-19.982,-18.915,-15.52,72.5366,52.54
--19.404,-20.188,-19.11,-15.778,73.2844,53.5472
--18.2457,-18.9829,-17.96925,-14.83615,68.900555,55.043
--18.43776,-19.18272,-18.1584,-14.8992,69.635136,57.6568
--19.008,-19.776,-18.72,-15.456,71.7792,52.3488
--18.4338,-19.1786,-18.1545,-15.0822,69.62018,57.209
--19.20996,-19.98612,-18.9189,-15.5232,72.454536,56.2716
--18.62982,-19.38254,-18.34755,-15.24258,70.360502,60.2661
--19.01394,-19.78218,-18.72585,-15.46083,71.811234,66.4488
--18.53088,-19.18272,-18.1584,-15.08544,69.635136,70.2474
--18.2457,-18.9829,-17.96925,-14.744,69.00192,74.746
--18.4338,-19.1786,-18.1545,-15.0822,69.71328,80.6344
--18.1488,-18.7872,-17.784,-14.7744,68.29056,80.4288
--18.905,-19.57,-18.525,-15.295,71.2215,87.38
--18.43776,-19.18272,-18.1584,-14.99232,69.812064,84.384
--18.72192,-19.2864,-18.3456,-15.0528,70.531776,85.6224
--18.72192,-19.2864,-18.3456,-15.24096,70.625856,88.6998
--18.53088,-19.18272,-18.1584,-14.99232,70.082112,89.1624
--18.33984,-18.98496,-17.9712,-14.83776,69.543936,88.7328
--18.72391,-19.28845,-18.34755,-15.14849,71.179085,90.4234
--19.404,-20.188,-19.11,-15.876,74.1468,91.5614
--18.905,-19.57,-18.525,-15.2,72.048,93.74
--18.72391,-19.28845,-18.34755,-15.14849,71.348447,91.0248
--19.30698,-19.98612,-18.9189,-15.62022,73.812816,92.2572
--17.95975,-18.5915,-17.59875,-14.6205,68.653175,89.433
--18.72192,-19.38048,-18.3456,-15.0528,71.576064,90.2688
--19.502,-20.188,-19.11,-15.778,74.7446,92.1494
--18.72391,-19.38254,-18.34755,-15.14849,71.677762,90.0548
--19.104,-19.776,-18.72,-15.264,73.4112,83.8176
--19.9,-20.6,-19.5,-16,76.76,85.18
--19.9,-20.6,-19.5,-16.1,76.95,82.39
--19.30698,-19.8891,-18.9189,-15.5232,74.94795,79.3881
--18.905,-19.475,-18.43,-15.2,73.5205,77.59
--19.303,-19.885,-18.915,-15.52,75.2623,74.1274
--19.30698,-19.98612,-18.9189,-15.42618,75.355434,74.1609
--18.72192,-19.2864,-18.3456,-14.95872,73.260096,72.9218
--19.104,-19.68,-18.624,-15.264,74.8512,73.31
--19.502,-20.09,-19.11,-15.68,76.4106,71.9516
--19.10997,-19.68615,-18.72585,-15.55686,74.788164,70.7227
--18.53088,-19.0896,-18.06528,-14.99232,72.512544,70.1952
--19.10997,-19.59012,-18.62982,-15.3648,74.788164,70.9264
--18.71595,-19.1862,-18.2457,-15.048,73.236735,73.1907
--19.303,-19.885,-18.818,-15.423,75.4466,73.31
--17.95975,-18.50125,-17.5085,-14.34975,70.19645,69.1885
--18.91296,-19.4832,-18.43776,-15.2064,73.922112,71.0919
--19.10997,-19.59012,-18.62982,-15.46083,74.692134,70.6167
--19.701,-20.196,-19.107,-15.741,77.0022,69.8247
--19.50399,-19.99404,-19.01394,-15.58359,76.134168,68.6268
--18.91296,-19.38816,-18.34272,-15.11136,73.827072,67.2192
--19.50399,-19.99404,-18.91593,-15.6816,76.134168,68.9139
--18.72192,-19.19232,-18.15744,-14.95872,73.175424,68.7274
--19.701,-20.196,-19.107,-15.642,76.9032,69.72
--19.502,-19.992,-18.914,-15.582,76.1264,69.94
--18.53088,-18.99648,-17.97216,-14.71296,72.335616,67.3471
--18.53088,-18.99648,-17.97216,-14.61984,72.335616,66.9591
--19.303,-19.788,-18.721,-15.326,75.3496,69.72
--19.10997,-19.59012,-18.53379,-15.17274,74.605707,71.0127
--18.72192,-19.09824,-18.15744,-14.86464,73.081344,70.4816
--19.701,-20.097,-19.008,-15.741,76.9131,72.1017
--18.91296,-19.29312,-18.24768,-15.11136,73.827072,73.557
--18.91296,-19.29312,-18.24768,-15.11136,73.827072,72.9729
--18.33785,-18.70645,-17.6928,-14.5597,71.591335,70.5945
--19.303,-19.691,-18.624,-15.423,75.3496,75.32
--19.30698,-19.69506,-18.62784,-15.23214,75.365136,74.4996
--19.502,-19.894,-18.816,-15.484,76.0382,72.5298
--18.91694,-19.29718,-18.25152,-14.92442,73.747548,75.754
--17.95975,-18.32075,-17.328,-14.16925,70.01595,77.33
--18.53088,-18.90336,-17.87904,-14.61984,72.251808,80.8224
--18.33785,-18.70645,-17.6928,-14.65185,71.48997,83.0223
--18.1488,-18.5136,-17.5104,-14.2272,70.84416,84.8832
--19.303,-19.691,-18.624,-15.326,75.4466,87.9111
--19.11196,-19.40008,-18.34364,-15.07828,74.613476,86.044
--19.502,-19.894,-18.816,-15.484,76.3224,83.3
--18.1488,-18.5136,-17.5104,-14.3184,71.11776,80.2656
--18.1488,-18.5136,-17.4192,-14.2272,71.20896,76.8096
--18.1488,-18.4224,-17.4192,-14.3184,71.38224,74.9645
--19.10997,-19.39806,-18.34173,-14.98068,75.249108,74.5154
--17.95975,-18.2305,-17.23775,-14.079,70.81015,72.979
--19.50399,-19.79802,-18.71991,-15.19155,76.898646,73.5669
--19.50399,-19.70001,-18.6219,-15.28956,76.898646,73.8738
--19.104,-19.296,-18.24,-15.072,75.3216,74.71
--19.50399,-19.70001,-18.6219,-15.28956,76.898646,74.2797
--18.905,-19.095,-18.05,-15.01,74.537,71.2785
--19.701,-19.899,-18.81,-15.345,77.6754,73.8837
--19.502,-19.698,-18.62,-15.19,76.8908,72.2456
--18.53088,-18.71712,-17.6928,-14.34048,73.061952,70.2571
--18.91296,-19.10304,-18.0576,-14.82624,74.568384,71.0919
--18.1488,-18.3312,-17.2368,-14.0448,71.55552,67.3835
--19.104,-19.296,-18.24,-14.88,75.2256,70.72
--19.30698,-19.50102,-18.4338,-14.94108,76.034574,68.5412
--19.104,-19.296,-18.144,-14.784,75.2352,66.096
--18.905,-19,-17.955,-14.82,74.4515,69.94
--18.53088,-18.624,-17.59968,-14.52672,72.978144,67.5314
--18.905,-19,-17.955,-14.915,74.4515,69.73
--18.91694,-19.012,-17.96634,-14.82936,74.489016,68.3354
--19.11196,-19.208,-18.15156,-14.98224,75.266548,68.1492
--18.5269,-18.62,-17.5959,-14.4305,72.95316,68.0414
--19.701,-19.8,-18.711,-15.246,77.5764,68.7357
--19.30698,-19.404,-18.23976,-14.84406,76.024872,67.6494
--19.206,-19.10997,-18.05364,-14.69259,75.258711,67.9536
--19.10997,-19.10997,-18.05364,-14.59656,75.258711,67.7556
--18.33785,-18.33785,-17.3242,-14.1911,72.217955,64.8185
--19.9,-19.9,-18.8,-15.4,78.37,68.04
--18.905,-18.905,-17.86,-14.725,74.442,64.2485
--19.30698,-19.404,-18.23976,-14.84406,76.034574,66.7557
--18.91296,-18.91296,-17.86752,-14.63616,74.473344,66.6666
--18.91694,-18.91694,-17.87128,-14.44912,74.489016,65.1161
--18.5269,-18.5269,-17.4097,-14.1512,72.95316,65.7874
--19.104,-19.008,-17.952,-14.496,75.2352,64.2624
--18.905,-18.81,-17.765,-14.535,74.537,66.64
--18.33984,-18.24768,-17.23392,-13.91616,72.216576,63.696
--19.502,-19.404,-18.326,-14.896,76.7928,64.5134
--19.50399,-19.40598,-18.32787,-14.89752,76.898646,64.9737
--19.104,-19.008,-17.952,-14.688,75.4176,62.7168
--18.53088,-18.43776,-17.41344,-14.24736,73.23888,63.1858
--19.10997,-19.01394,-17.95761,-14.59656,75.662037,64.0926
--18.905,-18.81,-17.67,-14.44,74.936,61.218
--18.5269,-18.3407,-17.3166,-14.0581,73.53038,62.7592
--19.104,-18.912,-17.856,-14.592,75.9168,63.83
--18.72192,-18.53376,-17.49888,-14.20608,74.389056,62.5534
--18.905,-18.62,-17.67,-14.155,75.1165,63.83
--18.91694,-18.63176,-17.5861,-14.35406,75.163942,61.9151
--18.91694,-18.72682,-17.68116,-14.35406,75.173448,61.8375
--18.91694,-18.82188,-17.68116,-14.259,75.173448,62.3672
--18.71595,-18.52785,-17.4933,-14.01345,74.365335,63.0036
--19.502,-19.306,-18.13,-14.7,77.4984,63.35
--19.303,-19.012,-17.945,-14.55,76.6979,62.43
--19.502,-19.208,-18.13,-14.7,77.4984,61.2892
--19.10997,-18.82188,-17.76555,-14.50053,75.940524,62.1027
--18.72192,-18.43968,-17.4048,-14.112,74.398464,61.1814
--18.72192,-18.53376,-17.4048,-14.30016,74.304384,59.9328
--18.33785,-18.0614,-17.04775,-13.8225,72.78007,62.1285
--19.303,-19.012,-17.945,-14.55,76.5233,64.52
--18.91694,-18.63176,-17.49104,-14.259,74.983328,61.8375
--18.53088,-18.25152,-17.13408,-13.78176,73.462368,61.9488
--18.91694,-18.5367,-17.49104,-14.259,74.897774,69.1901
--18.53088,-18.06528,-17.13408,-13.968,73.453056,70.2571
--17.8695,-17.59875,-16.606,-13.62775,71.107975,71.9435
--19.8,-19.6,-18.4,-15,78.78,75.03
--19.303,-19.012,-17.848,-14.55,76.4166,75.3787
--19.20996,-18.9189,-17.85168,-14.65002,76.315932,73.7156
--18.4338,-18.1545,-17.1304,-13.8719,73.22315,75.8618
--18.6219,-18.33975,-17.3052,-14.20155,73.97973,73.8245
--18.0576,-17.6928,-16.6896,-13.4064,71.7288,74.9856
--19.008,-18.528,-17.568,-14.208,75.4176,74.88
--18.62784,-18.25152,-17.21664,-14.112,73.909248,76.2538
--18.62784,-18.3456,-17.21664,-13.92384,73.909248,70.7756
--19.008,-18.72,-17.568,-14.4,75.4176,72.3168
--18.6219,-18.2457,-17.21115,-13.9194,73.876275,72.0195
--18.82188,-18.44164,-17.39598,-14.16394,74.679136,72.9634
--18.4338,-17.9683,-17.0373,-13.6857,73.13936,72.6085
--19.602,-19.107,-18.018,-14.652,77.7843,76.91
--18.4338,-17.9683,-16.9442,-13.8719,73.13936,74.9645
--18.81792,-18.43776,-17.29728,-13.97088,74.663424,78.2496
--18.82188,-18.44164,-17.30092,-14.06888,74.679136,81.144
--19.404,-19.012,-17.836,-14.406,76.9888,84.6
--18.6219,-18.2457,-17.1171,-13.82535,73.88568,78.6695
--18.4338,-17.9683,-16.9442,-13.5926,73.22315,80.2816
--18.81,-18.24,-17.195,-13.775,74.8505,80.6
--19.01592,-18.43968,-17.38324,-14.30996,75.765956,78.5176
--19.20996,-18.82188,-17.65764,-14.553,76.539078,76.0578
--18.81792,-18.5328,-17.29728,-14.06592,74.967552,74.6976
--18.43776,-18.06528,-16.94784,-13.22304,73.462368,72.6048
--18.72682,-18.34658,-17.20586,-13.59358,74.983328,71.7994
--18.0576,-17.5104,-16.5072,-13.3152,71.93856,70.034
--18.52785,-17.96355,-17.02305,-13.44915,74.28069,69.2645
--18.3407,-17.689,-16.758,-13.3133,73.53038,70.4914
--18.53376,-17.78112,-16.9344,-13.54752,74.304384,68.4432
--18.72288,-17.96256,-17.01216,-13.68576,75.062592,67.8447
--18.53573,-17.78301,-16.84211,-13.64305,74.312282,65.7951
--18.3407,-17.689,-16.6649,-13.4064,73.53038,64.353
--18.912,-18.336,-17.184,-14.112,75.8208,64.7328
--17.77925,-17.23775,-16.245,-13.1765,71.27945,64.353
--18.91791,-18.43776,-17.18937,-14.02038,75.844494,65.7078
--19.7,-19.1,-17.9,-14.3,78.98,66.72
--18.53573,-17.8771,-16.84211,-13.73714,74.312282,63.7581
--18.53376,-17.8752,-16.84032,-13.73568,74.304384,66.003
--18.715,-18.145,-17.005,-13.87,75.031,67.63
--19.11294,-18.62784,-17.4636,-14.26194,76.626396,66.787
--19.11294,-18.62784,-17.4636,-14.0679,76.626396,68.2407
--18.52785,-18.0576,-16.929,-13.7313,74.37474,68.1615
--18.53376,-17.96928,-16.84032,-13.54752,74.398464,67.3652
--18.34464,-17.6928,-16.66848,-13.31616,73.639296,66.7845
--18.62,-18.05,-17.005,-13.775,75.126,64.5335
--18.0614,-17.60065,-16.49485,-13.73035,72.87222,64.0585
--18.91988,-18.43968,-17.19116,-14.21392,75.948432,66.4636
--17.9664,-17.5104,-16.416,-13.4064,72.12096,65.0304
--19.012,-18.527,-17.46,-14.065,76.7076,64.6408
--18.25152,-17.78592,-16.66848,-13.59552,73.639296,65.0385
--18.2476,-17.689,-16.6649,-13.4064,73.61417,65.023
--18.4338,-17.8695,-16.83495,-13.7313,74.37474,62.5385
--18.44164,-17.8771,-16.84211,-13.73714,74.406372,63.7678
--18.25152,-17.78592,-16.66848,-13.59552,73.639296,63.4768
--18.25152,-17.87904,-16.66848,-13.59552,73.732416,62.8224
--18.2476,-17.8752,-16.6649,-13.6857,73.71658,64.1312
--18.4338,-17.96355,-16.83495,-13.63725,74.37474,61.9875
--19.208,-18.62,-17.542,-14.112,77.5964,63.6314
--19.208,-18.62,-17.542,-14.21,77.5866,63.3374
--19.01592,-18.4338,-17.36658,-14.35896,76.907754,63.8847
--18.2476,-17.7821,-16.6649,-13.7788,73.89347,60.8475
--18.4338,-18.0576,-16.929,-13.82535,74.741535,63.3105
--18.3456,-18.06336,-16.9344,-13.73568,74.755968,62.6612
--18.5367,-18.15646,-17.01574,-13.68864,75.534676,62.3672
--19.11,-18.62,-17.542,-13.916,77.8806,62.2692
--19.11195,-18.6219,-17.54379,-14.11344,77.888547,63.0036
--18.72,-18.24,-17.184,-13.92,76.2912,61.488
--18.3456,-18.06336,-16.84032,-13.82976,74.765376,63.7728
--19.5,-19.2,-17.9,-14.7,79.47,67.82
--19.5,-19.1,-17.9,-14.5,79.37,69.44
--18.1584,-17.6928,-16.66848,-13.59552,73.909344,64.7281
--18.33975,-17.8695,-16.83495,-13.5432,74.647485,61.6275
--19.11,-18.62,-17.542,-14.21,77.7826,70.65
--18.72585,-18.2457,-17.18937,-14.02038,76.122981,63.5085
--18.72,-18.336,-17.184,-14.112,76.0992,61.74
--18.1584,-17.78592,-16.66848,-13.59552,73.816224,65.3295
--19.11,-18.718,-17.542,-14.21,77.6846,70.3836
--18.525,-18.05,-17.005,-13.965,75.316,72.884
--18.72585,-18.14967,-17.09334,-13.73229,76.036554,66.8621
--18.5328,-17.96256,-16.91712,-13.68576,75.252672,63.1104
--17.5085,-17.1475,-16.15475,-13.26675,71.450925,65.3315
--18.82188,-18.53082,-17.36658,-14.0679,76.810734,64.3174
--18.525,-18.24,-17.005,-13.775,75.2115,59.9735
--17.5085,-17.1475,-16.0645,-12.996,71.450925,59.8025
--18.62982,-18.2457,-17.09334,-13.73229,76.026951,60.1691
--19.012,-18.522,-17.444,-14.014,77.5866,60.8972
--18.82188,-18.4338,-17.26956,-14.0679,76.810734,61.1226
--18.82188,-18.4338,-17.36658,-14.26194,76.810734,60.8256
--18.624,-18.24,-17.088,-13.824,76.0032,59.3664
--18.0614,-17.7821,-16.5718,-13.2202,73.71658,60.5052
--19.012,-18.62,-17.444,-13.916,77.5866,62.04
--18.62982,-18.05364,-17.09334,-13.54023,76.036554,59.7811
--18.63176,-18.05552,-16.99908,-13.73372,76.044472,62.083
--18.44164,-17.87128,-16.92068,-13.59358,75.259002,65.4934
--18.25346,-17.8771,-16.74802,-13.54896,74.500462,64.6505
--18.63176,-18.2476,-17.09512,-13.63768,76.034868,68.3354
--18.624,-18.144,-17.088,-13.728,76.0128,72.63
--18.53379,-18.05364,-16.99731,-13.54023,76.036554,66.2898
--18.914,-18.326,-17.248,-13.818,77.5964,72.1378
--18.721,-18.139,-17.072,-13.677,76.8046,71.3241
--18.15744,-17.59296,-16.65216,-13.54752,74.483136,71.2608
--18.72486,-18.23976,-17.17254,-13.87386,76.907754,72.9828
--18.721,-18.333,-17.169,-13.774,76.7949,71.1204
--18.15744,-17.68704,-16.65216,-13.35936,74.483136,69.6192
--18.15744,-17.59296,-16.55808,-13.1712,74.483136,69.2544
--17.78495,-17.23205,-16.2184,-12.80885,72.96437,70.1601
--18.914,-18.326,-17.248,-13.916,77.5964,70.5894
--18.528,-17.952,-16.896,-13.824,76.0032,67.7088
--19.107,-18.612,-17.424,-14.157,78.3783,68.3496
--18.34272,-17.86752,-16.72704,-13.40064,75.347712,65.7888
--19.107,-18.513,-17.424,-13.761,78.4773,67.8447
--18.914,-18.228,-17.15,-13.818,77.5964,67.767
--17.6016,-16.9632,-15.96,-12.8592,72.21216,66.5285
--17.6016,-17.0544,-15.96,-12.768,72.20304,65.968
--18.15937,-17.59483,-16.46575,-13.36078,74.500462,66.9688
--19.107,-18.513,-17.325,-13.86,78.2892,68.4585
--17.41825,-16.7865,-15.79375,-12.54475,71.3697,65.303
--18.816,-18.228,-17.15,-13.818,77.4004,69.04
--18.816,-18.228,-17.052,-13.72,77.4004,68.85
--19.008,-18.414,-17.325,-13.86,78.1902,67.3596
--18.0576,-17.58735,-16.45875,-13.26105,74.28069,64.8185
--18.06336,-17.59296,-16.464,-13.26528,74.304384,64.8288
--18.25152,-17.68116,-16.6355,-13.21334,75.078388,65.8952
--17.8752,-17.2235,-16.1994,-13.034,73.53038,65.7874
--18.24,-17.575,-16.53,-13.205,75.031,63.6975
--18.43776,-17.86158,-16.70922,-13.63626,75.844494,64.7281
--18.624,-18.139,-16.878,-13.677,76.4166,65.2228
--17.5104,-17.0544,-15.8688,-12.6768,71.93856,64.2624
--18.0576,-17.4933,-16.3647,-12.9789,74.28069,65.9835
--18.06336,-17.4048,-16.36992,-13.07712,74.304384,65.1014
--18.816,-18.13,-17.052,-13.72,77.4984,66.24
--18.816,-18.228,-17.052,-13.72,77.5866,65.44
--18.624,-18.042,-16.878,-13.677,76.8919,65.26
--18.527,-18.042,-16.878,-13.677,76.9889,65.25
--18.909,-18.315,-17.226,-13.563,78.5763,65.14
--17.7821,-17.1304,-16.1063,-12.9409,73.88416,63.7392
--17.96355,-17.3052,-16.27065,-13.07295,74.647485,61.6835
--17.60256,-17.0496,-15.94368,-12.81024,73.147392,62.1504
--18.15264,-17.67744,-16.44192,-13.59072,75.423744,63.7956
--18.53082,-18.04572,-16.78446,-13.67982,76.995072,62.867
--17.7821,-17.2235,-16.1063,-12.8478,73.89347,62.6612
--17.96355,-17.21115,-15.51825,-12.32055,74.647485,60.743
--18.15646,-16.44538,-13.87876,-11.59732,75.449122,61.6338
--18.15264,-15.49152,-12.73536,-10.26432,75.433248,62.4987
--17.7821,-14.3374,-11.6375,-9.0307,73.70727,62.181
--19.1,-14.7,-11.6,-8.7,78.98,63.13
--18.718,-13.916,-10.682,-7.35,77.4886,63.24
--17.8695,-12.88485,-9.5931,-6.2073,74.459385,63.7956
--18.34173,-12.77199,-8.83476,-5.28165,76.026951,62.9045
--17.689,-11.8237,-7.9135,-4.1895,73.62348,62.1908
--17.689,-11.3582,-7.2618,-3.6309,73.62348,61.9875
--18.2476,-11.23668,-6.7228,-3.16932,75.938828,62.6612
--17.8695,-10.43955,-5.92515,-3.0096,74.37474,63.2016
--18.05,-9.785,-5.51,-3.61,75.1165,60.287
--17.8695,-9.0288,-4.98465,-3.9501,74.365335,63.1917
--17.5104,-8.11008,-4.79232,-3.77856,72.870912,62.1504
--18.62,-7.742,-4.606,-3.724,77.4984,66.73
--17.8771,-6.77448,-3.95178,-3.48133,74.396963,64.3595
--17.8695,-6.2073,-3.1977,-2.8215,74.365335,63.3006
--17.77545,-5.36085,-2.4453,-1.97505,74.271285,63.5085
--18.711,-5.049,-1.782,-1.584,78.2892,65.03
--18.522,-4.116,-0.784,-1.176,77.4004,64.74
--18.333,-3.298,0.194,-0.679,76.6009,63.64
--17.5959,-2.3275,1.1172,0,73.61417,65.2092
--17.3242,-1.75085,2.11945,-0.09215,72.770855,66.1055
--17.96256,-1.04544,3.3264,0.38016,75.148128,67.4685
--18.23976,-0.38808,4.65696,0.77616,76.713714,70.1217
--18.048,0.384,5.568,1.344,75.9072,71.82
--17.50656,0.9312,6.42528,1.48992,73.639296,72.9888
--18.139,1.455,7.76,2.231,76.7076,75.22
--18.326,1.96,8.918,2.646,77.4004,75.73
--18.32787,2.54826,9.99702,3.03831,77.408298,72.9828
--18.14274,3.20166,11.25432,3.49272,76.616694,72.6474
--17.50074,3.95178,12.13761,3.85769,74.396963,72.2844
--17.50074,4.61041,13.1726,4.13996,74.396963,71.5084
--17.68116,5.13324,14.7343,4.84806,75.163942,72.3534
--17.04775,5.7133,15.38905,4.88395,72.87222,68.153
--17.5824,6.74784,16.82208,5.60736,75.157632,70.5177
--17.4048,7.33824,17.78112,6.20928,74.389056,69.6192
--17.85168,8.44074,19.404,6.59736,76.616694,70.3052
--18.4,9.2,21.2,7.5,78.89,71.05
--17.39598,9.41094,21.29344,7.6048,75.078388,68.943
--17.751,10.282,22.698,8.342,76.5136,68.0261
--16.5984,10.5792,22.5264,8.208,71.93856,66.7584
--16.7713,11.4266,23.4061,8.75425,72.68792,67.1725
--17.38324,12.4852,25.54664,9.89212,75.756352,67.6592
--17.376,13.344,26.4,10.176,75.7248,68.85
--16.9344,13.82976,26.62464,10.3488,74.210304,67.2574
--17.46,14.938,28.324,11.252,76.5136,66.3868
--17.9,16,29.9,12.3,78.88,68.45
--17.005,16.055,29.45,11.97,74.8505,64.8185
--16.74624,16.464,29.82336,12.60672,74.116224,66.5714
--17.26956,17.85168,31.33746,13.0977,76.432356,66.6792
--17.346,18.62,32.34,13.916,77.2044,66.2872
--16.55984,18.72391,31.52015,13.73714,74.218192,65.4071
--16.9785,19.8891,33.4719,14.94108,76.432356,66.8547
--16.807,20.45652,33.99816,15.27036,75.660312,66.0814
--16.03584,20.36736,33.36192,14.92992,72.603648,64.368
--16.44192,21.66912,34.97472,15.96672,74.967552,66.2706
--16.51716,22.47102,36.20331,16.70922,75.748464,66.0627
--16.35032,22.52922,36.40798,17.1108,75.078388,64.3595
--16.587,23.668,38.024,18.042,76.6106,65.94
--16.49,24.153,38.703,18.43,76.7949,63.7678
--15.73728,24.02496,37.99296,18.25152,73.723104,62.8224
--16.296,25.511,40.255,19.497,76.7949,65.44
--15.87502,25.47608,40.02026,19.86754,75.259002,63.3701
--15.4546,25.6025,39.7537,19.9234,73.80968,61.9875
--15.51825,26.5221,40.8177,20.5029,74.553435,64.4985
--15.42912,27.09504,41.48928,20.88576,74.577216,63.6314
--15.33015,27.4626,42.04035,21.6315,74.553435,61.3985
--15.24096,28.31808,42.52416,22.20288,74.577216,61.7568
--14.9891,28.5817,42.6398,22.1578,73.80037,61.123
--15.84,30.789,46.035,24.057,78.4773,62.8155
--14.95872,29.6352,44.02944,23.42592,74.577216,62.475
--14.71296,30.35712,44.13888,23.65248,73.723104,60.528
--15.444,32.769,47.52,25.641,78.1011,62.7165
--14.136,30.552,44.0496,24.168,72.02064,59.8975
--15.246,33.858,48.312,26.532,78.3783,62.7165
--14.592,33.408,47.232,26.208,76.0032,63.5904
--14.50204,33.80608,47.82792,26.8912,76.034868,62.6612
--14.1075,33.6699,47.30715,26.8983,74.459385,61.218
--13.357,32.76075,45.847,26.1725,71.450925,60.458
--13.82976,34.90368,48.35712,27.94176,74.483136,60.9984
--13.73714,35.28375,48.83271,28.41518,74.491053,61.5271
--13.40928,35.66496,48.888,28.49472,73.723104,61.2
--13.871,37.345,51.313,30.361,76.7949,65.55
--13.54023,37.25964,51.28002,30.44151,76.026951,65.3697
--13.44,38.016,51.648,30.912,76.0128,65.44
--12.98304,37.82016,51.17952,30.67008,74.483136,64.656
--13.289,39.188,53.059,32.01,76.7949,65.8921
--12.96405,39.56436,53.00856,31.97799,76.026951,65.7951
--12.25595,37.9658,51.32755,31.23885,72.955155,65.0385
--12.58124,40.43284,53.68636,32.6536,76.044472,64.8172
--11.856,37.9392,50.5248,32.4672,72.20304,63.312
--11.91936,38.6448,50.93664,34.73376,73.723104,63.696
--11.97,39.235,51.205,35.53,75.2115,66.65
--12.375,40.887,52.767,36.729,78.3783,66.2706
--12.054,40.278,51.548,36.064,77.5866,65.44
--11.616,38.496,49.248,37.44,76.0032,65.14
--11.42757,35.72316,46.95867,37.64376,76.026951,65.0385
--10.55925,32.6705,42.4175,34.8365,71.450925,62.6525
--10.8192,33.8688,43.7472,36.31488,74.492544,62.0544
--10.83,33.82,43.32,35.72,75.2115,67.05
--10.3208,30.87025,40.26955,33.3583,72.96437,65.3295
--10.241,30.3506,39.1951,33.3298,73.80037,69.1292
--10.05696,29.89152,37.99296,32.1264,73.816224,66.7584
--10.08315,29.7693,37.73979,32.55417,76.122981,70.6548
--9.49145,27.8293,35.29345,30.87025,73.047305,69.9758
--9.50208,27.94176,35.09184,30.19968,74.483136,71.7216
--9.50697,27.56061,34.76286,30.53754,76.122981,70.5481
--8.93952,25.71264,32.53248,28.93824,72.972288,71.6448
--9.0307,26.04644,32.60558,28.61306,75.354062,74.2154
--9.11493,25.97265,32.83335,29.30499,77.692527,73.7847
--8.82882,25.03116,31.72554,28.71792,76.907754,76.1409
--8.72289,24.69852,31.16718,27.83484,77.692527,74.7648
--8.342,23.862,30.167,27.16,76.8919,73.9237
--8.4,23.9,30.3,27.8,79.27,75.04
--7.872,22.464,28.32,25.728,76.0992,72.7008
--7.92,22.473,28.413,26.235,78.4872,75.34
--7.644,21.658,27.44,25.676,77.6846,73.9018
--7.2765,21.05334,26.48646,24.93414,76.907754,73.6758
--7.227,20.988,26.334,24.948,78.3783,73.0917
--6.74926,19.39224,24.7156,23.47982,75.354062,71.6674
--6.48945,18.81,23.8887,22.85415,74.459385,71.6067
--6.499,18.915,24.056,23.183,76.7949,68.9864
--6.0515,17.5959,22.5302,21.5061,73.70727,66.8325
--6.111,17.945,22.795,22.213,76.7949,70.35
--5.978,17.738,22.54,22.05,77.5964,67.5612
--5.2896,16.2336,20.52,19.8816,72.20304,65.588
--5.643,17.127,21.681,21.186,78.3783,67.9536
--5.016,15.2304,19.5168,19.3344,72.20304,65.1168
--4.7918,15.1126,19.25935,19.25935,72.955155,64.8185
--4.8015,15.3648,19.49409,19.59012,76.026951,66.7557
--4.51535,14.3754,18.2457,18.2457,72.955155,65.1035
--4.46292,14.65002,18.82188,19.01592,76.810734,66.003
--4.275,13.87,17.955,18.525,75.2115,63.3175
--3.87072,13.17888,17.0496,17.60256,72.963072,63.7728
--3.89664,13.3056,17.1072,17.48736,75.243168,63.2064
--3.59385,12.44025,16.12625,16.67915,72.955155,63.0325
--3.626,12.936,16.758,17.64,77.5866,64.8074
--3.43,12.642,16.366,17.542,77.5866,64.8074
--3.10464,11.85408,15.33504,16.464,74.483136,61.9488
--2.8861,11.3582,14.8029,15.7339,73.43728,65.3954
--2.8518,11.12202,14.7343,15.77996,74.983328,65.6108
--2.8,11.4,15.1,16.3,78.88,69.33
--2.6,11.2,14.8,16.1,78.97,68.74
--2.40075,10.5633,13.82832,14.88465,75.844494,66.7557
--2.277,10.494,13.86,14.949,78.1902,69.5376
--2.01663,9.79506,13.15611,14.50053,75.844494,69.4386
--1.98,9.9,13.167,14.85,78.1902,71.34
--1.6245,8.8445,11.7325,13.26675,71.27945,67.488
--1.5048,8.93475,11.94435,13.5432,74.28069,70.5177
--1.47015,8.91891,12.05523,13.62339,77.408298,70.4088
--1.261,8.439,11.64,13.192,76.7076,72.15
--1.11744,7.82208,10.89504,12.5712,73.629984,68.6688
--0.99,8.118,11.286,13.167,78.2892,73.8837
--0.83808,7.54272,10.33632,12.01248,73.629984,70.2048
--0.67228,7.58716,10.37232,12.10104,75.938828,72.2456
--0.55296,6.912,9.58464,11.15136,72.880128,70.8768
--0.3686,6.4505,9.3993,11.15015,72.863005,74.0304
--0.28518,6.6542,9.41094,11.4072,75.268508,74.2147
--0.09025,6.22725,8.664,10.6495,71.450925,73.1595
-0,6.36768,8.93376,10.64448,75.243168,73.4496
-0.09408,5.92704,8.56128,10.25472,74.483136,72.4992
-0.19602,5.78259,8.62488,10.48707,77.594517,74.9727
-0.37636,5.36313,8.09174,10.06763,74.491053,72.0128
-0.495,5.544,8.217,10.494,78.3783,72.73
-0.594,5.445,8.019,10.296,78.3783,72.44
-0.76,5.035,7.505,9.5,75.1165,71.93
-0.864,4.8,7.2,9.312,75.9168,68.1024
-0.9215,4.2389,6.72695,8.6621,72.87222,65.8635
-1.0032,4.104,6.384,8.7552,72.20304,66.2784
-1.1058,3.96245,6.2662,8.56995,72.955155,64.7425
-1.23552,4.08672,6.27264,8.74368,75.148128,67.1517
-1.37214,4.11642,6.27264,8.62488,77.594517,66.6765
-1.3824,3.59424,5.71392,7.64928,72.963072,64.368
-1.5048,3.1977,5.54895,7.80615,74.459385,62.928
-1.666,3.234,5.488,8.036,77.5964,66.35
-1.782,3.168,5.445,8.118,78.3783,65.1816
-1.78695,2.91555,4.98465,7.80615,74.46879,65.1816
-1.96,2.94,4.998,7.742,77.5866,65.63
-2.079,2.673,4.851,7.425,78.3783,65.0826
-2.134,2.328,4.462,6.984,76.7949,65.84
-2.09132,1.99626,4.18264,6.74926,75.259002,64.1461
-2.16407,1.8818,3.95178,6.86857,74.406372,62.4098
-2.25792,1.8816,3.85728,6.5856,74.210304,63.8372
-2.45,1.862,3.822,6.664,77.3906,64.8074
-2.44608,1.69344,3.48096,5.73888,74.304384,64.9344
-2.4206,1.3034,3.2585,5.586,73.53038,65.2092
-2.7,1.2,3.3,6,78.98,66.83
-2.63452,0.84681,2.91679,5.55131,74.312282,66.4741
-2.66168,0.9506,2.75674,5.89372,75.078388,66.5711
-2.72745,0.84645,2.6334,5.4549,74.28069,69.3297
-2.72745,0.65835,2.4453,4.8906,74.28069,69.5376
-2.7645,0.3686,2.2116,4.6075,72.78007,68.9088
-2.8272,0.0912,2.0064,4.6512,72.02976,66.9085
-3.007,0,1.94,4.85,76.6203,69.3841
-3.2,-0.1,1.9,5,78.97,72.52
-3.01088,-0.18818,1.59953,4.51632,74.312282,71.3241
-3.04095,-0.1843,1.4744,4.33105,72.87222,71.7218
-3.168,-0.288,1.344,4.224,75.9168,74.13
-3.10365,-0.47025,1.22265,3.762,74.28069,73.7748
-3.366,-0.891,0.99,3.861,78.1902,73.9629
-3.23,-1.045,0.855,3.705,75.031,73.94
-3.2592,-1.02432,0.65184,3.53856,73.546176,71.1204
-3.3614,-1.15248,0.57624,3.74556,75.861996,71.2754
-3.43035,-1.17612,0.49005,3.62637,77.408298,71.3097
-3.3516,-1.3034,0.2793,3.4447,73.53038,67.564
-3.45708,-1.44045,0.19206,3.26502,75.844494,70.1217
-3.38724,-1.59953,0.09409,3.01088,74.302873,68.0261
-3.44544,-1.76928,-0.09312,2.88672,73.536864,66.5568
-3.51722,-1.9012,-0.28518,2.56662,75.078388,66.8621
-3.3744,-1.9152,-0.3648,2.4624,72.02976,65.4835
-3.3744,-2.0064,-0.456,2.3712,72.02976,65.7888
-3.48096,-2.16384,-0.56448,2.44608,74.304384,65.712
-3.724,-2.352,-0.784,2.254,77.4004,66.787
-3.5739,-2.6334,-0.9405,1.59885,74.28069,68.0526
-3.5378,-2.793,-1.1172,1.6758,73.53038,67.3652
-3.686,-3.007,-1.261,1.94,76.6009,68.53
-3.724,-3.038,-1.372,1.862,77.4004,67.0712
-3.64952,-2.97724,-1.4406,1.82476,75.756352,66.9732
-3.648,-2.88,-1.536,1.824,75.7248,68.15
-3.686,-3.007,-1.649,1.552,76.5136,68.15
-3.61,-3.23,-1.71,1.235,74.936,64.5335
-3.50208,-3.40992,-1.8432,1.01376,72.695808,65.2128
-3.61228,-3.61228,-1.99626,1.14072,74.983328,65.8921
-3.762,-3.861,-2.178,1.089,77.9922,67.0626
-3.5017,-3.59385,-2.2116,1.01365,72.59577,64.1535
-3.648,-3.744,-2.304,0.864,75.7248,67.35
-3.5739,-3.762,-2.35125,0.7524,74.28069,63.9825
-3.724,-3.92,-2.548,0.686,77.3906,66.84
-3.762,-4.158,-2.673,0.396,78.2793,65.8746
-3.648,-4.224,-2.784,0.192,76.0032,66.35
-3.61,-4.37,-2.945,0.285,75.3065,66.02
-3.64952,-4.51388,-2.97724,0.19208,76.130908,64.6212
-3.53856,-4.37664,-3.07296,0.18624,73.816224,64.0394
-3.4295,-4.332,-3.0685,0.1805,71.631425,62.719
-3.64914,-4.60944,-3.26502,0,76.209408,64.0491
-3.4447,-4.5619,-3.2585,-0.2793,73.88416,62.548
-3.626,-4.9,-3.528,-0.196,77.6846,63.945
-3.626,-4.998,-3.626,-0.392,77.6748,63.3374
-3.44544,-4.93536,-3.63168,-0.55872,73.900032,62.5941
-3.7,-5.5,-4,-0.7,79.37,64.53
-3.7,-5.7,-4.1,-0.9,79.36,64.05
-3.42,-5.415,-3.99,-0.665,75.392,61.218
-3.3174,-5.3447,-3.96245,-0.82935,73.139455,61.503
-3.3858,-5.36085,-4.04415,-0.84645,74.459385,60.363
-3.35232,-5.40096,-4.1904,-1.11744,73.723104,61.9151
-3.2256,-5.62176,-4.23936,-1.65888,72.880128,61.584
-3.325,-6.08,-4.56,-1.71,75.1165,61.123
-3.36,-6.048,-4.704,-1.344,76.0032,64.93
-3.15875,-5.68575,-4.42225,-1.083,71.450925,61.6835
-3.19872,-5.83296,-4.704,-1.12896,74.389056,65.5032
-3.13344,-5.71392,-4.608,-1.19808,72.963072,63.3792
-3.10464,-5.73888,-4.704,-1.59936,74.483136,64.3174
-3.16899,-6.14592,-4.89753,-2.20869,76.026951,65.6766
-3.23433,-6.66468,-5.19453,-2.15622,77.594517,63.8847
-3.16932,-6.53072,-5.18616,-1.72872,76.034868,63.6314
-2.94912,-6.17472,-4.97664,-1.65888,72.963072,61.9392
-3.07296,-6.43401,-5.28165,-1.53648,76.026951,61.9151
-3.007,-6.499,-5.335,-1.843,76.7949,62.4098
-2.88672,-6.33216,-5.21472,-1.95552,73.723104,65.5041
-2.88672,-6.33216,-5.21472,-2.04864,73.723104,62.256
-2.736,-6.384,-5.1984,-2.4624,72.20304,60.5625
-2.7648,-6.81984,-5.43744,-2.58048,72.963072,62.0448
-2.8224,-7.056,-5.6448,-2.54016,74.483136,64.3174
-2.755,-7.125,-5.795,-2.28,75.2115,61.6075
-2.70048,-6.89088,-5.68032,-2.328,73.732416,63.984
-2.688,-7.008,-5.856,-2.304,76.0032,65.95
-2.744,-7.154,-6.076,-2.45,77.5866,65.2092
-2.53935,-6.9597,-5.8311,-2.2572,74.459385,63.6975
-2.48832,-6.81984,-5.80608,-2.58048,72.963072,66.1728
-2.48805,-7.0034,-5.8976,-2.9488,72.955155,64.6505
-2.3712,-7.1136,-5.928,-2.9184,72.20304,63.2064
-2.574,-7.92,-6.336,-2.277,78.3882,68.04
-2.45,0,-3.136,7.056,77.5866,68.93
-2.352,-3.85728,-4.32768,0.37632,74.483136,68.9472
-2.166,-0.9025,-1.805,10.2885,71.450925,67.1175
-2.30472,-2.78487,-2.78487,1.9206,75.940524,68.3496
-2.20892,-3.93764,-3.3614,0.4802,75.938828,65.8952
-2.14176,-4.1904,-3.44544,-0.18624,73.639296,64.6408
-2.09,-4.465,-3.61,-0.57,75.2115,66.54
-2.112,-4.704,-3.744,-0.864,75.9072,69.24
-1.9855,-4.693,-3.61,-1.083,71.3697,64.258
-1.99626,-5.2283,-3.99252,-1.4259,75.163942,65.2092
-2.01663,-5.56974,-4.22532,-1.72854,75.940524,67.1418
-1.9206,-5.66577,-4.32135,-1.72854,75.930921,67.3596
-1.96,-5.978,-4.508,-2.058,77.4886,68.85
-1.8816,-5.83296,-4.51584,-2.06976,74.483136,68.551
-1.82476,-6.05052,-4.70596,-2.01684,76.034868,69.4134
-1.80614,-6.1789,-4.753,-2.18638,75.268508,72.3911
-1.6416,-6.0192,-4.7424,-2.4624,72.20304,72.0195
-1.728,-6.624,-5.184,-2.88,76.0128,72.0384
-1.6758,-6.7032,-5.2136,-2.9792,73.70727,72.029
-1.649,-7.081,-5.529,-3.104,76.7076,75.11
-1.4592,-6.6576,-5.2896,-2.8272,72.21216,72.3235
-1.52064,-6.93792,-5.60736,-2.8512,75.243168,72.2112
-1.4259,-6.93938,-5.7036,-2.94686,75.259002,75.9696
-1.4112,3.66912,-2.352,18.06336,74.483136,75.0778
-1.3965,6.7032,-1.2103,10.7065,73.70727,73.7295
-1.34456,1.34456,-1.24852,9.1238,76.140512,74.5094
-1.33,7.22,1.045,13.965,75.3065,72.504
-1.33056,1.80576,-0.19008,5.98752,75.338208,73.3632
-1.24852,0.19208,0,6.53072,76.130908,73.7156
-1.23578,2.47156,2.18638,8.27022,75.354062,71.2754
-1.11744,0.65184,0.9312,4.84224,73.816224,70.4414
-1.1286,0,0.65835,4.04415,74.553435,68.818
-1.1286,-0.65835,0.3762,3.1977,74.553435,69.6465
-1.045,-1.235,0.19,2.755,75.3065,66.2435
-1.067,-1.552,0,2.716,76.9016,68.93
-1.05633,-1.82457,-0.09603,2.40075,76.219011,68.5476
-0.9603,-2.01663,-0.28809,2.11266,76.219011,68.2407
-0.9702,-2.23146,-0.4851,1.84338,77.004774,67.9437
-0.9603,-2.49678,-0.67221,1.44045,76.219011,67.4685
-0.9603,-2.97693,-1.05633,1.05633,76.219011,66.9636
-0.864,-3.36,-1.248,0.672,76.1952,67.43
-0.87318,-3.49272,-1.55232,0.87318,77.004774,65.8952
-0.9,-1.1,1,8,79.37,65.55
-0.864,-2.112,-0.384,2.304,76.1952,62.4384
-0.792,-2.871,-0.99,1.584,78.5763,65.55
-0.7448,-2.9792,-1.2103,0.931,73.89347,64.0234
-0.78408,-1.56816,0.29403,5.48856,77.790537,65.0727
-0.6517,-2.793,-0.8379,1.3965,73.80037,62.2725
-0.66528,2.09088,1.4256,14.63616,75.252672,63.1104
-0.67221,4.41738,3.64914,13.73229,76.026951,64.0491
-0.67228,1.53664,2.20892,6.2426,76.034868,63.8372
-0.57618,0.86427,2.59281,5.95386,76.036554,67.6566
-0.582,0.582,2.91,5.626,76.7949,67.53
-0.594,6.435,4.455,14.85,78.3783,67.83
-0.57,2.85,4.18,8.93,75.2115,69.24
-0.57624,6.05052,5.37824,12.005,76.034868,68.7274
-0.49005,6.8607,7.25274,14.50548,77.594517,69.1416
-0.485,9.312,8.439,17.751,76.7949,67.9194
-0.456,5.7456,6.4752,10.3056,72.20304,66.9085
-0.4851,4.55994,6.20928,8.92584,76.810734,69.8247
-0.4802,3.74556,5.7624,7.87528,76.140512,69.6192
-0.4752,2.94624,5.41728,6.74784,75.338208,71.6067
-0.361,2.07575,4.693,6.137,71.541175,70.8985
-0.38024,1.80614,4.65794,6.27396,75.354062,72.7454
-0.38,1.52,4.37,5.985,75.3065,73.61
-0.37636,1.31726,3.95178,5.45722,74.585143,71.7994
-0.4,0.9,3.9,5,79.27,74.13
-0.37248,0.18624,3.16608,4.46976,73.816224,71.4017
-0.3686,-0.09215,2.7645,4.2389,72.96437,71.1204
-0.37632,-0.18816,2.63424,4.32768,74.483136,71.2754
-0.3686,-0.27645,2.30375,3.96245,72.955155,68.818
-0.38024,-0.4753,2.09132,3.70734,75.259002,70.4914
-0.38412,-0.9603,1.72854,3.26502,76.026951,69.1998
-0.3686,-1.2901,1.38225,2.9488,72.955155,67.488
-0.37632,-1.50528,1.03488,2.8224,74.304384,69.3056
-0.38024,-1.71108,0.85554,2.75674,75.173448,69.3056
-0.388,-1.746,0.679,2.619,76.7076,68.4238
-0.38024,-1.9012,0.28518,2.3765,75.173448,68.7372
-0.388,-2.231,0.097,2.037,76.7949,70.03
-0.37248,-2.51424,-0.18624,1.67616,73.732416,67.6381
-0.392,-2.842,-0.49,1.666,77.5866,69.44
-0.28227,-2.91679,-0.65863,1.59953,74.406372,67.3471
-0.28512,-3.04128,-0.85536,1.4256,75.157632,68.7456
-0.28224,-3.01056,-1.03488,1.22304,74.398464,66.384
-0.28809,-3.16899,-1.34442,1.15236,76.026951,66.9688
-0.28224,-3.38688,-1.50528,0.75264,74.483136,67.2574
-0.28812,-3.8416,-1.72872,0.38416,76.140512,66.9732
-0.28518,-3.99252,-1.99626,0.38024,75.449122,66.6792
-0.29106,-4.17186,-2.13444,0.58212,77.004774,66.787
-0.28518,-4.08758,-2.28144,0.19012,75.449122,65.8921
-0.18624,-4.09728,-2.328,0.18624,73.909344,65.1168
-0.19602,-4.21443,-2.54826,0,77.790537,67.1517
-0.194,-4.268,-2.716,0,76.9889,65.1161
-0.18624,-4.28352,-2.70048,-0.4656,73.909344,64.1461
-0.198,-4.95,-3.168,-0.891,78.5763,66.13
-0.194,-5.044,-3.201,-0.679,76.9889,65.25
-0.196,-5.194,-3.43,-0.98,77.7826,65.04
-0.09603,-5.18562,-3.45708,-0.86427,76.219011,63.2925
-0.09312,-5.02848,-3.44544,-1.02432,73.909344,63.5835
-0.09603,-5.28165,-3.74517,-1.24839,76.219011,62.9821
-0.095,-5.32,-3.8,-1.33,75.4015,64.23
-0.099,-5.742,-4.158,-1.881,78.5763,63.4095
-0.095,-5.89,-4.085,-1.9,75.392,61.6075
-0.099,-6.237,-4.455,-1.98,78.5862,64.5975
-0,-6.3,-4.6,-2,79.37,65.74
-0,-6.208,-4.656,-2.037,76.9889,63.6611
-0,-6.272,-4.802,-2.058,77.7826,65.04
-0,-6.27,-4.75,-2.185,75.392,65.33
-0,-6.33798,-4.89753,-2.40075,76.219011,62.7978
--0.09801,-6.66468,-5.09652,-2.64627,77.790537,64.5975
--0.09312,-6.61152,-5.02848,-2.70048,73.909344,62.256
--0.09409,-6.86857,-5.17495,-3.10497,74.679233,64.1461
--0.09702,-7.17948,-5.53014,-2.9106,77.004774,64.6767
--0.09408,-6.96192,-5.45664,-3.01056,74.671296,63.312
--0.09604,-7.203,-5.66636,-3.07328,76.226948,65.8952
--0.1805,-6.76875,-5.415,-2.888,71.631425,62.928
--0.192,-7.392,-5.856,-3.36,76.1952,63.696
--0.192,-7.488,-6.048,-3.456,76.1952,64.2624
--0.18624,-7.4496,-5.95968,-3.53856,73.900032,64.656
--0.291,-7.857,-6.305,-3.88,76.9792,70.03
--0.28215,-7.7121,-6.2073,-3.762,74.65689,64.638
--0.2736,-7.4784,-6.1104,-3.648,72.38544,65.1168
--0.285,-7.885,-6.46,-3.895,75.3065,64.5335
--0.38416,-8.06736,-6.62676,-4.12972,76.130908,65.8952
--0.396,-8.415,-6.93,-4.455,78.4773,67.83
--0.38412,-8.35461,-6.81813,-4.41738,76.122981,67.2507
--0.46075,-8.1092,-6.6348,-4.2389,73.047305,67.3568
--0.48015,-8.54667,-7.01019,-4.51341,76.122981,68.5575
--0.456,-8.1168,-6.7488,-4.1952,72.29424,64.828
--0.475,-8.55,-7.125,-4.655,75.316,65.5975
--0.4851,-8.82882,-7.37352,-4.851,77.004774,69.4287
--0.6,-9.2,-7.7,-5.1,79.37,72.14
--0.5643,-8.8407,-7.3359,-4.79655,74.553435,68.818
--0.686,-9.31,-7.644,-5.096,77.6846,74.12
--0.672,-9.024,-7.584,-4.8,76.1952,73.2672
--0.672,-9.12,-7.68,-5.28,76.1952,74.93
--0.64505,-9.12285,-7.5563,-5.529,73.139455,72.029
--0.77616,-9.702,-8.05266,-5.62716,77.004774,73.9018
--0.768,-9.408,-7.968,-5.184,76.2048,72.7872
--0.784,-9.506,-8.134,-5.39,77.7826,73.4314
--0.81225,-8.664,-7.581,-4.78325,71.631425,70.984
--0.87318,-9.31392,-8.14968,-5.53014,77.004774,72.2456
--0.9604,-9.21984,-8.06736,-5.7624,76.322988,72.3534
--0.99,-9.9,-8.514,-6.237,78.6753,72.8739
--0.96,-9.888,-8.352,-6.144,76.2912,71.1648
--0.99,-10.098,-8.712,-6.138,78.5763,73.2006
--1.05633,-9.69903,-8.45064,-5.66577,76.219011,70.8294
--1.0241,-9.31,-8.1928,-5.3067,73.89347,70.3052
--1.176,-9.8,-8.624,-5.684,77.7826,69.237
--1.15248,-9.604,-8.45152,-5.66636,76.236552,69.237
--1.0944,-9.2112,-8.1168,-5.7456,72.38544,66.9085
--1.19795,-9.67575,-8.2935,-6.17405,73.139455,66.2435
--1.21056,-9.87072,-8.47392,-6.0528,73.909344,66.48
--1.358,-10.282,-8.924,-6.111,76.9792,65.7854
--1.3034,-9.7755,-8.5652,-5.6791,73.89347,64.258
--1.37214,-10.19304,-9.01692,-5.8806,77.790537,66.4686
--1.38225,-9.5836,-8.4778,-5.7133,73.139455,65.7175
--1.4112,-9.78432,-8.65536,-5.83296,74.671296,65.5032
--1.52096,-9.88624,-8.84058,-5.98878,75.449122,64.6505
--1.52,-9.975,-8.835,-6.08,75.4015,63.3175
--1.649,-10.282,-9.021,-6.305,76.9889,64.6505
--1.61602,-10.17142,-8.93564,-6.36902,75.449122,64.0491
--1.63251,-10.27521,-9.12285,-6.53004,76.219011,63.8648
--1.6416,-9.8496,-8.664,-6.0192,72.46752,63.3024
--1.746,-10.573,-9.215,-6.499,76.9889,65.26
--1.843,-10.573,-9.312,-6.499,76.9889,63.4865
--1.843,-10.573,-9.312,-6.596,76.9889,62.4098
--1.843,-10.1365,-8.93855,-6.2662,73.047305,62.2255
--1.862,-10.3341,-9.1238,-6.517,73.80037,62.475
--1.97505,-10.5336,-9.2169,-6.5835,74.553435,62.8254
--1.95552,-10.42944,-9.12576,-6.5184,73.816224,63.8648
--2.079,-11.088,-9.801,-6.93,78.4773,65.94
--2.11266,-10.85139,-9.603,-6.81813,76.219011,65.7657
--2.06976,-10.8192,-9.408,-6.96192,74.577216,65.2092
--2.231,-11.155,-9.797,-7.081,76.8919,68.23
--2.3,-11.5,-10.1,-7.4,79.27,69.04
--2.28096,-10.83456,-9.69408,-7.03296,75.433248,67.8447
--2.328,-11.252,-9.991,-7.178,76.8919,67.8515
--2.475,-11.781,-10.296,-7.821,78.4773,69.84
--2.28,-10.944,-9.576,-7.1136,72.38544,67.108
--2.574,-11.682,-10.296,-7.326,78.5763,71.93
--2.496,-11.136,-9.984,-7.104,76.1952,71.34
--2.3959,-10.59725,-9.5836,-6.6348,73.139455,70.0534
--2.619,-11.155,-10.088,-7.469,76.9889,72.15
--2.772,-11.682,-10.494,-8.217,78.5763,73.62
--2.66,-11.495,-10.07,-7.79,75.4015,74.71
--2.6448,-10.944,-9.7584,-6.9312,72.38544,71.4432
--2.67235,-10.96585,-9.7679,-7.0034,73.139455,70.9745
--2.84229,-11.46717,-10.38906,-7.35075,77.790537,74.7648
--2.793,-10.8927,-9.8686,-6.9825,73.89347,71.5635
--3,-11.7,-10.6,-7.6,79.37,73.94
--3.069,-11.583,-10.494,-7.524,78.5763,72.3987
--3.104,-11.64,-10.379,-7.663,76.9889,72.83
--2.9488,-11.33445,-9.9522,-7.46415,73.047305,70.1601
--2.97825,-11.191,-9.83725,-7.12975,71.631425,68.438
--3.267,-12.177,-10.791,-7.821,78.5763,71.12
--3.135,-11.495,-10.355,-7.41,75.3065,67.564
--3.29868,-11.73942,-10.57518,-7.56756,77.004774,69.2272
--3.23136,-11.49984,-10.35936,-7.41312,75.338208,69.8247
--3.29175,-11.38005,-10.25145,-7.524,74.647485,66.633
--3.3614,-11.62084,-10.46836,-7.49112,76.226948,68.551
--3.2832,-11.1264,-10.032,-7.3872,72.38544,66.8352
--3.42,-11.685,-10.45,-7.6,75.4015,69.44
--3.7,-12.4,-11.1,-8.3,79.27,69.44
--3.4447,-11.5444,-10.3341,-7.5411,73.80037,65.7875
--3.61,-11.875,-10.545,-7.98,75.3065,65.588
--3.686,-12.125,-10.864,-7.857,76.8919,68.74
--3.66912,-11.76,-10.53696,-7.90272,74.577216,67.1692
--3.861,-12.375,-11.187,-8.316,78.4773,67.6566
--3.8,-11.875,-10.735,-8.075,75.4015,64.8185
--4,-12.6,-11.3,-8.3,79.27,68.23
--3.77856,-11.70432,-10.50624,-7.74144,72.963072,65.712
--3.70025,-11.46175,-10.2885,-7.67125,71.541175,64.4385
--3.7905,-11.552,-10.37875,-7.7615,71.631425,63.9825
--3.95178,-12.13761,-10.82035,-8.18583,74.679233,65.2228
--3.9216,-11.7648,-10.488,-7.8432,72.38544,63.878
--4.0033,-12.0099,-10.7996,-8.0066,73.98657,63.6975
--4.0546,-11.9795,-10.78155,-7.9249,73.22239,65.1161
--4.18,-12.35,-11.115,-8.36,75.487,66.65
--4.32,-12.48,-11.232,-8.256,76.2816,66.43
--4.104,-11.9472,-10.7616,-8.1168,72.47664,63.1085
--4.3263,-12.4146,-11.0979,-8.37045,74.741535,65.0826
--4.28352,-12.29184,-11.08128,-8.28768,74.002464,63.4768
--4.46688,-12.64032,-11.30976,-8.5536,75.518784,64.2807
--4.46688,-12.64032,-11.4048,-8.45856,75.528288,62.256
--4.656,-12.901,-11.64,-8.342,77.0762,64.34
--4.608,-12.672,-11.52,-8.64,76.2816,63.94
--4.61041,-12.51397,-11.2908,-8.65628,74.763914,61.6338
--4.753,-13.095,-11.834,-9.215,77.0762,63.13
--4.7045,-12.89033,-11.47898,-8.75037,74.763914,61.1585
--4.9005,-13.32936,-11.95722,-8.8209,77.878746,62.3106
--4.99851,-13.13334,-11.95722,-8.91891,77.888547,61.8057
--4.84806,-12.64298,-11.59732,-8.46034,75.534676,60.7894
--4.8906,-12.4146,-11.4741,-8.37045,74.647485,59.242
--4.84224,-12.38496,-11.36064,-8.3808,73.900032,59.856
--4.8336,-12.4032,-11.2176,-8.664,72.38544,60.6048
--4.8336,-12.5856,-11.3088,-8.664,72.38544,59.3085
--5.13,-13.11,-11.78,-8.74,75.4015,63.54
--5.4,-13.6,-12.4,-9,79.37,64.93
--5.1205,-12.5685,-11.5444,-8.4721,73.88416,60.8475
--5.3361,-13.0977,-12.03048,-8.82882,76.995072,62.867
--5.21472,-12.5712,-11.54688,-8.47392,73.816224,63.8784
--5.2136,-12.5685,-11.5444,-8.7514,73.80968,60.572
--5.41842,-13.11828,-11.8825,-9.31588,75.354062,62.6612
--5.529,-13.58,-12.222,-9.506,76.8919,61.6338
--5.4549,-13.167,-11.8503,-8.93475,74.553435,62.7285
--5.2896,-12.6768,-11.4912,-8.4816,72.29424,63.0048
--5.49408,-12.85056,-11.73312,-8.3808,73.816224,62.64
--5.32475,-12.36425,-11.3715,-8.303,71.541175,61.2275
--5.78259,-13.32936,-12.25125,-9.11493,77.692527,64.2807
--5.82,-13.192,-12.222,-9.118,76.8919,65.0385
--5.73949,-12.89033,-11.85534,-8.75037,74.594552,66.6875
--5.856,-13.152,-12.096,-9.216,76.0992,65.424
--5.62115,-12.7167,-11.6109,-8.93855,73.139455,66.8621
--5.89,-13.3,-12.065,-8.93,75.3065,69.0935
--5.95448,-13.4456,-12.19708,-9.21984,75.852392,70.6972
--5.92704,-13.1712,-11.94816,-9.03168,74.210304,70.4928
--6.04989,-13.4442,-12.29184,-9.02682,75.844494,71.1204
--6.0192,-13.167,-12.0384,-9.0288,74.18664,72.0027
--6.24195,-13.4442,-12.29184,-9.41094,75.854097,72.0031
--6.1776,-13.40064,-12.16512,-9.31392,75.157632,70.6752
--6.11325,-13.3551,-12.13245,-9.405,74.459385,71.1835
--6.20928,-13.54752,-12.2304,-9.31392,74.483136,73.4216
--6.14592,-13.31616,-12.1056,-9.21888,73.723104,72.4992
--6.1104,-13.0416,-11.856,-8.8464,72.20304,71.364
--6.566,-13.916,-12.74,-9.604,77.6846,73.0296
--6.39812,-13.36078,-12.2317,-9.22082,74.491053,71.5084
--6.596,-13.774,-12.707,-9.603,76.8919,69.9758
--6.2928,-13.1328,-11.9472,-9.12,72.30336,68.8704
--6.55776,-13.7808,-12.54528,-9.504,75.338208,69.3297
--6.2928,-13.224,-12.0384,-9.0288,72.29424,65.588
--6.7914,-13.97088,-12.80664,-9.60498,76.907754,66.7557
--6.86,-14.112,-12.936,-9.506,77.5866,63.7392
--6.887,-13.871,-12.804,-9.506,76.8919,62.7978
--6.54265,-13.2696,-12.1638,-9.3993,73.047305,60.8475
--7.2,-14.6,-13.3,-10.4,79.17,63.46
--6.98544,-14.26194,-13.00068,-9.99306,76.810734,62.9046
--6.77376,-13.73568,-12.60672,-9.408,74.492544,60.8972
--7.008,-13.92,-12.768,-9.408,76.0032,58.8768
--6.9597,-13.5432,-12.50865,-9.31095,74.459385,59.6376
--7.178,-13.968,-12.901,-9.409,76.6979,57.8508
--7.178,-14.065,-12.901,-10.088,76.6979,57.3561
--7.05675,-13.92532,-12.60806,-9.87945,74.312282,56.5995
--6.984,-13.78176,-12.5712,-9.68448,73.536864,55.632
--7.07712,-13.68864,-12.5712,-9.40512,73.546176,56.5025
--7.22,-13.87,-12.73,-9.31,74.936,54.188
--7.31808,-13.7808,-12.73536,-9.21888,74.967552,54.96
--7.54677,-14.11344,-13.13334,-9.801,77.212278,56.2914
--7.623,-14.256,-13.167,-9.999,77.9922,56.1825
--7.2618,-13.4995,-12.4754,-9.31,73.34418,53.2475
--7.41468,-13.7837,-12.73804,-9.22082,74.76469,53.6895
--7.12975,-13.08625,-12.0935,-9.11525,70.981625,52.478
--7.74279,-14.30946,-13.13334,-9.70299,76.986855,54.7965
--7.84,-14.406,-13.132,-9.898,76.9888,53.851
--7.84,-14.406,-13.132,-9.996,76.9006,54.145
--7.8408,-14.40747,-13.23135,-9.89901,76.888845,53.8164
--7.69986,-13.97382,-12.8331,-9.79118,74.489016,53.3512
--7.46496,-13.54752,-12.4416,-9.40032,72.124416,52.2528
--7.6342,-13.7788,-12.5685,-9.4962,72.86006,51.813
--7.79492,-14.06888,-12.92816,-9.88624,74.298896,53.0572
--8.134,-14.602,-13.328,-10.192,76.6066,53.75
--7.97049,-14.30847,-13.06008,-10.17918,74.970621,53.2026
--7.64845,-13.73035,-12.5324,-9.67575,71.941505,52.4091
--7.581,-13.44725,-12.274,-9.386,70.37695,50.882
--7.98336,-14.16096,-13.02048,-9.88416,74.102688,53.0145
--8.075,-14.25,-13.015,-9.88,74.0715,50.5875
--7.99765,-14.20759,-12.98442,-10.06763,73.277292,51.1675
--8.42886,-14.89752,-13.52538,-10.19304,76.320387,52.3215
--8.428,-14.7,-13.524,-10.388,76.2244,52.3712
--8.17344,-14.16096,-13.11552,-9.9792,73.827072,50.8128
--8.7,-15,-13.8,-10.6,77.68,52.85
--8.35461,-14.59656,-13.34817,-10.37124,74.500074,52.7175
--8.10144,-14.34048,-13.0368,-9.96384,72.251808,51.6622
--8.712,-15.147,-13.86,-10.791,76.7151,52.56
--8.36352,-14.35104,-13.21056,-9.88416,73.636992,52.3215
--8.2859,-13.965,-12.9409,-9.4962,72.05009,51.5774
--8.455,-14.155,-13.205,-9.975,73.5205,53.04
--8.91,-14.85,-13.761,-10.692,76.4676,52.74
--8.2935,-14.0068,-12.901,-9.9522,71.08451,49.8275
--8.736,-14.784,-13.44,-10.464,74.0544,50.5344
--9.1,-15.4,-14.1,-10.9,77.14,52.93
--8.55855,-14.2956,-13.167,-9.87525,72.465525,49.5425
--9.009,-15.048,-13.86,-10.197,76.2696,51.8166
--8.74,-14.25,-13.3,-9.785,73.1025,50.103
--8.83476,-14.4045,-13.34817,-9.98712,73.895085,50.7698
--8.303,-13.5375,-12.54475,-9.5665,69.447375,49.818
--8.4816,-13.68,-12.768,-9.6672,70.0872,49.6185
--8.4816,-13.7712,-12.768,-9.7584,70.0872,49.438
--8.93564,-14.54418,-13.3084,-10.26648,72.95855,50.715
--8.75328,-14.34048,-13.12992,-10.05696,71.478912,49.68
--9.12285,-14.78862,-13.54023,-10.27521,73.616598,51.8067
--9.0307,-14.63924,-13.40346,-9.9813,72.872996,51.499
--8.9376,-14.39424,-13.26528,-9.78432,72.027648,50.448
--9.21984,-14.69412,-13.54164,-10.27628,73.528224,50.7934
--8.7552,-13.9536,-12.8592,-9.9408,69.82272,49.2385
--8.664,-13.8985,-12.8155,-9.9275,69.00515,48.8775
--9.12285,-14.57775,-13.3551,-10.43955,71.91063,51.0246
--9.506,-15.19,-13.916,-10.486,74.9308,50.715
--8.93855,-14.28325,-13.0853,-10.04435,70.374955,50.8765
--9.8,-15.5,-14.2,-10.9,76.27,53.25
--9.41094,-14.88465,-13.73229,-10.46727,73.242081,52.0502
--9.70299,-15.19155,-14.01543,-10.58508,74.742426,53.2026
--9.40896,-14.82624,-13.59072,-10.64448,72.477504,51.7824
--8.93475,-14.16925,-12.996,-10.01775,68.833675,51.243
--9.405,-14.76585,-13.5432,-10.3455,71.72253,53.4897
--9.312,-14.52672,-13.40928,-10.2432,71.022624,52.4091
--9.408,-14.5824,-13.54752,-10.25472,71.745408,51.9648
--9.30816,-14.37696,-13.27104,-10.50624,70.290432,51.792
--9.30715,-14.65185,-13.36175,-10.59725,70.27359,51.148
--9.50208,-15.0528,-13.73568,-10.72512,71.754816,53.0474
--10.098,-15.642,-14.454,-11.088,75.4974,53.94
--9.69,-14.915,-13.775,-10.355,72.4565,53.74
--9.996,-15.288,-14.21,-10.78,74.8328,53.74
--9.888,-14.976,-13.92,-10.464,73.3152,53.74
--9.78912,-14.82624,-13.7808,-10.64448,72.582048,53.0145
--9.89212,-15.07828,-14.02184,-10.94856,73.336144,52.871
--10.088,-15.423,-14.162,-11.058,74.0789,52.0502
--9.88624,-15.2096,-13.97382,-10.64672,72.587816,52.7632
--9.87525,-14.95395,-13.82535,-10.62765,71.81658,53.1234
--9.9792,-15.01632,-13.97088,-10.54944,72.582048,53.0145
--10.1871,-15.23214,-14.16492,-10.76922,74.094174,52.479
--9.7776,-14.61984,-13.59552,-10.52256,71.106432,51.8368
--10.38906,-15.38757,-14.40747,-11.07513,74.938446,53.0145
--9.97248,-14.86464,-13.82976,-10.53696,71.848896,53.5472
--10.593,-15.741,-14.553,-11.187,75.5964,53.0145
--10.16928,-15.2064,-13.97088,-10.9296,72.582048,53.4105
--10.38114,-15.62022,-14.35896,-11.1573,74.084472,53.263
--10.379,-15.52,-14.356,-11.058,74.0692,52.9038
--10.26432,-15.2064,-14.06592,-10.73952,72.487008,53.8857
--10.1574,-15.048,-13.9194,-10.62765,71.731935,51.3285
--10.368,-15.36,-14.208,-10.656,73.2192,51.5904
--10.04435,-14.744,-13.73035,-10.78155,70.282805,51.5458
--10.1479,-14.9891,-13.8719,-10.9858,71.00737,50.2835
--10.791,-16.038,-14.751,-11.484,75.4083,53.14
--10.6722,-15.71724,-14.45598,-11.1573,73.900134,51.9255
--10.5633,-15.46083,-14.4045,-10.94742,73.050021,50.9735
--10.3455,-15.14205,-14.01345,-10.7217,71.543835,51.7077
--10.989,-15.939,-14.751,-11.187,75.3093,52.44
--11.1,-16.2,-15,-11.8,76.07,52.74
--10.54944,-15.49152,-14.35104,-10.9296,72.296928,52.5096
--10.545,-15.58,-14.345,-11.115,72.181,53.66
--10.752,-15.648,-14.496,-11.04,72.9408,51.7824
--10.64448,-15.49152,-14.256,-10.9296,72.211392,52.0704
--10.864,-15.617,-14.647,-11.058,73.5551,54.13
--10.63104,-15.24096,-14.20608,-11.00736,71.340864,51.9648
--10.62765,-15.4242,-14.20155,-11.286,71.45919,53.5887
--10.52256,-15.45792,-14.15424,-11.1744,70.743264,52.6128
--10.83456,-15.6816,-14.44608,-11.30976,72.201888,52.0704
--10.5051,-15.1126,-14.0068,-10.8737,70.006355,51.3285
--10.61568,-15.08544,-14.06112,-10.7088,70.743264,52.3218
--10.72512,-15.24096,-14.20608,-10.91328,71.481984,52.6652
--11.155,-15.617,-14.647,-11.058,73.7006,54.03
--11.04,-15.456,-14.496,-11.04,72.9312,53.84
--11.02464,-15.39648,-14.35104,-11.11968,72.201888,51.5904
--10.69056,-15.02208,-14.00832,-10.78272,70.106112,51.408
--11.6,-16.4,-15.2,-11.7,76.07,53.84
--11.6,-16.4,-15.2,-11.5,76.07,53.73
--11.349,-15.908,-14.744,-11.446,73.7879,54.03
--11.115,-15.58,-14.44,-11.115,72.276,51.3285
--10.78155,-15.02045,-14.0068,-10.59725,70.098505,51.243
--10.9858,-15.2684,-14.1512,-10.8927,70.83048,51.148
--10.8737,-15.1126,-14.0068,-10.8737,70.098505,51.148
--11.0979,-15.51825,-14.38965,-11.0979,71.543835,53.1234
--11.21,-15.675,-14.535,-11.21,72.2665,51.053
--11.305,-15.675,-14.535,-11.305,72.2665,53.65
--11.19552,-15.61728,-14.48832,-11.10144,71.660736,52.577
--11.662,-16.268,-15.092,-11.662,74.6466,53.65
--11.4072,-15.6849,-14.54418,-11.4072,72.407202,52.3712
--11.5236,-15.84495,-14.78862,-11.33154,73.146051,51.7301
--11.5248,-15.8466,-14.79016,-11.5248,73.163272,52.3712
--11.495,-15.865,-14.63,-11.59,72.3615,50.483
--11.1744,-15.55104,-14.34048,-11.1744,70.920192,51.3024
--11.38489,-15.71303,-14.58395,-11.38489,71.668353,51.5458
--11.0352,-15.2304,-14.136,-10.944,69.54912,51.12
--11.73942,-16.29936,-15.0381,-11.73942,73.997154,52.2634
--11.3582,-15.6408,-14.4305,-11.3582,70.99806,51.053
--11.36064,-15.73728,-14.52672,-11.26752,71.013312,51.6525
--11.47776,-15.89952,-14.67648,-11.38368,71.754816,52.3712
--11.2176,-15.4128,-14.2272,-10.944,69.56736,50.8128
--12.3,-17,-15.7,-12.2,76.36,52.74
--11.2176,-15.504,-14.3184,-10.944,69.64032,50.103
--11.33568,-15.6672,-14.46912,-11.15136,70.373376,50.9184
--11.78,-16.055,-14.915,-11.59,72.5515,50.2835
--11.5444,-15.827,-14.6167,-11.4513,71.18426,51.793
--11.78,-16.15,-14.915,-11.78,72.542,52.15
--12.00375,-16.42113,-15.17274,-11.71566,73.424538,51.0511
--11.75625,-16.08255,-14.8599,-11.6622,71.91063,49.818
--12.005,-16.3268,-15.17432,-11.90896,73.432184,51.2932
--11.64,-15.92352,-14.71296,-11.64,71.199552,49.9584
--12.00375,-16.3251,-15.17274,-11.90772,73.424538,50.9735
--12.10104,-16.3268,-15.17432,-11.90896,73.432184,50.7934
--11.73312,-15.92352,-14.71296,-11.73312,71.292672,50.2751
--11.46175,-15.43275,-14.34975,-11.46175,69.0954,49.058
--12.19708,-16.42284,-15.17432,-11.81292,73.51862,51.1854
--12.44727,-16.6617,-15.58359,-12.05523,75.036456,51.2325
--11.70305,-15.75765,-14.65185,-11.4266,70.55004,49.7135
--11.94943,-16.08939,-14.96031,-11.94943,72.035304,50.5855
--11.79648,-15.85152,-14.65344,-11.61216,70.557696,49.9584
--12.8,-17.2,-15.9,-12.4,76.56,52.15
--12.8,-17.2,-15.9,-12.5,76.66,52.85
--11.9168,-16.0132,-14.896,-11.6375,71.36115,52.3712
--12.29312,-16.61492,-15.3664,-12.10104,73.61466,51.499
--12.38787,-16.70922,-15.46083,-12.09978,73.616598,51.3117
--12.384,-16.704,-15.456,-12,73.5936,50.448
--11.7648,-15.8688,-14.6832,-11.5824,69.91392,49.343
--11.856,-15.8688,-14.6832,-11.4912,69.91392,49.6185
--12.87,-17.226,-15.939,-12.771,75.8934,52.55
--12.6126,-16.88148,-15.62022,-12.41856,74.375532,50.9992
--12.45024,-16.53696,-15.30144,-11.97504,72.857664,50.3424
--12.07296,-16.03584,-14.92992,-11.61216,70.7328,49.1904
--12.58124,-16.71096,-15.55848,-12.38916,73.7107,50.2152
--12.32055,-16.45875,-15.2361,-12.13245,72.183375,50.7276
--12.32579,-16.46575,-15.24258,-11.85534,72.214075,49.9938
--12.54792,-16.6355,-15.39972,-12.26274,72.968056,50.715
--12.2892,-16.2925,-15.0822,-12.0099,71.45425,50.1074
--12.80664,-17.07552,-15.81426,-12.51558,74.46285,50.1074
--12.672,-16.896,-15.648,-12.48,73.68,51.53
--12.51264,-16.55808,-15.33504,-12.13632,72.2064,50.2152
--12.901,-17.072,-15.811,-12.513,74.4475,52.63
--12.1296,-16.0512,-14.8656,-11.856,70.00512,49.1625
--12.901,-17.072,-15.811,-12.61,74.4475,50.83
--12.6027,-16.64685,-15.33015,-12.13245,72.277425,48.5735
--12.60806,-16.55984,-15.43076,-12.32579,72.223484,49.2081
--12.60672,-16.65216,-15.42912,-12.41856,72.30048,48.336
--12.6027,-16.64685,-15.4242,-12.2265,72.277425,50.8365
--12.8331,-16.82562,-15.58984,-12.73804,73.05361,49.5292
--12.70215,-16.74802,-15.52485,-12.41988,72.308165,49.5185
--12.44025,-16.4027,-15.1126,-12.07165,70.817275,47.9085
--12.312,-16.2336,-14.9568,-11.9472,70.0872,48.1175
--12.5712,-16.57536,-15.3648,-12.19872,71.56272,48.2478
--13.19472,-17.36658,-16.0083,-12.80664,74.55987,49.9257
--13.06008,-17.18937,-15.84495,-12.57993,73.904688,48.6455
--13.328,-17.542,-16.268,-13.23,75.411,49.343
--13.056,-17.184,-15.936,-12.768,73.872,48.9024
--12.4944,-16.3248,-15.1392,-12.0384,70.1784,48.336
--12.75744,-16.66848,-15.45792,-12.38496,71.65584,49.0238
--13.02322,-17.1108,-15.77996,-12.64298,73.14867,49.1372
--12.36425,-16.245,-14.9815,-12.18375,69.447375,47.633
--13.426,-17.64,-16.366,-13.132,75.411,49.0392
--12.9789,-16.929,-15.70635,-12.69675,72.371475,48.013
--12.8478,-16.8511,-15.5477,-12.4754,71.64045,47.8325
--12.8478,-16.758,-15.5477,-12.4754,71.64045,48.013
--13.11,-17.195,-15.865,-12.825,73.1025,47.3575
--13.205,-17.195,-15.96,-13.015,73.093,47.7375
--12.9409,-16.8511,-15.6408,-12.5685,71.72424,49.343
--13.48578,-17.56062,-16.29936,-13.0977,74.75391,49.8465
--13.761,-17.919,-16.632,-13.464,76.2795,50.14
--13.4456,-17.38324,-16.13472,-13.15748,73.99882,49.8232
--13.72,-17.836,-16.562,-13.23,75.509,49.4214
--12.768,-16.5984,-15.4128,-12.4032,70.2696,48.5184
--13.1712,-17.12256,-15.89952,-12.88896,72.48864,48.6668
--13.72,-17.836,-16.562,-13.23,75.509,49.04
--13.395,-17.385,-16.055,-13.015,73.188,46.7875
--13.54164,-17.47928,-16.23076,-13.06144,73.99882,48.559
--13.40064,-17.39232,-16.1568,-12.92544,73.22832,47.0784
--12.8592,-16.6896,-15.504,-12.5856,70.26048,46.968
--13.63768,-17.57532,-16.3268,-13.25352,73.99882,48.6668
--13.63626,-17.57349,-16.3251,-13.25214,73.991115,48.3545
--13.22304,-17.04096,-15.8304,-12.75744,71.74896,48.0635
--13.63626,-17.66952,-16.42113,-13.34817,73.981512,48.5496
--13.17745,-16.9556,-15.75765,-12.62455,71.08451,47.0725
--13.17745,-16.9556,-15.75765,-12.80885,71.001575,48.5388
--13.45344,-17.21664,-16.08768,-12.98304,72.48864,47.952
--13.73229,-17.57349,-16.42113,-13.25214,73.981512,49.3515
--13.73229,-17.66952,-16.42113,-13.34817,74.077542,48.8367
--13.82976,-17.67136,-16.42284,-13.25352,74.09486,47.9514
--13.2696,-16.9556,-15.8498,-12.80885,71.093725,46.588
--13.2696,-16.9556,-15.8498,-12.7167,71.08451,47.4621
--14.21,-18.032,-16.856,-13.622,75.5972,49.04
--14.065,-17.848,-16.684,-13.386,74.8258,47.1711
--13.775,-17.575,-16.34,-13.3,73.283,46.797
--14.21,-18.13,-16.856,-13.524,75.5972,47.9514
--14.21145,-18.22986,-16.95573,-13.81941,75.604914,48.2625
--14.16492,-18.04572,-16.78446,-13.5828,74.841228,47.9514
--14.162,-18.042,-16.781,-13.58,74.8258,48.93
--13.4539,-17.1399,-15.94195,-12.5324,71.093725,47.2875
--14.6,-18.5,-17.3,-13.9,77.14,48.45
--14.016,-17.76,-16.608,-13.248,74.0544,48.63
--14.406,-18.228,-16.954,-13.916,75.5972,47.5888
--13.82535,-17.58735,-16.3647,-13.44915,72.55017,48.1437
--13.97382,-17.77622,-16.54044,-13.49852,73.329284,47.2778
--13.54752,-17.14176,-16.03584,-12.81024,71.184384,46.4064
--14.112,-17.856,-16.608,-13.248,74.1504,48.45
--14.06592,-17.67744,-16.53696,-13.3056,73.408896,47.8665
--13.78176,-17.41344,-16.20288,-13.0368,71.925888,47.184
--14.06,-17.86,-16.53,-13.49,73.2925,46.132
--14.06592,-17.86752,-16.53696,-13.49568,73.408896,46.2336
--14.30847,-17.95761,-16.70922,-13.63626,74.173572,47.7576
--13.73184,-17.23392,-16.03584,-13.08672,71.184384,46.128
--14.16096,-17.77248,-16.53696,-13.3056,73.408896,47.8665
--14.01345,-17.6814,-16.45875,-13.26105,72.64422,45.6475
--14.304,-18.048,-16.8,-13.536,74.1408,45.9168
--14.7,-18.424,-17.15,-13.916,75.705,47.1968
--14.25,-17.955,-16.72,-13.49,73.378,48.05
--14.55,-18.236,-16.975,-13.677,74.9228,46.7928
--13.968,-17.50656,-16.296,-13.31616,71.916576,46.5018
--13.62775,-16.967,-15.884,-13.08625,69.7091,45.543
--14.345,-18.05,-16.72,-13.775,73.378,45.448
--15,-19,-17.6,-14.3,77.24,48.05
--14.20155,-17.8695,-16.5528,-13.3551,72.64422,47.2824
--14.20155,-17.77545,-16.5528,-13.3551,72.64422,45.3625
--14.798,-18.424,-17.248,-14.014,75.705,48.16
--14.30016,-17.68704,-16.55808,-13.45344,72.667392,46.795
--15.048,-18.711,-17.523,-14.256,76.4676,48.05
--13.8624,-17.328,-16.1424,-13.1328,70.44288,45.9264
--14.0068,-17.5085,-16.31055,-13.2696,71.17666,45.372
--14.1512,-17.5959,-16.4787,-13.3133,71.91044,45.3625
--14.39577,-17.78301,-16.65393,-13.45487,72.675116,46.0362
--14.688,-18.144,-16.992,-13.824,74.1504,45.84
--14.688,-18.336,-16.992,-13.824,74.1504,46.0224
--14.39424,-17.96928,-16.74624,-13.6416,72.667392,46.991
--14.994,-18.718,-17.444,-14.21,75.6952,47.84
--14.48832,-17.96928,-16.74624,-13.35936,72.667392,46.128
--14.0448,-17.328,-16.2336,-13.0416,70.44288,46.4064
--14.94108,-18.4338,-17.26956,-13.97088,74.938248,47.8665
--14.48832,-17.8752,-16.74624,-13.54752,72.667392,45.84
--15.246,-18.909,-17.622,-14.652,76.4577,47.24
--15.035,-18.624,-17.266,-14.356,74.9228,47.75
--14.7312,-18.24768,-16.91712,-13.87584,73.408896,45.84
--14.4336,-17.78592,-16.57536,-13.5024,71.9352,45.84
--15.035,-18.527,-17.266,-14.065,74.9228,46.84
--14.88,-18.24,-17.088,-14.016,74.1504,47.35
--14.67648,-17.8752,-16.84032,-13.82976,72.667392,46.1874
--14.82936,-18.25152,-17.01574,-14.06888,73.424344,46.1874
--15.6,-19.3,-17.9,-14.7,77.24,47.54
--14.82624,-18.24768,-17.01216,-13.87584,73.408896,45.168
--14.915,-18.24,-17.005,-13.775,73.378,47.24
--15.07671,-18.34173,-17.18937,-13.63626,74.077542,46.9854
--14.76585,-17.96355,-16.83495,-13.167,72.55017,46.6587
--15.38757,-18.6219,-17.54379,-14.01543,75.702924,46.7676
--15.23214,-18.53082,-17.36658,-14.26194,74.938248,46.2952
--14.86464,-17.96928,-16.84032,-13.92384,72.667392,45.168
--14.7098,-17.8752,-16.758,-13.6857,71.91044,44.6975
--15.326,-18.624,-17.363,-14.259,74.8258,47.13
--14.4096,-17.5104,-16.416,-13.3152,70.44288,45.163
--14.56128,-17.60256,-16.49664,-13.54752,71.092224,45.6384
--14.8029,-17.7821,-16.6649,-13.7788,71.82665,45.087
--14.80608,-17.87904,-16.7616,-13.68864,71.925888,45.5616
--14.95872,-18.25152,-16.9344,-14.112,72.573312,46.5892
--15.423,-18.818,-17.46,-14.259,74.9228,47.35
--14.34975,-17.41825,-16.245,-13.357,69.61885,44.878
--15.264,-18.528,-17.28,-14.208,74.0544,47.46
--14.592,-17.6016,-16.5072,-13.224,70.44288,46.128
--14.744,-17.78495,-16.587,-13.6382,71.17666,46.3175
--15.2,-18.335,-17.195,-14.25,73.378,44.422
--14.44,-17.59875,-16.33525,-13.44725,69.7091,44.5075
--15.048,-18.33975,-17.02305,-14.01345,72.64422,44.6975
--14.83615,-17.96925,-16.67915,-13.54605,71.17666,45.4385
--14.99232,-18.1584,-16.94784,-13.87488,71.925888,45.9295
--15.778,-19.012,-17.836,-14.504,75.6952,46.5892
--15.14688,-18.25152,-17.02848,-13.82976,72.667392,47.2752
--15.30144,-18.43776,-17.29728,-14.256,73.408896,47.2725
--14.6832,-17.8752,-16.6896,-13.7712,70.44288,44.9825
--15.39,-18.62,-17.29,-14.44,73.378,45.6475
--15.24096,-18.43968,-17.21664,-14.112,72.667392,45.9264
--15.39972,-18.5367,-17.39598,-14.259,73.424344,46.9812
--15.24258,-18.34755,-17.21847,-14.20759,72.675116,46.0362
--14.92992,-17.9712,-16.86528,-13.54752,71.184384,45.9168
--15.71724,-18.9189,-17.65764,-14.65002,74.938248,47.2725
--15.1753,-18.2476,-17.0373,-14.1512,71.91044,44.9825
--15.97563,-19.30797,-17.93583,-14.99553,75.604914,46.7676
--15.811,-19.109,-17.751,-14.647,74.9131,47.13
--16.137,-19.503,-18.216,-14.85,76.3686,47.0646
--15.1753,-18.2476,-17.1304,-14.0581,71.81734,46.8832
--16.4,-19.6,-18.4,-15.2,77.14,47.83
--15.91128,-19.01592,-17.85168,-14.74704,74.938248,47.5695
--15.908,-19.012,-17.848,-14.841,74.9228,46.5018
--15.75056,-19.01592,-17.67136,-14.69412,74.085256,46.5108
--15.42912,-18.62784,-17.4048,-14.30016,72.667392,46.8832
--16.072,-19.404,-18.13,-15.19,75.5972,48.24
--16.17,-19.404,-18.13,-14.7,75.5972,48.35
--16.005,-19.109,-17.945,-14.841,74.8355,47.75
--16.5,-19.7,-18.4,-15,77.14,47.75
--15.675,-18.715,-17.575,-14.345,73.283,47.75
--15.52485,-18.62982,-17.40665,-14.48986,72.675116,46.5018
--15.20475,-18.2457,-17.04775,-14.09895,71.17666,46.4048
--15.77996,-18.91694,-17.5861,-14.44912,73.424344,47.3845
--16.268,-19.404,-18.13,-15.092,75.5972,48.24
--15.2969,-18.33785,-17.1399,-14.1911,71.08451,45.543
--15.77996,-18.82188,-17.68116,-14.63924,73.329284,47.6672
--15.94098,-19.01394,-17.86158,-14.88465,74.087145,46.8995
--16.199,-19.303,-18.042,-14.744,74.8258,48.05
--15.39072,-18.33984,-17.14176,-14.10048,71.092224,46.3104
--16.366,-19.502,-18.228,-14.896,75.5972,48.05
--16.20234,-19.404,-18.14274,-14.94108,74.841228,47.9514
--15.70635,-18.81,-17.58735,-14.4837,72.559575,46.132
--15.39072,-18.432,-17.23392,-14.2848,71.092224,46.3104
--16.46568,-19.602,-18.32787,-15.28956,75.604914,47.6784
--15.64416,-18.624,-17.41344,-14.52672,71.832768,47.1711
--16.29936,-19.30698,-18.14274,-14.74704,74.85093,47.7576
--15.48288,-18.33984,-17.23392,-14.19264,71.092224,46.6176
--16.296,-19.303,-18.139,-15.035,74.8258,48.93
--16.632,-19.8,-18.513,-15.345,76.3686,48.24
--15.80544,-18.91008,-17.59296,-14.67648,72.58272,46.0224
--16.731,-19.8,-18.612,-15.345,76.3686,48.16
--16.562,-19.6,-18.424,-15.092,75.5972,48.16
--15.57335,-18.43,-17.23205,-14.1911,71.08451,46.8995
--15.7339,-18.62,-17.4097,-14.4305,71.81734,47.7652
--16.562,-19.502,-18.326,-15.092,75.5972,48.57
--16.83,-19.701,-18.513,-15.147,76.3785,48.93
--15.9953,-18.72391,-17.59483,-14.48986,72.581026,47.0062
--15.6655,-18.43,-17.23205,-14.1911,71.08451,47.6755
--16.1602,-19.012,-17.77622,-14.63924,73.329284,47.873
--16.1568,-19.008,-17.77248,-14.82624,73.313856,46.9728
--15.75765,-18.43,-17.3242,-14.1911,71.08451,46.588
--16.59042,-19.404,-18.14274,-15.0381,74.85093,48.1437
--16.08768,-18.816,-17.68704,-14.48832,72.58272,47.873
--15.75765,-18.43,-17.3242,-14.1911,71.08451,46.6925
--16.08255,-18.81,-17.6814,-14.38965,72.55017,46.132
--15.43275,-18.05,-16.967,-13.8985,69.61885,46.1985
--16.08768,-18.816,-17.68704,-14.5824,72.573312,47.383
--17.1,-20,-18.8,-15.6,77.14,48.56
--16.35032,-19.012,-17.87128,-14.63924,73.329284,47.1808
--15.6864,-18.24,-17.1456,-13.9536,70.35168,45.828
--16.512,-19.2,-18.048,-14.784,74.064,46.3104
--16.35032,-19.012,-17.87128,-14.54418,73.33879,47.775
--15.6864,-18.24,-17.1456,-14.136,70.35168,46.2336
--16.18348,-18.818,-17.68892,-14.58395,72.590435,46.7152
--17.3,-20.1,-18.8,-15.6,77.14,48.56
--16.95573,-19.70001,-18.52389,-15.28956,75.614715,47.8665
--15.61325,-18.14025,-16.967,-13.8985,69.627875,45.752
--16.78446,-19.50102,-18.23976,-15.0381,74.841228,47.6672
--16.781,-19.497,-18.236,-14.841,74.8355,47.6755
--16.954,-19.6,-18.424,-15.288,75.5972,47.5888
--16.70922,-19.30203,-18.05364,-14.88465,74.087145,46.6085
--16.37166,-18.91209,-17.68892,-14.48986,72.581026,46.6085
--16.36992,-18.91008,-17.78112,-14.77056,72.58272,46.6848
--17.226,-19.899,-18.711,-15.444,76.3686,47.5695
--16.53,-19.095,-17.955,-14.82,73.283,47.94
--16.70922,-19.30203,-18.14967,-14.88465,74.077542,46.6085
--16.3647,-18.90405,-17.77545,-14.6718,72.55017,45.543
--17.052,-19.698,-18.522,-15.288,75.5972,48.05
--16.37166,-18.91209,-17.78301,-14.58395,72.581026,46.6085
--17.325,-19.998,-18.711,-15.444,76.3785,47.75
--16.8,-19.392,-18.144,-14.784,74.064,46.128
--16.625,-19.19,-17.955,-14.82,73.283,45.7425
--16.12625,-18.52215,-17.41635,-14.1911,71.08451,46.3951
--16.9785,-19.50102,-18.33678,-15.13512,74.841228,46.9812
--17.248,-19.698,-18.522,-15.386,75.5972,47.2752
--16.55808,-18.91008,-17.78112,-14.77056,72.573312,46.9812
--17.248,-19.796,-18.522,-15.288,75.5972,47.6574
--17.07552,-19.59804,-18.33678,-15.32916,74.85093,47.4606
--16.55984,-19.00618,-17.78301,-14.77213,72.581026,46.5018
--17.6,-20.2,-18.9,-15.7,77.15,48.24
--16.72704,-19.19808,-17.96256,-14.63616,73.32336,45.744
--16.65393,-19.00618,-17.78301,-14.67804,72.581026,46.3175
--16.5528,-18.9981,-17.77545,-14.8599,72.559575,46.7676
--16.992,-19.392,-18.144,-15.168,74.064,45.744
--16.31055,-18.70645,-17.41635,-14.5597,71.08451,45.543
--16.815,-19.19,-17.955,-14.82,73.378,45.6475
--17.169,-19.594,-18.333,-15.035,74.8355,46.2205
--16.815,-19.19,-17.955,-14.915,73.283,45.543
--17.17254,-19.59804,-18.4338,-15.23214,74.841228,47.1735
--16.5718,-18.8993,-17.689,-14.5236,71.91044,46.8734
--17.088,-19.488,-18.24,-15.072,74.1504,46.512
--16.57536,-18.90336,-17.6928,-14.71296,71.832768,45.744
--16.4027,-18.70645,-17.5085,-14.46755,71.08451,45.163
--16.74624,-19.00416,-17.8752,-14.5824,72.667392,47.089
--17.09334,-19.39806,-18.2457,-15.07671,74.077542,47.6685
--17.09334,-19.49409,-18.2457,-15.17274,74.087145,47.0062
--16.66848,-18.81024,-17.6928,-14.61984,71.925888,45.84
--16.49664,-18.70848,-17.5104,-14.46912,71.092224,45.7344
--16.83495,-19.09215,-17.8695,-14.76585,72.55017,45.4385
--16.84211,-19.10027,-17.8771,-14.96031,72.581026,46.1138
--16.66848,-18.90336,-17.6928,-14.61984,71.832768,45.5616
--17.363,-19.788,-18.43,-15.326,74.8258,47.54
--16.84032,-19.09824,-17.96928,-14.77056,72.58272,46.0224
--16.7616,-18.90336,-17.6928,-14.61984,71.84208,48.24
--17.542,-19.894,-18.62,-15.484,75.607,48.46
--17.64,-19.894,-18.718,-15.484,75.607,47.45
--16.9362,-19.10027,-17.8771,-14.86622,72.581026,45.8228
--17.2854,-19.49409,-18.2457,-15.07671,74.087145,47.4621
--17.2854,-19.49409,-18.2457,-15.17274,73.991115,47.1711
--16.5888,-18.70848,-17.5104,-14.56128,71.10144,46.896
--16.587,-18.70645,-17.5085,-14.5597,71.093725,46.4075
--17.82,-20.097,-18.909,-15.642,76.3686,48.4407
--17.38143,-19.59012,-18.34173,-15.26877,74.087145,47.4621
--16.85472,-18.99648,-17.78592,-14.80608,71.84208,47.3942
--17.919,-20.196,-18.909,-15.642,76.3686,49.1634
--17.73981,-19.99404,-18.71991,-15.48558,75.516705,49.3515
--17.02848,-19.19232,-17.96928,-14.77056,72.573312,48.4128
--17.38324,-19.59216,-18.34364,-15.17432,73.989216,48.4512
--16.33525,-18.411,-17.23775,-14.34975,69.537625,46.873
--17.02848,-19.19232,-17.96928,-14.86464,72.48864,47.9616
--18.018,-20.196,-18.909,-15.642,76.2795,48.9456
--18.018,-20.196,-18.909,-15.642,76.2795,48.9456
--17.29728,-19.38816,-18.24768,-15.2064,73.218816,49.3515
--17.83782,-20.09205,-18.81792,-15.48558,75.516705,47.6784
--17.1171,-19.28025,-18.0576,-14.8599,72.465525,48.7674
--17.12256,-19.19232,-18.06336,-14.95872,72.48864,47.3732
--16.9442,-18.9924,-17.7821,-14.7098,71.73355,46.797
--18.018,-20.196,-19.008,-15.741,76.2795,48.45
--16.94784,-18.99648,-17.87904,-14.71296,71.74896,47.1032
--16.86345,-18.7986,-17.6928,-14.65185,70.99236,48.1702
--17.21664,-19.2864,-18.06336,-14.86464,72.48864,47.6736
--17.934,-20.188,-18.816,-15.778,75.509,50.14
--17.93583,-20.09205,-18.81792,-15.58359,75.516705,49.4604
--17.934,-20.09,-18.816,-15.582,75.509,49.25
--16.86345,-18.89075,-17.6928,-14.83615,71.001575,48.3545
--17.568,-19.68,-18.432,-15.264,73.968,47.7504
--17.75466,-19.8891,-18.62784,-15.5232,74.75391,49.2426
--17.39598,-19.4873,-18.25152,-15.11454,73.24373,48.0635
--17.568,-19.68,-18.432,-15.36,73.9584,47.6736
--18.03384,-19.99404,-18.81792,-15.77961,75.516705,49.2426
--17.934,-20.09,-18.816,-15.68,75.4992,49.44
--17.31072,-19.2864,-18.06336,-14.95872,72.479232,47.2896
--17.3052,-19.3743,-18.15165,-15.048,72.45612,46.588
--17.3052,-19.3743,-18.15165,-14.95395,72.371475,46.4835
--17.31072,-19.2864,-18.15744,-14.95872,72.479232,48.7452
--17.848,-19.982,-18.721,-15.423,74.6415,49.15
--17.31256,-19.38254,-18.15937,-15.24258,72.402255,46.9965
--18.315,-20.394,-19.107,-15.84,76.1805,48.5496
--17.04775,-18.9829,-17.78495,-14.744,70.91864,46.6925
--17.39925,-19.3743,-18.15165,-14.95395,72.465525,46.208
--18.315,-20.394,-19.107,-15.939,76.1805,48.4407
--16.872,-18.7872,-17.6016,-14.6832,70.1784,46.588
--17.945,-19.982,-18.721,-15.423,74.6415,49.33
--17.4048,-19.38048,-18.15744,-15.0528,72.39456,47.7652
--17.40665,-19.38254,-18.25346,-15.0544,72.496345,47.7725
--17.2272,-19.18272,-17.97216,-14.8992,71.65584,46.896
--17.856,-19.776,-18.624,-15.456,73.8624,48.34
--17.5824,-19.57824,-18.43776,-15.2064,73.13328,46.416
--18.414,-20.394,-19.206,-15.741,76.1805,48.1536
--17.86158,-19.78218,-18.62982,-15.46083,73.895085,48.8367
--17.50074,-19.38254,-18.25346,-15.14849,72.402255,46.8898
--17.67744,-19.67328,-18.43776,-15.2064,73.13328,47.7576
--18.228,-20.188,-19.012,-15.68,75.411,48.265
--17.49888,-19.47456,-18.25152,-15.0528,72.39456,47.1968
--17.856,-19.776,-18.624,-15.552,73.8624,48.56
--17.68116,-19.58236,-18.44164,-15.39972,73.139164,47.187
--17.95948,-19.88028,-18.63176,-15.46244,73.912384,47.4908
--17.4097,-19.2717,-18.0614,-14.896,71.64045,46.968
--17.23205,-19.07505,-17.8771,-15.02045,70.909425,47.2778
--17.95761,-19.87821,-18.62982,-15.55686,73.895085,47.2778
--17.59296,-19.47456,-18.25152,-15.14688,72.39456,46.8734
--18.139,-20.079,-18.818,-15.617,74.6415,48.16
--17.952,-19.872,-18.624,-15.36,73.872,46.6176
--17.23205,-19.07505,-17.8771,-14.83615,70.909425,47.2778
--17.95761,-19.78218,-18.62982,-15.46083,73.895085,46.7928
--17.59296,-19.47456,-18.25152,-15.14688,72.39456,45.9168
--17.58735,-19.46835,-18.2457,-15.14205,72.371475,48.0744
--17.3242,-19.07505,-17.8771,-14.9283,70.909425,47.1032
--18.612,-20.592,-19.206,-15.939,76.1805,48.6585
--18.42588,-20.38608,-19.01394,-15.77961,75.418695,47.5695
--17.87128,-19.77248,-18.5367,-15.39972,73.14867,47.2752
--17.3242,-19.1672,-17.96925,-14.83615,70.909425,46.6085
--16.967,-18.68175,-17.59875,-14.6205,69.447375,46.6925
--18.048,-19.968,-18.72,-15.552,73.8816,49.04
--17.86752,-19.76832,-18.5328,-15.49152,73.13328,46.9728
--17.86752,-19.76832,-18.5328,-15.30144,73.13328,45.9168
--17.86752,-19.76832,-18.5328,-15.49152,73.13328,48.1437
--18.048,-19.968,-18.72,-15.648,73.872,45.456
--18.14967,-19.97424,-18.72585,-15.55686,73.895085,47.5695
--17.96256,-19.76832,-18.5328,-15.39648,73.13328,47.1735
--17.955,-19.76,-18.525,-15.295,73.1025,47.24
--18.15156,-19.97632,-18.7278,-15.3664,73.90278,47.2752
--17.41635,-19.25935,-18.0614,-14.9283,70.909425,45.448
--17.78112,-19.56864,-18.3456,-15.24096,72.39456,44.8896
--18.14967,-19.97424,-18.82188,-15.65289,73.895085,45.8228
--17.96634,-19.86754,-18.63176,-15.39972,73.14867,45.6385
--17.78112,-19.66272,-18.43968,-15.24096,72.39456,46.0224
--18.33678,-20.27718,-19.01592,-15.91128,74.65689,46.8765
--18.33678,-20.27718,-19.01592,-15.62022,74.65689,46.0012
--18.81,-20.592,-19.404,-16.038,76.1805,48.34
--17.77545,-19.5624,-18.4338,-15.14205,72.371475,44.498
--18.62,-20.384,-19.208,-16.072,75.4208,47.65
--19,-20.8,-19.6,-16.5,76.95,47.54
--18.81,-20.691,-19.404,-16.236,76.1805,47.1636
--18.2457,-20.07027,-18.82188,-15.74892,73.895085,46.6587
--17.1475,-18.86225,-17.689,-14.71075,69.447375,45.9325
--18.0614,-19.86754,-18.63176,-15.39972,73.14867,45.8228
--17.8771,-19.57072,-18.44164,-15.52485,72.402255,46.0362
--18.81,-20.691,-19.404,-16.236,76.1805,47.0646
--18.71991,-20.48409,-19.20996,-16.07364,75.418695,46.9755
--17.60065,-19.25935,-18.0614,-15.20475,70.909425,45.7258
--18.15646,-19.86754,-18.63176,-15.58984,73.14867,45.7268
--18.34173,-20.07027,-18.82188,-15.74892,73.895085,47.0646
--17.7821,-19.4579,-18.2476,-15.2684,71.64045,44.9825
--17.7821,-19.4579,-18.2476,-15.2684,71.64045,45.6475
--18.336,-20.064,-18.816,-15.744,73.872,45.6384
--18.527,-20.273,-19.012,-15.908,74.6415,45.9295
--18.15646,-19.86754,-18.63176,-15.6849,73.14867,46.7152
--17.60256,-19.26144,-18.06336,-15.02208,70.91712,46.8
--18.15264,-19.86336,-18.62784,-15.49152,73.142784,46.2336
--17.6928,-19.25935,-18.0614,-15.1126,70.817275,45.923
--17.78592,-19.46208,-18.34464,-15.27168,71.65584,45.9168
--17.60065,-19.25935,-18.0614,-15.20475,70.909425,46.2205
--19.008,-20.691,-19.404,-16.434,76.1805,47.54
--18.816,-20.482,-19.306,-16.268,75.411,46.2952
--18.06336,-19.66272,-18.43968,-15.5232,72.39456,45.7344
--18.24,-19.855,-18.715,-15.485,73.1025,45.923
--18.43776,-20.07027,-18.91791,-15.74892,73.895085,48.0744
--17.69472,-19.3536,-18.15552,-15.11424,70.91712,46.128
--18.62784,-20.3742,-19.11294,-15.91128,74.65689,47.089
--17.6928,-19.3515,-18.15355,-15.20475,70.909425,45.087
--18.816,-20.58,-19.306,-16.268,75.411,46.2952
--18.624,-20.37,-19.109,-15.714,74.6415,47.83
--18.06336,-19.7568,-18.53376,-15.42912,72.39456,46.403
--18.624,-20.37,-19.109,-15.811,74.6415,47.54
--17.97216,-19.5552,-18.34464,-15.3648,71.65584,46.7055
--17.78495,-19.3515,-18.15355,-15.1126,70.91864,45.163
--18.15937,-19.7589,-18.53573,-15.43076,72.402255,46.2108
--19.107,-20.79,-19.503,-16.137,76.1805,47.3517
--17.6016,-19.152,-17.9664,-15.048,70.1784,45.6475
--18.53379,-20.1663,-18.91791,-15.84495,73.895085,46.9854
--18.91593,-20.5821,-19.40598,-16.17165,75.418695,47.1735
--18.91593,-20.5821,-19.30797,-16.17165,75.418695,47.1735
--17.78688,-19.3536,-18.24768,-15.29856,70.91712,45.168
--18.914,-20.678,-19.404,-16.268,75.411,45.9032
--17.97216,-19.64832,-18.43776,-15.27168,71.65584,45.5415
--18.15937,-19.85299,-18.62982,-15.43076,72.402255,45.7161
--18.818,-20.467,-19.206,-15.908,74.5445,47.94
--17.78688,-19.44576,-18.24768,-15.11424,70.91712,46.2336
--17.5085,-19.04275,-17.8695,-14.71075,69.357125,45.828
--17.5085,-19.04275,-17.8695,-14.801,69.447375,44.9825
--17.6928,-19.2432,-18.0576,-15.1392,70.0872,44.7735
--17.8771,-19.44365,-18.2457,-15.1126,70.817275,45.0468
--18.0614,-19.6441,-18.4338,-15.4546,71.54735,45.8248
--17.6928,-19.2432,-18.0576,-14.9568,70.09632,44.5824
--18.44164,-20.05766,-18.82188,-15.77996,73.05361,45.9295
--19.012,-20.678,-19.404,-16.17,75.313,45.7268
--18.818,-20.467,-19.206,-15.908,74.5445,44.9692
--18.06528,-19.64832,-18.43776,-15.27168,71.56272,46.3951
--18.43776,-20.05344,-18.81792,-15.6816,73.03824,46.1934
--18.34755,-19.85299,-18.62982,-15.52485,72.308165,46.9965
--19.4,-21.1,-19.8,-16.4,76.86,47.54
--18.7278,-20.26444,-19.01592,-15.94264,73.80674,45.913
--18.5328,-20.05344,-18.91296,-15.6816,73.047744,46.3023
--17.784,-19.2432,-18.0576,-15.1392,70.0872,44.2944
--19.11195,-20.68011,-19.40598,-16.26966,75.320685,46.3815
--18.1545,-19.6441,-18.4338,-15.4546,71.54735,46.011
--17.96925,-19.44365,-18.2457,-15.20475,70.909425,45.7258
--19.11,-20.678,-19.502,-16.366,75.313,47.64
--17.9712,-19.44576,-18.33984,-15.39072,70.82496,44.688
--18.1584,-19.64832,-18.53088,-15.45792,71.56272,44.016
--19.305,-20.988,-19.701,-16.533,76.0815,46.7676
--18.82384,-20.26444,-19.11196,-15.94264,73.90278,45.913
--18.5367,-20.05766,-18.91694,-15.77996,73.14867,44.5812
--18.9189,-20.47122,-19.30698,-16.0083,74.65689,45.227
--19.20996,-20.68011,-19.50399,-16.36767,75.418695,44.9856
--18.62,-20.045,-18.905,-15.58,73.1025,43.7285
--18.82384,-20.36048,-19.11196,-15.94264,73.90278,45.619
--18.06336,-19.53792,-18.33984,-15.2064,70.91712,45.168
--18.43968,-19.94496,-18.72192,-15.61728,72.39456,45.8248
--18.0614,-19.5358,-18.33785,-15.38905,70.909425,44.2225
--18.82188,-20.35836,-19.10997,-15.94098,73.895085,45.1535
--18.816,-20.352,-19.104,-16.032,73.872,46.65
--18.44164,-19.94708,-18.72391,-15.61894,72.402255,44.5812
--18.4338,-19.9386,-18.71595,-15.51825,72.371475,45.6786
--18.62,-20.14,-18.905,-15.675,73.1025,43.833
--18.82188,-20.35836,-19.10997,-15.94098,73.895085,45.0468
--18.0614,-19.5358,-18.33785,-15.20475,70.909425,43.377
--18.62784,-20.14848,-18.91296,-15.96672,73.142784,46.3716
--18.816,-20.352,-19.104,-16.032,73.7856,46.95
--18.52785,-19.9386,-18.71595,-15.70635,72.277425,44.878
--19.20996,-20.77812,-19.50399,-16.36767,75.320685,46.9755
--18.3407,-19.7372,-18.62,-15.3615,71.55666,44.498
--19.503,-20.988,-19.8,-16.434,76.0815,46.7676
--18.3407,-19.7372,-18.62,-15.5477,71.54735,46.403
--18.912,-20.352,-19.2,-15.936,73.7856,47.13
--19.503,-20.988,-19.8,-16.533,76.0815,46.3716
--18.53573,-20.04117,-18.818,-15.71303,72.298756,45.1535
--18.91988,-20.36048,-19.208,-15.94264,73.816344,46.011
--18.72682,-20.15272,-19.012,-15.77996,73.063116,47.089
--19.109,-20.564,-19.4,-16.296,74.5445,46.14
--18.34464,-19.83456,-18.624,-15.3648,71.56272,44.688
--19.306,-20.188,-18.13,-16.954,75.3228,48.05
--19.30797,-19.11195,-16.95573,-16.95573,75.320685,46.3716
--18.53376,-17.49888,-15.33504,-15.89952,72.30048,45.8248
--19.503,-17.721,-15.444,-16.632,76.0815,46.6587
--19.404,-17.052,-14.406,-15.778,75.313,46.0012
--19.008,-17.952,-14.88,-14.496,73.7856,46.36
--18.6219,-18.6219,-15.6123,-15.048,72.277425,44.9825
--19.20996,-19.404,-16.4934,-15.23214,74.55987,47.3517
--18.62784,-18.816,-16.18176,-14.48832,72.30048,45.9032
--18.81,-18.905,-16.53,-14.535,73.0075,47.53
--19.01592,-19.11196,-16.807,-14.50204,73.80674,46.2952
--19.8,-19.8,-17.6,-15.1,76.85,47.35
--19.206,-19.206,-17.169,-14.841,74.4572,45.7161
--19.602,-19.503,-17.622,-14.949,75.9924,47.76
--19.008,-18.912,-17.088,-14.688,73.776,47.65
--19.602,-19.602,-17.721,-15.246,76.0815,47.6685
--19.8,-20,-18.1,-15.6,76.76,48.16
--18.82188,-19.10706,-17.30092,-14.7343,72.95855,46.1874
--18.24768,-18.52416,-16.77312,-14.37696,70.7328,45.6288
--19.01394,-19.30203,-17.57349,-14.69259,73.703025,47.0646
--19.404,-19.698,-18.032,-15.288,75.215,45.619
--19.602,-19.899,-18.216,-15.345,75.9924,47.8566
--19.01394,-19.30203,-17.76555,-14.98068,73.703025,46.7676
--18.43776,-18.71712,-17.2272,-14.61984,71.478912,46.512
--18.82188,-19.10706,-17.5861,-15.01948,72.968056,46.0265
--18.2457,-18.6143,-17.1399,-14.5597,70.73434,44.9825
--19.008,-19.488,-17.952,-15.168,73.68,47.13
--18.81,-19.285,-17.765,-14.915,72.9125,48.56
--18.2457,-18.70645,-17.3242,-14.46755,70.73434,44.4745
--19.206,-19.691,-18.236,-15.229,74.4572,46.55
--19.01394,-19.49409,-18.05364,-15.17274,73.712628,45.9756
--18.82188,-19.29718,-17.87128,-15.01948,72.968056,46.1874
--19.20996,-19.69506,-18.33678,-15.13512,74.472552,45.3915
--19.8,-20.3,-18.9,-15.8,76.76,45.95
--18.6219,-19.1862,-17.77545,-15.048,72.183375,46.8765
--19.008,-19.584,-18.24,-15.264,73.68,46.76
--18.72192,-19.19232,-17.8752,-14.86464,72.2064,46.795
--19.404,-20.09,-18.718,-15.582,75.215,46.03
--18.0576,-18.696,-17.4192,-14.5008,69.996,44.422
--19.303,-19.885,-18.527,-15.229,74.4475,45.2505
--19.50399,-20.09205,-18.71991,-15.77961,75.232476,45.7875
--19.104,-19.68,-18.336,-15.36,73.68,47.35
--19.01394,-19.68615,-18.34173,-15.26877,73.703025,47.2725
--18.72192,-19.2864,-18.06336,-14.86464,72.121728,45.456
--18.43776,-19.0896,-17.87904,-14.80608,71.385792,46.0362
--19.30698,-19.8891,-18.62784,-15.5232,74.375532,46.109
--19.50399,-20.09205,-18.81792,-15.6816,75.134466,47.0646
--19.104,-19.776,-18.432,-15.264,73.5936,47.24
--18.91694,-19.58236,-18.25152,-15.2096,72.872996,45.6092
--19.10997,-19.78218,-18.53379,-15.26877,73.616598,46.7152
--19.30698,-19.98612,-18.72486,-15.5232,74.375532,45.9756
--18.53088,-19.18272,-17.97216,-14.99232,71.385792,46.3951
--19.30698,-19.98612,-18.72486,-15.42618,74.36583,46.4706
--18.1488,-18.7872,-17.6016,-14.592,69.91392,44.9825
--18.905,-19.57,-18.335,-15.295,72.827,45.543
--19.502,-20.286,-18.914,-15.778,75.117,46.0012
--18.1488,-18.8784,-17.6928,-14.7744,69.91392,45.163
--18.905,-19.665,-18.43,-15.295,72.827,44.3175
--18.91694,-19.77248,-18.44164,-15.2096,72.872996,46.1972
--18.905,-19.76,-18.43,-15.39,72.8175,45.752
--18.62982,-19.47663,-18.25346,-15.24258,72.129394,46.3951
--18.71595,-19.5624,-18.2457,-15.14205,72.09873,45.6475
--19.30698,-20.18016,-18.82188,-15.71724,74.36583,47.8566
--18.91694,-19.77248,-18.44164,-15.58984,72.777936,47.873
--19.303,-20.176,-18.915,-15.714,74.3602,46.0362
--18.53088,-19.36896,-18.1584,-15.17856,71.292672,45.7344
--18.91694,-19.77248,-18.5367,-15.39972,72.872996,45.6385
--18.72192,-19.56864,-18.3456,-15.33504,72.121728,45.6384
--18.905,-19.855,-18.525,-15.485,72.732,45.258
--18.905,-19.855,-18.525,-15.485,72.732,47.75
--19.502,-20.384,-19.208,-15.778,75.1268,47.05
--19.104,-20.064,-18.72,-15.648,73.4976,45.84
--18.1488,-19.0608,-17.8752,-14.8656,69.82272,45.258
--18.72192,-19.66272,-18.43968,-15.33504,72.027648,46.128
--18.91296,-19.86336,-18.62784,-15.49152,72.762624,47.5695
--19.10997,-19.97424,-18.82188,-15.46083,73.520568,47.6784
--19.502,-20.482,-19.208,-16.17,75.0288,45.8346
--18.5269,-19.4579,-18.2476,-15.1753,71.27736,46.6872
--19.30698,-20.27718,-19.01592,-16.10532,74.278512,46.1874
--18.53088,-19.5552,-18.25152,-15.27168,71.292672,45.552
--18.33984,-19.26144,-18.06336,-15.11424,70.557696,46.0224
--18.905,-19.95,-18.715,-15.485,72.732,48.34
--18.72192,-19.7568,-18.53376,-15.42912,72.01824,45.552
--18.905,-19.855,-18.715,-15.58,72.732,48.24
--19.50399,-20.5821,-19.30797,-15.97563,75.036456,48.8367
--19.104,-20.16,-18.912,-15.744,73.4976,46.66
--18.5269,-19.551,-18.3407,-15.2684,71.27736,46.303
--18.53088,-19.5552,-18.34464,-15.27168,71.292672,46.0362
--19.10997,-20.1663,-18.91791,-15.84495,73.520568,46.2205
--18.72192,-19.7568,-18.62784,-15.42912,72.027648,46.6848
--18.72192,-19.7568,-18.53376,-15.42912,72.01824,45.7344
--18.5269,-19.551,-18.3407,-15.1753,71.27736,46.0275
--18.91694,-19.9626,-18.82188,-15.6849,72.777936,45.7161
--18.91694,-19.9626,-18.72682,-15.49478,72.777936,46.9812
--19.104,-20.16,-19.008,-15.84,73.4976,47.83
--19.701,-20.889,-19.602,-16.335,75.7944,48.56
--19.303,-20.467,-19.206,-16.102,74.2632,48.34
--18.72192,-19.85088,-18.62784,-15.61728,71.933568,45.4328
--17.95975,-19.04275,-17.8695,-14.89125,69.00515,43.833
--18.53088,-19.64832,-18.43776,-15.3648,71.199552,45.4464
--19.6,-20.678,-19.404,-16.17,74.9308,45.9032
--19.9,-21.1,-19.8,-16.4,76.46,48.56
--18.905,-20.045,-18.81,-15.675,72.637,44.7735
--19.404,-20.47122,-19.20996,-16.10532,74.278512,46.109
--18.33785,-19.44365,-18.2457,-15.2969,70.55004,45.8228
--17.95975,-19.04275,-17.8695,-14.9815,69.086375,46.132
--19.10997,-20.26233,-19.01394,-15.94098,73.424538,46.1835
--18.91296,-20.05344,-18.81792,-15.87168,72.667584,46.5795
--19.012,-20.15272,-18.91694,-15.97008,72.682876,46.109
--18.816,-19.94496,-18.72192,-15.5232,71.933568,46.9812
--19.4,-20.564,-19.303,-16.005,74.1662,48.34
--18.62,-19.7372,-18.5269,-15.4546,71.19357,47.6574
--19.012,-20.15272,-18.91694,-15.97008,72.682876,46.403
--18.816,-19.94496,-18.72192,-15.61728,71.933568,44.688
--19.012,-20.15272,-18.91694,-15.87502,72.682876,44.9692
--18.81,-20.03265,-18.71595,-15.6123,72.00468,46.5795
--19.4,-20.661,-19.303,-16.102,74.2632,46.55
--19.4,-20.176,-17.945,-16.102,74.2632,46.55
--18.24,-17.9664,-15.7776,-16.1424,69.73152,43.453
--18.62,-17.4097,-15.2684,-16.0132,71.27736,44.042
--18.624,-16.85472,-14.52672,-16.20288,71.301984,44.7936
--18.62,-16.2925,-13.7788,-15.827,71.27736,43.7285
--19.4,-17.751,-14.744,-13.968,74.2632,45.74
--19.2,-18.912,-15.84,-15.168,73.4976,43.4496
--19.404,-19.404,-16.39638,-15.23214,74.278512,44.933
--19.2,-19.2,-16.416,-14.784,73.488,46.36
--18.43,-18.33785,-15.94195,-14.1911,70.55004,45.3572
--19.008,-18.91296,-16.53696,-14.54112,72.762624,43.9104
--19.8,-19.602,-17.424,-15.048,75.7944,45.66
--19.2,-19.008,-16.992,-14.592,73.5072,45.16
--18.62,-18.4338,-16.5718,-14.1512,71.27736,42.617
--19.4,-19.109,-17.266,-14.841,74.2632,45.66
--19.6,-19.404,-17.542,-14.994,75.0288,45.85
--18.624,-18.53088,-16.7616,-14.4336,71.292672,44.0768
--19.208,-19.208,-17.47928,-14.8862,73.528224,44.7468
--19.8,-19.998,-18.117,-15.543,75.7944,45.2826
--18.62,-18.8062,-17.0373,-14.6167,71.37046,43.0635
--18.624,-18.81024,-17.13408,-14.61984,71.385792,43.8336
--18.816,-18.91008,-17.31072,-14.5824,72.121728,43.1424
--19,-19.095,-17.575,-14.82,72.8175,44.56
--20,-20.1,-18.5,-15.5,76.65,44.86
--19,-19.19,-17.67,-14.725,72.8175,42.2275
--19,-19.19,-17.67,-14.63,72.8175,41.8475
--19.206,-19.49409,-17.95761,-14.69259,73.606995,43.1165
--18.816,-19.09824,-17.68704,-14.86464,72.121728,43.2768
--18.432,-18.80064,-17.32608,-14.56128,70.649856,42.7776
--19.6,-19.894,-18.424,-15.582,75.117,44.45
--19.008,-19.29312,-17.96256,-15.01632,72.84816,44.0055
--18.62,-18.8993,-17.5959,-14.8029,71.36115,43.6688
--19.208,-19.49612,-18.15156,-15.46244,73.61466,44.149
--18.24,-18.6048,-17.328,-14.592,69.9048,42.96
--19.2,-19.68,-18.24,-15.456,73.68,42.96
--19.208,-19.6882,-18.2476,-15.3664,73.7107,43.953
--18.24,-18.696,-17.4192,-14.6832,70.00512,42.332
--18.432,-18.98496,-17.60256,-14.92992,70.7328,42.8544
--19.6,-20.188,-18.816,-15.778,75.215,44.64
--20,-20.6,-19.2,-16.4,76.75,44.45
--19.404,-19.98612,-18.62784,-15.71724,74.46285,44.4114
--18.818,-19.47663,-18.15937,-15.43076,72.214075,43.5918
--19.012,-19.77248,-18.34658,-15.49478,72.95855,44.0412
--18.43,-19.1672,-17.78495,-15.02045,70.725125,42.693
--18.432,-19.07712,-17.78688,-14.83776,70.7328,42.672
--18.24,-18.9696,-17.6928,-14.8656,69.996,42.0185
--19.602,-20.38608,-19.01394,-16.17165,75.222675,43.7976
--19.8,-20.592,-19.206,-16.236,75.9825,44.56
--19,-19.855,-18.525,-15.58,72.9125,44.56
--19.012,-19.86754,-18.5367,-15.58984,72.95855,43.4075
--19.206,-20.07027,-18.72585,-15.84495,73.712628,43.4075
--19.8,-20.691,-19.404,-16.236,75.9825,44.1936
--18.816,-19.7568,-18.43968,-15.5232,72.215808,44.149
--19,-19.95,-18.62,-15.77,72.922,45.05
--19.012,-19.9626,-18.63176,-15.58984,72.95855,43.7472
--18.24,-19.152,-17.8752,-14.9568,69.996,43.1424
--19.206,-20.1663,-18.82188,-15.94098,73.703025,44.4906
--19.208,-20.1684,-18.91988,-16.13472,73.816344,43.855
--19.206,-20.26233,-18.91791,-15.94098,73.703025,43.6888
--19.008,-20.05344,-18.72288,-15.6816,72.9432,44.4114
--19.8,-20.889,-19.602,-16.434,75.9825,44.6985
--18.43,-19.44365,-18.2457,-15.38905,70.817275,43.3008
--19.008,-20.14848,-18.81792,-15.87168,73.03824,43.248
--18.62,-19.7372,-18.4338,-15.6408,71.45425,43.7472
--19.8,-20.988,-19.701,-16.731,75.9825,45.55
--18.816,-19.85088,-18.62784,-15.61728,72.2064,43.5264
--18.24,-18.4224,-16.3248,-15.504,70.0872,42.902
--18.432,-17.78688,-15.48288,-16.49664,70.7328,43.6224
--19.206,-17.57349,-15.17274,-17.57349,73.799055,46.5795
--18.816,-16.55808,-14.01792,-17.02848,72.30048,44.688
--19.404,-16.78446,-13.87386,-16.0083,74.55987,45.7875
--19.6,-18.62,-15.386,-15.288,75.2248,46.55
--18.24,-18.0576,-15.1392,-14.5008,70.0872,42.8925
--19.008,-19.008,-16.1568,-14.92128,73.03824,44.5995
--19.206,-19.206,-16.51716,-14.98068,73.799055,45.3915
--19.206,-19.10997,-16.70922,-14.88465,73.799055,43.7955
--19,-18.905,-16.625,-14.63,73.0075,46.25
--20,-19.8,-17.6,-15.5,76.85,45.44
--19.404,-19.20996,-17.17254,-14.84406,74.55987,44.639
--18.24,-18.1488,-16.2336,-14.0448,70.09632,43.5575
--19.8,-19.701,-17.721,-15.345,76.0914,45.45
--18.05,-18.05,-16.245,-14.079,69.357125,43.0635
--18.81,-18.90405,-17.02305,-14.8599,72.277425,43.0635
--19.008,-19.19808,-17.39232,-14.82624,73.03824,45.3915
--18.81,-18.9981,-17.3052,-14.8599,72.277425,42.997
--19.012,-19.20212,-17.49104,-15.01948,73.05361,44.4648
--18.816,-19.09824,-17.4048,-15.0528,72.30048,43.728
--19,-19.285,-17.67,-15.105,73.0075,43.833
--19.404,-19.79208,-18.04572,-15.42618,74.55987,44.4332
--18.81,-19.1862,-17.58735,-15.048,72.28683,45.0945
--19.404,-19.8891,-18.23976,-15.42618,74.55987,44.8866
--19.6,-19.992,-18.424,-15.582,75.313,45.5112
--19.4,-19.885,-18.333,-15.617,74.5445,45.0468
--18.624,-19.0896,-17.59968,-14.8992,71.56272,44.5812
--18.81,-19.1862,-17.77545,-14.95395,72.277425,43.453
--19.4,-19.885,-18.43,-15.617,74.5445,45.55
--18.624,-19.18272,-17.6928,-14.99232,71.56272,43.9104
--18.624,-19.18272,-17.78592,-14.99232,71.56272,43.728
--18.62,-19.0855,-17.7821,-14.9891,71.54735,43.453
--19.206,-19.78218,-18.43776,-15.3648,73.799055,44.9856
--19.404,-19.98612,-18.62784,-15.5232,74.55987,45.2172
--19.008,-19.57824,-18.24768,-15.11136,73.047744,45.7875
--20,-20.6,-19.2,-16.1,76.85,45.74
--19.2,-19.776,-18.528,-15.456,73.776,43.5168
--18.62,-19.1786,-17.9683,-15.0822,71.54735,42.8925
--19.404,-20.08314,-18.72486,-15.62022,74.55987,45.0945
--19.404,-20.08314,-18.72486,-15.81426,74.569572,45.2034
--19.404,-20.08314,-18.72486,-15.62022,74.55987,45.4905
--19.8,-20.493,-19.107,-16.038,76.0815,44.7975
--18.81,-19.46835,-18.2457,-15.33015,72.277425,45.2727
--19.602,-20.28807,-19.01394,-15.97563,75.320685,44.9856
--19.4,-20.176,-18.818,-15.811,74.5445,45.85
--18.81,-19.5624,-18.2457,-15.33015,72.277425,45.3915
--18.62,-19.3648,-18.0614,-15.0822,71.54735,43.168
--18.816,-19.56864,-18.3456,-15.24096,72.30048,43.5168
--19.206,-19.97424,-18.72585,-15.55686,73.799055,44.3025
--19.6,-20.482,-19.11,-15.876,75.411,44.5312
--19.206,-20.07027,-18.72585,-15.74892,73.799055,44.4114
--19.206,-19.97424,-18.72585,-15.84495,73.895085,45.3915
--18.81,-19.5624,-18.33975,-15.33015,72.371475,43.6525
--18.816,-19.56864,-18.3456,-15.24096,72.30048,45.1094
--18.624,-19.46208,-18.25152,-15.17856,71.65584,43.6224
--19.012,-19.86754,-18.63176,-15.58984,73.05361,44.0412
--19.208,-20.07236,-18.82384,-15.65452,73.90278,44.639
--19.8,-20.691,-19.404,-16.137,76.0914,45.16
--18.43,-19.25935,-18.0614,-15.1126,70.909425,43.9798
--19,-19.855,-18.62,-15.58,73.0075,44.75
--19.6,-20.482,-19.208,-16.072,75.411,45.05
--19.2,-20.16,-18.816,-15.84,73.776,45.25
--18.43,-19.3515,-18.15355,-15.20475,70.817275,43.6888
--19.404,-20.3742,-19.11294,-16.0083,74.55987,44.6985
--19.2,-20.16,-18.912,-15.84,73.872,44.75
--18.624,-19.5552,-18.34464,-15.3648,71.60928,42.9128
--19.8,-20.79,-19.503,-16.236,76.1904,44.05
--19.8,-20.79,-19.503,-16.335,76.1805,45.15
--18.816,-19.7568,-18.53376,-15.42912,72.385152,43.5168
--19,-19.95,-18.81,-15.675,73.0075,43.168
--18.24,-19.152,-18.0576,-15.048,70.0872,42.6075
--20,-21,-19.8,-16.6,76.85,44.94
--19.008,-20.05344,-18.81792,-15.6816,73.03824,43.6095
--18.43,-19.44365,-18.2457,-15.2969,70.909425,42.028
--19.602,-20.68011,-19.40598,-16.36767,75.418695,43.7085
--18.43,-19.44365,-18.2457,-15.20475,70.909425,42.1325
--19.8,-20.691,-19.008,-15.543,76.1805,43.7976
--19,-18.905,-16.72,-13.015,73.1025,44.56
--18.24,-17.2368,-15.048,-11.4912,70.1784,42.617
--19.404,-17.65764,-15.32916,-11.93346,74.65689,43.3552
--19.008,-16.632,-14.256,-10.73952,73.13328,42
--19.2,-16.32,-13.536,-9.984,73.8624,43.86
--18.818,-15.52485,-12.70215,-9.03264,72.402255,42.6218
--19.206,-15.46083,-12.38787,-8.06652,73.895085,43.4214
--18.816,-14.67648,-11.66592,-7.24416,72.39456,43.7472
--19.008,-14.256,-11.02464,-7.03296,73.13328,42.1056
--19.012,-13.7837,-10.4566,-6.36902,73.14867,43.0612
--19.206,-13.54023,-9.89109,-7.29828,73.895085,42.3308
--19.8,-13.167,-9.9,-7.92,76.1805,43.64
--19.8,-12.375,-9.504,-7.821,76.1805,43.35
--18.81,-11.19195,-8.55855,-7.3359,72.371475,41.4675
--19.008,-10.73952,-8.17344,-6.74784,73.123776,43.3125
--18.81,-10.1574,-7.3359,-6.11325,72.371475,41.667
--19.206,-9.603,-6.81813,-5.95386,73.895085,42.4375
--18.43,-8.2935,-5.62115,-5.3447,70.909425,42.6218
--19.012,-7.69986,-4.84806,-4.84806,73.14867,42.9128
--19.206,-7.10622,-3.93723,-4.32135,73.895085,42.9264
--18.43,-5.98975,-2.85665,-3.77815,70.909425,41.458
--18.624,-5.49408,-1.8624,-3.35232,71.65584,41.904
--18.33785,-4.69965,-0.7372,-2.67235,70.909425,42.1465
--18.905,-4.085,0.475,-2.375,73.1025,41.192
--18.72391,-3.57542,1.50544,-2.25816,72.411664,41.8555
--19.701,-2.871,2.97,-1.98,76.1805,43.94
--18.5269,-2.0482,3.6309,-1.4896,71.64045,43.169
--18.72391,-1.50544,4.79859,-1.03499,72.402255,42.9128
--18.72192,-1.12896,5.92704,-0.56448,72.385152,42.3936
--19.602,-0.396,7.326,-0.099,76.1805,43.3125
--18.4338,0.1862,7.8204,0.3724,71.64045,43.0612
--19.20996,0.87318,9.31392,0.29106,74.647188,43.7085
--19.20996,1.26126,10.28412,1.06722,74.647188,42.7086
--17.9664,2.0064,10.5792,1.368,70.1784,41.192
--19.11294,2.61954,12.41856,1.64934,74.65689,42.581
--17.77925,3.0685,12.4545,1.9855,69.447375,41.363
--19.404,4.059,14.652,2.673,76.1805,43.46
--18.82384,4.60992,15.17432,3.16932,73.90278,42.5908
--19.012,5.141,16.587,3.88,74.6415,42.0592
--18.06336,5.62176,16.40448,3.6864,70.91712,42.1056
--19.11195,6.76269,18.52389,4.60647,75.418695,43.1046
--18.3456,7.24416,18.816,4.98624,72.39456,41.232
--18.3456,7.80864,19.7568,5.83296,72.403968,43.2768
--18.62982,8.45064,20.93454,6.24195,73.895085,42.6218
--17.97216,8.93952,21.23136,6.42528,71.65584,42.0592
--19.107,10.098,23.463,7.227,76.1805,43.0155
--17.6016,10.1232,22.5264,7.1136,70.1784,41.6256
--18.432,11.328,24.672,8.256,73.872,41.712
--18.816,12.446,25.97,8.624,75.411,43.36
--17.96355,12.50865,25.86375,8.55855,72.36207,43.3125
--18.527,13.677,27.354,9.797,74.6415,43.25
--18.43,14.162,28.324,10.185,74.6415,43.15
--18.0576,14.63616,28.32192,10.16928,73.123776,42.9264
--18.144,15.36,29.376,10.944,73.872,43.06
--17.86752,15.77664,29.84256,11.11968,73.13328,42.4215
--18.236,16.587,30.943,12.125,74.5445,43.14
--17.77622,17.1108,31.3698,12.26274,73.14867,41.9832
--17.856,17.856,31.968,12.576,73.776,43.25
--16.69625,17.23775,30.5045,12.36425,69.447375,41.0875
--17.2235,18.4338,32.3988,13.034,71.54735,42.091
--16.9556,18.89075,32.71325,13.54605,70.909425,42.2338
--17.21664,19.66272,34.24512,14.30016,72.30048,42
--17.0373,20.2027,34.6332,14.5236,71.54735,42.5908
--17.836,21.658,37.142,15.68,75.313,43.46
--17.557,22.116,37.248,16.005,74.5542,43.36
--16.7616,21.79008,36.59616,16.10976,71.56272,41.5548
--16.6649,22.344,37.1469,16.2925,71.54735,41.8068
--16.4027,22.6689,37.4129,16.587,70.817275,40.698
--16.65216,23.70816,38.94912,17.49888,72.309888,41.8068
--17.072,24.929,40.643,18.333,74.5445,41.8458
--16.45875,25.0173,39.97125,18.52785,72.277425,40.983
--16.1994,25.137,40.1261,18.7131,71.64045,40.983
--16.78446,26.87454,42.49476,20.08314,74.55987,42.4928
--16.51716,27.46458,42.54129,20.07027,73.799055,41.5645
--16.416,28.032,43.104,20.832,73.776,43.06
--16.3251,28.52091,43.69365,21.1266,73.799055,42.9264
--15.25225,27.2555,41.515,20.3965,69.357125,40.812
--16.296,29.973,45.105,22.116,74.5542,43.15
--15.6123,29.24955,44.29755,22.10175,72.277425,40.983
--16.5,31.4,47.5,24.4,76.85,42.44
--15.744,30.432,46.272,23.52,73.776,41.0592
--15.1753,29.9782,45.2466,23.6474,71.54735,41.8068
--15.939,32.868,48.609,25.245,76.0815,42.85
--14.7456,30.68928,45.43488,23.86944,70.82496,41.6256
--15.17432,32.55756,48.02,25.64268,73.80674,42.7672
--14.3184,31.3728,45.9648,24.8064,70.0872,41.192
--14.3754,32.2525,46.8122,25.2491,70.82649,40.9925
--15.246,35.343,50.886,27.621,76.0815,42.5304
--14.54112,34.6896,49.23072,26.80128,73.03824,41.6256
--14.06112,33.70944,48.51552,26.72544,71.56272,41.6712
--13.824,33.54624,48.384,26.54208,70.82496,41.0592
--14.21244,35.14698,50.03163,28.809,73.799055,41.8458
--13.4064,33.1968,46.8768,29.0928,70.0872,40.907
--13.63725,34.0461,47.5893,30.56625,72.277425,41.0875
--13.97088,35.02422,48.41298,30.85236,74.55987,42.3324
--13.77684,35.02422,47.73384,30.65832,74.55987,42.6393
--13.3056,33.07392,44.6688,33.16896,73.03824,42.5304
--13.662,32.769,44.154,34.353,76.0815,42.5304
--12.62455,29.488,39.34805,31.23885,70.817275,40.4225
--12.312,28.3632,37.2096,29.4576,70.0872,40.6315
--12.77199,28.32885,37.4517,30.44151,73.799055,42.1562
--11.9472,25.8096,34.1088,28.3632,70.0872,41.7216
--12.26016,26.136,34.11936,28.32192,73.03824,41.136
--12.16768,24.90572,32.70064,27.85258,73.05361,41.4869
--11.85534,23.89886,31.14379,27.00383,72.308165,41.3802
--11.42784,22.76352,29.39904,25.344,70.82496,40.7424
--11.956,23.324,30.086,26.46,75.313,42.66
--11.5236,21.99087,28.42488,25.44795,73.799055,41.3705
--11.328,21.216,27.456,24.864,73.776,41.424
--11.368,20.972,26.95,24.696,75.313,43.06
--11.06028,20.08314,25.80732,23.86692,74.55987,42.3324
--10.976,19.6,25.186,23.52,75.313,42.95
--10.25472,18.25152,23.42592,22.01472,72.30048,41.601
--9.747,16.87675,21.75025,20.577,69.357125,40.4225
--9.5665,16.245,21.02825,20.12575,69.43835,40.8025
--9.5836,16.0341,20.8259,20.18085,70.817275,40.8025
--9.69612,16.06514,20.81814,20.24778,73.05361,42.385
--9.9,16.236,20.988,20.493,76.0815,42.66
--8.9376,14.3184,18.7872,18.5136,70.0872,40.7075
--9.40896,14.99553,19.602,19.40598,75.320685,42.6294
--8.7514,13.8719,18.0614,18.0614,71.54735,40.812
--8.645,13.775,17.86,17.86,73.0075,40.8025
--8.6436,13.34956,17.47928,17.57532,73.80674,41.993
--8.11008,12.34944,16.31232,16.5888,70.907904,40.9536
--8.256,12.48,16.512,16.704,73.8624,41.3376
--8.148,12.222,16.199,16.587,74.5445,41.6615
--7.79,11.59,15.485,15.865,73.1025,42.55
--7.5264,11.10144,14.77056,15.24096,72.30048,42.1008
--7.644,11.074,14.994,15.288,75.4012,42.385
--7.17024,10.15008,13.87488,14.34048,71.56272,40.9536
--7.05675,9.87945,13.54896,14.20759,72.402255,41.5645
--7.081,9.991,13.483,14.259,74.5445,42.44
--6.887,9.506,13.192,13.774,74.5445,42.96
--6.555,8.835,12.445,13.015,73.0075,40.983
--6.17405,8.20135,11.70305,12.44025,70.817275,41.7682
--6.27396,7.98504,11.59732,12.45286,73.05361,41.699
--6.14592,7.97049,11.42757,12.38787,73.799055,41.6615
--5.89248,7.50816,10.9296,11.88,73.03824,40.6656
--5.79744,7.31808,10.54944,11.49984,73.03824,40.6656
--5.54895,6.9597,10.06335,11.00385,72.277425,40.7075
--5.25255,6.35835,9.5836,10.41295,70.817275,40.527
--5.1604,6.0819,9.215,10.22865,70.817275,40.4225
--4.9761,5.7133,8.93855,9.86005,70.817275,40.318
--5.03712,5.60736,8.83872,9.88416,73.03824,40.56
--4.6512,5.1984,8.208,9.2112,70.0872,40.318
--4.753,5.141,8.342,9.506,74.5445,40.8855
--4.51584,4.60992,7.71456,8.9376,72.30048,41.5912
--4.37,4.275,7.505,8.835,73.0075,42.14
--4.104,3.9216,6.84,8.3904,70.09632,40.147
--4.22576,4.03368,6.91488,8.45152,73.816344,41.5128
--3.99,3.705,6.65,8.075,73.0075,42.25
--3.8171,3.2585,6.1446,7.3549,71.54735,40.1375
--3.744,2.976,5.952,7.488,73.776,40.6656
--3.57542,2.63452,5.55131,7.05675,72.308165,40.7788
--3.515,2.47,5.32,7.125,73.0075,42.77
--3.36,2.304,5.088,7.008,73.776,40.7424
--3.16608,2.14176,4.74912,6.61152,71.56272,40.9825
--3.0096,1.824,4.3776,5.928,70.0872,40.527
--2.94686,1.61602,4.2777,5.98878,73.05361,41.307
--2.7645,1.19795,3.8703,5.529,70.817275,40.0425
--2.78487,1.05633,3.74517,5.66577,73.799055,42.1245
--2.5536,0.8208,3.2832,5.1984,70.0872,40.7424
--2.5137,0.7448,3.1654,5.2136,71.54735,40.0425
--2.3959,0.64505,2.85665,4.88395,70.817275,40.8855
--2.4,0.288,2.784,4.704,73.776,42.04
--2.18592,0,2.47104,4.37184,73.03824,40.3584
--2.11266,-0.28809,2.20869,4.22532,73.799055,41.6196
--1.9551,-0.5586,1.9551,3.9102,71.54735,41.5128
--1.9206,-0.67221,1.72854,3.8412,73.799055,42.0156
--1.84338,-0.87318,1.55232,3.68676,74.55987,41.5912
--1.8,-1,1.4,3.6,76.85,42.44
--1.6929,-1.1286,1.1286,3.3858,72.277425,40.622
--1.649,-1.358,0.97,3.104,74.5445,42.76
--1.52096,-1.52096,0.66542,2.8518,73.05361,41.9146
--1.4406,-1.72872,0.4802,2.68912,73.80674,42.2772
--1.31712,-1.97568,0.18816,2.352,72.30048,41.993
--1.248,-2.304,0,2.4,73.776,40.9536
--1.12896,-2.352,-0.18816,2.16384,72.30048,40.7424
--1.11744,-2.42112,-0.4656,2.04864,71.56272,41.3802
--1.04544,-2.56608,-0.57024,1.9008,73.03824,41.232
--1.045,-2.755,-0.76,1.71,73.0075,40.318
--0.9702,-3.00762,-0.9702,1.35828,74.55987,42.1245
--0.891,-3.366,-1.188,1.287,76.0815,42.36
--0.77616,-3.49272,-1.35828,1.16424,74.569572,41.1208
--0.7372,-3.40955,-1.56655,0.9215,70.817275,41.5645
--0.6517,-3.5378,-1.6758,0.6517,71.54735,41.8068
--0.58212,-3.8808,-1.9404,0.67914,74.55987,42.9264
--0.56454,-3.95178,-2.06998,0.37636,72.308165,41.4772
--0.4802,-4.22576,-2.30496,0.19208,73.80674,40.8366
--0.4753,-4.37276,-2.47156,0,73.05361,41.0892
--0.4,-4.8,-2.8,-0.1,76.85,42.95
--0.3724,-4.655,-2.793,-0.1862,71.54735,40.7075
--0.3724,-4.655,-2.8861,-0.3724,71.55666,40.527
--0.2736,-4.7424,-3.0096,-0.456,70.0872,40.6656
--0.28512,-5.13216,-3.3264,-0.85536,73.03824,41.0592
--0.18624,-5.40096,-3.53856,-1.02432,71.56272,40.2816
--0.1824,-5.472,-3.5568,-1.0032,70.0872,40.7424
--0.198,-5.94,-3.96,-1.089,76.0815,42.44
--0.1843,-5.529,-3.8703,-0.9215,70.817275,40.6315
--0.09603,-5.7618,-4.12929,-1.15236,73.799055,41.9463
--0.098,-5.88,-4.312,-1.372,75.313,41.405
-0,-5.7133,-4.2389,-2.0273,70.82649,40.7012
-0,-6.37065,-4.70448,-2.45025,75.320685,41.8374
-0,-6.53004,-4.70547,-2.40075,73.799055,41.9364
-0,-6.22725,-4.60275,-2.166,69.357125,40.4225
-0,-7,-5.2,-2.4,76.85,41.85
-0.09504,-6.6528,-5.03712,-2.18592,73.03824,40.464
-0.09504,-6.74784,-5.13216,-2.28096,73.03824,41.9364
-0.09504,-6.74784,-5.32224,-2.28096,73.03824,40.2816
-0.09603,-7.01019,-5.47371,-2.59281,73.799055,41.0892
-0.09504,-7.128,-5.60736,-2.8512,73.03824,40.3584
-0.1,-7.8,-6,-3.3,76.85,41.85
-0.09801,-7.8408,-6.07662,-3.43035,75.320685,41.5404
-0.09506,-7.69986,-6.08384,-3.13698,73.05361,40.7788
-0.09801,-7.93881,-6.37065,-3.33234,75.320685,41.7285
-0.097,-7.857,-6.402,-3.395,74.5348,41.1668
-0.09312,-7.63584,-6.23904,-3.63168,71.553408,40.5945
-0.09312,-7.82208,-6.33216,-3.81792,71.56272,41.1668
-0.09504,-8.26848,-6.6528,-3.99168,72.9432,41.5305
-0.0912,-8.1168,-6.5664,-3.7392,70.07808,40.1375
-0.09408,-8.4672,-6.86784,-4.04544,72.2064,41.013
-0.096,-8.64,-7.104,-3.84,73.776,40.3584
-0.0912,-8.208,-6.84,-4.0128,69.996,40.0032
-0.09312,-8.47392,-7.07712,-4.09728,71.4696,40.176
-0.09409,-8.56219,-7.24493,-4.23405,72.308165,40.7012
-0.096,-8.832,-7.392,-4.416,73.776,40.56
-0.098,-9.212,-7.742,-4.9,75.313,42.44
-0,-8.93475,-7.524,-4.8906,72.183375,40.318
-0,-8.8464,-7.3872,-4.7424,69.996,39.862
-0,-9.50796,-7.95564,-5.04504,74.55987,41.1992
-0,-9.31095,-7.80615,-5.0787,72.277425,40.0425
-0,-9.702,-8.2467,-5.53014,74.55987,41.6196
--0.09506,-9.60106,-8.17516,-5.13324,73.05361,41.1992
--0.095,-9.69,-8.265,-5.415,72.998,42.36
--0.09408,-9.69024,-8.27904,-5.45664,72.30048,40.176
--0.096,-9.984,-8.544,-5.568,73.776,41.96
--0.1862,-9.7755,-8.379,-5.586,71.55666,41.1992
--0.198,-10.593,-9.009,-6.039,76.0815,42.44
--0.19206,-10.27521,-8.83476,-5.95386,73.799055,41.6196
--0.196,-10.584,-9.212,-6.37,75.3032,42.15
--0.294,-10.682,-9.31,-6.468,75.313,42.15
--0.288,-10.656,-9.216,-6.528,73.776,41.96
--0.27936,-10.42944,-9.03264,-6.23904,71.56272,41.1668
--0.38016,-10.73952,-9.31392,-6.46272,73.03824,42.0156
--0.4,-11.3,-9.9,-6.7,76.85,42.15
--0.4655,-10.6134,-9.31,-6.3308,71.46356,39.938
--0.48,-10.944,-9.696,-6.816,73.776,42.66
--0.456,-10.7616,-9.3024,-6.84,70.0872,40.147
--0.57036,-11.4072,-9.79118,-7.22456,73.05361,40.9825
--0.5529,-10.96585,-9.5836,-6.4505,70.725125,41.2735
--0.5529,-10.8737,-9.5836,-6.35835,70.725125,41.1668
--0.67221,-11.33154,-10.08315,-6.91416,73.799055,41.7285
--0.672,-11.232,-10.08,-7.104,73.68,42.55
--0.66542,-11.31214,-10.07636,-7.69986,72.95855,40.8855
--0.73728,-11.24352,-9.95328,-7.46496,70.742016,40.6752
--0.84645,-11.56815,-10.25145,-7.524,72.277425,40.0425
--0.81225,-11.10075,-9.83725,-6.94925,69.357125,40.147
--0.8208,-11.1264,-10.032,-7.0224,69.996,40.318
--0.9216,-11.24352,-10.1376,-7.00416,70.82496,40.9536
--0.912,-11.1264,-10.032,-7.1136,70.0872,40.752
--1.01376,-11.33568,-10.22976,-7.18848,70.815744,40.2816
--1.05644,-11.90896,-10.75648,-7.87528,73.7107,41.307
--1.083,-11.46175,-10.19825,-7.581,69.266875,40.318
--1.176,-12.642,-11.27,-8.232,75.313,42.26
--1.19795,-11.9795,-10.59725,-7.7406,70.73434,40.6315
--1.23552,-12.26016,-11.02464,-7.88832,73.03824,40.752
--1.33056,-12.26016,-11.02464,-7.98336,72.952704,40.848
--1.33084,-12.3578,-11.12202,-8.0801,72.968056,41.5912
--1.5,-13,-11.7,-8.6,76.75,42.55
--1.425,-12.445,-11.21,-8.075,72.9125,40.0425
--1.48992,-12.19872,-11.08128,-7.9152,71.56272,41.0592
--1.5048,-12.4146,-11.19195,-8.18235,72.183375,40.1375
--1.552,-12.901,-11.64,-8.439,74.5542,40.8855
--1.66617,-13.13334,-11.85921,-8.91891,75.222675,41.8275
--1.6245,-12.18375,-11.0105,-8.1225,69.357125,40.033
--1.71072,-12.92544,-11.68992,-8.74368,72.9432,41.6196
--1.78695,-12.88485,-11.56815,-8.8407,72.183375,40.1375
--1.862,-13.524,-12.25,-9.016,75.215,42.14
--1.881,-12.9789,-11.75625,-8.8407,72.183375,40.242
--1.93515,-12.80885,-11.51875,-8.56995,70.817275,41.1668
--1.97589,-13.07851,-11.85534,-8.93855,72.308165,41.1668
--2.0273,-12.99315,-11.70305,-9.0307,70.725125,40.318
--2.09088,-13.49568,-12.16512,-9.31392,72.952704,42.0156
--2.11968,-13.27104,-11.88864,-9.12384,70.7328,40.7424
--2.2572,-13.5432,-12.2265,-9.31095,72.277425,42.1245
--2.1888,-13.1328,-11.9472,-8.8464,69.996,40.6656
--2.28,-13.0416,-11.9472,-8.9376,70.0872,40.7075
--2.35225,-13.54896,-12.32579,-9.409,72.308165,41.1668
--2.47,-13.965,-12.635,-9.975,73.017,42.25
--2.548,-14.602,-13.132,-10.192,75.313,42.66
--2.48805,-13.73035,-12.44025,-9.5836,70.725125,41.4772
--2.68884,-14.21244,-12.96405,-9.79506,73.799055,41.5645
--2.6334,-13.9194,-12.7908,-9.68715,72.183375,41.9364
--2.75616,-13.97088,-12.92544,-9.78912,72.9432,41.0592
--2.8224,-13.92384,-12.79488,-9.59616,72.2064,40.6656
--2.9106,-14.35896,-13.19472,-10.09008,74.46285,41.9832
--2.97693,-14.21244,-13.15611,-9.89109,73.703025,42.0156
--2.94624,-14.256,-13.11552,-10.16928,72.9432,40.6656
--2.97984,-14.06112,-12.85056,-9.96384,71.572032,40.752
--3.201,-14.841,-13.483,-10.573,74.4475,42.55
--3.234,-14.994,-13.72,-10.682,75.2248,41.8068
--3.23136,-14.54112,-13.3056,-10.35936,72.952704,40.464
--3.332,-14.994,-13.818,-10.584,75.215,41.5912
--3.5,-15.3,-14.1,-10.9,76.75,42.44
--3.2832,-14.136,-12.9504,-10.1232,69.996,40.7424
--3.42,-14.82,-13.585,-10.83,72.9125,40.527
--3.3744,-14.2272,-13.1328,-10.3968,69.996,40.4225
--3.4295,-14.2595,-13.08625,-10.37875,69.2759,40.6315
--3.64914,-15.17274,-13.92435,-11.04345,73.703025,41.0892
--3.74517,-15.17274,-14.02038,-10.94742,73.703025,42.1245
--4,-15.8,-14.6,-11.4,76.75,42.55
--3.88,-15.326,-14.162,-11.058,74.4572,42.55
--3.85769,-14.96031,-13.83123,-11.10262,72.214075,40.8758
--3.99168,-15.39648,-14.06592,-11.21472,72.9432,41.6196
--4.11642,-15.97563,-14.60349,-11.66319,75.222675,41.8275
--4.257,-16.137,-14.751,-11.484,75.9825,42.14
--4.0128,-14.7744,-13.5888,-10.6704,70.00512,40.6752
--4.0546,-14.83615,-13.8225,-10.78155,70.725125,40.7788
--4.3659,-15.62022,-14.553,-11.44836,74.46285,41.6196
--4.508,-15.974,-14.798,-11.858,75.215,42.25
--4.508,-16.17,-14.896,-12.25,75.215,41.013
--4.46688,-15.77664,-14.54112,-11.68992,72.952704,40.6656
--4.65696,-16.0083,-14.84406,-11.83644,74.46285,41.1992
--4.704,-16.17,-14.994,-11.76,75.215,41.1992
--4.60845,-15.4242,-14.38965,-11.0979,72.19278,40.1375
--4.51535,-15.1126,-14.09895,-10.96585,70.73434,39.938
--4.5125,-14.801,-13.8985,-10.73975,69.266875,40.7075
--4.94802,-15.91128,-14.94108,-11.73942,74.46285,41.7285
--5.044,-16.005,-14.938,-12.028,74.4572,40.8855
--5.148,-16.632,-15.444,-12.474,75.9924,42.55
--4.8336,-15.4128,-14.2272,-11.3088,69.996,40.4544
--4.78325,-15.25225,-14.16925,-11.28125,69.2759,40.242
--4.9248,-15.4128,-14.3184,-11.4,70.00512,40.7424
--5.17275,-15.89445,-14.76585,-11.56815,72.183375,40.4225
--5.2283,-15.87502,-14.92442,-11.50226,72.968056,41.3802
--5.26848,-15.80544,-14.77056,-11.57184,72.2064,41.5912
--5.1984,-15.3216,-14.3184,-11.2176,69.996,40.7424
--5.51,-16.055,-15.01,-11.97,72.9125,40.7075
--5.3998,-15.827,-14.7098,-11.8237,71.45425,41.5912
--5.72418,-16.59042,-15.42618,-12.41856,74.46285,41.1992
--5.60736,-16.25184,-15.11136,-12.07008,72.9432,40.3584
--5.472,-15.6864,-14.592,-11.7648,69.996,39.8525
--6.039,-17.028,-15.84,-12.771,75.9924,42.36
--5.85844,-16.61492,-15.46244,-12.38916,73.7107,41.699
--6.014,-16.781,-15.617,-12.804,74.3505,42.03
--6.174,-17.052,-15.778,-12.74,75.215,41.1992
--6.237,-17.226,-16.038,-12.87,75.9825,42.76
--5.8976,-16.12625,-14.9283,-12.07165,70.64219,40.318
--5.98975,-16.12625,-15.02045,-12.1638,70.71591,40.242
--6.0515,-16.2925,-15.1753,-12.3823,71.45425,41.1992
--6.0819,-16.2184,-15.1126,-12.25595,70.725125,41.5645
--6.633,-17.424,-16.236,-13.266,75.8934,42.37
--6.633,-17.523,-16.335,-13.068,75.8835,42.36
--6.46,-16.91,-15.675,-12.73,72.8175,40.4225
--6.55914,-16.92068,-15.6849,-12.8331,72.872996,41.8068
--6.55914,-16.92068,-15.77996,-12.8331,72.95855,41.699
--6.5835,-16.83495,-15.6123,-12.69675,72.09873,40.527
--6.54336,-16.49664,-15.39072,-12.62592,70.64064,40.848
--6.67968,-16.84032,-15.71136,-12.88896,72.121728,41.0496
--6.6348,-16.587,-15.4812,-12.62455,70.64219,41.6615
--6.5664,-16.416,-15.3216,-12.4032,69.91392,41.6256
--6.86784,-17.02848,-15.89952,-12.79488,72.11232,41.3376
--7.10696,-17.38324,-16.23076,-12.9654,73.624264,42.7672
--7.17948,-17.65764,-16.39638,-13.48578,74.375532,42.5304
--7.125,-17.29,-16.15,-13.395,72.827,40.7075
--7.15084,-17.21847,-15.9953,-13.1726,72.129394,41.3705
--7.372,-17.751,-16.49,-13.483,74.3602,42.55
--7.0224,-16.6896,-15.5952,-12.8592,69.9048,41.136
--7.8,-18.3,-17.1,-14.1,76.66,42.44
--7.1136,-16.6896,-15.6864,-12.9504,69.92304,40.6315
--7.43232,-17.4048,-16.18176,-13.54752,72.121728,41.4144
--7.50974,-17.68116,-16.44538,-13.59358,72.86349,41.7682
--7.3728,-17.23392,-16.03584,-13.27104,70.649856,41.4144
--7.69986,-17.77622,-16.54044,-13.68864,72.872996,42.1562
--7.61805,-17.4933,-16.3647,-13.3551,72.09873,41.5625
--7.4005,-16.7865,-15.7035,-13.08625,69.18565,41.287
--8.217,-18.414,-17.325,-14.355,75.8934,43.1046
--7.885,-17.86,-16.625,-14.06,72.827,41.4675
--7.7406,-17.5085,-16.2184,-13.54605,70.651405,41.192
--8.16255,-18.2457,-16.99731,-14.21244,73.606995,42.1562
--8.0784,-17.96256,-16.82208,-13.87584,72.84816,42.9264
--8.428,-18.522,-17.346,-14.21,75.1268,42.385
--8.10144,-17.59968,-16.48224,-13.5024,71.385792,41.6615
--7.85175,-17.05725,-15.97425,-13.44725,69.176625,41.192
--8.53776,-18.4338,-17.26956,-14.35896,74.375532,42.1988
--8.20135,-17.60065,-16.49485,-13.8225,70.64219,41.5645
--8.45856,-18.24768,-17.01216,-14.256,72.762624,41.232
--8.28768,-17.87904,-16.7616,-13.78176,71.385792,41.4869
--8.4681,-18.06528,-16.9362,-13.92532,72.129394,42.0592
--8.736,-18.432,-17.28,-14.4,73.5936,44.05
--8.832,-18.336,-17.28,-14.208,73.5936,43.25
--8.6526,-18.0576,-16.929,-14.01345,72.00468,41.363
--8.84058,-18.34658,-17.20586,-14.35406,72.872996,41.993
--8.835,-18.43,-17.29,-14.25,72.827,41.4675
--9.024,-18.72,-17.472,-14.784,73.4976,43.46
--9.12285,-18.72585,-17.47746,-14.50053,73.626201,42.8175
--8.8445,-18.0614,-16.9442,-13.965,71.37046,40.907
--9.0288,-18.2457,-17.21115,-14.2956,72.00468,41.5625
--8.8464,-17.96925,-16.86345,-13.91465,70.55004,42.1562
--9.7,-19.5,-18.3,-15.4,76.56,43.36
--8.9376,-17.8752,-16.7808,-13.9536,69.82272,41.424
--9.50796,-19.01592,-17.85168,-15.0381,74.278512,42.5908
--9.40896,-18.72288,-17.5824,-14.63616,72.857664,43.4214
--9.50697,-18.91791,-17.76555,-14.78862,73.520568,44.9856
--9.603,-18.91791,-17.76555,-14.78862,73.616598,43.1262
--9.60106,-18.72682,-17.5861,-14.54418,72.777936,43.0612
--9.59904,-18.72288,-17.67744,-14.63616,72.75312,41.52
--9.49824,-18.43776,-17.32032,-14.52672,71.292672,42.0592
--9.5931,-18.71595,-17.4933,-14.57775,72.00468,41.192
--9.49248,-18.33984,-17.23392,-14.37696,70.557696,41.3376
--9.78432,-18.72192,-17.59296,-14.5824,72.027648,41.3376
--9.58464,-18.33984,-17.23392,-14.2848,70.557696,42.1056
--10.29,-19.6,-18.424,-15.19,75.0288,42.777
--10.494,-19.8,-18.612,-15.444,75.8043,43.15
--10.17918,-19.206,-18.05364,-14.98068,73.520568,41.6615
--10.07424,-19.008,-17.86752,-14.92128,72.762624,41.136
--10.27521,-19.206,-18.14967,-15.26877,73.520568,42.6218
--10.584,-19.698,-18.522,-15.386,75.0288,43.0612
--10.26648,-19.10706,-17.96634,-15.01948,72.777936,42.7285
--10.57518,-19.59804,-18.33678,-15.32916,74.278512,43.2768
--10.9,-20.1,-19,-15.8,76.57,43.94
--10.032,-18.4224,-17.328,-14.4096,69.82272,41.743
--10.66044,-19.30404,-18.2476,-15.27036,73.537828,42.9828
--10.656,-19.392,-18.24,-15.264,73.4976,43.94
--10.44288,-19.09824,-17.96928,-15.14688,72.027648,43.7472
--10.976,-19.992,-18.718,-15.582,75.0288,43.0612
--10.41408,-18.80064,-17.69472,-14.83776,70.557696,42.576
--10.5203,-18.9924,-17.8752,-14.7098,71.27736,42.693
--11.172,-19.894,-18.816,-15.68,75.0288,44.56
--10.83,-19.38,-18.24,-15.2,72.732,41.8475
--10.5984,-18.80064,-17.69472,-14.65344,70.557696,41.904
--11.136,-19.584,-18.432,-15.36,73.5072,43.86
--10.5792,-18.6048,-17.6016,-14.592,69.82272,42.1824
--11.583,-20.196,-19.107,-15.939,75.7944,45.0945
--11.23551,-19.59012,-18.53379,-15.55686,73.530171,44.1144
--11.446,-19.885,-18.721,-15.52,74.2632,42.8352
--11.44836,-19.79208,-18.72486,-15.5232,74.278512,44.7975
--11.781,-20.295,-19.206,-15.84,75.7944,44.3025
--11.172,-19.0855,-17.9683,-15.0822,71.27736,42.7975
--11.4,-19.475,-18.43,-15.295,72.732,43.0635
--11.2651,-19.0855,-18.0614,-14.9891,71.27736,43.9628
--11.15136,-18.98496,-17.87904,-14.83776,70.465536,43.0656
--11.4741,-19.3743,-18.2457,-15.33015,71.91063,44.4906
--11.59,-19.665,-18.525,-15.485,72.637,42.2275
--11.45376,-19.18272,-18.1584,-15.08544,71.199552,43.5168
--12.05523,-20.19006,-19.11195,-15.77961,74.948247,44.1936
--11.904,-19.872,-18.72,-15.456,73.4016,42.96
--12.028,-19.982,-18.915,-15.617,74.1662,43.94
--12.5,-20.7,-19.5,-16.3,76.46,44.16
--12.00375,-19.87821,-18.72585,-15.74892,73.424538,44.0055
--11.7306,-19.2717,-18.2476,-15.3615,71.18426,43.4532
--12.096,-19.872,-18.816,-15.456,73.4016,43.94
--12.07008,-19.67328,-18.62784,-15.49152,72.667584,42.1056
--11.82624,-19.27584,-18.25152,-15.17856,71.199552,42.5442
--11.9168,-19.3648,-18.2476,-15.3615,71.18426,42.123
--12.16512,-19.76832,-18.62784,-15.58656,72.667584,42.5664
--12.384,-19.968,-18.816,-15.648,73.4112,42.5664
--12.3552,-19.86336,-18.72288,-15.6816,72.677088,44.1936
--12.6126,-20.27718,-19.11294,-15.91128,74.191194,43.7472
--12.35,-19.855,-18.715,-15.485,72.637,44.34
--12.32055,-19.65645,-18.52785,-15.51825,71.91063,44.0154
--11.9472,-19.0608,-17.9664,-14.9568,69.74064,43.3536
--12.29184,-19.46208,-18.43776,-15.3648,71.199552,42.3936
--12.51264,-19.66272,-18.62784,-15.5232,71.933568,43.0612
--12.51397,-19.66481,-18.62982,-15.43076,71.950623,43.5142
--12.3823,-19.551,-18.4338,-15.4546,71.18426,43.463
--12.47808,-19.46208,-18.43776,-15.27168,71.208864,42.96
--12.73804,-19.67742,-17.68116,-15.58984,72.682876,43.7472
--12.8331,-18.82188,-16.44538,-16.6355,72.682876,43.169
--12.44025,-17.3242,-15.1126,-16.0341,70.467105,43.3008
--13.32936,-17.54379,-15.09354,-17.15175,74.938446,44.1936
--12.5324,-16.0341,-13.4539,-16.67915,70.45789,43.0098
--12.62455,-16.587,-13.91465,-13.2696,70.45789,42.5125
--12.62455,-17.78495,-15.1126,-14.65185,70.467105,43.168
--13.11,-18.62,-15.96,-14.915,72.637,45.74
--13.25352,-18.91988,-16.42284,-14.79016,73.441788,44.149
--12.80885,-18.15355,-15.94195,-14.0068,70.374955,43.9701
--13.21334,-18.63176,-16.54044,-14.35406,72.692382,44.5312
--12.9409,-18.2476,-16.2925,-14.1512,71.18426,43.2768
--13.86,-19.404,-17.424,-15.345,75.6954,43.4214
--13.3,-18.62,-16.815,-14.44,72.637,44.45
--13.40346,-18.63176,-16.92068,-14.54418,72.682876,43.7955
--12.99456,-18.06336,-16.49664,-14.19264,70.465536,42.288
--13.22304,-18.34464,-16.7616,-14.52672,71.199552,43.344
--13.774,-19.206,-17.654,-15.326,74.1759,45.45
--13.77684,-19.404,-17.75466,-15.32916,74.191194,43.6095
--13.45487,-18.818,-17.31256,-14.77213,71.941214,42.1562
--13.73229,-19.206,-17.66952,-15.17274,73.328508,43.1046
--13.4064,-18.62,-17.2235,-14.7098,71.18426,42.4928
--13.68,-19,-17.67,-15.01,72.637,43.94
--13.5432,-18.90405,-17.4933,-14.8599,71.91063,42.123
--13.92435,-19.30203,-17.95761,-15.26877,73.424538,43.6888
--13.224,-18.3312,-17.1456,-14.4096,69.73152,41.743
--13.4539,-18.52215,-17.3242,-14.65185,70.374955,42.2338
--13.5926,-18.8062,-17.5028,-14.7098,71.09116,41.192
--14.162,-19.594,-18.333,-15.423,74.0692,43.54
--14.553,-19.998,-18.711,-15.642,75.7053,42.7086
--14.112,-19.488,-18.144,-15.36,73.3152,42.1824
--14.21244,-19.59012,-18.2457,-15.55686,73.328508,42.4375
--14.208,-19.584,-18.336,-15.456,73.3152,41.6256
--14.35896,-19.8891,-18.53082,-15.71724,74.094174,42.9264
--14.60349,-20.09205,-18.81792,-15.97563,74.850237,42.9264
--14.155,-19.475,-18.24,-15.39,72.542,41.667
--14.16096,-19.4832,-18.24768,-15.2064,72.582048,42.1824
--14.25,-19.475,-18.24,-15.295,72.5515,43.54
--14.4045,-19.68615,-18.53379,-15.74892,73.338111,44.4114
--13.965,-19.1786,-17.9683,-15.2684,71.10047,42.6692
--14.35104,-19.57824,-18.34272,-15.39648,72.582048,43.2135
--14.65002,-19.98612,-18.82188,-15.91128,74.084472,42.9264
--13.8624,-18.8784,-17.6928,-14.7744,69.64944,41.9425
--14.74704,-20.08314,-18.82188,-15.71724,74.094174,43.1046
--14.896,-20.286,-19.012,-15.876,74.8328,43.94
--14.24736,-19.27584,-18.1584,-15.17856,71.106432,41.7216
--14.24736,-19.27584,-18.1584,-15.27168,71.106432,42.288
--14.841,-20.176,-18.915,-15.908,74.0692,43.36
--13.8985,-18.772,-17.689,-14.89125,68.9149,40.8025
--14.63616,-19.76832,-18.62784,-15.58656,72.582048,43.1046
--14.1911,-19.1672,-18.0614,-15.1126,70.36574,40.907
--15.035,-20.273,-19.012,-16.005,73.9819,41.8458
--15.19155,-20.48409,-19.30797,-16.17165,74.762028,43.1046
--14.57775,-19.65645,-18.52785,-15.70635,71.72253,41.0875
--14.6718,-19.65645,-18.52785,-15.6123,71.731935,41.0875
--14.52672,-19.46208,-18.34464,-15.45792,71.013312,41.8458
--15.444,-20.691,-19.503,-16.434,75.5073,42.6294
--15.229,-20.273,-19.206,-16.102,73.9722,41.5645
--15.7,-21,-19.8,-16.8,76.27,42.95
--14.3184,-19.152,-18.0576,-15.2304,69.55824,41.52
--14.71296,-19.0896,-17.13408,-15.45792,71.013312,41.616
--14.7098,-18.2476,-15.7339,-16.3856,71.01668,42.287
--14.95395,-17.58735,-14.95395,-16.7409,71.72253,40.907
--14.80608,-16.57536,-14.24736,-16.20288,71.022624,41.9525
--14.65185,-15.94195,-13.2696,-16.0341,70.27359,40.8025
--15.11136,-17.48736,-14.44608,-14.256,72.477504,42.1245
--15.3648,-18.72585,-15.65289,-15.3648,73.242081,42.5442
--14.896,-18.3407,-15.6408,-14.6167,71.00737,42.6692
--15.5232,-19.20996,-16.59042,-15.0381,73.900134,42.4215
--14.9891,-18.4338,-16.1063,-14.2443,70.91427,41.699
--15.30466,-18.72682,-16.54044,-14.44912,72.416708,41.5645
--14.9891,-18.3407,-16.2925,-14.1512,70.91427,40.983
--15.714,-19.109,-17.169,-14.744,73.8946,41.7682
--15.714,-19.109,-17.169,-14.841,73.8849,43.25
--15.71724,-19.11294,-17.26956,-14.84406,73.900134,42.1988
--15.0822,-18.3407,-16.758,-14.4305,70.91427,41.363
--15.55848,-19.01592,-17.38324,-14.98224,73.153668,42.5908
--15.974,-19.6,-17.836,-15.484,74.6466,43.561
--14.8656,-18.3312,-16.6896,-14.3184,69.46704,41.0875
--15.65452,-19.30404,-17.67136,-15.17432,73.153668,44.0412
--15.648,-19.296,-17.76,-15.072,73.1232,44.05
--15.42912,-18.91008,-17.4048,-14.77056,71.566656,42.5908
--16.236,-19.998,-18.414,-15.642,75.4083,43.5006
--15.4242,-18.9981,-17.58735,-14.95395,71.543835,42.8175
--15.3615,-18.8062,-17.5028,-14.9891,70.82117,43.3552
--16.0083,-19.69506,-18.23976,-15.42618,73.803114,43.6095
--16.335,-20.196,-18.711,-15.84,75.3093,44.24
--15.20475,-18.7986,-17.5085,-14.9283,70.10772,42.7285
--15.6816,-19.38816,-18.0576,-15.2064,72.296928,43.5006
--16.268,-19.992,-18.62,-15.778,74.5486,42.7672
--16.102,-19.788,-18.527,-15.617,73.7879,43.94
--16.6,-20.4,-19.1,-16.2,76.08,44.45
--15.87168,-19.57824,-18.24768,-15.39648,72.296928,42.1056
--15.5477,-19.1786,-17.8752,-15.0822,70.82117,41.743
--15.70635,-19.3743,-18.15165,-15.33015,71.55324,44.1144
--16.03701,-19.87821,-18.53379,-15.65289,72.963594,42.3405
--16.128,-19.872,-18.624,-15.84,73.0368,42.4704
--15.4812,-19.07505,-17.8771,-15.1126,70.006355,42.1562
--15.8004,-19.46835,-18.2457,-15.2361,71.449785,41.743
--16.29936,-20.18016,-18.9189,-15.91128,73.706094,43.4532
--16.562,-20.384,-19.11,-15.974,74.4604,45.15
--16.562,-20.384,-19.11,-16.268,74.4506,44.05
--16.06514,-19.77248,-18.63176,-15.87502,72.217082,43.6688
--16.562,-20.384,-19.208,-16.268,74.4604,42.777
--16.49,-20.273,-19.012,-16.296,73.6909,42.7285
--16.66,-20.482,-19.208,-16.17,74.4702,43.8648
--15.504,-19.0608,-17.9664,-15.048,69.29376,43.1424
--16.3251,-20.1663,-18.91791,-15.94098,72.963594,43.6888
--16.3268,-20.1684,-18.91988,-15.8466,72.971192,44.7468
--15.6672,-19.3536,-18.15552,-15.2064,70.023168,43.44
--16.08939,-19.7589,-18.62982,-15.71303,71.348447,42.8255
--16.587,-20.273,-19.109,-15.52,73.5551,44.05
--16.08255,-18.90405,-16.929,-15.9885,71.318115,44.5995
--15.43275,-17.328,-15.07175,-15.3425,68.436575,42.5125
--16.01664,-17.13408,-14.80608,-16.66848,70.622208,43.5142
--16.51716,-16.90128,-14.50053,-17.18937,72.819549,43.9701
--16.01664,-15.92352,-13.31616,-15.73728,70.612896,42.8352
--16.512,-18.048,-15.072,-14.976,72.7968,45.15
--16.27584,-18.43968,-15.61728,-15.0528,71.340864,43.855
--16.1063,-18.3407,-15.7339,-14.4305,70.59773,43.4435
--16.608,-19.008,-16.512,-14.88,72.7968,44.64
--15.7776,-17.9664,-15.7776,-14.0448,69.15696,42.332
--17.127,-19.503,-17.226,-15.048,75.0717,45.0945
--16.1994,-18.3407,-16.3856,-14.3374,70.60704,44.0412
--16.53,-18.715,-16.815,-14.535,72.0385,42.028
--16.53696,-18.72288,-16.91712,-14.54112,72.068832,44.3025
--16.70922,-18.91791,-17.09334,-14.69259,72.819549,43.6888
--17.052,-19.404,-17.64,-15.386,74.3134,43.561
--16.464,-18.72192,-17.02848,-14.86464,71.340864,43.2384
--16.45875,-18.81,-17.1171,-14.8599,71.23347,44.4906
--16.975,-19.497,-17.751,-15.229,73.4581,45.66
--16.632,-19.19808,-17.48736,-15.01632,71.973792,44.9664
--16.9785,-19.59804,-17.9487,-15.23214,73.473246,45.0945
--15.79375,-18.14025,-16.7865,-14.34975,68.346325,43.6525
--16.9785,-19.59804,-18.04572,-15.42618,73.473246,46.1835
--15.96,-18.4224,-17.0544,-14.5008,69.06576,44.8896
--17.248,-19.894,-18.424,-15.876,74.2154,45.423
--16.90304,-19.59216,-18.05552,-15.65452,72.740696,45.9032
--16.72,-19.475,-17.955,-15.39,71.9435,45.84
--16.0512,-18.696,-17.328,-14.6832,69.06576,44.1888
--16.64685,-19.28025,-17.8695,-15.048,71.224065,43.168
--16.1424,-18.696,-17.4192,-14.7744,69.06576,44.498
--17.17254,-19.8891,-18.53082,-15.62022,73.473246,44.8252
--16.99731,-19.68615,-18.43776,-15.55686,72.656298,46.2205
--16.48224,-19.18272,-17.87904,-15.27168,70.454592,46.896
--16.82562,-19.58236,-18.34658,-15.49478,71.91289,45.031
--16.31055,-19.07505,-17.78495,-15.1126,69.711475,43.833
--17.266,-20.079,-18.818,-15.811,73.3902,46.85
--17.622,-20.493,-19.206,-16.038,74.8935,46.65
--16.91712,-19.67328,-18.43776,-15.49152,71.907264,44.6784
--17.09512,-19.88028,-18.63176,-15.65452,72.663864,47.481
--17.266,-20.176,-18.915,-15.811,73.3902,46.3175
--16.74802,-19.57072,-18.34755,-15.61894,71.188494,47.2778
--17.088,-19.968,-18.816,-15.936,72.5376,46.2336
--17.01216,-19.76832,-18.62784,-15.58656,71.812224,45.552
--17.9,-20.9,-19.6,-16.5,75.56,49.25
--17.721,-20.691,-19.404,-16.335,74.8044,48.63
--17.36658,-20.27718,-19.11294,-16.10532,73.308312,46.1874
--16.6649,-19.4579,-18.3407,-15.4546,70.34636,45.828
--16.929,-19.7505,-18.52785,-15.70635,71.054775,45.8865
--16.7616,-19.5552,-18.43776,-15.55104,70.35216,46.7055
--17.82,-20.79,-19.602,-16.434,74.8044,46.54
--17.46,-20.37,-19.206,-16.005,73.2932,47.64
--17.1072,-19.29312,-17.20224,-16.1568,71.812224,44.9664
--17.1108,-18.34658,-15.97008,-16.06514,71.827336,46.5018
--17.46,-17.848,-15.423,-17.751,73.2835,47.13
--17.38324,-16.99908,-14.50204,-17.67136,72.55822,46.3932
--17.20586,-16.25526,-13.7837,-16.25526,71.827336,47.2752
--17.20586,-17.96634,-15.01948,-14.7343,71.827336,47.6574
--17.38324,-18.82384,-16.03868,-15.27036,72.55822,44.5312
--18.1,-19.8,-17,-15.7,75.55,45.74
--17.738,-19.404,-16.856,-15.386,74.039,44.737
--16.68096,-18.24768,-16.03584,-14.00832,69.636096,43.728
--17.30092,-18.72682,-16.6355,-14.54418,71.81783,44.3678
--18.018,-19.503,-17.424,-15.246,74.7945,44.85
--16.9442,-18.3407,-16.4787,-14.2443,70.34636,43.7285
--17.1171,-18.52785,-16.7409,-14.4837,71.06418,44.0325
--18.018,-19.602,-17.82,-15.345,74.7945,45.0945
--18.018,-19.602,-17.82,-15.345,74.8044,45.8865
--16.94784,-18.53088,-16.85472,-14.52672,70.361472,44.9692
--16.5984,-18.3312,-16.6896,-14.5008,68.9016,43.9375
--17.1171,-18.9981,-17.3052,-15.048,71.06418,43.377
--17.57349,-19.39806,-17.76555,-15.3648,72.550665,44.8625
--17.934,-19.796,-18.228,-15.582,74.039,45.4328
--17.39232,-19.19808,-17.77248,-15.11136,71.80272,43.6224
--17.04096,-18.90336,-17.41344,-14.80608,70.35216,45.8228
--18.117,-20.097,-18.612,-15.84,74.7945,45.55
--17.568,-19.488,-18.048,-15.264,72.528,42.672
--16.86345,-18.7986,-17.41635,-14.9283,69.619325,43.548
--17.848,-19.885,-18.43,-15.617,73.2932,44.1835
--18.03384,-20.09205,-18.6219,-15.87762,74.056356,45.2034
--16.606,-18.50125,-17.23775,-14.71075,68.1929,43.9375
--18.216,-20.394,-18.909,-16.038,74.8044,45.5697
--17.66952,-19.78218,-18.43776,-15.55686,72.560268,44.0768
--17.3052,-19.3743,-18.0576,-15.33015,71.06418,43.7285
--17.85168,-19.98612,-18.62784,-15.81426,73.308312,44.9232
--18.216,-20.493,-19.107,-16.137,74.7153,45.44
--17.66952,-19.87821,-18.62982,-15.65289,72.464238,46.8666
--17.664,-19.872,-18.624,-15.744,72.4416,47.64
--17.04775,-19.07505,-17.8771,-15.1126,69.545605,44.2225
--17.76,-19.968,-18.624,-15.936,72.4416,47.24
--16.69625,-18.772,-17.59875,-14.89125,68.10265,43.0635
--16.872,-18.9696,-17.784,-15.2304,68.81952,42.6075
--17.76,-20.064,-18.816,-16.032,72.4416,44.112
--17.76555,-20.07027,-18.82188,-15.84495,72.464238,44.1936
--17.76,-20.064,-18.816,-15.936,72.4416,45.04
--16.872,-19.0608,-17.9664,-15.1392,68.81952,42.288
--18.13185,-20.5821,-19.30797,-16.17165,73.958346,43.7085
--17.7674,-20.1684,-18.91988,-15.94264,72.471784,44.0412
--16.7865,-18.9525,-17.77925,-14.9815,68.10265,42.693
--17.86344,-20.1684,-19.01592,-15.94264,72.471784,44.1392
--17.50074,-19.47663,-17.68892,-15.52485,71.000314,44.8625
--18.22986,-19.50399,-16.85772,-16.75971,73.958346,47.0547
--17.67,-17.86,-15.39,-16.53,71.687,46.94
--17.67744,-17.1072,-14.54112,-17.20224,71.622144,44.4015
--16.7865,-15.7035,-13.1765,-16.15475,68.0124,43.7285
--17.1399,-16.49485,-13.6382,-12.99315,69.453455,44.0325
--18.14274,-18.72486,-15.71724,-15.32916,73.114272,44.345
--17.77622,-18.82188,-15.97008,-15.01948,71.637216,44.4648
--17.77248,-18.81792,-16.1568,-14.7312,71.622144,43.2384
--16.87675,-17.8695,-15.523,-13.98875,68.0124,42.5125
--18.513,-19.602,-17.226,-15.147,74.6064,44.1144
--18.14274,-19.11294,-16.9785,-15.0381,73.114272,44.8154
--17.41344,-18.34464,-16.38912,-14.34048,70.175232,43.9701
--18.139,-19.109,-17.169,-14.938,73.0992,45.25
--17.59296,-18.53376,-16.74624,-14.39424,70.908096,42.3936
--17.4097,-18.4338,-16.6649,-14.3374,70.16016,42.408
--18.326,-19.502,-17.738,-15.484,73.8528,44.34
--17.4097,-18.7131,-16.9442,-14.8029,70.16016,44.5312
--17.6814,-18.90405,-17.21115,-14.8599,70.87608,41.9425
--17.86,-19.19,-17.48,-14.915,71.592,42.332
--17.3242,-18.6143,-17.04775,-14.65185,69.44424,42.3405
--18.05364,-19.39806,-17.86158,-15.26877,72.368208,43.6888
--17.3242,-18.6143,-17.1399,-14.65185,69.44424,42.028
--17.3242,-18.70645,-17.23205,-14.744,69.44424,42.8925
--17.6814,-19.09215,-17.6814,-15.048,70.87608,44.4807
--18.236,-19.788,-18.333,-15.714,73.0992,43.8925
--17.86752,-19.38816,-17.96256,-15.30144,71.631648,44.8866
--17.68704,-19.2864,-17.8752,-15.24096,70.898688,42.4704
--17.86752,-19.4832,-18.0576,-15.39648,71.622144,44.4807
--18.23976,-19.98612,-18.53082,-15.71724,73.017252,43.855
--17.1456,-18.7872,-17.4192,-14.8656,68.63712,44.213
--18.05552,-19.78424,-18.43968,-15.65452,72.279704,43.6688
--17.41635,-18.9829,-17.6928,-14.9283,69.35209,43.9701
--17.59968,-19.27584,-17.97216,-15.17856,70.082112,43.9701
--18.711,-20.493,-19.107,-16.137,74.5074,44.6985
--17.2368,-18.8784,-17.6928,-15.048,68.63712,42.2275
--18.14967,-19.97424,-18.62982,-15.94098,72.272178,44.3581
--18.14967,-19.97424,-18.72585,-15.84495,72.281781,43.8966
--17.2368,-18.9696,-17.784,-14.9568,68.64624,42.8544
--18.333,-20.273,-18.915,-16.005,73.0022,42.9128
--17.41824,-19.26144,-18.06336,-15.39072,69.359616,42.384
--18.333,-20.273,-19.012,-16.005,73.0022,43.8925
--18.33678,-20.27718,-19.01592,-16.0083,73.017252,45.1935
--17.05725,-18.9525,-17.689,-15.07175,67.931175,42.6075
--18.711,-20.79,-19.503,-16.335,74.5074,45.2826
--18.144,-20.16,-18.912,-16.032,72.2496,42.7776
--17.328,-19.152,-17.9664,-15.2304,68.64624,41.6256
--17.5104,-19.44576,-18.24768,-15.57504,69.359616,43.056
--17.8695,-19.5624,-17.4933,-15.4242,70.78203,42.123
--18.0576,-18.72288,-16.53696,-16.82208,71.527104,45.2826
--18.05,-17.765,-15.39,-16.91,71.497,44.94
--17.1475,-16.33525,-13.98875,-15.884,67.92215,41.5625
--17.8695,-16.3647,-14.01345,-16.45875,70.791435,44.0154
--18.0576,-17.01216,-14.256,-13.40064,71.527104,43.6224
--17.8752,-18.25152,-15.33504,-14.86464,70.804608,42.4608
--17.6928,-18.34464,-15.64416,-14.80608,70.091424,41.616
--17.8695,-18.71595,-16.08255,-14.6718,70.78203,41.5625
--18.718,-19.404,-16.954,-15.288,73.7548,44.74
--18.718,-19.404,-17.052,-15.092,73.7548,43.7472
--18.43,-19.109,-16.975,-14.841,73.0022,44.24
--17.96928,-18.53376,-16.55808,-14.30016,70.804608,42.5664
--17.78592,-18.43776,-16.57536,-14.4336,70.082112,43.2232
--18.53082,-19.20996,-17.36658,-14.94108,73.017252,43.561
--18.909,-19.602,-17.721,-15.444,74.5074,45.9657
--17.7821,-18.5269,-16.8511,-14.6167,69.98327,43.6525
--18.527,-19.497,-17.654,-15.423,72.9052,43.1165
--18.909,-19.998,-18.216,-15.642,74.4183,43.64
--18.909,-19.998,-18.216,-15.543,74.4084,43.7976
--17.78592,-18.81024,-17.2272,-14.71296,69.998304,42.1056
--17.78592,-18.90336,-17.32032,-14.8992,69.998304,42.9504
--17.7821,-18.8993,-17.4097,-14.896,69.98327,44.0325
--17.96355,-19.09215,-17.58735,-14.8599,70.68798,43.7976
--17.7821,-18.8993,-17.5028,-14.896,69.98327,41.458
--18.145,-19.38,-17.955,-15.2,71.4115,40.983
--18.15646,-19.39224,-17.96634,-15.30466,71.447096,42.8255
--18.71991,-20.09205,-18.6219,-15.77961,73.664316,43.7184
--18.145,-19.57,-18.05,-15.485,71.4115,44.75
--18.15264,-19.57824,-18.15264,-15.58656,71.432064,44.4807
--17.96355,-19.3743,-18.0576,-15.33015,70.68798,42.332
--17.4192,-18.7872,-17.5104,-14.8656,68.54592,42.788
--17.96355,-19.46835,-18.15165,-15.4242,70.68798,45.0945
--17.6928,-19.07505,-17.78495,-15.02045,69.269155,42.8255
--18.06336,-19.47456,-18.15744,-15.5232,70.710528,43.1592
--17.8752,-19.3648,-18.0614,-15.1753,69.97396,43.4532
--18.24768,-19.76832,-18.43776,-15.6816,71.432064,44.1144
--17.328,-18.772,-17.5085,-14.801,67.840925,42.693
--17.69472,-19.16928,-17.9712,-15.29856,69.267456,43.44
--18.43968,-20.07236,-18.7278,-15.94264,72.183664,45.1094
--18.43776,-20.07027,-18.82188,-15.74892,72.185751,43.7955
--18.432,-20.16,-18.816,-15.936,72.1632,44.1888
--18.0576,-19.7505,-18.52785,-15.51825,70.697385,44.4114
--19.008,-20.79,-19.503,-16.335,74.4084,44.45
--18.25152,-19.9626,-18.72682,-15.6849,71.447096,43.4075
--17.69472,-19.3536,-18.15552,-15.39072,69.267456,43.728
--18.62784,-20.3742,-19.20996,-16.10532,72.920232,44.3025
--18.43968,-20.07236,-18.53572,-15.46244,72.183664,44.0314
--18.24768,-19.008,-16.91712,-16.25184,71.432064,43.056
--19.3,-19,-16.5,-17.9,75.16,44.34
--18.15165,-17.02305,-14.6718,-16.7409,70.68798,42.2275
--17.6016,-15.96,-13.5888,-16.3248,68.55504,41.7216
--18.15165,-16.45875,-13.7313,-13.44915,70.697385,44.0055
--18.53379,-18.43776,-15.46083,-15.26877,72.176148,43.8966
--18.335,-18.715,-15.865,-15.105,71.307,44.64
--18.34272,-18.81792,-16.1568,-14.92128,71.346528,42.8544
--17.41825,-17.8695,-15.523,-13.8985,67.750675,42.693
--17.78495,-18.2457,-15.94195,-14.1911,69.177005,43.9701
--18.721,-19.109,-16.975,-14.938,72.8179,44.45
--17.9683,-18.3407,-16.3856,-14.2443,69.89017,41.667
--17.97216,-18.43776,-16.48224,-14.34048,69.905184,42.7776
--18.15165,-18.6219,-16.7409,-14.4837,70.59393,46.1835
--17.78495,-18.2457,-16.587,-14.28325,69.16779,41.5625
--18.72486,-19.30698,-17.56062,-15.32916,72.823212,44.1936
--17.41825,-18.14025,-16.4255,-14.34975,67.750675,41.743
--17.6016,-18.4224,-16.6896,-14.5008,68.45472,42.1056
--18.53379,-19.39806,-17.66952,-15.17274,72.080118,44.0055
--19.107,-19.998,-18.315,-15.741,74.3193,44.86
--18.15937,-19.10027,-17.50074,-15.0544,70.623954,43.8925
--18.15165,-19.09215,-17.58735,-15.048,70.603335,45.2826
--17.78688,-18.70848,-17.32608,-14.65344,69.175296,43.9104
--18.72486,-19.79208,-18.23976,-15.42618,72.823212,43.4214
--18.72486,-19.79208,-18.23976,-15.42618,72.823212,44.9856
--18.528,-19.584,-18.144,-15.552,72.0576,41.7888
--18.15165,-19.28025,-17.77545,-15.33015,70.59393,44.3025
--19.107,-20.394,-18.81,-16.038,74.3094,44.64
--18.721,-19.982,-18.527,-15.714,72.8179,43.5821
--17.8771,-18.89075,-17.60065,-15.1126,69.16779,42.8925
--18.82188,-19.98612,-18.62784,-15.91128,72.832914,43.7976
--18.44164,-19.58236,-18.25152,-15.39972,71.352036,42.6218
--19.01394,-20.28807,-18.91593,-15.97563,73.566306,42.9165
--18.43,-19.665,-18.335,-15.58,71.307,44.85
--18.624,-19.872,-18.624,-15.744,72.0576,42.2784
--18.25152,-19.47456,-18.25152,-15.5232,70.616448,42.875
--18.44164,-19.77248,-18.44164,-15.58984,71.361542,43.0098
--17.8771,-19.1672,-17.96925,-15.1126,69.16779,43.7285
--19.012,-20.482,-19.11,-16.268,73.4706,44.75
--17.8771,-19.25935,-18.0614,-15.02045,69.07564,40.983
--18.0614,-19.4579,-18.2476,-15.1753,69.88086,42.8925
--19.206,-20.691,-19.404,-16.335,74.2203,43.6095
--18.06528,-19.46208,-18.34464,-15.45792,69.812064,43.056
--19.206,-20.691,-19.503,-16.335,74.2203,44.86
--18.62982,-20.1663,-18.91791,-15.94098,71.993691,44.7975
--18.818,-20.37,-19.109,-16.102,72.7209,44.45
--18.818,-20.37,-19.206,-16.102,72.7112,43.53
--18.25152,-19.7568,-18.53376,-15.71136,70.541184,42.8544
--18.62982,-20.26233,-19.01394,-15.84495,71.993691,43.0098
--19.012,-20.58,-19.306,-15.876,73.4706,44.8154
--17.87904,-18.52416,-16.49664,-15.48288,69.092352,42.672
--17.87904,-17.69472,-15.39072,-16.49664,69.092352,43.344
--18.25346,-17.21847,-14.96031,-16.84211,70.445183,44.6491
--18.3456,-16.55808,-14.20608,-16.9344,70.447104,44.8252
--18.3456,-16.08768,-13.45344,-16.18176,70.437696,43.953
--18.72585,-18.05364,-14.88465,-14.78862,71.993691,43.5918
--18.33975,-18.4338,-15.51825,-14.95395,70.509285,43.168
--18.7278,-19.01592,-16.23076,-14.98224,72.001188,46.0012
--18.9189,-19.20996,-16.59042,-14.94108,72.638874,44.247
--17.96925,-18.2457,-15.94195,-14.1911,69.084855,43.0635
--18.5328,-18.81792,-16.53696,-14.7312,71.156448,44.1936
--18.1584,-18.34464,-16.38912,-14.15424,69.718944,43.5045
--17.59875,-17.77925,-15.97425,-13.80825,67.570175,42.123
--17.59875,-17.77925,-16.0645,-13.98875,67.570175,43.833
--18.9189,-19.20996,-17.36658,-14.94108,72.638874,44.4807
--18.3456,-18.62784,-16.9344,-14.67648,70.531776,44.1392
--18.33975,-18.81,-17.02305,-14.8599,70.509285,45.8865
--18.1584,-18.71712,-17.04096,-14.71296,69.718944,44.8625
--18.72585,-19.39806,-17.66952,-15.46083,71.897661,46.0746
--19.305,-19.998,-18.315,-15.84,74.1213,48.73
--17.59875,-18.32075,-16.7865,-14.53025,67.660425,45.1535
--19.11,-19.894,-18.326,-15.582,73.3726,46.14
--18.72,-19.584,-17.952,-15.456,71.8752,47.13
--18.34755,-19.19436,-17.68892,-15.0544,70.539273,48.1605
--17.96925,-18.7986,-17.41635,-15.02045,69.00192,44.5715
--18.72585,-19.68615,-18.14967,-15.55686,71.897661,46.0746
--18.915,-19.885,-18.43,-15.811,72.7209,47.1711
--18.33975,-19.3743,-17.96355,-15.2361,70.509285,50.4306
--18.1584,-19.18272,-17.78592,-15.27168,69.812064,45.7344
--18.5367,-19.67742,-18.25152,-15.39972,71.266482,45.423
--18.525,-19.57,-18.24,-15.485,71.2215,46.0275
--19.11195,-20.28807,-18.91593,-15.97563,73.478097,47.5596
--18.5367,-19.67742,-18.34658,-15.58984,71.266482,47.7848
--18.3456,-19.56864,-18.25152,-15.61728,70.625856,49.245
--18.7278,-19.97632,-18.63176,-15.94264,72.087624,47.7652
--19.5,-20.8,-19.5,-16.4,75.07,47.64
--18.915,-20.273,-18.915,-16.102,72.8179,46.94
--19.11,-20.482,-19.208,-16.366,73.5686,47.45
--19.305,-20.79,-19.404,-16.335,74.3094,47.64
--19.208,-20.58,-19.208,-16.366,73.5686,48.265
--18.9189,-20.3742,-19.11294,-15.81426,72.832914,46.8666
--18.525,-19.95,-18.715,-15.675,71.402,49.44
--18.06336,-19.3536,-18.15552,-15.29856,69.184512,46.7904
--19.5,-21,-19.7,-16.8,75.07,48.45
--18.915,-20.079,-18.042,-16.005,72.8082,48.7425
--19.305,-19.404,-17.028,-17.424,74.3094,48.8367
--19.6,-18.7,-16.2,-17.7,75.07,48.63
--18.44164,-16.9362,-14.58395,-17.12438,70.633363,46.7055
--18.43968,-16.36992,-13.82976,-16.9344,70.625856,45.168
--18.4338,-16.929,-14.01345,-13.44915,70.603335,48.0744
--18.816,-18.624,-15.552,-15.36,72.0672,47.46
--18.62,-18.81,-15.96,-15.01,71.3165,47.53
--18.4338,-18.6219,-15.9885,-14.6718,70.68798,46.4835
--19.404,-19.602,-17.028,-15.345,74.4084,46.14
--19.404,-19.602,-17.226,-15.246,74.4084,47.45
--18.0614,-18.15355,-16.12625,-14.1911,69.269155,45.258
--18.25152,-18.34464,-16.38912,-14.34048,69.905184,45.8131
--17.8752,-18.0576,-16.2336,-13.8624,68.54592,45.543
--18.62784,-18.81792,-16.91712,-14.82624,71.432064,45.8865
--18.43968,-18.62784,-16.9344,-14.67648,70.719936,45.0624
--18.44164,-18.818,-17.03029,-14.86622,70.718044,44.4648
--17.689,-18.14025,-16.4255,-14.34975,67.8319,43.7285
--19.208,-19.796,-17.934,-15.386,73.6568,46.1874
--19.01592,-19.59804,-17.85168,-15.32916,72.920232,46.3716
--18.44164,-19.00618,-17.40665,-14.77213,70.727453,45.7161
--18.62,-19.285,-17.67,-15.2,71.402,43.9375
--18.0614,-18.70645,-17.23205,-14.5597,69.25994,44.422
--18.816,-19.488,-18.048,-15.072,72.1536,44.112
--18.2476,-18.9924,-17.5028,-14.8029,69.98327,45.031
--18.62,-19.38,-17.955,-15.2,71.402,46.14
--19.404,-20.196,-18.711,-15.939,74.4084,45.9756
--19.208,-20.09,-18.62,-15.876,73.6568,46.03
--18.43968,-19.2864,-17.8752,-15.24096,70.710528,44.1888
--19.404,-20.394,-18.909,-15.939,74.4084,45.1935
--18.25152,-19.18272,-17.87904,-15.17856,69.988992,43.9701
--18.82384,-19.78424,-18.43968,-15.65452,72.193268,46.8734
--18.816,-19.872,-18.432,-15.648,72.1536,47.75
--19.20996,-20.28807,-18.91593,-16.07364,73.674117,47.0646
--19.208,-20.286,-18.914,-16.072,73.6666,46.14
--18.4338,-19.46835,-18.2457,-15.51825,70.68798,45.5697
--18.43968,-19.56864,-18.25152,-15.42912,70.710528,43.5168
--19.01592,-20.18016,-18.82188,-16.10532,72.920232,45.8865
--18.82188,-19.97424,-18.72585,-15.94098,72.176148,44.9595
--19.404,-20.691,-19.305,-16.236,74.4183,45.7875
--19.012,-20.273,-19.012,-16.102,72.9052,45.0371
--17.8752,-19.0608,-17.8752,-15.1392,68.54592,43.6525
--18.4338,-19.65645,-18.4338,-15.51825,70.697385,43.9375
--18.62784,-19.9584,-18.62784,-15.6816,71.432064,45.6786
--18.63176,-19.9626,-18.72682,-15.6849,71.456602,44.5715
--18.0614,-19.3515,-18.15355,-15.4812,69.25994,44.422
--17.8752,-19.152,-17.9664,-15.2304,68.54592,45.4464
--18.43968,-19.7568,-18.53376,-15.61728,70.710528,45.6092
--18.2476,-19.551,-18.4338,-15.4546,69.97396,45.5112
--18.82188,-20.07027,-18.53379,-15.65289,72.176148,45.3572
--18.25152,-18.53088,-16.38912,-16.01664,69.988992,43.9008
--18.62784,-18.0576,-15.6816,-16.53696,71.432064,46.0845
--18.25152,-16.85472,-14.52672,-16.48224,69.998304,44.4
--19.11294,-16.9785,-14.45598,-17.26956,72.920232,45.9657
--18.72288,-16.632,-13.87584,-13.40064,71.432064,44.5728
--19.503,-19.008,-15.84,-15.543,74.3193,45.73
--18.25152,-18.34464,-15.55104,-14.71296,69.988992,44.4
--18.3407,-18.3407,-15.827,-14.5236,69.97396,44.345
--18.82188,-18.91791,-16.51716,-14.59656,72.089721,45.1935
--18.0614,-18.15355,-15.94195,-14.09895,69.177005,43.928
--18.912,-18.816,-16.704,-14.688,72.0672,45.74
--18.72682,-18.63176,-16.73056,-14.35406,71.361542,44.6292
--18.912,-18.816,-16.992,-14.784,72.1536,43.6224
--18.72682,-18.63176,-16.92068,-14.63924,71.447096,44.8625
--19.503,-19.503,-17.721,-15.246,74.4084,44.6985
--18.2476,-18.3407,-16.758,-14.4305,69.88086,44.345
--19.208,-19.502,-17.738,-15.288,73.6568,45.2172
--18.34464,-18.624,-17.04096,-14.71296,69.895872,44.8896
--19.503,-19.899,-18.216,-15.543,74.3193,46.1934
--19.7,-20.2,-18.4,-15.8,75.16,46.25
--18.715,-19.19,-17.575,-15.01,71.402,43.5575
--18.91988,-19.40008,-17.86344,-14.98224,72.087624,45.031
--18.3407,-18.8062,-17.4097,-14.7098,69.89017,44.639
--18.62784,-19.29312,-17.77248,-15.01632,71.337024,45.5697
--19.11294,-19.69506,-18.23976,-15.42618,72.920232,44.9232
--18.52785,-19.09215,-17.6814,-15.048,70.59393,45.2826
--18.53573,-19.19436,-17.78301,-15.0544,70.708635,44.5715
--19.503,-20.196,-18.711,-15.84,74.3193,46.36
--18.52785,-19.28025,-17.8695,-15.14205,70.59393,43.168
--18.72288,-19.4832,-18.0576,-15.30144,71.346528,43.44
--19.11294,-19.8891,-18.53082,-15.71724,72.832914,45.0945
--19.109,-19.885,-18.624,-15.811,72.9052,44.6491
--19.11294,-19.98612,-18.62784,-15.81426,72.920232,44.9856
--18.15355,-18.9829,-17.6928,-14.9283,69.25994,43.0635
--19.11294,-19.98612,-18.72486,-15.81426,72.920232,44.1392
--18.52785,-19.3743,-18.15165,-15.33015,70.68798,42.9875
--19.109,-19.982,-18.721,-15.811,72.9149,44.0768
--19.306,-20.286,-18.914,-15.876,73.5588,45.55
--18.15355,-19.07505,-17.8771,-15.20475,69.25994,45.6385
--18.53376,-19.56864,-18.25152,-15.5232,70.625856,43.728
--18.91988,-19.88028,-18.63176,-15.8466,72.183664,43.3454
--17.9664,-18.9696,-17.784,-15.048,68.45472,42.288
--18.3407,-19.2717,-18.1545,-15.2684,69.89017,43.6688
--18.72682,-19.67742,-18.5367,-15.58984,71.352036,43.5918
--18.91791,-19.87821,-18.72585,-15.74892,72.089721,43.7955
--18.15355,-19.07505,-18.0614,-15.1126,69.18622,44.0768
--19.11294,-20.08314,-19.01592,-15.91128,72.832914,44.345
--19.503,-20.493,-19.404,-16.137,74.3193,46.36
--18.15552,-19.16928,-18.06336,-15.2064,69.175296,44.1888
--19.109,-20.079,-19.012,-16.102,72.8082,45.33
--18.53376,-19.56864,-18.53376,-15.5232,70.625856,44.5312
--18.715,-19.76,-18.715,-15.675,71.3165,45.74
--18.53376,-19.56864,-18.53376,-15.61728,70.625856,44.9664
--18.52785,-19.5624,-18.52785,-15.70635,70.603335,45.3816
--19.306,-20.384,-19.306,-16.268,73.5686,46.65
--18.72288,-19.86336,-18.72288,-15.77664,71.346528,45.9657
--18.53376,-19.66272,-18.53376,-15.61728,70.625856,44.5056
--18.53376,-19.2864,-17.31072,-15.5232,70.625856,44.345
--18.52785,-18.2457,-15.89445,-16.45875,70.603335,44.6985
--19.30797,-18.03384,-15.58359,-17.24976,73.576107,44.9856
--19.11294,-17.07552,-14.553,-17.26956,72.929934,44.4906
--19.503,-16.83,-14.058,-17.127,74.4084,46.2924
--18.912,-17.568,-14.496,-14.208,72.1536,44.86
--18.715,-18.43,-15.485,-15.01,71.4115,42.9875
--18.715,-18.62,-15.865,-14.82,71.402,45.33
--19.30797,-19.20996,-16.6617,-15.09354,73.664316,45.8964
--18.52785,-18.4338,-16.08255,-14.2956,70.68798,44.8767
--18.91791,-18.72585,-16.61319,-14.50053,72.176148,44.9856
--19.306,-19.11,-17.052,-14.896,73.6568,42.581
--19.109,-18.915,-16.975,-14.647,72.9052,44.45
--18.91791,-18.72585,-16.90128,-14.78862,72.185751,42.9264
--18.53376,-18.3456,-16.74624,-14.20608,70.719936,43.2768
--18.912,-18.816,-17.088,-14.784,72.1632,42
--18.53376,-18.53376,-16.84032,-14.67648,70.719936,41.7984
--17.77925,-17.8695,-16.33525,-13.8985,67.8319,41.667
--18.52785,-18.6219,-17.1171,-14.57775,70.697385,41.743
--18.91791,-19.10997,-17.47746,-14.88465,72.185751,44.0055
--18.52785,-18.71595,-17.21115,-14.38965,70.68798,42.7975
--18.91791,-19.01394,-17.57349,-14.78862,72.176148,43.8925
--18.72288,-18.81792,-17.48736,-14.82624,71.432064,44.2944
--18.34464,-18.53088,-17.13408,-14.80608,69.998304,44.3678
--19.30797,-19.602,-18.13185,-15.38757,73.664316,45.0945
--17.9664,-18.24,-16.9632,-14.3184,68.54592,43.1328
--17.9664,-18.3312,-16.9632,-14.4096,68.45472,43.168
--18.52785,-18.90405,-17.58735,-14.76585,70.68798,42.788
--18.72288,-19.10304,-17.77248,-14.92128,71.432064,44.3025
--18.15355,-18.52215,-17.3242,-14.46755,69.25994,42.6835
--17.9664,-18.3312,-17.1456,-14.4096,68.54592,42.617
--18.91988,-19.30404,-18.15156,-15.3664,72.183664,43.561
--18.15355,-18.6143,-17.41635,-14.46755,69.269155,42.2275
--18.53573,-19.00618,-17.78301,-14.77213,70.718044,43.4075
--18.72682,-19.29718,-17.96634,-15.30466,71.447096,44.1392
--17.9664,-18.5136,-17.328,-14.5008,68.54592,42.6075
--19.306,-19.894,-18.62,-15.68,73.6666,43.855
--18.715,-19.285,-18.05,-15.105,71.402,45.54
--19.11294,-19.69506,-18.53082,-15.42618,72.920232,44.4015
--18.912,-19.488,-18.336,-15.168,72.1536,44.64
--19.306,-19.894,-18.718,-15.582,73.6568,44.64
--18.52785,-19.09215,-17.96355,-15.048,70.68798,42.028
--18.34464,-18.90336,-17.87904,-14.80608,69.988992,42.1056
--19.503,-20.196,-19.008,-15.741,74.4084,45.65
--19.7,-20.4,-19.2,-15.9,75.16,45.73
--18.15355,-18.7986,-17.6928,-14.744,69.25994,44.1835
--18.53376,-19.19232,-18.06336,-14.95872,70.710528,42
--18.34464,-18.99648,-17.87904,-14.99232,69.988992,42
--19.109,-19.788,-18.721,-15.52,72.9052,43.5045
--18.72682,-19.39224,-18.34658,-15.30466,71.447096,42.8352
--18.912,-19.584,-18.528,-15.36,72.1536,42.384
--18.3407,-19.0855,-17.9683,-15.0822,69.97396,42.123
--19.11294,-19.8891,-18.72486,-15.71724,72.920232,44.5896
--18.53376,-19.2864,-18.15744,-15.14688,70.710528,44.737
--18.72682,-19.4873,-18.44164,-15.30466,71.447096,43.561
--18.72288,-19.4832,-18.43776,-15.30144,71.432064,44.4114
--17.77925,-18.50125,-17.5085,-14.44,67.8319,43.168
--18.715,-19.57,-18.43,-15.39,71.402,42.332
--18.34464,-19.0896,-18.06528,-15.08544,69.988992,43.3978
--18.53376,-19.38048,-18.25152,-15.14688,70.719936,43.953
--19.306,-20.188,-19.012,-15.974,73.6568,44.4234
--18.52785,-19.3743,-18.2457,-15.048,70.68798,41.9425
--19.306,-20.188,-19.11,-15.778,73.6568,44.9232
--18.715,-19.57,-18.525,-15.39,71.4115,42.8925
--18.912,-19.776,-18.72,-15.456,72.1536,45.04
--18.15552,-18.98496,-17.9712,-14.7456,69.267456,43.44
--18.15552,-18.98496,-17.9712,-14.7456,69.267456,43.6224
--18.52785,-19.3743,-18.33975,-15.14205,70.697385,45.0945
--18.15552,-18.98496,-17.9712,-14.7456,69.267456,43.824
--18.52785,-19.46835,-18.33975,-15.33015,70.603335,44.4015
--18.53376,-19.47456,-18.3456,-15.42912,70.625856,43.8452
--18.715,-19.665,-18.525,-15.39,71.3165,45.54
--18.72288,-19.57824,-18.5328,-15.49152,71.346528,44.1936
--18.72288,-19.67328,-18.5328,-15.2064,71.337024,42.288
--17.9664,-18.8784,-17.8752,-14.7744,68.46384,42.693
--18.715,-19.665,-18.62,-15.39,71.3165,42.2275
--18.715,-19.665,-18.62,-15.485,71.3165,44.56
--19.30797,-20.28807,-19.20996,-16.07364,73.576107,44.7975
--19.11294,-20.08314,-19.01592,-15.71724,72.823212,43.953
--19.503,-20.493,-19.404,-16.038,74.3094,45.25
--19.11294,-20.08314,-19.01592,-15.71724,72.823212,43.6095
--18.715,-19.76,-18.62,-15.485,71.307,45.04
--19.20996,-20.08314,-19.01592,-15.81426,72.823212,43.4532
--18.3407,-19.3648,-18.2476,-15.1753,69.89017,42.9828
--19.11294,-20.18016,-19.01592,-15.91128,72.832914,44.4015
--18.81792,-19.67328,-18.62784,-15.58656,71.346528,44.1936
--18.3407,-19.2717,-18.2476,-15.2684,69.89017,42.788
--19.306,-20.286,-19.306,-15.876,73.5588,44.345
--19.503,-20.592,-19.503,-16.236,74.3193,44.85
--18.81,-19.665,-18.62,-15.485,71.307,44.75
--19.30797,-20.38608,-19.20996,-15.87762,73.566306,45.0945
--18.912,-19.872,-18.816,-15.744,72.0672,46.35
--19.109,-20.176,-19.012,-15.908,72.8082,45.73
--19.602,-20.592,-19.404,-16.137,74.3094,44.85
--19.404,-20.384,-19.306,-15.974,73.5686,44.639
--18.715,-19.76,-18.715,-15.39,71.3165,43.4435
--18.43776,-19.36896,-18.34464,-15.27168,69.895872,43.3008
--19.008,-20.064,-18.912,-15.84,72.0576,45.44
--18.81,-19.855,-18.715,-15.58,71.402,42.6075
--18.43776,-19.46208,-18.34464,-15.17856,69.895872,42.1056
--19.01394,-20.07027,-18.91791,-15.84495,72.176148,44.3025
--19.602,-20.691,-19.503,-16.335,74.3193,44.1936
--18.4338,-19.3648,-18.4338,-15.0822,69.89017,41.9425
--18.82188,-19.77248,-18.72682,-15.58984,71.456602,42.8352
--18.6219,-19.5624,-18.52785,-15.4242,70.59393,42.2275
--19.206,-20.176,-19.109,-15.908,72.9052,45.15
--19.206,-20.176,-19.109,-15.908,72.9149,45.04
--18.62784,-19.56864,-18.62784,-15.33504,70.710528,43.6688
--18.81792,-19.76832,-18.81792,-15.58656,71.432064,42.5664
--18.81,-19.76,-18.715,-15.675,71.402,42.9875
--19.01394,-20.07027,-18.91791,-15.65289,72.176148,45.4348
--18.62784,-19.66272,-18.53376,-15.42912,70.710528,42.6594
--18.82188,-19.86754,-18.82188,-15.6849,71.447096,42.5442
--19.404,-20.482,-19.404,-16.17,73.6568,43.86
--19.008,-20.064,-19.008,-15.648,72.1536,42.672
--18.82188,-19.86754,-18.82188,-15.58984,71.447096,42.0495
--19.01394,-20.07027,-19.01394,-15.74892,72.176148,44.3025
--18.24768,-19.26144,-18.24768,-15.02208,69.276672,42.4704
--18.81792,-19.76832,-18.81792,-15.58656,71.441568,43.4214
--18.81,-19.855,-18.81,-15.58,71.402,44.34
--18.81792,-19.86336,-18.81792,-15.58656,71.441568,43.728
--19.008,-20.064,-19.008,-15.552,72.1632,44.16
--19.8,-20.9,-19.8,-16.3,75.16,44.56
--19.01592,-19.97632,-18.82384,-15.07828,72.193268,43.561
--18.0576,-18.0576,-15.8688,-15.4128,68.54592,41.8475
--19.20996,-18.33678,-15.71724,-17.17254,72.920232,43.7976
--19.8,-17.9,-15.3,-17.5,75.16,44.56
--18.43776,-16.01664,-13.40928,-16.20288,69.988992,42.384
--18.24768,-15.94368,-12.99456,-12.99456,69.359616,42.672
--18.91296,-18.0576,-14.92128,-14.63616,71.441568,43.6095
--18.62982,-18.34755,-15.43076,-14.67804,70.812134,42.6218
--19.50399,-19.11195,-16.46568,-14.79951,73.762326,43.7184
--19.20996,-19.01592,-16.4934,-14.74704,73.017252,43.1046
--19.30698,-18.9189,-16.59042,-14.553,73.017252,42.581
--19.303,-18.818,-16.781,-14.55,73.0022,42.4375
--18.33984,-17.87904,-16.03584,-13.63968,69.359616,41.3376
--18.91296,-18.43776,-16.632,-14.256,71.527104,44.1144
--19.404,-19.11,-17.248,-14.7,73.7548,43.53
--17.8695,-17.5085,-15.97425,-13.44725,67.931175,41.4675
--19.701,-19.305,-17.622,-14.85,74.5074,43.1046
--18.0576,-17.8752,-16.3248,-14.0448,68.63712,41.9425
--18.91694,-18.72682,-17.1108,-14.63924,71.542156,42.6218
--18.53088,-18.43776,-16.85472,-14.34048,70.082112,42
--18.53088,-18.34464,-16.85472,-14.24736,70.175232,41.616
--19.01394,-18.91791,-17.47746,-14.59656,72.358605,42.4375
--18.2457,-18.15355,-16.86345,-14.0068,69.435025,41.9525
--19.01592,-18.91988,-17.57532,-14.79016,72.36614,42.581
--19.602,-19.503,-18.216,-15.147,74.6064,43.1046
--19.404,-19.306,-18.032,-14.994,73.843,43.64
--19.20996,-19.20996,-17.9487,-14.94108,73.114272,42.875
--19.11196,-19.11196,-17.7674,-14.8862,72.375744,43.6688
--18.62784,-18.72192,-17.4048,-14.48832,70.88928,45.031
--19.30698,-19.30698,-18.04572,-14.94108,73.114272,44.4015
--18.62784,-18.62784,-17.49888,-14.5824,70.88928,44.5312
--18.62982,-18.72391,-17.50074,-14.67804,70.896815,43.7955
--19.701,-19.701,-18.513,-15.642,74.6064,44.94
--18.81792,-19.008,-17.77248,-14.7312,71.631648,45.2034
--18.4338,-18.62,-17.4097,-14.3374,70.24395,42.693
--19.008,-19.2,-18.048,-14.88,72.432,44.23
--18.81,-19,-17.86,-14.725,71.6775,43.64
--19.502,-19.6,-18.424,-15.386,73.9508,43.169
--18.43776,-18.624,-17.50656,-14.52672,70.25904,41.8944
--19.008,-19.2,-18.048,-14.976,72.432,42.576
--18.62982,-18.818,-17.68892,-14.58395,70.990905,43.3008
--18.62784,-18.91008,-17.78112,-14.67648,70.98336,42.8554
--19.206,-19.497,-18.333,-15.229,73.1865,43.2232
--18.62784,-19.00416,-17.78112,-14.77056,70.98336,42.288
--18.82188,-19.20212,-18.0614,-14.92442,71.732276,42.4375
--18.905,-19.19,-18.05,-14.915,71.6775,43.25
--18.81792,-19.10304,-18.0576,-14.82624,71.70768,41.7984
--18.82188,-19.10706,-18.0614,-14.82936,71.81783,41.6615
--19.404,-19.796,-18.62,-15.288,74.039,42.091
--18.2457,-18.52215,-17.5085,-14.46755,69.62854,42.1562
--19.602,-19.998,-18.81,-15.642,74.7945,42.1245
--19.20996,-19.59804,-18.4338,-15.42618,73.29861,42.2334
--18.4338,-18.8062,-17.7821,-14.7098,70.33705,41.307
--19.602,-20.097,-18.909,-15.741,74.7945,43.14
--18.81792,-19.19808,-18.15264,-14.92128,71.80272,41.4144
--18.43776,-18.81024,-17.78592,-14.52672,70.35216,41.1668
--19.008,-19.392,-18.336,-15.264,72.528,42.36
--19.404,-19.894,-18.718,-15.288,74.039,43.06
--18.62982,-19.00618,-17.97119,-14.77213,71.084995,41.1668
--18.0576,-18.4224,-17.4192,-14.3184,68.91072,40.9536
--19.206,-19.594,-18.527,-15.326,73.2835,42.03
--18.82188,-19.20212,-18.15646,-15.01948,71.81783,41.1668
--18.62784,-19.00416,-17.96928,-14.48832,71.17152,40.56
--18.6219,-18.9981,-17.96355,-14.76585,71.148825,40.4225
--18.43776,-18.71712,-17.78592,-14.71296,70.44528,40.848
--19.8,-20.1,-19.1,-15.8,75.65,42.44
--19.01394,-19.49409,-18.34173,-15.07671,72.646695,41.9364
--19.206,-19.691,-18.624,-15.52,73.3805,41.3802
--18.43776,-18.90336,-17.87904,-14.80608,70.44528,40.9825
--19.602,-20.097,-19.008,-15.84,74.8935,42.14
--19.206,-19.691,-18.624,-15.326,73.3805,40.9825
--19.20996,-19.69506,-18.62784,-15.32916,73.39563,41.405
--18.2457,-18.70645,-17.6928,-14.5597,69.711475,41.0892
--19.008,-19.488,-18.432,-15.264,72.624,40.464
--18.0576,-18.5136,-17.5104,-14.5008,68.9928,40.4225
--18.43776,-18.90336,-17.87904,-14.80608,70.44528,41.5548
--19.40598,-19.89603,-18.81792,-15.58359,74.144565,42.6294
--18.0576,-18.6048,-17.5104,-14.4096,69.00192,40.812
--19.01592,-19.59216,-18.53572,-15.46244,72.65426,41.699
--18.43776,-18.99648,-17.97216,-14.80608,70.44528,41.2416
--19.404,-19.992,-18.914,-15.582,74.137,42.66
--19.404,-19.992,-18.914,-15.582,74.137,41.8068
--18.81792,-19.38816,-18.34272,-15.01632,71.89776,40.3584
--19.20996,-19.79208,-18.72486,-15.23214,73.39563,42.0156
--18.2457,-18.7986,-17.78495,-14.46755,69.70226,40.242
--19.20996,-19.79208,-18.72486,-15.42618,73.473246,41.4315
--19.8,-20.4,-19.3,-15.9,75.73,42.25
--18.0576,-18.6048,-17.6016,-14.4096,69.06576,40.318
--18.81,-19.38,-18.335,-15.105,71.9435,41.85
--19.8,-20.4,-19.3,-16,75.73,42.15
--18.2457,-18.7986,-17.78495,-14.5597,69.77598,40.7012
--19.40598,-19.99404,-18.91593,-15.77961,74.213172,41.5404
--19.008,-19.584,-18.528,-15.168,72.7008,41.85
--19.20996,-19.79208,-18.72486,-15.62022,73.473246,40.9052
--18.0576,-18.696,-17.6016,-14.592,69.06576,39.9936
--19.8,-20.5,-19.3,-15.9,75.73,41.85
--18.4338,-18.9924,-17.9683,-14.8029,70.50463,39.653
--18.62982,-19.19436,-18.15937,-15.0544,71.254357,40.8758
--19.20996,-19.79208,-18.72486,-15.5232,73.473246,41.2533
--18.62982,-19.19436,-18.15937,-15.14849,71.254357,40.5945
--18.6219,-19.28025,-18.2457,-15.048,71.224065,41.8275
--18.6219,-19.1862,-18.2457,-15.2361,71.318115,40.318
--18.2457,-18.7986,-17.8771,-14.65185,69.785195,40.318
--19.008,-19.68,-18.624,-15.36,72.7008,40.6656
--18.82188,-19.39224,-18.44164,-15.11454,71.988938,41.5128
--19.40598,-20.09205,-19.01394,-15.58359,74.222973,42.1245
--19.01592,-19.6882,-18.63176,-15.27036,72.817528,41.405
--19.206,-19.885,-18.818,-15.617,73.4581,41.0892
--19.40598,-20.09205,-19.01394,-15.38757,74.311182,42.6294
--18.62784,-19.2864,-18.25152,-15.0528,71.246784,41.232
--18.0576,-18.696,-17.6928,-14.592,69.06576,40.3488
--18.62982,-19.28845,-18.25346,-15.14849,71.254357,41.2735
--19.404,-20.09,-19.012,-15.582,74.3134,43.14
--17.8695,-18.50125,-17.5085,-14.44,68.436575,40.907
--18.0576,-18.696,-17.6928,-14.592,69.15696,40.4544
--18.62784,-19.2864,-18.25152,-15.14688,71.331456,40.7424
--18.43776,-19.0896,-18.06528,-14.99232,70.519776,41.3705
--17.8695,-18.50125,-17.5085,-14.44,68.436575,39.938
--19.20996,-19.8891,-18.82188,-15.5232,73.570266,41.6196
--18.62784,-19.2864,-18.25152,-15.14688,71.340864,41.1992
--19.20996,-19.8891,-18.82188,-15.5232,73.570266,41.6196
--19.01592,-19.6882,-18.63176,-15.3664,72.836736,41.013
--19.01592,-19.6882,-18.63176,-15.27036,72.827132,41.1894
--18.2457,-18.89075,-17.8771,-14.83615,69.86813,40.9825
--18.82188,-19.4873,-18.44164,-15.2096,72.074492,40.5945
--19.404,-20.09,-19.012,-15.582,74.3134,42.14
--18.6219,-19.28025,-18.2457,-15.2361,71.30871,41.6097
--19.206,-19.982,-18.818,-15.617,73.5551,42.44
--18.6219,-19.3743,-18.2457,-15.14205,71.318115,41.6196
--19.01394,-19.68615,-18.62982,-15.46083,72.809946,40.7788
--18.81792,-19.4832,-18.5328,-15.30144,72.201888,41.7285
--18.2457,-18.89075,-17.8771,-14.83615,70.006355,40.7691
--19.8,-20.5,-19.4,-15.9,75.82,42.44
--19.01394,-19.68615,-18.62982,-15.26877,72.809946,42.1245
--19.404,-20.09,-19.012,-15.582,74.4506,41.5912
--18.24768,-18.8928,-17.87904,-14.7456,70.013952,40.7424
--18.6219,-19.3743,-18.2457,-15.14205,71.318115,42.0156
--18.24768,-18.98496,-17.9712,-14.92992,69.875712,40.2816
--19.8,-20.5,-19.4,-16.1,75.83,44.15
--18.62982,-19.28845,-18.25346,-15.0544,71.348447,42.1562
--18.81,-19.475,-18.43,-15.295,71.9435,42.03
--18.62784,-19.2864,-18.25152,-15.33504,71.237376,41.0496
--18.81,-19.475,-18.525,-15.295,71.9435,40.4225
--19.01394,-19.68615,-18.62982,-15.3648,72.723519,41.0892
--19.20996,-19.98612,-18.82188,-15.62022,73.570266,42.1988
--18.6219,-19.28025,-18.2457,-15.048,71.224065,40.983
--18.62784,-19.38048,-18.3456,-15.0528,71.246784,41.3376
--18.81792,-19.57824,-18.43776,-15.2064,71.973792,40.7328
--18.82188,-19.58236,-18.5367,-15.30466,71.998444,41.9832
--18.2457,-18.9829,-17.96925,-14.83615,69.877345,40.622
--19.602,-20.394,-19.305,-15.84,75.0618,42.1245
--18.6219,-19.3743,-18.33975,-14.95395,71.318115,42.0156
--19.01592,-19.6882,-18.63176,-15.46244,72.827132,41.797
--18.4338,-19.1786,-18.1545,-14.9891,70.58842,40.242
--19.404,-20.188,-19.012,-15.876,74.3134,42.54
--18.81,-19.475,-18.525,-15.39,72.0385,40.242
--19.008,-19.68,-18.624,-15.264,72.7872,40.848
--19.01592,-19.78424,-18.7278,-15.3664,72.817528,41.699
--19.40598,-20.09205,-19.11195,-15.6816,74.311182,42.0156
--17.8695,-18.50125,-17.59875,-14.44,68.436575,40.318
--18.0576,-18.7872,-17.784,-14.592,69.15696,40.944
--18.2457,-18.89075,-17.8771,-14.65185,69.877345,40.242
--18.72192,-19.38048,-18.25152,-15.14688,71.472576,41.699
--19.602,-20.295,-19.305,-15.84,75.2103,42.0156
--19.10997,-19.68615,-18.72585,-15.55686,72.953991,41.9364
--19.104,-19.68,-18.72,-15.36,72.9312,40.3488
--18.72391,-19.28845,-18.25346,-14.96031,71.480173,43.4075
--19.303,-19.885,-18.915,-15.52,73.6909,43.36
--18.5269,-19.0855,-18.0614,-14.896,70.72807,40.622
--18.33785,-18.9829,-17.96925,-14.65185,70.006355,41.192
--18.905,-19.57,-18.525,-15.105,72.029,41.1825
--18.71595,-19.28025,-18.33975,-15.2361,71.449785,42.7086
--18.0576,-18.696,-17.784,-14.592,69.28464,40.4225
--18.91296,-19.4832,-18.43776,-15.2064,72.201888,42.0156
--18.33984,-18.8928,-17.87904,-14.7456,70.023168,42.1056
--19.303,-19.885,-18.818,-15.52,73.5454,42.3405
--18.81792,-19.4832,-18.43776,-15.39648,72.201888,43.0254
--18.33785,-12.1638,-13.17745,2.3959,69.86813,41.5625
--19.404,-8.33,-10.878,3.43,74.3036,43.64
--19.206,-8.051,-8.633,2.91,73.5454,43.14
--19.8,-5.4,-7,7.4,75.83,42.95
--18.62784,-2.25792,-5.26848,7.80864,71.331456,42.1988
--18.62784,-5.45664,-6.49152,-1.4112,71.340864,42.2772
--18.62784,-7.71456,-7.43232,-3.7632,71.340864,42.5908
--19.01394,-8.73873,-7.87446,-5.18562,72.809946,42.6218
--18.82188,-9.506,-8.0801,-6.55914,72.083998,41.8458
--18.6219,-9.9693,-8.0883,-6.48945,71.30871,40.983
--18.2457,-10.04435,-8.20135,-6.17405,69.877345,41.9525
--19.30797,-10.87911,-8.91891,-6.8607,74.320983,42.9264
--19.503,-11.187,-9.207,-6.831,75.2103,43.06
--18.72682,-10.9319,-9.0307,-6.84432,72.226588,41.6712
--17.8752,-10.7616,-8.8464,-7.4784,69.28464,40.8025
--18.82188,-11.81169,-9.69903,-8.45064,72.963594,41.4772
--18.25152,-11.82624,-9.59136,-8.00832,70.743264,42.0592
--18.62,-12.065,-9.975,-7.885,72.0385,42.36
--18.3456,-12.04224,-10.06656,-7.90272,71.331456,42.1988
--18.72585,-12.38787,-10.46727,-8.06652,72.819549,41.3705
--18.525,-12.35,-10.45,-8.17,72.0385,42.76
--18.2457,-12.32055,-10.5336,-8.2764,71.318115,40.527
--18.82188,-12.90366,-11.06028,-8.92584,73.570266,42.7086
--18.44164,-13.11828,-11.12202,-9.12576,72.074492,41.4772
--18.44164,-13.3084,-11.31214,-9.12576,72.083998,41.8458
--18.15744,-13.26528,-11.2896,-9.03168,71.340864,41.4144
--19.107,-13.959,-12.078,-9.504,74.9727,46.94
--18.53572,-13.54164,-11.81292,-9.31588,72.731092,48.3434
--18.24768,-13.49568,-11.78496,-9.21888,71.973792,49.3416
--18.624,-13.774,-12.125,-9.409,73.4581,50.83
--18.06528,-13.45487,-11.85534,-9.12673,71.254357,48.4515
--18.43968,-13.82976,-12.19708,-9.604,72.731092,47.0792
--17.4192,-13.224,-11.6736,-9.2112,69.06576,45.888
--18.71991,-14.30946,-12.7413,-10.29105,74.222973,45.9756
--18.15264,-14.06592,-12.45024,-9.88416,71.973792,46.0746
--19.1,-15.1,-13.3,-10.7,75.73,44.93
--17.8752,-14.30016,-12.60672,-9.97248,71.246784,43.6224
--17.8695,-14.2956,-12.69675,-9.9693,71.224065,44.6985
--18.0614,-14.44912,-12.92816,-10.07636,71.988938,45.423
--17.77545,-14.2956,-12.7908,-9.9693,71.224065,45.258
--17.78112,-14.39424,-12.88896,-9.97248,71.246784,44.247
--17.05725,-13.80825,-12.4545,-9.65675,68.346325,44.6975
--18.33678,-14.94108,-13.38876,-10.6722,73.473246,45.6092
--18.424,-15.19,-13.622,-10.682,74.2154,48.56
--18.42588,-15.28956,-13.7214,-10.87911,74.222973,47.6685
--18.048,-15.168,-13.536,-10.752,72.7008,48.45
--17.1456,-14.5008,-12.9504,-10.1232,69.06576,46.896
--17.77622,-15.01948,-13.59358,-10.64672,71.988938,48.3545
--17.952,-15.168,-13.728,-10.848,72.7008,48.0288
--17.0544,-14.4096,-13.1328,-10.488,69.06576,47.7408
--18.326,-15.582,-14.112,-11.172,74.2154,51.499
--17.14176,-14.65344,-13.3632,-10.87488,69.792768,49.8528
--17.50074,-15.14849,-13.73714,-11.00853,71.254357,51.5458
--17.68116,-15.39972,-13.87876,-11.21708,72.074492,49.5961
--18.042,-15.714,-14.259,-11.64,73.5454,47.6658
--17.5824,-15.49152,-14.06592,-11.49984,72.068832,44.9664
--16.872,-14.9568,-13.5888,-11.1264,69.15696,45.1535
--17.04775,-15.1126,-13.73035,-11.15015,69.877345,46.132
--17.66952,-15.74892,-14.4045,-11.71566,72.819549,45.5318
--17.1304,-15.3615,-13.965,-11.3582,70.59773,44.878
--17.67136,-15.8466,-14.50204,-11.90896,72.827132,46.2952
--17.48,-15.77,-14.44,-11.78,72.0385,46.25
--17.21115,-15.70635,-14.2956,-11.75625,71.318115,43.0635
--17.21664,-15.71136,-14.39424,-11.76,71.472576,43.0656
--18.3,-16.8,-15.4,-12.6,75.97,44.85
--17.04096,-15.64416,-14.34048,-11.54688,70.743264,44.0768
--17.21664,-15.80544,-14.48832,-11.85408,71.472576,44.639
--18.018,-16.731,-15.345,-12.573,75.2994,45.44
--17.65764,-16.4934,-15.13512,-12.22452,73.706094,44.9955
--18.2,-17,-15.6,-13,75.97,45.15
--17.29728,-16.1568,-14.92128,-12.07008,72.296928,44.8767
--16.8511,-15.827,-14.6167,-11.9168,70.82117,44.737
--16.33525,-15.43275,-14.2595,-11.46175,68.653175,42.8925
--17.02305,-16.08255,-14.8599,-12.0384,71.53443,43.0635
--17.195,-16.34,-15.105,-12.255,72.2665,45.55
--17.2854,-16.51716,-15.26877,-12.57993,73.146051,44.8767
--16.929,-16.27065,-15.048,-12.2265,71.637885,45.0945
--16.7616,-16.10976,-14.8992,-12.19872,70.929504,44.4
--17.1072,-16.44192,-15.2064,-12.45024,72.391968,43.44
--16.416,-15.8688,-14.6832,-11.7648,69.46704,43.728
--17.1108,-16.54044,-15.30466,-12.3578,72.407202,44.737
--17.005,-16.53,-15.295,-12.445,72.352,45.55
--17.36658,-16.88148,-15.71724,-12.70962,73.997154,44.639
--16.66848,-16.296,-15.08544,-12.19872,71.013312,44.7558
--17.005,-16.53,-15.39,-12.54,72.447,45.66
--16.92068,-16.6355,-15.39972,-12.54792,72.492756,44.737
--17.088,-16.896,-15.648,-12.864,73.2096,46.04
--16.92068,-16.73056,-15.49478,-12.54792,72.492756,45.0468
--17.088,-16.896,-15.744,-12.768,73.2096,46.44
--16.57536,-16.38912,-15.27168,-12.5712,71.022624,45.0468
--16.40448,-16.22016,-15.11424,-12.4416,70.290432,44.2944
--16.82562,-16.82562,-15.6849,-12.73804,72.492756,46.3932
--17.7,-17.7,-16.5,-13.3,76.27,45.95
--16.992,-16.992,-15.84,-12.864,73.2096,45.95
--16.64685,-16.7409,-15.51825,-12.7908,71.731935,45.4905
--16.48224,-16.66848,-15.45792,-12.66432,71.013312,45.168
--17.7,-17.9,-16.6,-13.7,76.26,46.76
--16.99731,-17.18937,-15.94098,-12.96405,73.232478,45.9756
--16.0512,-16.3248,-15.2304,-12.4032,69.54912,44.5824
--15.884,-16.15475,-15.07175,-12.18375,68.82465,43.9375
--16.896,-17.28,-16.128,-13.056,73.2096,46.25
--16.72704,-17.1072,-15.96672,-13.02048,72.477504,46.0746
--17.24976,-17.6418,-16.46568,-13.32936,74.742426,45.9756
--16.55808,-16.9344,-15.80544,-12.98304,71.754816,45.5112
--16.90128,-17.38143,-16.13304,-13.25214,73.232478,46.3716
--16.12625,-16.67915,-15.4812,-12.80885,70.27359,45.1438
--16.72704,-17.20224,-16.06176,-13.02048,72.572544,45.4905
--16.975,-17.557,-16.393,-13.483,74.0692,44.7558
--16.8,-17.472,-16.224,-13.248,73.3056,44.7936
--17.15,-17.836,-16.66,-13.426,74.8328,45.5112
--17.15,-17.836,-16.66,-13.426,74.8328,46.65
--16.807,-17.47928,-16.3268,-13.34956,73.336144,45.8248
--17.15,-17.934,-16.66,-13.622,74.8426,45.7268
--16.46575,-17.21847,-16.08939,-12.89033,71.847124,44.8625
--16.46575,-17.12438,-16.08939,-12.98442,71.847124,44.7558
--16.9785,-17.65764,-16.4934,-13.19472,74.084472,44.8252
--16.80525,-17.47746,-16.42113,-13.15611,73.338111,44.5812
--16.296,-16.94784,-15.92352,-12.94368,71.106432,44.0064
--16.80525,-17.57349,-16.42113,-13.25214,73.328508,44.9692
--16.3647,-17.21115,-16.08255,-12.9789,71.81658,43.9375
--16.45875,-17.21115,-16.08255,-12.7908,71.81658,43.7285
--15.8688,-16.5984,-15.5952,-12.5856,69.64032,43.738
--16.71096,-17.47928,-16.42284,-13.34956,73.336144,44.5312
--16.1994,-17.0373,-15.9201,-12.8478,71.09116,44.4234
--16.36992,-17.21664,-16.18176,-13.07712,71.933568,44.639
--16.878,-17.848,-16.684,-13.289,74.0692,44.3678
--16.54044,-17.39598,-16.35032,-13.11828,72.587816,44.4234
--16.36992,-17.21664,-16.18176,-12.88896,71.839488,43.728
--16.704,-17.568,-16.512,-13.248,73.3056,44.112
--16.704,-17.664,-16.512,-13.536,73.3056,45.85
--16.20288,-17.2272,-16.01664,-13.0368,71.199552,44.1835
--16.54044,-17.5861,-16.44538,-13.11828,72.682876,44.639
--16.36992,-17.31072,-16.18176,-12.88896,71.92416,44.8252
--15.8688,-16.6896,-15.6864,-12.6768,69.73152,43.5264
--16.88148,-17.75466,-16.78446,-13.38876,74.181492,44.7975
--16.20288,-17.13408,-16.10976,-13.0368,71.19024,43.6224
--15.8688,-16.872,-15.7776,-12.9504,69.73152,43.2725
--17.4,-18.5,-17.3,-13.8,76.46,45.95
--16.3647,-17.3052,-16.27065,-13.07295,71.91063,43.377
--16.70922,-17.66952,-16.61319,-13.06008,73.424538,44.0768
--15.7035,-16.606,-15.61325,-12.635,69.00515,43.5575
--16.3647,-17.3052,-16.27065,-13.07295,71.91063,45.5796
--17.226,-18.216,-17.127,-13.86,75.6954,45.3915
--16.03584,-17.0496,-16.03584,-12.9024,70.465536,43.248
--16.0341,-17.04775,-15.94195,-12.80885,70.45789,43.9701
--16.53,-17.48,-16.435,-13.11,72.637,43.377
--16.1994,-17.2235,-16.1994,-12.9409,71.18426,42.9875
--16.878,-18.042,-16.878,-13.58,74.1662,45.55
--16.0341,-17.1399,-16.0341,-12.901,70.45789,43.8925
--16.44538,-17.68116,-16.54044,-13.3084,72.682876,44.639
--16.3647,-17.39925,-16.3647,-13.07295,71.91063,44.5995
--16.61319,-17.76555,-16.70922,-13.34817,73.424538,43.6888
--16.70922,-17.66952,-16.70922,-13.34817,73.424538,45.2034
--16.44192,-17.67744,-16.632,-13.59072,72.667584,43.6224
--16.44192,-17.77248,-16.632,-13.49568,72.667584,44.8866
--16.1063,-17.4097,-16.2925,-13.1271,71.18426,45.031
--16.878,-18.042,-16.975,-13.483,74.1759,43.7955
--16.878,-17.945,-16.975,-13.386,74.1662,45.85
--17.052,-18.13,-17.052,-13.72,74.9308,45.25
--16.10976,-17.2272,-16.20288,-13.12992,71.19024,43.6985
--16.54044,-17.68116,-16.6355,-13.49852,72.682876,43.4075
--16.878,-18.139,-16.975,-13.677,74.1662,43.8925
--16.70922,-17.86158,-16.80525,-13.34817,73.424538,44.9692
--16.70922,-17.86158,-16.80525,-13.34817,73.414935,43.1165
--16.704,-17.568,-15.744,-12.672,73.4016,43.0656
--16.70922,-16.70922,-14.30847,-11.13948,73.424538,44.8866
--16.3647,-15.33015,-12.88485,-9.5931,71.91063,44.4114
--16.0341,-14.1911,-11.70305,-8.8464,70.45789,42.7975
--15.7035,-13.357,-10.73975,-7.7615,69.00515,42.693
--16.71096,-13.63768,-10.66044,-7.10696,73.432184,44.0412
--16.54044,-13.02322,-9.88624,-6.1789,72.682876,43.4075
--17.4,-13.3,-9.7,-5.5,76.45,45.33
--16.36992,-12.13632,-8.4672,-4.13952,71.933568,43.9628
--16.53,-11.78,-7.98,-3.705,72.637,42.408
--17.05374,-11.66319,-7.54677,-3.72438,74.938446,44.5995
--16.88148,-10.86624,-6.88842,-4.55994,74.181492,44.247
--16.704,-10.176,-6.432,-4.896,73.4016,44.75
--16.1994,-9.2169,-5.8653,-4.5619,71.18426,42.617
--16.36992,-8.65536,-5.36256,-4.42176,71.92416,43.7472
--16.36992,-7.90272,-4.98624,-4.42176,71.933568,43.344
--15.8688,-6.9312,-4.3776,-3.7392,69.73152,42.672
--16.53,-6.46,-3.895,-3.135,72.637,44.75
--16.878,-5.82,-3.007,-2.813,74.1662,44.56
--16.20288,-5.02848,-2.14176,-1.95552,71.199552,43.8052
--16.0341,-4.0546,-1.1058,-1.4744,70.448675,42.2275
--16.78446,-3.68676,-0.09702,-1.35828,74.17179,44.0055
--16.608,-3.168,0.768,-0.672,73.4016,42.672
--16.435,-1.995,1.9,-0.57,72.637,44.64
--15.61325,-1.35375,2.79775,-0.09025,68.996125,42.617
--15.94195,-0.64505,3.96245,0.5529,70.45789,43.9022
--16.44538,-0.28518,5.13324,0.66542,72.67337,43.2768
--16.684,0.388,6.208,0.97,74.1565,45.15
--17.127,0.891,7.425,1.683,75.6954,44.4114
--17.028,1.485,8.613,1.881,75.6954,44.7975
--15.8498,2.0273,8.93855,2.2116,70.448675,43.4075
--15.8498,2.7645,10.04435,2.67235,70.45789,43.5918
--16.0132,3.5378,11.172,3.1654,71.18426,42.8925
--16.35032,4.08758,12.73804,3.51722,72.682876,45.325
--16.929,4.752,14.454,3.96,75.6954,45.6786
--17.1,5.7,15.6,4.5,76.46,44.86
--15.9201,5.8653,15.6408,4.7481,71.18426,43.561
--16.83,6.93,17.82,5.643,75.6954,44.35
--16.6617,7.64478,18.91593,6.07662,74.938446,44.8767
--16.66,8.134,19.992,6.174,74.9308,43.169
--15.6655,8.4778,19.81225,6.72695,70.45789,42.8925
--15.89445,9.2169,21.16125,7.42995,71.91063,45.1935
--15.90121,9.97354,22.01706,7.99765,71.941214,43.5142
--16.224,11.136,23.616,8.64,73.4016,43.248
--16.8,12.1,25.7,9.6,76.46,44.45
--15.87502,12.26274,25.38102,9.506,72.587816,43.7472
--16.032,13.056,26.688,10.176,73.3056,44.45
--16.366,13.916,27.832,10.78,74.9308,44.0412
--15.77,14.155,27.93,11.115,72.542,43.0635
--16.268,15.484,29.4,12.348,74.8328,47.05
--16.005,16.005,30.167,12.319,74.0692,46.03
--15.675,16.53,30.115,12.54,72.542,45.77
--14.9568,16.6896,29.7312,12.5856,69.64032,42.693
--15.908,18.139,32.01,13.968,74.0692,43.8925
--15.33504,18.15744,31.42272,13.92384,71.839488,43.1424
--14.6205,18.05,30.95575,13.98875,68.9149,43.168
--15.55848,19.97632,33.80608,15.27036,73.336144,44.4234
--15.30144,20.62368,34.2144,15.58656,72.572544,44.2944
--15.36,21.216,35.424,15.936,73.3152,45.74
--15.105,21.755,35.72,16.34,72.542,45.55
--15.582,22.834,38.024,17.444,74.8328,45.04
--14.5597,22.116,36.3071,17.04775,70.374955,43.548
--14.46912,22.85568,36.864,17.0496,70.373376,43.8336
--14.3754,23.31395,37.50505,17.6928,70.36574,42.617
--14.98224,25.06644,39.56848,18.91988,73.336144,44.5312
--15.092,25.872,41.16,19.796,74.8328,45.325
--14.94108,26.48646,41.42754,20.18016,74.084472,44.9856
--14.54112,26.23104,41.15232,20.24352,72.572544,43.2384
--13.8624,25.992,40.128,20.064,69.64032,42.5125
--14.798,28.518,43.708,21.462,74.8426,45.45
--14.406,28.71596,43.31404,21.89712,73.336144,43.561
--14.01792,28.60032,42.90048,22.01472,71.839488,43.056
--13.78176,28.96032,42.92832,22.16256,71.106432,43.9701
--13.82976,29.54112,43.93536,22.76736,71.839488,44.149
--13.73568,29.91744,44.49984,23.42592,71.839488,43.8336
--13.68576,31.07808,45.6192,24.04512,72.572544,44.5896
--13.871,32.495,47.045,24.929,74.0692,45.44
--13.632,32.736,47.04,25.248,73.3056,44.45
--13.1271,32.1195,46.0845,24.9508,71.10047,44.0412
--14,34.7,49.9,27.1,76.36,44.56
--12.98442,33.02559,47.51545,26.25111,71.847124,44.0768
--13.15611,34.28271,48.87927,27.46458,73.328508,45.8865
--13.328,35.868,50.372,28.42,74.8328,44.345
--12.47808,34.36128,48.32928,27.28416,71.106432,43.2384
--12.77199,36.01125,50.22369,28.809,73.328508,43.5142
--12.936,37.044,51.94,29.694,74.8328,43.25
--11.856,35.0208,48.6096,28.0896,69.64032,43.824
--12.26274,36.78822,51.14228,29.75378,72.597322,43.1262
--12.19708,38.12788,52.05368,30.63676,73.336144,44.5312
--12.474,39.699,53.955,31.878,75.5964,45.9756
--12.152,39.298,53.998,31.948,74.8328,45.2172
--11.931,39.867,53.835,31.719,74.0692,46.14
--11.38368,38.29056,51.64992,32.55168,71.839488,43.44
--11.662,39.592,53.116,35.378,74.8328,45.1094
--11.56518,39.30201,52.33734,35.77365,74.840436,44.7975
--11.368,39.2,51.646,35.182,74.8328,45.1094
--11.286,39.501,51.579,35.145,75.6063,45.85
--10.961,38.509,49.858,34.338,74.0692,46.03
--10.22865,35.10915,45.7064,35.5699,70.36574,44.5715
--9.83725,32.49,42.68825,34.1145,68.9149,43.453
--10.16064,32.83392,42.99456,35.18592,71.839488,45.1094
--9.7679,32.2525,41.74395,34.0955,70.36574,45.0468
--9.6824,31.0023,40.4985,32.9574,71.09116,45.619
--9.69612,30.22908,39.54496,33.17594,72.587816,45.2172
--9.7,30.361,38.703,33.465,74.0692,44.7655
--9.60498,30.08907,37.63584,32.3433,74.840436,45.2034
--9.12,27.835,35.245,31.065,72.542,42.332
--8.7514,26.8128,33.3298,29.792,71.09116,42.617
--8.83568,26.79516,33.22984,29.96448,73.336144,44.5312
--8.4672,25.4016,31.5168,28.97664,71.839488,43.5168
--8.712,26.136,32.175,29.7,75.5964,44.86
--8.09088,24.08448,29.6352,27.65952,71.839488,43.5168
--7.8204,23.1819,28.4886,26.999,71.09116,44.7468
--7.79492,23.19464,28.23282,26.99704,72.587816,44.2805
--7.68,22.944,27.744,26.112,73.3056,45.04
--7.8,23.2,28.1,27,76.36,44.86
--7.2,21.792,26.4,25.536,73.3056,44.45
--6.93792,20.9088,25.37568,24.90048,72.572544,42.7776
--6.6101,19.9234,24.206,23.9267,71.08185,43.6688
--6.831,20.691,25.146,24.849,75.6954,45.15
--6.56667,19.99404,24.30648,24.20847,74.938446,44.7975
--6.5,19.9,24.1,24.1,76.46,45.15
--5.80545,17.96925,21.65525,21.83955,70.45789,44.5812
--5.73705,17.77545,21.6315,21.8196,71.91063,44.5896
--5.60736,17.48736,21.384,21.57408,72.65808,44.9856
--5.41728,17.1072,20.81376,21.19392,72.65808,45.0945
--5.28165,16.90128,20.55042,21.22263,73.414935,44.6985
--5.194,16.758,20.482,20.972,74.9308,44.5312
--4.70016,15.29856,18.80064,19.53792,70.465536,42.5664
--4.704,15.552,19.2,19.968,73.4016,44.56
--4.512,15.264,18.72,19.488,73.4016,42.8544
--4.275,14.725,18.145,18.905,72.637,42.617
--4.05504,13.73184,17.14176,17.9712,70.465536,42.672
--3.7905,13.08625,16.4255,17.23775,69.00515,42.332
--3.8808,13.77684,17.26956,18.23976,74.181492,43.7472
--3.68676,13.48578,16.88148,17.9487,74.181492,44.0154
--3.45708,12.96405,16.3251,17.2854,73.424538,43.5142
--3.5,13,16.6,17.7,76.46,43.86
--3.20166,12.32154,15.71724,16.88148,74.181492,43.7976
--2.91648,11.66592,14.86464,15.9936,71.92416,42.8544
--2.784,11.616,14.88,16.032,73.4112,43.1424
--2.772,11.583,14.949,16.038,75.6954,44.35
--2.44608,10.53696,13.82976,14.86464,71.933568,42.96
--2.328,10.573,13.871,15.132,74.1662,44.35
--2.0482,9.8686,12.9409,14.4305,71.18426,43.855
--1.9152,9.576,12.4944,13.8624,69.7224,42.672
--1.84338,9.79902,12.90366,14.16492,74.181492,42.9828
--1.63251,9.21888,12.38787,13.92435,73.414935,44.4015
--1.53648,8.93079,12.09978,13.73229,73.424538,42.6218
--1.33056,8.64864,11.68992,13.3056,72.667584,43.7184
--1.21056,8.3808,11.08128,12.85056,71.199552,44.0768
--1.03488,8.18496,10.91328,12.60672,71.933568,42
--0.9312,7.63584,10.52256,12.19872,71.199552,41.904
--0.77616,7.56756,10.6722,12.41856,74.181492,44.1392
--0.6517,7.1687,9.9617,11.7306,71.18426,40.7075
--0.4704,7.056,9.78432,11.85408,71.933568,42.1988
--0.37636,6.86857,9.50309,11.47898,71.941214,42.0592
--0.29403,6.8607,9.60498,11.46717,74.938446,43.7976
--0.09405,6.2073,8.8407,10.81575,71.91063,41.287
-0,6.02112,8.65536,10.72512,71.92416,41.7216
-0.097,6.014,8.633,10.961,74.1662,42.5442
-0.28512,5.79744,8.26848,10.4544,72.667584,44.4114
-0.38412,5.66577,8.06652,10.17918,73.424538,43.1165
-0.4752,5.2272,7.69824,9.78912,72.667584,43.4496
-0.5529,4.69965,7.1877,9.3993,70.45789,42.408
-0.66528,4.65696,7.22304,9.40896,72.667584,43.6095
-0.88209,4.80249,7.15473,9.60498,74.938446,43.6095
-0.96,4.512,6.816,9.216,73.4016,42.4704
-1.078,4.41,6.762,9.016,74.9308,44.56
-1.12896,3.85728,6.20928,8.37312,71.92416,42.7776
-1.22304,3.57504,5.92704,8.18496,71.933568,43.0612
-1.33,3.42,5.795,8.36,72.7225,42.028
-1.425,3.325,5.605,8.17,72.637,44.35
-1.52,3.23,5.415,7.885,72.732,41.743
-1.59953,3.19906,5.17495,7.71538,71.941214,43.3008
-1.74636,3.00762,5.04504,7.47054,74.278512,43.3552
-1.80614,2.56662,4.753,7.1295,72.777936,43.2232
-1.9206,2.30472,4.51341,7.10622,73.424538,43.1165
-1.9152,2.0976,4.104,6.7488,69.8136,42.3936
-2.15622,2.25423,4.31244,6.95871,75.036456,43.8966
-2.09088,2.09088,3.99168,6.84288,72.762624,42.1824
-2.20892,1.9208,3.8416,6.62676,73.51862,43.0612
-2.328,1.649,3.686,6.208,74.2535,43.64
-2.30375,1.19795,3.22525,5.7133,70.55004,43.4075
-2.4255,1.16424,3.20166,6.11226,74.278512,43.7184
-2.3959,0.9215,2.85665,5.43685,70.55004,42.028
-2.7,1,2.9,6,76.55,44.05
-2.6334,0.7524,2.53935,5.4549,71.995275,42.693
-2.60736,0.65184,2.42112,5.21472,71.292672,43.4075
-2.75616,0.57024,2.28096,5.03712,72.75312,42.1824
-2.871,0.297,2.178,4.851,75.7845,43.8966
-2.9106,-0.09702,1.84338,4.851,74.26881,42.9828
-2.91648,-0.28224,1.69344,4.51584,72.01824,43.169
-2.97693,-0.28809,1.53648,4.60944,73.520568,42.7285
-2.97984,-0.37248,1.3968,4.37664,71.292672,43.5142
-3.0096,-0.3762,1.22265,4.42035,72.00468,42.332
-2.9792,-0.4655,1.1172,4.1895,71.36115,42.9828
-3.20166,-0.67914,0.9702,3.8808,74.278512,42.875
-3.0723,-1.0241,0.7448,3.4447,71.26805,43.0612
-3.332,-1.372,0.588,3.528,75.019,42.777
-3.1008,-1.2768,0.3648,3.2832,69.8136,42
-3.16608,-1.3968,0.27936,3.2592,71.37648,41.9525
-3.36,-1.44,0.192,3.264,73.584,43.86
-3.29175,-1.5048,0,3.10365,72.089325,42.9264
-3.36105,-1.53648,-0.09603,3.07296,73.606995,43.0254
-3.49272,-1.74636,-0.29106,2.52252,74.36583,42.5908
-3.249,-1.9855,-0.361,2.25625,69.176625,41.363
-3.49272,-2.4255,-0.58212,2.32848,74.36583,43.6095
-3.42144,-2.376,-0.76032,2.47104,72.84816,41.904
-3.44544,-2.328,-0.83808,2.42112,71.37648,42.6218
-3.4447,-2.3275,-0.931,2.1413,71.36115,42.028
-3.515,-2.47,-1.045,2.28,72.827,43.94
-3.589,-2.619,-1.164,1.843,74.3505,42.5442
-3.515,-2.755,-1.33,1.805,72.8175,44.75
-3.626,-3.136,-1.568,1.568,75.117,43.2768
-3.61228,-3.23204,-1.61602,1.33084,72.86349,42.7285
-3.724,-3.43,-1.862,1.47,75.117,42.875
-3.61152,-3.3264,-1.9008,1.33056,72.84816,43.5006
-3.64952,-3.45744,-2.01684,1.24852,73.624264,43.169
-3.57504,-3.38688,-2.06976,1.12896,72.11232,42.1056
-3.724,-3.724,-2.254,1.078,75.117,43.169
-3.5378,-3.724,-2.2344,0.931,71.36115,42.2275
-3.8,-4.1,-2.6,0.6,76.65,44.35
-3.5378,-3.9102,-2.5137,0.5586,71.36115,41.4675
-3.5739,-4.1382,-2.6334,0.3762,72.089325,43.2135
-3.68676,-4.3659,-2.81358,0.4851,74.36583,43.1046
-3.64914,-4.41738,-2.97693,0.19206,73.606995,42.7285
-3.50208,-4.33152,-2.94912,0.09216,70.64064,42
-3.57504,-4.51584,-3.10464,0.18816,72.121728,41.7216
-3.762,-4.851,-3.366,-0.099,75.8835,44.24
-3.4295,-4.5125,-3.249,-0.27075,69.176625,41.363
-3.589,-4.947,-3.492,-0.291,74.3602,42.4472
-3.40955,-4.7918,-3.5017,-0.5529,70.632975,42.4375
-3.3744,-4.8336,-3.5568,-0.5472,69.9048,41.4675
-3.62637,-5.39055,-4.01841,-0.58806,75.222675,43.7184
-3.47985,-5.2668,-3.85605,-0.47025,72.183375,43.0254
-3.626,-5.586,-4.116,-0.588,75.215,42.5908
-3.564,-5.742,-4.257,-1.089,75.9924,42.8175
-3.42216,-5.51348,-4.18264,-0.9506,72.95855,42.5908
-3.564,-5.841,-4.455,-1.089,75.9825,43.86
-3.43035,-5.97861,-4.60647,-1.37214,75.222675,43.0254
-3.5,-6.3,-4.9,-1.5,76.75,43.06
-3.395,-6.208,-4.753,-1.552,74.4475,42.4375
-3.22525,-5.8976,-4.6075,-1.38225,70.725125,42.5442
-3.2928,-5.92704,-4.79808,-1.59936,72.2064,42.385
-3.298,-6.402,-5.044,-2.522,74.4475,43.25
-3.0685,-6.22725,-4.8735,-2.166,69.266875,40.9165
-3.1654,-6.4239,-5.1205,-2.0482,71.45425,43.0612
-3.0723,-6.3308,-5.1205,-1.4896,71.45425,41.192
-3.267,-6.633,-5.445,-1.782,75.9726,43.94
-3.168,-6.432,-5.376,-1.824,73.68,41.7984
-3.0096,-6.3954,-5.36085,-2.16315,72.183375,41.5625
-3.10464,-6.88842,-5.72418,-2.52252,74.46285,43.169
-3.168,-7.326,-5.94,-2.772,75.9825,43.0254
-3.00762,-7.17948,-5.8212,-2.4255,74.46285,43.2036
-3.00762,-7.08246,-5.91822,-2.32848,74.472552,42.8848
-2.97693,-6.91416,-5.85783,-2.40075,73.703025,43.3125
-2.94,-7.056,-5.978,-2.352,75.215,43.169
-2.736,-6.6576,-5.6544,-2.4624,69.996,41.458
-2.7075,-6.76875,-5.68575,-2.61725,69.266875,41.287
-2.72832,-7.15008,-6.02112,-2.91648,72.2064,42.0096
-2.813,-7.566,-6.305,-3.007,74.4378,43.36
-2.60736,-7.35648,-6.14592,-2.97984,71.4696,41.7984
-2.688,-7.584,-6.432,-2.784,73.68,43.25
-2.43675,-7.22,-6.137,-2.97825,69.266875,41.572
-2.48805,-7.372,-6.2662,-3.04095,70.725125,41.363
-2.56608,-7.69824,-6.55776,-3.42144,72.9432,42.9264
-2.4453,-7.80615,-6.5835,-3.47985,72.183375,40.983
-2.35125,-7.9002,-6.67755,-3.47985,72.183375,42.4215
-2.376,-8.17344,-6.93792,-3.61152,72.9432,41.7984
-2.28,-7.9344,-6.6576,-3.5568,69.996,41.8944
-2.32848,-8.34372,-7.17948,-3.8808,74.46285,42.7672
-2.28144,-8.27022,-7.1295,-3.8024,72.95855,41.8458
-2.16384,-8.18496,-7.056,-3.7632,72.2064,42.1008
-2.277,-8.811,-7.524,-4.158,75.9825,42.9264
-2.112,-8.736,-7.488,-4.128,73.68,43.54
-2.15622,-9.01692,-7.64478,-4.50846,75.222675,43.3125
-1.97505,-8.6526,-7.42995,-4.1382,72.183375,41.667
-1.89525,-8.303,-7.12975,-3.70025,69.266875,41.8475
-1.9404,-8.82882,-7.7616,-4.26888,74.46285,42.6692
-1.98,-9.207,-8.019,-4.752,75.9825,43.0254
-1.78752,-9.03168,-7.80864,-4.98624,72.215808,42.3936
-1.78695,-9.2169,-7.9002,-4.8906,72.183375,43.7976
-1.764,-9.506,-8.232,-4.606,75.215,43.561
-1.76418,-9.31095,-8.33085,-4.41045,75.222675,43.7976
-1.615,-9.025,-8.075,-4.56,72.9125,44.45
-1.61568,-9.0288,-8.0784,-4.56192,72.9432,42.5664
-1.52096,-9.0307,-8.0801,-4.46782,72.95855,43.0612
-1.4256,-9.12384,-8.17344,-4.752,72.9432,41.8944
-1.41135,-9.31491,-8.18583,-5.17495,72.204666,43.4075
-1.34456,-9.70004,-8.45152,-5.2822,73.720304,43.071
-1.34456,-9.79608,-8.45152,-5.18616,73.7107,42.777
-1.287,-9.999,-8.811,-5.148,75.9825,43.86
-1.22304,-9.408,-8.4672,-4.98624,72.2064,42.1056
-1.164,-9.7,-8.73,-5.141,74.4475,42.4375
-1.056,-9.6,-8.64,-5.184,73.68,42.95
-1.067,-9.7,-8.73,-5.238,74.4475,43.64
-0.9506,-9.69612,-8.65046,-5.41842,72.95855,41.9525
-0.96,-9.984,-8.832,-5.664,73.68,41.6256
-0.8208,-9.576,-8.4816,-5.2896,69.996,40.7075
-0.7524,-9.87525,-8.74665,-5.54895,72.183375,41.667
-0.7372,-9.7679,-8.6621,-5.3447,70.725125,40.7075
-0.67228,-10.18024,-9.1238,-5.85844,73.7107,42.2772
-0.68607,-10.38906,-9.31095,-5.58657,75.232476,42.5205
-0.5586,-9.9617,-8.8445,-5.586,71.45425,40.5175
-0.495,-10.593,-9.504,-6.138,75.9825,42.6294
-0.47045,-10.25581,-9.12673,-5.92767,72.214075,41.6615
-0.37632,-10.25472,-9.21984,-5.73888,72.2064,42.385
-0.388,-10.67,-9.506,-6.208,74.4475,41.9525
-0.28518,-10.55166,-9.41094,-5.98878,72.95855,42.4928
-0.19206,-10.65933,-9.50697,-6.14592,73.703025,41.5548
-0.19404,-10.86624,-9.702,-6.40332,74.46285,42.3423
-0.099,-11.187,-9.999,-6.435,75.9726,43.75
-0,-10.41295,-9.30715,-6.2662,70.725125,42.1562
-0,-10.83684,-9.69612,-6.55914,72.95855,42.6692
--0.09408,-10.72512,-9.59616,-6.30336,72.2064,42.4704
--0.0931,-10.7065,-9.5893,-6.4239,71.45425,42.5908
--0.19206,-11.13948,-9.98712,-6.53004,73.712628,41.3802
--0.2793,-10.7996,-9.6824,-6.6101,71.45425,40.907
--0.3648,-10.6704,-9.576,-6.2928,69.996,41.3376
--0.38412,-11.23551,-10.08315,-6.62607,73.703025,41.6615
--0.47025,-11.00385,-9.9693,-6.5835,72.183375,42.3324
--0.47025,-11.0979,-10.06335,-6.67755,72.277425,40.8025
--0.576,-11.616,-10.368,-7.296,73.68,42.76
--0.576,-11.712,-10.464,-7.296,73.776,42.84
--0.67228,-11.5248,-10.46836,-7.01092,73.797136,41.405
--0.784,-11.76,-10.682,-7.154,75.215,41.5912
--0.7372,-11.058,-10.04435,-6.8191,70.817275,41.4869
--0.8379,-11.4513,-10.3341,-7.3549,71.54735,40.527
--0.9312,-11.64,-10.42944,-7.54272,71.56272,41.6615
--0.9215,-11.4266,-10.3208,-7.27985,70.80806,41.1668
--1.0032,-11.2176,-10.2144,-6.7488,70.07808,40.4225
--1.0032,-11.1264,-10.2144,-6.6576,70.0872,40.9536
--1.1058,-11.15015,-10.3208,-6.8191,70.817275,41.5645
--1.261,-11.737,-10.864,-7.372,74.5445,42.65
--1.26126,-11.73942,-10.96326,-7.66458,74.550168,42.2772
--1.2901,-11.4266,-10.5051,-7.64845,70.80806,41.2735
--1.41135,-11.94943,-10.72626,-7.71538,72.308165,41.4772
--1.4256,-12.07008,-10.9296,-7.69824,73.028736,41.9364
--1.52096,-12.07262,-10.9319,-7.50974,73.05361,41.405
--1.683,-12.375,-11.385,-7.623,76.0815,42.2334
--1.53425,-11.28125,-10.37875,-6.94925,69.357125,40.622
--1.746,-12.125,-11.252,-7.566,74.5445,43.54
--1.67616,-11.64,-10.7088,-7.26336,71.572032,41.6712
--1.78771,-11.85534,-10.91444,-7.5272,72.308165,41.0892
--1.805,-11.3715,-10.469,-7.12975,69.357125,41.192
--2.016,-12.192,-11.136,-7.776,73.776,43.46
--2.03742,-12.41856,-11.35134,-7.7616,74.55987,42.6294
--2.134,-12.416,-11.349,-8.051,74.5348,42.55
--2.1413,-11.9168,-10.9858,-7.6342,71.54735,40.5175
--2.14176,-12.1056,-10.98816,-7.82208,71.56272,41.3802
--2.23488,-12.1056,-11.08128,-7.72896,71.56272,40.9825
--2.28144,-12.3578,-11.31214,-7.88998,73.063116,41.0989
--2.30375,-11.9795,-11.058,-7.83275,70.817275,41.5645
--2.3465,-11.82275,-10.83,-7.85175,69.43835,40.318
--2.3465,-11.913,-10.92025,-7.7615,69.357125,41.0875
--2.592,-12.672,-11.616,-8.256,73.776,42.95
--2.4624,-12.0384,-11.0352,-8.1168,70.0872,41.0592
--2.5802,-12.25595,-11.2423,-7.9249,70.817275,41.3802
--2.842,-13.034,-11.956,-8.624,75.3032,42.66
--2.871,-13.266,-12.177,-8.613,76.0815,42.7086
--2.793,-12.4754,-11.4513,-8.1928,71.55666,40.6315
--2.7645,-12.44025,-11.4266,-7.9249,70.90021,40.698
--2.91648,-12.7008,-11.66592,-8.37312,72.30048,41.3376
--3.04192,-12.92816,-11.8825,-8.36528,73.14867,41.1668
--3.04192,-12.92816,-11.8825,-8.46034,73.05361,41.9832
--3.10365,-12.7908,-11.75625,-8.37045,72.277425,42.2334
--3.1977,-12.7908,-11.75625,-8.6526,72.371475,40.4225
--3.43,-13.524,-12.446,-9.604,75.411,41.8068
--3.465,-13.959,-12.672,-9.702,76.1706,43.06
--3.3174,-12.901,-11.7952,-8.56995,70.909425,41.363
--3.528,-13.622,-12.544,-9.016,75.4012,43.25
--3.40992,-12.71808,-11.79648,-8.47872,70.907904,41.4144
--3.724,-13.524,-12.544,-9.114,75.411,42.6692
--3.64952,-13.34956,-12.29312,-9.21984,73.90278,42.6692
--3.5017,-13.0853,-11.9795,-9.3993,70.909425,41.7682
--3.5568,-13.0416,-11.9472,-8.9376,70.1784,41.4675
--3.88,-13.774,-12.707,-9.312,74.6318,43.36
--3.84,-13.536,-12.576,-9.312,73.8624,40.9536
--3.85605,-13.167,-12.2265,-9.0288,72.371475,40.4225
--3.99252,-13.21334,-12.3578,-8.84058,73.14867,42.0592
--4.116,-13.622,-12.74,-9.212,75.4012,41.9048
--4.17186,-13.48578,-12.6126,-9.11988,74.647188,42.2772
--4.13996,-13.1726,-12.32579,-9.12673,72.402255,40.9825
--4.224,-13.728,-12.672,-9.6,73.872,42.55
--4.14675,-13.36175,-12.1638,-9.30715,70.90021,41.8458
--4.32,-13.92,-12.768,-9.504,73.872,41.3376
--4.37,-13.775,-12.635,-9.215,73.1025,41.287
--4.416,-13.728,-12.768,-9.216,73.872,41.4144
--4.33105,-13.17745,-12.25595,-8.8464,70.90021,42.1562
--4.8,-14.3,-13.3,-9.7,76.95,44.35
--4.56288,-13.59358,-12.73804,-8.93564,73.139164,42.091
--4.851,-14.256,-13.266,-9.504,76.1805,42.1245
--4.656,-13.40928,-12.47808,-9.12576,71.646528,42.3936
--4.656,-13.40928,-12.47808,-9.12576,71.65584,41.52
--4.84806,-13.7837,-12.8331,-9.506,73.14867,42.9128
--4.79859,-13.73714,-12.70215,-9.409,72.402255,41.3802
--4.79232,-13.45536,-12.4416,-9.30816,70.907904,40.7424
--4.8906,-13.82535,-12.7908,-9.49905,72.36207,42.4215
--5.194,-14.406,-13.328,-9.996,75.411,41.993
--5.0274,-13.7788,-12.7547,-9.4962,71.64045,40.318
--5.0787,-13.9194,-12.88485,-9.5931,72.371475,42.0156
--5.17495,-13.92532,-12.89033,-9.78536,72.392846,41.5645
--5.39,-14.602,-13.426,-10.192,75.4012,42.4928
--5.432,-14.453,-13.386,-10.088,74.6318,41.4772
--5.41728,-14.16096,-13.21056,-9.78912,73.13328,42.3423
--5.36313,-14.1135,-13.07851,-9.87945,72.402255,41.6615
--5.51232,-14.35104,-13.21056,-9.88416,73.13328,41.3376
--5.684,-14.896,-13.72,-10.486,75.4012,42.1988
--5.723,-14.744,-13.58,-9.991,74.6415,43.36
--5.88,-14.798,-13.72,-10.192,75.411,42.95
--5.643,-14.2956,-13.26105,-10.43955,72.371475,42.4215
--5.856,-14.88,-13.632,-10.848,73.8624,43.25
--5.68032,-14.4336,-13.22304,-9.96384,71.65584,41.7779
--5.6544,-13.9536,-13.0416,-9.6672,70.18752,41.6256
--5.83296,-14.30016,-13.35936,-9.8784,72.479232,41.136
--5.8653,-14.0581,-13.2202,-9.6824,71.72424,41.4675
--6.17463,-14.7015,-13.91742,-9.99702,75.506904,43.0254
--6.08,-14.25,-13.395,-9.975,73.188,43.54
--6.37,-14.896,-13.916,-10.976,75.411,42.4928
--6.1152,-14.5824,-13.45344,-10.53696,72.39456,42.4704
--6.14592,-14.4336,-13.31616,-10.33632,71.739648,41.9525
--6.402,-14.938,-13.871,-10.573,74.7288,42.0592
--6.432,-14.688,-13.728,-10.176,73.968,43.15
--6.566,-14.896,-14.014,-10.29,75.4992,43.75
--6.66468,-14.79951,-14.01543,-10.48707,75.506904,44.1936
--6.2928,-13.7712,-13.0416,-9.576,70.26048,41.363
--6.48945,-14.2956,-13.44915,-10.06335,72.45612,43.3125
--6.5856,-14.39424,-13.45344,-10.25472,72.479232,43.9628
--6.517,-14.3374,-13.3133,-10.0548,71.72424,42.875
--6.54336,-14.19264,-13.17888,-9.86112,71.00928,41.4144
--7.029,-15.246,-14.256,-10.791,76.2696,43.53
--6.84288,-14.7312,-13.68576,-10.16928,73.13328,41.904
--6.77448,-14.58395,-13.54896,-10.06763,72.486936,42.6218
--6.72768,-14.2848,-13.27104,-9.95328,71.00928,41.4144
--7.104,-14.88,-13.824,-10.464,73.9584,42.3936
--7.4,-15.6,-14.5,-11.1,77.04,43.65
--6.6785,-14.16925,-13.1765,-10.01775,69.5286,41.4675
--7.128,-14.92128,-13.7808,-10.4544,73.22832,44.4114
--7.1478,-14.6718,-13.7313,-10.25145,72.45612,43.7976
--7.296,-14.976,-14.016,-10.656,73.9584,44.05
--7.24416,-14.77056,-13.73568,-10.44288,72.479232,43.0612
--7.47054,-15.32916,-14.26194,-10.76922,74.75391,43.5006
--7.24416,-14.95872,-13.82976,-10.44288,72.39456,43.2768
--7.41,-15.01,-14.06,-10.545,73.1025,42.1325
--7.43311,-14.86622,-13.83123,-10.53808,72.486936,42.7285
--7.28064,-14.56128,-13.54752,-10.04544,71.00928,42.1824
--7.9,-15.8,-14.8,-11.2,77.04,44.05
--7.5264,-14.95872,-13.92384,-10.44288,72.479232,42.6692
--7.62048,-14.95872,-13.92384,-10.53696,72.48864,42.4928
--7.54272,-14.80608,-13.78176,-10.42944,71.739648,42.3405
--7.71456,-14.95872,-14.01792,-10.44288,72.479232,42
--7.63584,-14.80608,-13.87488,-10.33632,71.739648,42.2338
--7.88832,-15.11136,-14.16096,-10.73952,73.218816,43.7976
--8.3,-16,-14.9,-11.4,77.04,43.46
--8.232,-15.68,-14.602,-11.074,75.4992,42.287
--8.316,-15.939,-14.85,-11.286,76.2795,43.65
--8.064,-15.36,-14.4,-10.944,73.9584,41.52
--7.752,-14.592,-13.68,-10.2144,70.2696,41.363
--8.17516,-15.11454,-14.259,-10.64672,73.24373,42.0592
--8.17516,-15.2096,-14.259,-11.02696,73.234224,42.0592
--8.18583,-15.24258,-14.20759,-11.00853,72.486936,42.3405
--8.35461,-15.65289,-14.50053,-11.04345,73.981512,42.5205
--8.2764,-15.2361,-14.20155,-10.7217,72.45612,41.667
--8.8,-16.1,-15.1,-11.4,77.04,44.64
--8.9,-16.1,-15,-11.2,77.04,43.25
--8.46034,-15.2096,-14.259,-10.83684,73.234224,42.3405
--8.46034,-15.30466,-14.35406,-10.83684,73.24373,43.5142
--8.1225,-14.6205,-13.62775,-10.469,69.5286,41.192
--8.4721,-15.1753,-14.1512,-10.7065,71.72424,40.7075
--8.736,-15.648,-14.592,-11.328,73.9584,41.7216
--8.47392,-15.17856,-14.15424,-10.61568,71.739648,41.136
--8.56704,-15.08544,-14.15424,-10.7088,71.739648,41.3376
--8.74,-15.39,-14.44,-10.83,73.188,40.6315
--9.114,-15.876,-14.896,-11.172,75.4992,42.777
--9.207,-16.137,-15.147,-11.682,76.2696,44.1144
--8.93,-15.58,-14.535,-11.115,73.1975,43.36
--8.6621,-15.1126,-14.09895,-10.78155,70.99236,40.8025
--8.8407,-15.4242,-14.38965,-10.9098,72.45612,41.5625
--9.31,-15.974,-14.994,-11.466,75.4992,43.54
--9.312,-15.908,-14.841,-11.252,74.7288,41.7682
--9.03168,-15.42912,-14.39424,-11.19552,72.479232,41.2416
--9.6,-16.5,-15.4,-11.9,77.04,43.06
--9.506,-16.17,-15.092,-11.662,75.4992,42.091
--9.506,-16.17,-15.092,-11.662,75.4992,42.7476
--9.50796,-16.10532,-15.0381,-11.54538,74.75391,43.0254
--9.0307,-15.2969,-14.28325,-10.8737,70.99236,40.527
--9.702,-16.17,-15.19,-11.662,75.4992,42.85
--9.2169,-15.3615,-14.4305,-11.0789,71.72424,40.983
--9.21888,-15.27168,-14.4336,-11.08128,71.739648,41.4772
--9.312,-15.3648,-14.4336,-10.98816,71.739648,42.1562
--9.215,-15.2969,-14.28325,-11.058,70.983145,40.8025
--9.2112,-15.1392,-14.2272,-10.944,70.26048,40.812
--9.30715,-15.2969,-14.28325,-10.8737,71.08451,41.7682
--9.996,-16.268,-15.19,-11.466,75.4992,41.9048
--10.098,-16.434,-15.444,-11.583,76.2696,42.7086
--9.69612,-15.87502,-14.82936,-11.4072,73.234224,41.4772
--9.69127,-15.71303,-14.67804,-11.2908,72.486936,41.5645
--9.49145,-15.38905,-14.3754,-10.8737,70.99236,40.527
--9.88,-15.865,-14.82,-11.305,73.283,40.7075
--9.386,-14.9815,-14.079,-10.73975,69.61885,40.7075
--10.296,-16.434,-15.444,-11.88,76.2696,43.25
--9.9792,-15.87168,-14.92128,-11.49984,73.22832,42.6393
--9.576,-15.3216,-14.3184,-10.944,70.26048,40.6315
--9.87072,-15.55104,-14.61984,-11.1744,71.832768,40.848
--9.76896,-15.39072,-14.46912,-11.15136,71.000064,40.9536
--9.6672,-15.2304,-14.3184,-10.8528,70.26048,41.0592
--10.27521,-16.03701,-15.07671,-11.42757,73.981512,42.8175
--10.16928,-15.96672,-14.92128,-11.59488,73.218816,41.136
--10.692,-16.632,-15.543,-11.979,76.2696,42.6294
--10.1574,-15.89445,-14.8599,-11.4741,72.45612,40.983
--10.26432,-16.06176,-15.01632,-11.30976,73.22832,40.848
--10.25472,-15.80544,-14.86464,-11.2896,72.573312,41.8068
--9.9408,-15.3216,-14.4096,-10.944,70.35168,41.0592
--10.45,-15.96,-15.01,-11.59,73.1975,43.36
--10.3455,-15.8004,-14.8599,-11.56815,72.45612,42.4215
--10.56,-12.96,-12.096,-5.472,73.9584,42.85
--10.878,-12.544,-10.584,-5.488,75.4992,42.66
--10.33632,-13.22304,-11.82624,-8.75328,71.739648,41.8458
--10.545,-13.87,-12.635,-9.31,73.188,40.527
--10.75536,-14.11641,-12.86802,-9.79506,73.991115,42.3423
--10.64672,-14.16394,-12.92816,-10.17142,73.234224,41.993
--11.074,-14.994,-13.426,-11.074,75.4992,41.993
--10.62765,-14.4837,-12.9789,-10.25145,72.45612,42.0156
--10.74178,-14.54418,-13.11828,-10.36154,73.329284,40.7788
--10.62765,-14.2956,-13.07295,-9.9693,72.55017,42.6294
--10.72626,-14.20759,-13.07851,-9.87945,72.581026,43.2232
--11.172,-14.7,-13.622,-10.388,75.4992,42.76
--10.83456,-14.256,-13.3056,-10.07424,73.218816,40.4544
--10.37875,-13.80825,-12.72525,-10.2885,69.5286,40.147
--10.9319,-14.82936,-13.49852,-11.12202,73.234224,41.5128
--10.488,-14.2272,-13.0416,-10.3056,70.35168,40.907
--10.6894,-14.3754,-13.17745,-10.1365,71.08451,40.527
--10.5792,-14.136,-13.0416,-10.032,70.26048,40.3584
--11.13948,-14.69259,-13.73229,-10.46727,74.077542,43.3125
--10.69056,-14.10048,-13.17888,-9.95328,71.000064,40.7424
--11.115,-14.535,-13.585,-10.165,73.1975,40.983
--11.349,-14.841,-13.871,-10.573,74.7385,41.1668
--11.10144,-14.48832,-13.54752,-10.53696,72.48864,40.2816
--11.21,-14.82,-13.775,-10.64,73.188,42.96
--10.98816,-14.71296,-13.59552,-10.52256,71.739648,42.0592
--11.0979,-14.8599,-13.7313,-10.62765,72.45612,41.9364
--11.0789,-14.7098,-13.5926,-10.6134,71.72424,41.993
--11.662,-15.484,-14.308,-10.976,75.4992,44.45
--11.19671,-14.86622,-13.83123,-10.44399,72.486936,40.9825
--11.19552,-10.63104,-11.00736,3.2928,72.48864,41.5128
--11.6424,-11.73942,-11.93346,-7.47054,74.744208,42.0156
--11.6424,-13.38876,-12.70962,-9.11988,74.85093,43.6688
--11.2896,-13.35936,-12.51264,-9.21984,72.479232,40.6656
--11.73942,-13.97088,-13.00068,-9.702,74.744208,42.7086
--11.616,-13.92,-12.864,-9.696,73.9584,40.7424
--11.737,-14.162,-13.095,-9.797,74.7288,41.3802
--11.858,-14.308,-13.23,-9.996,75.4992,42.85
--11.38005,-13.9194,-12.7908,-10.1574,72.45612,41.952
--11.712,-14.304,-13.152,-10.272,73.9584,43.36
--11.59,-14.345,-13.11,-10.26,73.283,40.242
--11.1264,-13.8624,-12.6768,-9.7584,70.2696,39.5865
--11.95722,-14.99553,-13.7214,-10.38906,75.604914,41.7285
--11.685,-14.44,-13.3,-10.07,73.283,39.7575
--11.57184,-14.30016,-13.1712,-10.16064,72.573312,41.136
--11.685,-14.535,-13.395,-10.545,73.283,40.7075
--11.81169,-14.98068,-13.63626,-10.85139,73.981512,42.1245
--11.931,-15.229,-13.871,-10.961,74.8258,43.14
--11.5444,-14.6167,-13.3133,-10.1479,71.73355,41.993
--11.78744,-14.82936,-13.68864,-10.36154,73.33879,40.9922
--12.028,-15.035,-13.968,-10.573,74.8258,42.04
--11.88,-14.7312,-13.68576,-10.26432,73.218816,40.176
--11.64,-14.4336,-13.40928,-10.05696,71.74896,40.8855
--12.25,-15.19,-14.112,-10.584,75.5972,41.85
--11.6375,-14.4305,-13.4064,-10.1479,71.81734,39.862
--12.00375,-15.07671,-13.92435,-10.75536,74.077542,40.9825
--12.222,-15.326,-14.162,-11.058,74.8258,41.3802
--12.375,-15.84,-14.553,-11.187,76.3686,41.6196
--12.34926,-15.6816,-14.40747,-11.07513,75.614715,42.7185
--11.85534,-15.0544,-13.83123,-10.72626,72.486936,40.5945
--11.97756,-15.11454,-13.97382,-10.74178,73.234224,41.405
--11.85534,-15.0544,-13.92532,-10.63217,72.581026,40.9825
--11.94816,-15.14688,-14.01792,-10.8192,72.573312,41.1992
--11.70305,-14.9283,-13.73035,-10.6894,71.08451,40.7788
--12.192,-15.552,-14.4,-11.04,73.9584,40.3584
--11.8237,-15.1753,-13.965,-10.7996,71.72424,41.699
--12.07008,-15.49152,-14.256,-10.9296,73.313856,41.6196
--11.9168,-15.0822,-13.965,-10.7065,71.82665,40.6315
--11.79648,-15.02208,-13.91616,-10.5984,71.000064,40.176
--11.6736,-14.8656,-13.7712,-10.6704,70.26048,40.56
--11.91936,-15.3648,-14.15424,-10.89504,71.739648,41.1668
--12.16768,-15.6849,-14.54418,-11.31214,73.329284,41.993
--11.6736,-15.1392,-13.9536,-10.7616,70.35168,40.4225
--11.7648,-15.1392,-13.9536,-10.944,70.35168,40.1375
--12.38787,-15.84495,-14.69259,-11.33154,74.077542,42.0156
--11.7648,-15.048,-13.9536,-10.8528,70.35168,40.1375
--12.26016,-15.77664,-14.63616,-11.4048,73.313856,42.0255
--12.2304,-15.71136,-14.48832,-11.2896,72.573312,41.307
--12.3578,-15.87502,-14.7343,-11.4072,73.33879,41.1208
--12.2265,-15.70635,-14.57775,-11.19195,72.55017,40.1375
--11.856,-15.2304,-14.136,-10.944,70.35168,39.7575
--11.856,-15.2304,-14.136,-11.0352,70.35168,40.147
--12.2265,-15.8004,-14.6718,-11.4741,72.55017,39.862
--12.32055,-15.89445,-14.6718,-11.4741,72.55017,39.938
--12.70962,-16.39638,-15.13512,-11.83644,74.841228,41.8275
--12.07165,-15.4812,-14.46755,-11.2423,71.08451,40.4878
--12.1961,-15.6408,-14.5236,-11.3582,71.82665,40.0425
--12.07296,-15.57504,-14.46912,-11.33568,71.092224,40.2816
--12.4146,-15.89445,-14.76585,-11.56815,72.55017,41.5404
--12.672,-16.32,-15.072,-12,74.064,41.57
--12.16512,-15.6672,-14.56128,-11.33568,71.092224,40.3584
--12.54528,-16.25184,-15.01632,-11.78496,73.313856,41.4315
--12.672,-16.416,-15.168,-11.808,74.0544,42.15
--12.768,-16.416,-15.168,-11.904,74.064,40.5696
--12.64298,-16.25526,-15.01948,-11.59732,73.329284,40.4878
--12.25595,-15.75765,-14.65185,-11.70305,71.08451,40.5945
--12.77332,-16.51888,-15.27036,-12.10104,74.085256,41.1208
--13.00068,-16.68744,-15.5232,-12.1275,74.841228,40.9052
--12.38496,-16.01664,-14.8992,-11.45376,71.832768,40.3132
--12.2208,-15.6864,-14.592,-11.5824,70.35168,40.176
--12.4754,-16.0132,-14.896,-11.6375,71.81734,40.147
--13.266,-17.028,-15.84,-12.573,76.3686,41.7186
--13.00068,-16.78446,-15.62022,-12.41856,74.85093,41.6196
--12.5685,-16.1994,-14.9891,-12.103,71.81734,39.7575
--12.18375,-15.7035,-14.53025,-11.46175,69.61885,39.938
--12.96,-16.704,-15.552,-12.192,74.0544,40.176
--12.7008,-16.36992,-15.24096,-11.85408,72.573312,40.3584
--12.825,-16.53,-15.39,-11.875,73.283,40.983
--13.5,-17.4,-16.2,-12.5,77.14,43.06
--12.92544,-16.53696,-15.39648,-12.07008,73.313856,43.5006
--13.464,-17.226,-16.038,-12.771,76.3686,44.6985
--13.464,-17.325,-16.137,-12.87,76.3785,44.57
--13.06144,-16.807,-15.65452,-12.4852,74.085256,44.639
--13.056,-16.896,-15.648,-12.384,74.0544,43.6224
--12.79488,-16.55808,-15.33504,-12.13632,72.573312,43.9104
--13.015,-16.72,-15.485,-12.255,73.283,43.2725
--13.42737,-17.24976,-16.07364,-12.83931,75.604914,45.7875
--13.02048,-16.72704,-15.58656,-12.3552,73.313856,46.128
--13.29174,-17.07552,-15.91128,-12.51558,74.841228,45.5112
--13.11,-16.72,-15.58,-12.255,73.283,43.6525
--12.85056,-16.48224,-15.3648,-12.1056,71.84208,44.3678
--12.9789,-16.64685,-15.4242,-12.2265,72.55017,45.9756
--13.38876,-17.17254,-16.0083,-12.51558,74.841228,45.9756
--12.85056,-16.57536,-15.3648,-12.19872,71.832768,44.5056
--13.21056,-16.91712,-15.6816,-12.45024,73.313856,44.2944
--13.07712,-16.74624,-15.5232,-12.2304,72.573312,45.0408
--12.9409,-16.5718,-15.4546,-12.2892,71.81734,43.2725
--13.344,-17.088,-15.936,-12.672,74.0544,45.74
--13.34956,-17.09512,-15.94264,-12.77332,74.085256,44.4332
--13.761,-17.622,-16.434,-13.068,76.3686,45.16
--13.761,-17.721,-16.434,-13.167,76.3686,44.64
--13.034,-16.6649,-15.5477,-12.4754,71.80803,42.693
--13.034,-16.6649,-15.5477,-12.3823,71.91044,43.855
--13.1726,-16.84211,-15.71303,-12.60806,72.675116,46.6085
--13.7214,-17.54379,-16.36767,-13.03533,75.604914,46.8765
--13.40346,-17.01574,-15.87502,-12.73804,73.329284,45.8248
--13.12992,-16.7616,-15.55104,-12.38496,71.916576,44.6491
--13.81941,-17.6418,-16.36767,-13.03533,75.604914,45.5004
--12.99315,-16.587,-15.38905,-12.3481,71.093725,44.9692
--13.26528,-16.9344,-15.80544,-12.60672,72.573312,45.5112
--13.916,-17.738,-16.464,-13.23,75.6854,46.25
--13.0853,-16.67915,-15.4812,-12.5324,71.167445,44.2902
--13.91742,-17.73981,-16.46568,-13.32936,75.702924,45.2826
--13.08672,-16.68096,-15.48288,-12.53376,71.184384,44.016
--12.9504,-16.5072,-15.4128,-12.4944,70.44288,44.2944
--13.49,-17.195,-16.055,-12.92,73.3685,42.693
--12.90575,-16.4255,-15.25225,-12.274,69.7091,42.5125
--14.014,-17.836,-16.562,-13.328,75.6952,45.96
--14.014,-17.836,-16.66,-13.132,75.6952,46.8734
--13.45487,-17.12438,-15.9953,-12.79624,72.675116,44.7655
--13.40928,-16.94784,-15.8304,-12.5712,71.925888,45.0624
--13.82832,-17.57349,-16.3251,-13.25214,74.173572,45.3572
--14.4,-18.3,-17,-13.8,77.24,46.55
--13.97088,-17.75466,-16.59042,-13.38876,74.938248,45.8248
--13.968,-17.751,-16.49,-13.192,74.9228,45.3572
--13.5024,-17.04096,-15.92352,-12.66432,71.9352,44.7655
--13.92,-17.568,-16.416,-13.248,74.1504,44.1216
--14.355,-18.216,-16.929,-13.662,76.4676,46.36
--14.21,-18.13,-16.856,-13.426,75.6952,45.96
--13.92435,-17.66952,-16.51716,-12.96405,74.173572,44.4745
--14.16492,-17.75466,-16.59042,-13.29174,74.938248,44.345
--13.59552,-17.04096,-15.92352,-12.75744,71.925888,43.6985
--14.308,-18.032,-16.856,-13.72,75.6952,44.639
--13.3152,-16.9632,-15.6864,-12.768,70.44288,43.0656
--13.5926,-17.3166,-16.1063,-12.8478,72.05009,43.073
--13.73714,-17.40665,-16.18348,-12.98442,72.665707,43.1165
--13.82976,-17.31072,-16.18176,-12.88896,72.667392,42.4704
--13.97088,-17.48736,-16.34688,-13.11552,73.541952,42.4704
--13.68864,-17.13408,-16.01664,-12.85056,72.065568,42.6816
--14.11788,-17.7674,-16.61492,-13.54164,74.315752,43.855
--14.11788,-17.7674,-16.61492,-13.4456,74.181296,43.2768
--13.9194,-17.4933,-16.27065,-12.9789,72.64422,42.408
--13.6382,-17.04775,-15.94195,-12.7167,71.17666,41.667
--14.8,-18.5,-17.3,-13.8,77.24,44.24
--13.357,-16.606,-15.61325,-12.4545,69.700075,41.667
--13.7788,-17.2235,-16.1063,-12.8478,71.91044,42.5125
--14.304,-17.856,-16.704,-13.44,74.1504,44.86
--14.45598,-18.04572,-16.88148,-13.5828,74.938248,44.8866
--14.453,-18.042,-16.878,-13.58,74.9131,46.66
--13.87488,-17.32032,-16.20288,-12.94368,71.916576,45.9295
--15,-18.6,-17.4,-13.9,77.23,46.36
--13.968,-17.2272,-16.20288,-13.12992,71.925888,44.5056
--15,-18.6,-17.4,-14.3,77.24,46.36
--14.25,-17.765,-16.53,-13.585,73.378,46.77
--14.553,-18.14274,-16.9785,-13.77684,74.938248,46.5795
--13.965,-17.4097,-16.2925,-12.9409,71.91044,47.481
--14.4,-17.856,-16.704,-13.44,74.1504,46.128
--13.62775,-16.69625,-15.7035,-12.635,69.7091,45.258
--14.20155,-17.39925,-16.45875,-13.3551,72.64422,44.6975
--14.35104,-17.67744,-16.632,-13.68576,73.399392,45.552
--14.35406,-17.77622,-16.6355,-13.49852,73.424344,46.5108
--14.44608,-17.67744,-16.632,-13.3056,73.408896,46.128
--14.30016,-17.49888,-16.464,-13.1712,72.667392,46.9812
--14.74704,-17.9487,-16.9785,-13.5828,74.938248,46.795
--14.44912,-17.5861,-16.6355,-13.49852,73.424344,46.1874
--14.592,-17.952,-16.8,-13.728,74.1504,45.168
--14.89752,-18.32787,-17.15175,-14.01543,75.702924,46.5795
--14.99553,-18.32787,-17.15175,-14.11344,75.702924,46.4805
--14.38965,-17.58735,-16.45875,-13.07295,72.77589,46.4706
--13.9536,-16.9632,-15.96,-12.6768,70.57968,44.4315
--14.69259,-17.86158,-16.80525,-13.54023,74.308014,46.3716
--14.2443,-17.4097,-16.3856,-13.3133,72.04078,45.325
--14.79016,-18.05552,-16.90304,-13.54164,74.325356,45.2172
--14.94108,-18.23976,-17.07552,-13.67982,74.938248,45.1192
--14.78862,-18.05364,-16.90128,-13.63626,74.173572,45.8964
--15.246,-18.513,-17.424,-13.959,76.3686,46.04
--14.94108,-18.14274,-17.07552,-13.5828,74.841228,44.8252
--14.88,-17.952,-16.896,-13.44,74.0544,44.016
--14.4305,-17.5028,-16.3856,-13.2202,71.72424,45.2172
--14.5824,-17.78112,-16.55808,-13.35936,72.479232,44.8252
--15.345,-18.711,-17.424,-14.157,76.1805,45.55
--14.88,-18.144,-16.896,-13.344,73.872,45.74
--14.37696,-17.32608,-16.22016,-12.99456,70.82496,44.1888
--15.444,-18.513,-17.424,-13.959,75.9825,46.04
--14.82936,-17.87128,-16.73056,-13.49852,72.95855,44.8625
--14.3754,-17.41635,-16.31055,-13.36175,70.632975,43.738
--15.13512,-18.33678,-17.17254,-13.97088,74.375532,45.9756
--14.3184,-17.2368,-16.1424,-13.1328,69.9048,44.7936
--14.77213,-17.68892,-16.65393,-13.26669,72.035304,45.7161
--14.61984,-17.50656,-16.48224,-13.12992,71.292672,45.744
--14.6167,-17.5028,-16.3856,-13.3133,71.18426,46.9812
--15.38757,-18.52389,-17.34777,-13.91742,74.938446,47.4606
--14.77056,-17.78112,-16.65216,-13.45344,71.92416,45.5616
--14.56128,-17.5104,-16.31232,-13.17888,70.45632,46.512
--15.326,-18.333,-17.169,-13.774,74.0692,47.9568
--15.17274,-18.14967,-16.99731,-13.54023,73.338111,48.4612
--14.5597,-17.3242,-16.31055,-13.0853,70.282805,47.4525
--14.86464,-17.78112,-16.65216,-13.6416,71.754816,48.1344
--15.484,-18.62,-17.444,-14.014,74.7446,50.14
--15.105,-18.05,-16.91,-13.585,72.447,49.95
--14.95395,-17.8695,-16.7409,-13.44915,71.72253,49.4505
--15.58359,-18.6219,-17.44578,-13.81941,74.742426,49.2426
--15.264,-18.144,-16.992,-13.728,73.1136,49.74
--14.95395,-17.77545,-16.7409,-13.63725,71.637885,49.1634
--15.36,-18.24,-17.088,-13.824,73.2192,47.568
--15.2,-18.145,-16.91,-13.585,72.447,47.0725
--15.52,-18.43,-17.266,-13.968,73.9722,47.9568
--15.0528,-17.78112,-16.74624,-13.45344,71.745408,48.3434
--15.5232,-18.33678,-17.26956,-13.77684,73.997154,48.265
--15.52,-18.333,-17.266,-14.162,73.9722,47.6658
--14.83776,-17.60256,-16.49664,-13.63968,70.281216,46.9728
--14.6832,-17.5104,-16.3248,-13.3152,69.55824,46.9728
--15.617,-18.527,-17.363,-13.871,73.9722,48.74
--15.14205,-17.8695,-16.83495,-13.5432,71.731935,46.303
--14.83615,-17.5085,-16.49485,-13.36175,70.27359,47.2778
--15.456,-18.144,-17.088,-13.824,73.2096,46.6848
--15.39648,-17.96256,-16.91712,-13.87584,72.477504,48.3615
--15.87762,-18.6219,-17.44578,-14.11344,74.742426,47.9655
--15.55686,-18.2457,-17.18937,-13.92435,73.328508,47.1711
--16.038,-18.909,-17.721,-14.355,75.5964,48.24
--15.39,-18.145,-17.005,-13.87,72.542,48.45
--15.24096,-17.8752,-16.84032,-13.45344,71.839488,46.4352
--15.65289,-18.2457,-17.18937,-13.82832,73.338111,47.9754
--15.71724,-18.4338,-17.26956,-14.16492,74.084472,47.6784
--15.02208,-17.60256,-16.49664,-13.3632,70.373376,46.2336
--15.17856,-17.87904,-16.66848,-13.5024,71.106432,46.2108
--15.49478,-18.25152,-17.01574,-13.97382,72.682876,46.0265
--15.81426,-18.53082,-17.36658,-14.16492,74.181492,46.6872
--15.2684,-17.7821,-16.6649,-13.4995,71.18426,45.752
--15.42912,-17.8752,-16.84032,-13.54752,71.933568,45.7344
--15.11424,-17.60256,-16.49664,-13.54752,70.465536,45.2448
--16.236,-19.008,-17.721,-14.553,75.6954,47.2725
--15.27168,-17.87904,-16.7616,-13.59552,71.199552,46.0362
--15.91128,-18.62784,-17.4636,-14.0679,74.181492,46.1874
--15.4242,-18.0576,-16.929,-13.63725,71.91063,44.878
--15.908,-18.527,-17.46,-14.162,74.2632,47.13
--15.908,-18.527,-17.46,-13.968,74.2632,47.24
--15.048,-17.4192,-16.3248,-13.4064,69.8136,44.784
--16.17,-18.816,-17.64,-14.504,75.019,45.619
--15.84495,-18.53379,-17.2854,-14.21244,73.520568,45.3669
--16.17,-18.914,-17.64,-14.406,75.019,45.913
--15.6849,-18.25152,-17.1108,-13.7837,72.76843,46.109
--16.434,-19.008,-17.82,-14.355,75.7944,46.4706
--15.77664,-18.15264,-17.1072,-14.06592,72.75312,46.3023
--15.61728,-18.06336,-16.9344,-14.01792,72.027648,46.011
--15.61728,-18.15744,-17.02848,-13.92384,72.01824,45.5112
--15.94098,-18.62982,-17.38143,-14.11641,73.520568,44.6588
--14.9815,-17.41825,-16.33525,-13.1765,69.0954,44.2225
--16.533,-19.008,-17.919,-14.454,75.7944,46.66
--15.61894,-18.06528,-17.03029,-13.73714,72.129394,45.0468
--16.20234,-18.62784,-17.4636,-14.16492,74.36583,46.0012
--15.55104,-17.87904,-16.85472,-13.68864,71.37648,44.5824
--16.03868,-18.53572,-17.38324,-14.11788,73.61466,45.7268
--16.03701,-18.53379,-17.38143,-14.11641,73.606995,45.6786
--15.38905,-17.8771,-16.67915,-13.6382,70.64219,45.8228
--15.87502,-18.34658,-17.20586,-13.97382,72.86349,44.7558
--16.20234,-18.72486,-17.56062,-13.97088,74.36583,45.0408
--16.128,-18.528,-17.376,-14.208,73.5936,44.7936
--15.3216,-17.6928,-16.5072,-13.4976,69.9048,43.833
--15.80712,-18.25346,-17.12438,-13.92532,72.119985,44.7558
--16.29936,-18.9189,-17.65764,-14.16492,74.36583,45.5697
--15.97008,-18.5367,-17.30092,-13.97382,72.86349,44.7468
--16.22907,-18.62982,-17.47746,-14.21244,73.606995,45.4905
--15.57335,-17.78495,-16.7713,-13.6382,70.64219,43.2725
--15.4128,-17.6016,-16.5072,-13.3152,69.91392,44.688
--15.90121,-18.15937,-17.12438,-14.1135,72.129394,44.2902
--15.73728,-18.1584,-17.04096,-14.06112,71.385792,43.8336
--16.9,-19.6,-18.3,-15.1,76.75,45.55
--15.73728,-18.1584,-17.04096,-13.87488,71.385792,44.1984
--15.7339,-18.1545,-16.9442,-13.8719,71.45425,43.377
--16.15,-18.525,-17.29,-14.06,72.9125,45.66
--16.1568,-18.43776,-17.29728,-13.87584,72.9432,43.5264
--16.3251,-18.53379,-17.47746,-14.11641,73.712628,44.8625
--15.9953,-18.25346,-17.12438,-14.01941,72.214075,44.3678
--15.504,-17.6928,-16.6896,-13.7712,69.996,44.3136
--16.49,-18.915,-17.751,-14.647,74.4475,45.74
--16.3251,-18.72585,-17.57349,-14.21244,73.703025,44.0865
--16.3251,-18.72585,-17.57349,-14.4045,73.703025,44.9856
--15.6672,-17.87904,-16.77312,-13.63968,70.7328,43.9104
--15.75765,-17.8771,-16.86345,-13.6382,70.725125,42.8925
--16.587,-18.915,-17.751,-14.356,74.4475,43.9701
--16.758,-19.11,-17.934,-14.7,75.215,44.8252
--17.1,-19.6,-18.3,-15,76.75,45.66
--16.25526,-18.63176,-17.39598,-14.35406,72.95855,45.1192
--17.1,-19.6,-18.4,-14.9,76.76,45.45
--15.92352,-18.1584,-17.04096,-13.68864,71.4696,44.1835
--16.42113,-18.72585,-17.57349,-14.11641,73.703025,44.6985
--16.512,-18.72,-17.568,-14.304,73.6896,45.74
--16.01664,-18.25152,-17.04096,-14.06112,71.478912,42.96
--16.51716,-18.82188,-17.57349,-14.4045,73.703025,44.5995
--16.34,-18.62,-17.48,-14.345,72.9125,45.85
--16.51716,-18.82188,-17.66952,-14.21244,73.703025,44.8767
--15.6864,-17.8752,-16.7808,-13.4976,69.996,43.7376
--16.34688,-18.62784,-17.48736,-14.256,72.9432,43.8336
--15.94195,-17.96925,-16.9556,-13.6382,70.725125,44.2902
--16.27584,-18.43968,-17.31072,-14.30016,72.2064,43.5264
--16.61319,-18.91791,-17.66952,-14.30847,73.703025,43.7955
--16.1063,-18.3407,-17.1304,-13.5926,71.45425,44.149
--15.94195,-18.15355,-17.04775,-13.54605,70.725125,44.3678
--16.61319,-18.91791,-17.66952,-14.50053,73.703025,45.0945
--16.954,-19.208,-18.032,-15.092,75.215,44.345
--16.435,-18.525,-17.48,-14.155,72.922,42.997
--16.61319,-18.82188,-17.66952,-14.59656,73.703025,45.0945
--16.53696,-18.72288,-17.5824,-14.63616,72.933696,44.6985
--15.8688,-18.0576,-16.872,-13.8624,69.996,43.5168
--16.36992,-18.53376,-17.4048,-14.39424,72.2064,43.8336
--16.53696,-18.81792,-17.5824,-14.54112,72.9432,43.5264
--17.226,-19.602,-18.315,-14.949,75.9825,44.3025
--17.226,-19.602,-18.414,-14.949,75.9825,44.9856
--16.8,-19.008,-17.76,-14.496,73.6896,45.74
--16.2925,-18.3407,-17.2235,-14.1512,71.46356,42.617
--17.052,-19.404,-18.228,-14.994,75.215,44.94
--16.296,-18.53088,-17.32032,-14.34048,71.4696,43.8925
--16.975,-19.303,-18.042,-15.035,74.4475,43.9798
--15.79375,-17.95975,-16.7865,-13.80825,69.3481,42.408
--16.625,-18.905,-17.67,-14.535,73.0075,42.693
--16.464,-18.72192,-17.59296,-14.39424,72.30048,44.2568
--17.325,-19.701,-18.414,-15.345,75.9825,44.1936
--15.79375,-18.05,-16.87675,-13.98875,69.266875,42.617
--16.38912,-18.624,-17.41344,-14.24736,71.478912,43.248
--16.90304,-19.208,-17.95948,-14.8862,73.80674,43.855
--16.38912,-18.624,-17.41344,-14.24736,71.56272,42.8544
--17.07552,-19.404,-18.23976,-14.94108,74.55987,44.4234
--17.248,-19.698,-18.424,-15.19,75.215,44.0412
--16.72704,-19.008,-17.86752,-14.63616,73.03824,43.728
--17.072,-19.4,-18.236,-14.938,74.5445,42.9128
--16.2184,-18.43,-17.3242,-14.28325,70.725125,42.693
--15.884,-18.14025,-16.967,-14.079,69.357125,43.0635
--17.248,-19.698,-18.424,-15.386,75.3228,44.95
--17.7,-20.1,-18.9,-15.6,76.76,44.86
--16.82562,-19.10706,-17.96634,-14.7343,72.95855,44.149
--16.82562,-19.10706,-17.96634,-14.7343,72.95855,44.247
--16.65393,-19.00618,-17.78301,-14.48986,72.308165,43.9798
--16.99908,-19.30404,-18.15156,-14.8862,73.80674,43.6688
--17.17254,-19.50102,-18.33678,-15.0381,74.55987,44.0412
--16.48224,-18.624,-17.59968,-14.4336,71.553408,43.1424
--16.1424,-18.24,-17.2368,-14.136,70.0872,43.8336
--16.82562,-19.10706,-17.96634,-14.7343,73.05361,43.855
--17.444,-19.796,-18.522,-15.288,75.313,44.933
--17.09334,-19.39806,-18.2457,-15.07671,73.799055,44.4906
--17.09334,-19.39806,-18.2457,-15.07671,73.799055,44.6985
--17.8,-20.2,-18.9,-15.6,76.85,46.15
--17.09512,-19.40008,-18.2476,-14.8862,73.80674,44.2568
--16.7409,-18.9981,-17.8695,-14.76585,72.26802,45.0945
--17.26956,-19.50102,-18.4338,-15.13512,74.55987,45.031
--17.266,-19.594,-18.43,-15.326,74.5542,45.26
--17.54379,-19.89603,-18.6219,-15.38757,75.320685,44.8767
--16.3248,-18.5136,-17.328,-14.2272,70.07808,44.016
--17.444,-19.894,-18.718,-15.484,75.3032,45.05
--17.54379,-19.89603,-18.71991,-15.28956,75.320685,46.1934
--16.84211,-19.10027,-17.97119,-14.77213,72.214075,44.0768
--17.542,-19.894,-18.718,-15.484,75.215,44.75
--17.9,-20.3,-19.1,-15.8,76.75,45.33
--16.66848,-18.90336,-17.78592,-14.52672,71.56272,44.016
--17.28,-19.488,-18.336,-15.36,73.6896,43.8336
--17.46,-19.691,-18.527,-15.229,74.4475,44.2902
--16.587,-18.70645,-17.60065,-14.65185,70.725125,42.8925
--17.6418,-19.99404,-18.71991,-15.6816,75.320685,44.4114
--16.416,-18.6048,-17.5104,-14.4096,70.0872,43.248
--16.929,-19.1862,-18.0576,-14.76585,72.277425,42.693
--17.1,-19.38,-18.24,-14.915,73.0075,44.94
--17.2854,-19.49409,-18.43776,-15.07671,73.799055,43.8925
--16.9344,-19.09824,-18.06336,-15.0528,72.2064,44.2568
--17.38143,-19.49409,-18.43776,-15.07671,73.799055,44.3678
--17.919,-20.196,-19.008,-15.642,76.0716,44.8866
--16.68096,-18.80064,-17.69472,-14.7456,70.815744,43.44
--17.919,-20.196,-19.008,-15.543,76.0815,45.2826
--17.56062,-19.79208,-18.62784,-15.23214,74.55987,43.855
--17.557,-19.788,-18.624,-15.326,74.5445,45.26
--17.376,-19.584,-18.432,-15.36,73.68,45.05
--17.03029,-19.19436,-18.06528,-14.77213,72.308165,44.1835
--17.557,-19.788,-18.624,-15.229,74.4475,43.7955
--17.47746,-19.59012,-18.43776,-15.17274,73.703025,44.6588
--17.83782,-19.99404,-18.81792,-15.48558,75.222675,44.5995
--17.47746,-19.59012,-18.43776,-15.3648,73.703025,44.5995
--17.836,-19.992,-18.816,-15.386,75.3032,44.149
--17.83782,-19.99404,-18.81792,-15.48558,75.320685,45.3915
--17.47746,-19.59012,-18.43776,-15.07671,73.799055,44.7975
--17.47928,-19.59216,-18.43968,-15.27036,73.80674,44.933
--17.472,-19.584,-18.432,-15.072,73.776,45.15
--17.29728,-19.38816,-18.24768,-15.01632,73.028736,43.2576
--17.47928,-19.59216,-18.43968,-15.17432,73.80674,44.2568
--16.94784,-18.99648,-17.87904,-14.71296,71.553408,42.672
--16.86345,-18.7986,-17.6928,-14.65185,70.817275,44.0768
--18.117,-20.196,-19.008,-15.543,75.9825,45.25
--18.117,-20.196,-19.008,-15.444,75.9825,45.25
--16.86345,-18.7986,-17.78495,-14.65185,70.80806,43.377
--17.39232,-19.38816,-18.24768,-14.82624,72.9432,43.728
--17.385,-19.38,-18.24,-15.105,72.9125,45.55
--17.934,-19.992,-18.816,-15.386,75.313,44.639
--17.04096,-18.99648,-17.97216,-14.80608,71.4696,43.44
--17.57349,-19.59012,-18.43776,-15.17274,73.703025,44.2902
--17.48736,-19.4832,-18.34272,-15.01632,72.9432,43.44
--17.48736,-19.38816,-18.24768,-14.92128,72.9432,43.5168
--16.606,-18.411,-17.41825,-14.34975,69.266875,43.2725
--16.9556,-18.89075,-17.78495,-14.5597,70.725125,44.0768
--17.31072,-19.2864,-18.15744,-14.86464,72.2064,44.541
--17.664,-19.68,-18.528,-15.168,73.68,43.3536
--17.48736,-19.4832,-18.34272,-15.01632,73.03824,43.0656
--18.4,-20.5,-19.3,-15.9,76.75,45.15
--18.216,-20.196,-19.107,-15.444,75.9726,45.44
--16.606,-18.411,-17.41825,-14.16925,69.266875,42.997
--17.664,-19.584,-18.432,-15.264,73.68,43.5264
--16.872,-18.6048,-17.5104,-14.4096,69.996,43.9104
--17.945,-19.788,-18.624,-15.326,74.4475,43.9798
--18.13,-19.992,-18.816,-15.484,75.215,44.86
--17.39925,-19.28025,-18.0576,-14.8599,72.183375,42.408
--16.69625,-18.50125,-17.328,-14.34975,69.2759,42.693
--17.575,-19.475,-18.335,-15.105,72.9125,42.5125
--16.872,-18.696,-17.6016,-14.5008,69.996,42.028
--18.13,-20.09,-18.914,-15.582,75.215,44.86
--18.414,-20.295,-19.107,-15.84,75.9825,45.25
--17.86158,-19.68615,-18.53379,-15.17274,73.703025,44.7975
--17.4933,-19.28025,-18.15165,-14.76585,72.183375,45.0945
--18.414,-20.295,-19.107,-15.543,75.9825,44.4114
--17.68116,-19.4873,-18.34658,-15.2096,72.95855,43.8925
--17.4933,-19.28025,-18.15165,-14.8599,72.19278,42.3415
--17.4933,-19.1862,-18.15165,-14.8599,72.183375,43.5006
--17.4933,-19.1862,-18.15165,-14.95395,72.183375,44.1144
--17.32032,-18.99648,-17.97216,-14.71296,71.4696,42.9128
--17.23205,-18.7986,-17.78495,-14.744,70.725125,43.6985
--17.14176,-18.80064,-17.78688,-14.65344,70.7328,43.1424
--18.7,-20.5,-19.3,-16,76.75,45.16
--17.23205,-18.89075,-17.78495,-14.65185,70.725125,43.5142
--17.58735,-19.28025,-18.15165,-15.048,72.183375,44.7975
--18.139,-19.885,-18.721,-15.423,74.4572,43.9022
--17.59483,-19.28845,-18.15937,-14.96031,72.214075,43.6985
--17.77248,-19.38816,-18.34272,-15.11136,72.9432,44.4906
--17.952,-19.584,-18.528,-15.264,73.68,42.96
--17.95761,-19.59012,-18.43776,-15.26877,73.712628,43.3008
--17.4097,-18.9924,-17.9683,-14.7098,71.45425,44.4234
--18.23976,-19.79208,-18.62784,-15.42618,74.46285,44.5995
--17.59296,-19.2864,-18.15744,-15.0528,72.2064,42.6816
--17.77622,-19.4873,-18.34658,-15.2096,72.95855,43.6791
--18.612,-20.295,-19.107,-15.741,75.9924,46.26
--17.86,-19.475,-18.335,-15.2,72.9125,42.5125
--18.8,-20.5,-19.3,-15.9,76.75,44.05
--18.048,-19.68,-18.528,-15.168,73.68,44.45
--18.424,-20.09,-18.914,-15.484,75.215,43.561
--17.50656,-19.0896,-17.97216,-14.8992,71.4696,43.0656
--17.68704,-19.2864,-18.15744,-15.0528,72.11232,43.7472
--17.5028,-19.0855,-17.9683,-14.8029,71.37046,44.2568
--17.5028,-19.0855,-17.9683,-14.896,71.36115,43.561
--17.1456,-18.696,-17.6016,-14.592,69.9048,42.7975
--17.59968,-19.0896,-17.97216,-14.99232,71.37648,43.0098
--17.955,-19.57,-18.335,-15.2,72.8175,44.34
--18.333,-19.982,-18.721,-15.617,74.3602,44.86
--17.96634,-19.58236,-18.34658,-15.30466,72.86349,43.561
--18.333,-19.885,-18.721,-15.52,74.3505,43.1165
--18.33678,-19.98612,-18.72486,-15.42618,74.375532,44.1936
--17.41635,-18.89075,-17.78495,-14.744,70.632975,43.4075
--17.78112,-19.38048,-18.25152,-15.0528,72.121728,43.9628
--17.78112,-19.38048,-18.25152,-14.95872,72.11232,43.6688
--17.2368,-18.7872,-17.6928,-14.4096,69.9048,42.028
--17.41635,-18.9829,-17.8771,-14.744,70.632975,43.1165
--17.955,-19.57,-18.43,-15.105,72.8175,44.16
--18.4338,-19.98612,-18.72486,-15.5232,74.375532,43.0254
--17.8752,-19.2864,-18.25152,-14.86464,72.11232,42
--18.711,-20.295,-19.107,-15.939,75.8835,43.0254
--17.8752,-19.2864,-18.15744,-15.0528,72.121728,42.5908
--17.6928,-19.18272,-18.06528,-14.8992,71.385792,42.3405
--18.6219,-20.19006,-19.01394,-15.58359,75.134466,43.6095
--17.8695,-19.3743,-18.2457,-15.2361,72.089325,43.5006
--18.4338,-19.98612,-18.82188,-15.62022,74.36583,43.0254
--17.6928,-19.18272,-18.06528,-14.8992,71.37648,42.4375
--17.8752,-19.38048,-18.25152,-15.14688,72.11232,42.875
--18.4338,-19.98612,-18.82188,-15.5232,74.36583,43.6688
--17.328,-18.7872,-17.6928,-14.7744,69.9048,42.8544
--18.05,-19.57,-18.43,-15.2,72.8175,42.5125
--19,-20.6,-19.4,-16,76.76,45.55
--18.336,-19.776,-18.624,-15.456,73.584,44.75
--17.8695,-19.3743,-18.2457,-15.14205,72.183375,43.6095
--18.71991,-20.19006,-19.01394,-15.58359,75.134466,43.6095
--18.53082,-20.08314,-18.82188,-15.5232,74.375532,43.9628
--17.96928,-19.38048,-18.25152,-15.14688,72.2064,43.855
--18.34173,-19.87821,-18.72585,-15.3648,73.703025,43.3224
--18.53082,-20.08314,-18.9189,-15.62022,74.46285,42.8848
--18.145,-19.57,-18.43,-15.295,72.9125,43.86
--18.34364,-19.78424,-18.63176,-15.46244,73.7107,42.8848
--18.15646,-19.58236,-18.44164,-15.2096,72.95855,42.875
--18.909,-20.394,-19.206,-15.939,75.9825,42.8175
--17.96355,-19.3743,-18.2457,-15.14205,72.183375,43.5006
--17.60256,-18.98496,-17.9712,-14.92992,70.7328,42
--18.53082,-20.08314,-18.9189,-15.62022,74.46285,43.2036
--17.7821,-19.2717,-18.1545,-14.9891,71.45425,41.363
--18.24768,-19.67328,-18.5328,-15.2064,73.03824,43.4214
--18.909,-20.493,-19.305,-15.741,76.0815,43.6
--17.6928,-18.9829,-17.96925,-14.744,70.817275,41.667
--18.816,-20.286,-19.11,-15.876,75.313,42.9828
--18.816,-20.286,-19.012,-15.68,75.313,43.7472
--17.87904,-19.27584,-18.1584,-14.8992,71.56272,42.3936
--18.25152,-19.67742,-18.5367,-15.30466,73.05361,43.6688
--18.24,-19.665,-18.525,-15.295,73.0075,42.2275
--18.624,-20.079,-18.915,-15.714,74.5445,43.76
--18.24,-19.665,-18.525,-15.39,73.0075,41.667
--18.624,-20.079,-18.915,-15.714,74.6415,43.75
--18.06528,-19.47663,-18.34755,-15.14849,72.392846,43.3008
--18.624,-20.079,-18.915,-15.52,74.6415,43.54
--19.008,-20.493,-19.305,-15.84,76.1706,43.9065
--18.24768,-19.57824,-18.5328,-15.30144,73.13328,41.904
--18.816,-20.286,-19.11,-15.974,75.411,43.76
--18.914,-20.286,-19.11,-15.68,75.411,43.36
--18.34658,-19.67742,-18.5367,-15.39972,73.14867,42.4375
--17.78495,-19.07505,-17.96925,-14.744,70.909425,41.4675
--18.53379,-19.87821,-18.72585,-15.46083,73.904688,42.1562
--17.41825,-18.68175,-17.59875,-14.53025,69.447375,41.8475
--18.15165,-19.46835,-18.33975,-15.2361,72.371475,43.5006
--17.9683,-19.2717,-18.1545,-14.896,71.72424,43.071
--18.528,-19.872,-18.72,-15.456,73.9584,43.87
--18.721,-20.079,-18.915,-15.52,74.7288,44.16
--17.9683,-19.2717,-18.1545,-14.896,71.72424,42.028
--19.3,-20.7,-19.5,-16.2,77.04,43.76
--18.914,-20.384,-19.11,-15.582,75.509,43.54
--18.53572,-19.88028,-18.7278,-15.46244,73.99882,43.1788
--17.41825,-18.68175,-17.59875,-14.71075,69.5286,41.363
--19.4,-20.7,-19.5,-16.1,77.04,44.56
--18.0614,-19.3648,-18.1545,-14.9891,71.72424,41.952
--18.25152,-19.56864,-18.3456,-14.95872,72.48864,41.993
--18.624,-19.968,-18.816,-15.36,73.9584,41.136
--18.06528,-19.27584,-18.1584,-14.99232,71.74896,41.5645
--17.87904,-19.07712,-17.9712,-14.83776,71.092224,41.3472
--18.25152,-19.56864,-18.43968,-15.33504,72.573312,41.0592
--19.01394,-20.38608,-19.20996,-15.87762,75.614715,42.5304
--18.62982,-19.87821,-18.82188,-15.3648,74.077542,43.4214
--17.87904,-19.07712,-17.9712,-14.83776,71.092224,42.7776
--18.2457,-19.5624,-18.33975,-15.2361,72.55017,43.7976
--17.5085,-18.772,-17.59875,-14.53025,69.61885,41.4675
--18.43776,-19.76832,-18.62784,-15.39648,73.313856,42.288
--18.43,-19.76,-18.62,-15.295,73.283,41.667
--18.44164,-19.77248,-18.63176,-15.2096,73.329284,42.2338
--18.62982,-19.97424,-18.82188,-15.65289,74.077542,42.1562
--18.915,-20.176,-19.012,-15.617,74.8355,43.36
--17.784,-18.9696,-17.8752,-14.6832,70.35168,41.192
--18.43,-19.76,-18.62,-15.39,73.2735,43.36
--17.784,-18.9696,-17.8752,-14.7744,70.3608,41.192
--19.11195,-20.38608,-19.20996,-15.87762,75.604914,43.0254
--18.9189,-20.18016,-19.01592,-15.71724,74.841228,42.1988
--18.7278,-19.97632,-18.82384,-15.55848,74.085256,42.777
--18.5328,-19.76832,-18.62784,-15.39648,73.304352,41.3376
--18.5328,-19.76832,-18.62784,-15.49152,73.313856,42.4215
--18.1545,-19.3648,-18.2476,-15.1753,71.81734,42.1988
--19.305,-20.592,-19.404,-16.038,76.4676,42.8175
--18.1584,-19.36896,-18.25152,-15.08544,71.832768,41.5645
--19.5,-20.9,-19.6,-16.2,77.23,43.25
--17.96925,-19.25935,-18.0614,-14.9283,71.08451,41.6712
--18.915,-20.176,-19.012,-15.908,74.9228,42.85
--18.72,-19.968,-18.816,-15.552,74.1408,41.3376
--18.915,-20.273,-19.012,-15.811,74.9228,42.77
--18.33975,-19.5624,-18.4338,-15.33015,72.653625,42.4215
--18.816,-19.968,-18.816,-15.648,74.1504,40.9536
--17.59875,-18.772,-17.689,-14.801,69.7091,40.2515
--18.43968,-19.56864,-18.43968,-15.24096,72.657984,41.5912
--18.2476,-19.3648,-18.2476,-15.0822,71.91044,41.601
--18.82188,-20.07027,-18.82188,-15.65289,74.077542,41.4315
--18.06336,-19.16928,-18.15552,-15.11424,71.175168,42.576
--18.2476,-19.4579,-18.3407,-15.0822,71.81734,42.1988
--19.404,-20.691,-19.404,-16.038,76.3686,43.06
--19.404,-20.592,-19.404,-16.038,76.2795,43.55
--18.816,-19.968,-18.912,-15.84,73.9584,45.45
--17.689,-18.86225,-17.77925,-14.6205,69.537625,40.147
--18.82188,-19.97424,-18.91791,-15.55686,73.981512,44.3678
--18.43968,-19.66272,-18.53376,-15.33504,72.39456,41.0592
--18.82188,-20.07027,-18.91791,-15.74892,73.895085,43.7184
--18.82188,-20.07027,-18.91791,-15.65289,73.895085,43.2135
--18.4338,-19.65645,-18.52785,-15.2361,72.371475,42.9264
--19.012,-20.273,-19.109,-15.908,74.6415,43.36
--19.6,-20.9,-19.7,-16.6,76.95,43.25
--18.62,-19.855,-18.715,-15.485,73.1025,45.85
--19.01592,-20.27718,-19.11294,-15.91128,74.65689,47.2824
--19.503,-20.691,-19.503,-16.137,76.1805,43.7184
--18.0614,-19.25935,-18.15355,-15.1126,70.90021,43.5918
--19.30797,-20.48409,-19.30797,-15.97563,75.418695,44.1144
--18.91791,-20.07027,-18.91791,-15.55686,73.895085,52.6185
--18.91791,-20.07027,-18.91791,-15.84495,73.895085,51.5458
--18.15552,-19.26144,-18.15552,-15.11424,70.91712,50.736
--19.306,-20.482,-19.306,-16.072,75.4208,50.36
--18.3407,-19.4579,-18.3407,-15.2684,71.54735,44.5075
--18.34464,-19.46208,-18.34464,-15.27168,71.65584,46.9728
--19.109,-20.273,-19.109,-15.908,74.6318,51.35
--18.15355,-19.25935,-18.15355,-14.9283,70.909425,44.327
--18.53573,-19.66481,-18.53573,-15.33667,72.402255,47.1032
--17.9664,-19.0608,-17.9664,-14.9568,70.1784,49.9584
--18.52785,-19.65645,-18.52785,-15.2361,72.371475,44.118
--18.52785,-19.65645,-18.52785,-15.51825,72.371475,44.8866
--17.9664,-19.0608,-17.9664,-14.8656,70.16928,49.0675
--18.52785,-19.7505,-18.52785,-15.6123,72.371475,51.6285
--18.53573,-19.66481,-18.53573,-15.43076,72.402255,47.8598
--18.912,-20.064,-18.912,-15.84,73.8624,44.784
--18.53376,-19.7568,-18.53376,-15.42912,72.39456,50.9012
--19.30797,-20.48409,-19.30797,-16.07364,75.408894,55.2717
--19.11294,-20.27718,-19.11294,-15.71724,74.65689,55.3112
--19.109,-20.273,-19.109,-15.811,74.6415,55.64
--18.62784,-19.66272,-18.53376,-15.33504,72.39456,53.3414
--19.40598,-20.48409,-19.30797,-15.97563,75.408894,48.0744
--18.43776,-19.46208,-18.34464,-15.17856,71.65584,51.5904
--18.24768,-19.26144,-18.15552,-15.11424,70.91712,53.7024
--18.81792,-19.86336,-18.72288,-15.58656,73.13328,53.3088
--19.404,-20.482,-19.306,-16.17,75.411,54.94
--17.8695,-18.86225,-17.77925,-14.71075,69.447375,52.3735
--19.404,-20.58,-19.306,-15.974,75.411,54.84
--18.62784,-19.7568,-18.53376,-15.33504,72.39456,52.3712
--18.6219,-19.65645,-18.52785,-15.51825,72.465525,49.8275
--18.81,-19.855,-18.715,-15.58,73.188,50.4925
--18.62784,-19.66272,-18.53376,-15.5232,72.479232,50.736
--18.62982,-19.7589,-18.53573,-15.33667,72.581026,50.8668
--18.82188,-19.86754,-18.82188,-15.58984,73.234224,49.9162
--19.01394,-20.07027,-18.91791,-15.74892,74.077542,48.2526
--19.20996,-20.27718,-19.11294,-16.0083,74.744208,47.5888
--18.81,-19.855,-18.81,-15.675,73.283,46.303
--18.6219,-19.7505,-18.6219,-15.2361,72.55017,48.1536
--18.4338,-19.4579,-18.3407,-15.2684,71.82665,45.448
--19.404,-20.58,-19.306,-16.072,75.4992,46.85
--18.62784,-19.7568,-18.53376,-15.33504,72.48864,45.168
--19.20996,-20.3742,-19.11294,-15.71724,74.75391,45.9756
--19.404,-20.482,-19.306,-15.974,75.5972,46.14
--18.1488,-19.0608,-17.9664,-14.9568,70.35168,43.662
--19.10997,-20.07027,-18.91791,-15.84495,74.077542,44.1835
--18.5269,-19.4579,-18.3407,-15.1753,71.81734,44.639
--19.502,-20.482,-19.306,-15.974,75.5972,45.33
--19.30698,-20.27718,-19.11294,-15.91128,74.744208,44.149
--19.303,-20.37,-19.109,-15.908,74.8258,44.94
--18.72192,-19.66272,-18.53376,-15.5232,72.573312,43.5264
--18.33785,-19.3515,-18.15355,-15.1126,71.08451,42.8925
--18.905,-19.95,-18.715,-15.485,73.283,42.9875
--18.905,-19.95,-18.715,-15.675,73.283,45.66
--18.91694,-19.9626,-18.82188,-15.49478,73.329284,44.149
--19.701,-20.79,-19.503,-16.533,76.3686,44.94
--19.502,-20.482,-19.306,-16.072,75.6952,45.16
--19.30698,-20.3742,-19.11294,-16.0083,74.938248,43.9628
--18.91296,-19.9584,-18.72288,-15.39648,73.399392,42.4704
--18.53088,-19.5552,-18.34464,-15.27168,71.925888,43.2232
--18.91694,-19.9626,-18.82188,-15.6849,73.424344,43.1165
--19.50399,-20.5821,-19.30797,-16.07364,75.693123,44.1144
--19.104,-20.16,-19.008,-15.648,74.1504,44.46
--18.72391,-19.7589,-18.62982,-15.43076,72.806842,43.0195
--18.72391,-19.7589,-18.62982,-15.43076,72.806842,43.1165
--19.30698,-20.3742,-19.11294,-15.91128,75.083778,44.1144
--19.502,-20.58,-19.404,-16.17,75.8324,44.05
--18.91694,-19.9626,-18.72682,-15.6849,73.557428,42.8352
--18.91296,-19.9584,-18.81792,-15.58656,73.541952,43.7976
--18.91296,-19.9584,-18.81792,-15.6816,73.551456,42.3936
--19.303,-20.37,-19.206,-15.908,75.0586,44.16
--19.602,-20.5821,-19.40598,-16.26966,75.938148,43.7976
--18.624,-19.5552,-18.43776,-15.27168,72.149376,42.1152
--18.624,-19.5552,-18.43776,-15.27168,72.149376,42.4704
--19.303,-20.37,-19.206,-15.908,75.1556,42.8352
--19.404,-20.3742,-19.20996,-15.91128,75.171096,43.6095
--19.2,-20.16,-19.008,-15.744,74.3808,42.1152
--19.602,-20.5821,-19.40598,-16.17165,75.938148,43.3224
--20,-21,-19.8,-16.5,77.48,43.36
--19.012,-19.9626,-18.82188,-15.58984,73.652488,42.2338
--18.62,-19.551,-18.4338,-15.2684,72.13388,42.5908
--18.816,-19.7568,-18.62784,-15.61728,72.893184,41.7216
--19.6,-20.58,-19.404,-16.072,75.9304,43.65
--18.62,-19.551,-18.4338,-15.3615,72.14319,43.071
--18.81,-19.7505,-18.6219,-15.6123,72.86994,43.5006
--19,-20.045,-18.81,-15.675,73.606,44.16
--18.05,-18.9525,-17.8695,-14.89125,70.01595,41.4675
--19.208,-20.26444,-19.01592,-15.8466,74.411792,43.0612
--20,-21.1,-19.8,-16.5,77.58,43.87
--19.404,-20.3742,-19.20996,-15.81426,75.268116,43.0612
--20,-21,-19.8,-16.3,77.57,43.86
--19.8,-20.79,-19.602,-16.038,76.7943,43.6095
--18.62,-19.551,-18.4338,-15.2684,72.22698,41.6765
--19.6,-20.58,-19.404,-16.072,76.0284,43.75
--18.62,-19.6441,-18.4338,-15.3615,72.22698,42.385
--19.8,-20.889,-19.602,-16.236,76.7943,43.54
--18.624,-19.5552,-18.43776,-15.3648,72.242496,42.4472
--19.2,-20.16,-19.008,-15.648,74.4768,43.46
--19.008,-20.05344,-18.81792,-15.58656,73.732032,43.3224
--19.30404,-20.26444,-19.01592,-15.8466,74.498228,42.777
--18.432,-19.3536,-18.24768,-15.11424,71.497728,41.424
--19.698,-20.678,-19.404,-16.072,76.0186,42.8848
--18.7131,-19.551,-18.4338,-15.2684,72.22698,43.071
--19.50102,-20.3742,-19.20996,-15.91128,75.268116,43.4214
--18.05,-19.04275,-17.8695,-14.801,70.01595,41.6765
--18.3312,-19.152,-18.0576,-15.048,70.75296,41.5625
--18.71712,-19.5552,-18.43776,-15.3648,72.242496,42.96
--19.497,-20.37,-19.206,-16.005,75.2526,44.16
--19.296,-20.16,-19.008,-15.744,74.4672,42.4704
--19.497,-20.37,-19.206,-16.199,75.2526,43.95
--19.698,-20.58,-19.404,-16.17,76.0284,42.8848
--18.90405,-19.7505,-18.6219,-15.51825,72.96399,41.363
--19.497,-20.467,-19.206,-16.005,75.2526,43.46
--18.71712,-19.5552,-18.43776,-15.27168,72.233184,42.7285
--18.3312,-19.2432,-18.0576,-15.1392,70.75296,42.4704
--19.095,-20.045,-18.81,-15.77,73.701,41.952
--18.90405,-19.84455,-18.71595,-15.51825,72.954585,41.7525
--19.70001,-20.5821,-19.40598,-16.17165,76.036158,43.4214
--18.71712,-19.5552,-18.43776,-15.27168,72.242496,42.4704
--19.30203,-20.26233,-19.01394,-15.84495,74.500074,42.9264
--18.52215,-19.44365,-18.2457,-15.20475,71.48997,41.8458
--18.91209,-19.85299,-18.62982,-15.52485,72.995022,41.2735
--18.52416,-19.3536,-18.24768,-15.11424,71.488512,40.848
--19.899,-20.79,-19.602,-16.335,76.8042,43.2135
--18.90405,-19.7505,-18.6219,-15.6123,72.96399,41.667
--18.3312,-19.152,-18.0576,-15.048,70.75296,40.4225
--19.899,-20.79,-19.602,-16.434,76.8042,42.0255
--18.71712,-19.46208,-18.43776,-15.27168,72.251808,41.3802
--19.296,-20.16,-19.008,-15.84,74.4768,42.04
--19.10304,-19.86336,-18.81792,-15.6816,73.732032,41.136
--18.14025,-18.86225,-17.8695,-14.9815,70.01595,41.0875
--19.296,-20.064,-19.008,-15.744,74.4768,41.136
--19.70001,-20.48409,-19.40598,-16.07364,76.036158,43.9065
--19.095,-19.855,-18.81,-15.58,73.701,40.9165
--19.50102,-20.27718,-19.20996,-16.0083,75.268116,43.0254
--18.7131,-19.4579,-18.3407,-15.2684,72.22698,43.5708
--19.998,-20.79,-19.602,-16.236,76.8042,42.86
--18.81024,-19.5552,-18.43776,-15.27168,72.233184,40.9536
--18.7131,-19.551,-18.4338,-15.2684,72.22698,42.287
--19.19,-19.95,-18.81,-15.675,73.6915,42.55
--18.8062,-19.551,-18.4338,-15.2684,72.22698,42.385
--19.594,-20.37,-19.206,-16.199,75.2526,41.8555
--19.79802,-20.68011,-19.40598,-16.07364,76.036158,42.7086
--19.19808,-20.05344,-18.81792,-15.6816,73.732032,41.52
--19.19,-20.045,-18.81,-15.675,73.701,43.86
--19.392,-20.256,-19.008,-15.84,74.4768,43.76
--18.8062,-19.551,-18.4338,-15.1753,72.21767,42.1325
--19.796,-20.678,-19.404,-16.17,76.0284,42.777
--18.4224,-19.152,-18.1488,-15.048,70.75296,41.6256
--18.6143,-19.44365,-18.33785,-15.1126,71.48997,42.028
--19.00618,-19.85299,-18.62982,-15.52485,72.995022,42.9128
--20.2,-21.1,-19.8,-16.7,77.58,44.16
--19.796,-20.678,-19.502,-16.366,76.0284,43.54
--18.81024,-19.64832,-18.43776,-15.27168,72.158688,43.1424
--19.79802,-20.68011,-19.50399,-16.07364,76.036158,43.9065
--19.392,-20.256,-19.104,-15.936,74.4768,44.16
--18.4224,-19.2432,-18.1488,-15.048,70.66176,42.96
--19.594,-20.467,-19.303,-16.102,75.1556,43.94
--19.392,-20.256,-19.104,-15.84,74.4672,42.96
--19.392,-20.256,-19.104,-15.648,74.4768,44.35
--19.39806,-20.26233,-19.10997,-15.84495,74.413647,43.7184
--19.19,-20.045,-18.905,-15.865,73.606,43.86
--19.20212,-20.05766,-18.91694,-15.6849,73.747548,44.2568
--19.19,-19.95,-18.905,-15.77,73.606,41.952
--19.998,-20.889,-19.701,-16.335,76.7052,44.24
--19.59804,-20.3742,-19.30698,-15.81426,75.171096,43.5006
--19.19808,-19.9584,-18.91296,-15.6816,73.636992,42.96
--19.594,-20.467,-19.303,-16.102,75.1556,42.5442
--19.19808,-20.05344,-18.91296,-15.87168,73.636992,44.1936
--18.61632,-19.44576,-18.33984,-15.29856,71.405568,43.1424
--19.392,-20.256,-19.104,-15.84,74.3808,42.672
--18.9981,-19.84455,-18.71595,-15.51825,72.879345,41.952
--19.594,-20.467,-19.303,-16.005,75.1653,43.0195
--19.00416,-19.85088,-18.72192,-15.5232,72.893184,42.96
--19.392,-20.256,-19.104,-15.936,74.3808,44.16
--18.4224,-19.2432,-18.1488,-14.9568,70.66176,42.1325
--19.29718,-20.05766,-18.91694,-15.58984,73.652488,43.0195
--18.9981,-19.84455,-18.71595,-15.51825,72.86994,41.5625
--19.09824,-19.85088,-18.72192,-15.80544,72.893184,42.3936
--19.10027,-19.85299,-18.818,-15.61894,72.900932,42.3405
--19.49409,-20.26233,-19.10997,-15.94098,74.404044,42.9128
--20.097,-20.889,-19.8,-16.434,76.7052,43.9065
--20.097,-20.889,-19.701,-16.236,76.7052,43.94
--20.097,-20.988,-19.8,-16.434,76.7151,44.56
--19.49612,-20.36048,-19.11196,-15.94264,74.411792,43.169
--19.29312,-20.05344,-19.008,-15.6816,73.636992,42.96
--19.69506,-20.56824,-19.30698,-16.10532,75.171096,43.5006
--18.32075,-19.133,-17.95975,-14.9815,69.9257,41.952
--19.09215,-19.9386,-18.81,-15.6123,72.86994,43.7976
--19.69506,-20.56824,-19.404,-16.0083,75.171096,44.1144
--20.3,-21.2,-20,-16.6,77.48,44.16
--19.09215,-19.9386,-18.81,-15.6123,72.86994,43.4214
--19.49612,-20.36048,-19.208,-15.8466,74.411792,42.7672
--19.488,-20.256,-19.2,-16.128,74.3808,43.65
--19.29718,-20.05766,-18.91694,-15.58984,73.652488,42.3405
--19.49409,-20.35836,-19.206,-15.74892,74.404044,42.6315
--19.09824,-19.94496,-18.816,-15.61728,72.893184,41.2416
--18.5136,-19.2432,-18.24,-15.048,70.67088,41.363
--19.29312,-20.05344,-19.008,-15.6816,73.636992,42.0096
--19.29312,-20.05344,-19.008,-15.6816,73.636992,43.5006
--20.097,-20.889,-19.701,-16.236,76.7052,43.2135
--19.09215,-19.1862,-17.21115,-15.9885,72.86994,43.7184
--19.10027,-18.25346,-15.9953,-16.55984,72.900932,42.5442
--20.097,-18.216,-15.741,-17.028,76.7052,43.9065
--18.90336,-16.57536,-14.24736,-16.296,72.149376,41.9525
--20.3,-17.3,-14.6,-17.1,77.48,43.65
--20.3,-18.8,-15.5,-15.4,77.48,42.77
--18.5136,-17.9664,-15.1392,-14.5008,70.66176,41.7984
--19.49612,-19.11196,-16.3268,-14.98224,74.411792,43.2768
--19.691,-19.303,-16.587,-15.035,75.1556,42.3405
--19.09824,-18.72192,-16.27584,-14.30016,72.893184,42.777
--19.285,-18.81,-16.625,-14.345,73.5205,41.287
--19.89603,-19.30797,-17.24976,-14.99553,75.840138,42.8175
--18.8993,-18.3407,-16.4787,-14.2443,72.04078,40.983
--19.488,-18.912,-17.088,-14.688,74.2848,41.3568
--18.70645,-18.15355,-16.4027,-14.0068,71.314885,41.0892
--19.10027,-18.62982,-16.84211,-14.30168,72.816251,41.2735
--19.49409,-19.01394,-17.2854,-14.88465,74.308014,42.0592
--18.8993,-18.5269,-16.8511,-14.4305,72.04078,41.363
--18.90336,-18.71712,-17.04096,-14.52672,72.056256,41.6256
--19.69506,-19.50102,-17.75466,-15.23214,75.074076,42.4215
--18.90336,-18.81024,-17.13408,-14.52672,72.065568,41.7216
--19.691,-19.594,-17.848,-15.229,75.0683,42.0592
--19.09215,-18.9981,-17.39925,-14.8599,72.77589,41.0875
--20.3,-20.2,-18.6,-15.6,77.39,44.45
--18.32075,-18.32075,-16.87675,-14.2595,69.844475,41.743
--18.90336,-18.90336,-17.41344,-14.71296,72.065568,42.4472
--19.691,-19.788,-18.236,-15.229,74.9228,41.8555
--19.488,-19.584,-18.144,-15.36,74.1504,42.1056
--19.29312,-19.38816,-17.96256,-15.30144,73.408896,42.6294
--19.49409,-19.59012,-18.14967,-15.26877,74.163969,43.7184
--19.69506,-19.79208,-18.4338,-15.42618,74.938248,43.0254
--19.29718,-19.39224,-18.0614,-15.2096,73.43385,42.2338
--18.70645,-18.89075,-17.5085,-14.9283,71.167445,41.0875
--19.09824,-19.2864,-17.96928,-15.0528,72.667392,43.2768
--19.285,-19.475,-18.145,-15.2,73.378,42.1325
--18.70645,-18.89075,-17.60065,-14.83615,71.17666,42.2275
--20.097,-20.295,-18.909,-15.939,76.4676,44.0055
--19.49409,-19.78218,-18.43776,-15.46083,74.077542,43.5142
--19.89603,-20.28807,-18.91593,-15.77961,75.702924,43.7184
--18.32075,-18.68175,-17.41825,-14.6205,69.7091,41.743
--19.29718,-19.58236,-18.34658,-15.30466,73.33879,43.5142
--20.3,-20.7,-19.3,-16.1,77.14,44.35
--19.894,-20.286,-18.914,-15.778,75.5972,42.9828
--19.285,-19.665,-18.43,-15.58,73.283,42.9875
--18.5136,-18.8784,-17.6928,-14.592,70.35168,43.5264
--18.5136,-18.8784,-17.6928,-14.9568,70.35168,41.952
--19.488,-19.872,-18.624,-15.552,74.0544,43.1424
--20.3,-20.7,-19.4,-16.2,77.14,44.24
--19.69506,-19.98612,-18.82188,-15.91128,74.841228,43.7976
--19.29718,-19.67742,-18.5367,-15.39972,73.329284,43.2329
--19.00618,-19.47663,-18.34755,-15.33667,72.581026,43.0195
--19.20212,-19.67742,-18.5367,-15.39972,73.329284,44.3548
--19.69506,-20.08314,-18.9189,-15.71724,74.841228,44.4906
--18.81024,-19.27584,-18.1584,-14.99232,71.832768,43.2232
--19.09824,-19.47456,-18.3456,-15.24096,72.573312,42.875
--18.70848,-19.07712,-17.9712,-14.92992,71.092224,42.8544
--19.39806,-19.87821,-18.82188,-15.74892,74.077542,42.4375
--18.61632,-19.07712,-17.9712,-15.02208,71.092224,42.288
--19.29718,-19.67742,-18.5367,-15.30466,73.329284,42.9128
--19.39806,-19.87821,-18.82188,-15.74892,73.981512,44.9856
--19.10027,-19.57072,-18.44164,-15.14849,72.590435,43.5142
--20.2,-20.9,-19.6,-16.4,77.14,44.45
--20.3,-20.9,-19.6,-16.4,77.04,45.25
--18.61632,-19.26144,-18.15552,-15.29856,71.092224,43.1424
--18.8062,-19.4579,-18.3407,-15.3615,71.73355,43.073
--18.8062,-19.4579,-18.3407,-15.2684,71.81734,44.1392
--19.19,-19.855,-18.715,-15.58,73.188,45.05
--19.40008,-20.07236,-18.91988,-15.65452,74.085256,44.345
--19.796,-20.482,-19.306,-16.072,75.4992,44.639
--18.9981,-19.7505,-18.52785,-15.4242,72.465525,43.1775
--19.392,-20.064,-18.912,-15.744,73.968,43.6224
--19.00618,-19.7589,-18.53573,-15.43076,72.486936,43.6985
--19.00416,-19.7568,-18.53376,-15.24096,72.479232,43.5168
--19.79802,-20.5821,-19.30797,-15.97563,75.506904,45.2826
--18.6143,-19.3515,-18.2457,-15.02045,71.08451,42.902
--18.61632,-19.3536,-18.15552,-15.11424,71.000064,43.248
--18.81024,-19.5552,-18.43776,-15.17856,71.739648,43.8925
--19.79802,-20.5821,-19.40598,-16.07364,75.506904,44.4906
--18.81024,-19.5552,-18.43776,-15.17856,71.74896,43.4496
--19.59804,-20.3742,-19.20996,-15.81426,74.744208,44.7975
--19.09215,-19.7505,-18.6219,-15.33015,72.45612,44.1936
--19.20212,-19.9626,-18.82188,-15.58984,73.234224,43.7472
--18.9981,-19.7505,-18.6219,-15.2361,72.45612,42.7975
--18.2305,-18.9525,-17.8695,-14.71075,69.5286,43.2725
--19.796,-20.58,-19.404,-15.974,75.4992,46.25
--19.285,-19.95,-18.81,-15.39,73.188,46.36
--19.59804,-20.3742,-19.20996,-16.0083,74.744208,44.639
--18.8062,-19.551,-18.4338,-15.4546,71.72424,42.7975
--19.594,-20.37,-19.206,-15.908,74.7288,43.8925
--19.00618,-19.7589,-18.62982,-15.33667,72.486936,43.7955
--18.81024,-19.5552,-18.43776,-15.27168,71.65584,43.8925
--19.998,-20.79,-19.602,-16.137,76.2696,45.3915
--19.392,-20.16,-19.008,-15.744,73.9584,45.44
--19.594,-20.37,-19.206,-15.908,74.7288,44.0768
--19.19,-19.95,-18.81,-15.675,73.188,42.788
--19.594,-20.37,-19.206,-15.908,74.6318,44.6588
--19.392,-20.16,-19.008,-15.936,73.872,43.1424
--18.2305,-19.04275,-17.8695,-14.801,69.447375,42.408
--18.61632,-19.44576,-18.24768,-15.11424,70.907904,43.8336
--19.19808,-19.9584,-18.81792,-15.49152,73.123776,44.0055
--19.998,-20.79,-19.602,-16.137,76.1706,44.75
--19.00416,-19.7568,-18.62784,-15.5232,72.39456,44.0412
--19.59804,-20.3742,-19.20996,-15.91128,74.647188,43.9628
--18.2305,-19.04275,-17.8695,-14.801,69.43835,42.693
--19.392,-20.256,-19.008,-15.744,73.8624,43.728
--19.79802,-20.68011,-19.40598,-16.17165,75.408894,44.7975
--18.6143,-19.44365,-18.33785,-15.1126,70.90021,43.7955
--19.594,-20.467,-19.303,-16.005,74.6318,43.1165
--19.59804,-20.3742,-19.30698,-16.0083,74.647188,44.8074
--18.8062,-19.551,-18.5269,-15.3615,71.64045,43.855
--19.19808,-19.9584,-18.91296,-15.6816,73.123776,45.0945
--19.392,-20.256,-19.104,-15.744,73.8624,42.7776
--19.00416,-19.85088,-18.72192,-15.5232,72.385152,43.561
--19.19,-20.045,-18.905,-15.58,73.093,44.94
--20.2,-21.1,-19.9,-16.5,76.94,44.86
--19.894,-20.678,-19.502,-16.268,75.4012,44.64
--19.392,-20.256,-19.104,-15.936,73.8624,44.56
--19.39806,-20.26233,-19.10997,-15.94098,73.885482,43.7976
--19.796,-20.678,-19.502,-16.268,75.411,43.0612
--18.8062,-19.6441,-18.5269,-15.1753,71.64045,42.5125
--18.8062,-19.6441,-18.5269,-15.3615,71.63114,41.8475
--19.79802,-20.68011,-19.50399,-16.26966,75.408894,44.4114
--20.3,-21.1,-19.9,-16.5,76.94,44.64
--18.6143,-19.1672,-17.5085,-14.65185,70.90021,42.5125
--19.00618,-18.62982,-16.55984,-13.64305,72.392846,42.6218
--19.594,-18.43,-16.005,-12.804,74.6415,43.1262
--18.8062,-16.9442,-14.6167,-11.6375,71.63114,42.875
--19.00618,-16.55984,-14.01941,-10.91444,72.402255,42.8352
--19.49409,-16.3251,-13.63626,-10.08315,73.885482,42.8352
--19.10027,-15.52485,-12.79624,-9.03264,72.392846,43.4075
--20.097,-15.84,-12.771,-8.514,76.0815,44.45
--19.691,-15.132,-11.931,-7.663,74.6318,44.45
--19.09824,-14.20608,-10.8192,-6.67968,72.30048,43.0656
--18.5136,-13.4064,-9.9408,-6.2016,70.0872,42.8544
--18.8062,-13.1271,-9.5893,-6.4239,71.54735,43.855
--19.285,-12.825,-9.12,-7.03,73.0075,42.332
--19.39806,-12.38787,-8.93079,-7.20225,73.789452,43.0195
--18.5136,-11.0352,-8.0256,-6.9312,70.07808,42.576
--19.796,-11.368,-8.232,-6.958,75.313,43.9628
--18.81024,-9.96384,-7.26336,-5.95968,71.56272,43.5168
--18.9981,-9.2169,-6.48945,-5.36085,72.277425,42.408
--19.20212,-8.84058,-5.79866,-5.2283,73.05361,44.3548
--18.61632,-7.64928,-4.88448,-4.88448,70.815744,43.344
--18.9981,-6.9597,-3.85605,-4.60845,72.26802,44.7975
--19.998,-6.534,-2.97,-4.059,75.9825,44.3025
--19.39806,-5.7618,-1.9206,-3.45708,73.789452,44.4906
--19.00416,-4.704,-0.4704,-2.8224,72.2064,44.1392
--19.19808,-3.99168,0.4752,-2.47104,72.9432,42.672
--19.19,-3.325,1.615,-2.09,72.9125,41.8475
--18.3312,-2.4624,2.6448,-1.4592,69.996,42.5125
--19.899,-2.178,3.96,-1.287,75.9825,44.4114
--19.296,-1.344,4.8,-1.056,73.68,42.96
--19.296,-0.672,5.952,-0.576,73.68,44.64
--19.698,-0.098,7.252,-0.098,75.215,45.33
--18.81,0.65835,7.9002,0.1881,72.183375,44.4906
--18.818,1.22317,9.03264,0.47045,72.214075,42.9128
--18.05,1.6245,9.747,0.9025,69.266875,41.743
--18.43,2.11945,10.96585,1.6587,70.725125,42.693
--18.81,2.91555,12.2265,2.0691,72.183375,42.332
--18.53088,3.35232,13.12992,2.328,71.4696,43.4075
--18.72391,4.23405,14.30168,3.10497,72.129394,43.4075
--19.01394,4.89753,15.84495,3.74517,73.703025,43.6985
--19.404,5.684,17.248,4.41,75.117,45.66
--18.4338,6.1446,17.2235,4.4688,71.36115,44.0412
--18.81792,6.84288,18.62784,5.13216,72.838656,44.1936
--18.15552,7.09632,18.80064,5.25312,70.64064,43.344
--18.53376,8.27904,20.32128,5.73888,72.11232,43.6224
--18.62784,9.0288,21.384,6.36768,72.84816,42.4704
--18.82384,9.79608,22.5694,6.7228,73.61466,44.345
--18.62784,10.64448,23.37984,7.22304,72.857664,44.1243
--18.5367,11.12202,24.33536,7.69986,72.86349,43.8052
--19.305,12.177,26.235,8.613,75.8835,44.24
--18.0614,12.3823,25.4163,8.5652,71.36115,42.1325
--17.8771,13.0853,26.07845,8.8464,70.632975,43.3008
--18.72486,14.26194,28.1358,9.89604,74.26881,43.9628
--18.06336,14.39424,28.224,10.06656,72.01824,45.2172
--18.43968,15.55848,29.48428,10.94856,73.51862,43.7472
--17.78592,15.73728,29.23968,10.80192,71.28336,44.0768
--18.2457,16.70922,30.63357,11.5236,73.520568,43.1262
--17.8695,17.1171,30.75435,11.8503,71.995275,43.168
--17.955,17.765,31.445,12.635,72.7225,46.36
--18.144,18.432,32.352,13.248,73.392,46.65
--17.3242,18.2457,31.97605,12.901,70.45789,43.9701
--18.513,20.394,35.145,14.355,75.6855,45.85
--18.414,21.087,35.838,15.147,75.6855,44.23
--16.872,19.8816,33.744,14.5008,69.73152,42.8544
--17.04775,20.6416,34.8327,15.02045,70.448675,42.522
--17.848,22.504,37.442,16.199,74.1565,44.1835
--16.86528,21.6576,36.31104,15.85152,70.465536,42.8544
--17.12256,22.5792,37.53792,16.55808,71.933568,43.6224
--17.20224,23.66496,38.58624,17.29728,72.65808,43.2384
--16.587,23.4061,37.87365,17.1399,70.45789,43.4075
--17.01216,24.90048,39.72672,18.34272,72.65808,42.3936
--16.5718,24.9508,39.5675,18.4338,71.17495,42.9875
--16.992,26.304,41.28,19.584,73.4016,43.94
--17.07552,27.06858,42.10668,19.98612,74.181492,44.7468
--16.2925,26.5335,41.0571,19.9234,71.09116,42.2275
--17.226,28.908,44.154,21.582,75.5964,44.7975
--16.27584,27.94176,42.71232,21.168,71.92416,44.345
--16.01664,28.21536,42.55584,21.4176,71.106432,43.9104
--16.66,29.89,45.374,23.03,74.8328,44.5312
--15.89952,29.07072,44.12352,22.20288,71.839488,44.5312
--15.6408,29.1403,44.0363,22.5302,71.09116,43.453
--15.5477,29.5127,44.5018,22.9026,71.09116,44.5312
--16.0083,31.14342,46.95768,24.255,74.084472,43.6095
--16.07364,32.14728,47.92689,25.09056,74.830635,44.3025
--15.02208,30.50496,45.6192,24.05376,70.373376,43.6224
--14.99232,31.00896,46.37376,24.58368,71.106432,42.1824
--15.2064,31.93344,47.80512,25.37568,72.477504,44.4
--15.11454,32.3204,48.29048,25.95138,72.492756,44.8625
--14.61984,32.1264,47.77056,25.88736,71.013312,43.6985
--14.3754,32.2525,47.82585,25.89415,70.27359,43.2725
--14.48832,33.49248,49.10976,26.71872,71.745408,42.5664
--14.39424,33.8688,49.58016,27.37728,71.745408,43.9104
--14.798,35.574,51.94,28.42,74.7348,44.15
--14.01792,34.3392,49.392,29.07072,71.745408,43.728
--13.357,32.851,46.7495,29.241,68.82465,42.788
--13.73568,34.15104,48.07488,31.0464,71.745408,44.1392
--14.21,35.476,49.294,31.654,74.7348,44.86
--13.3133,33.6091,46.1776,29.9782,70.99806,41.743
--13.54023,34.28271,46.28646,33.99462,73.232478,44.5896
--13.5828,32.69574,44.53218,34.15104,73.987452,43.5006
--12.9789,30.56625,41.1939,32.44725,71.731935,44.0055
--12.274,28.42875,37.7245,30.324,68.82465,41.667
--12.86802,29.28915,38.50803,31.11372,73.232478,43.4075
--12.768,28.032,36.864,30.528,73.2096,44.24
--12.57993,27.17649,35.43507,29.86533,73.242081,44.1936
--12.38787,26.12016,34.18668,29.00106,73.232478,44.1936
--11.8237,24.3922,31.8402,27.5576,71.00737,43.561
--11.4,23.1648,30.096,26.448,69.54912,42.7776
--11.57307,23.24023,30.01471,26.15702,71.753034,43.0098
--11.0352,21.7968,28.1808,24.9888,69.54912,42.028
--11.781,22.77,29.601,26.532,75.4974,44.24
--11.583,21.978,28.611,25.938,75.4974,44.6985
--11.5,21.5,28.1,25.6,76.26,45.95
--10.73952,19.86336,25.85088,23.66496,72.477504,44.8767
--10.5633,19.49409,25.35192,23.43132,73.232478,43.7955
--10.26432,18.62784,24.42528,22.61952,72.477504,44.1936
--10.6,19,24.9,23.2,76.26,44.85
--10.192,18.13,23.716,22.344,74.7348,44.56
--10.098,17.82,23.364,21.978,75.4974,44.0055
--9.9,17.226,22.671,21.384,75.4974,44.45
--9.31,15.96,21.09,19.95,72.447,41.5625
--9.0288,15.2361,20.40885,19.3743,71.72253,41.743
--8.93376,14.92128,19.9584,19.19808,72.477504,42.288
--8.924,14.841,19.885,19.206,73.9722,42.2241
--8.4681,13.92532,18.72391,18.06528,71.753034,42.1562
--8.36352,13.68576,18.43776,17.77248,72.477504,43.6095
--7.8432,12.768,17.1456,16.6896,69.64032,42.3936
--7.9002,12.69675,17.21115,16.64685,71.81658,42.9264
--7.7273,12.103,16.4787,16.1994,71.09116,43.0612
--7.524,11.8503,16.27065,15.89445,71.81658,43.1046
--7.9,12.2,16.8,16.7,76.35,43.86
--7.7,11.8,16.3,16.3,76.36,43.46
--6.84,10.3968,14.4096,14.4096,69.6312,41.667
--7.008,10.56,14.688,14.784,73.3056,43.06
--6.816,10.176,14.304,14.4,73.3056,43.14
--6.55776,9.59904,13.68576,13.87584,72.572544,42.288
--6.2377,9.0307,13.034,13.4064,71.09116,43.0612
--6.468,9.212,13.328,13.72,74.8328,42.4928
--6.02112,8.56128,12.41856,12.7008,71.839488,42.581
--5.952,8.448,12.192,12.864,73.3056,43.75
--5.529,7.64845,11.2423,11.70305,70.36574,40.907
--5.723,7.76,11.446,12.222,74.0692,41.9525
--5.36085,7.24185,10.81575,11.4741,71.81658,41.192
--5.1216,6.89088,10.33632,11.08128,71.106432,41.232
--5.08032,6.5856,10.06656,10.8192,71.839488,41.0592
--4.8412,6.2377,9.5893,10.5203,71.09116,41.1894
--4.752,6.08256,9.40896,10.4544,72.572544,41.8275
--4.60992,5.73888,9.03168,10.16064,71.933568,40.848
--4.512,5.568,8.928,9.984,73.3056,43.36
--4.2389,4.9761,8.20135,9.215,70.448675,41.6615
--4.0964,4.655,7.9135,9.0307,71.17495,42.1988
--3.96245,4.33105,7.46415,8.75425,70.448675,39.938
--3.97782,4.3659,7.56756,8.92584,74.084472,41.5912
--3.8016,4.08672,7.22304,8.64864,72.667584,42.0156
--3.783,3.977,6.984,8.439,74.1565,40.7012
--3.62637,3.62637,6.66468,8.33085,74.928645,41.6196
--3.3174,3.1331,5.98975,7.27985,70.45789,40.8855
--3.19872,2.91648,5.73888,7.33824,71.933568,40.3584
--3.0723,2.6068,5.3998,7.0756,71.18426,41.5912
--3.104,2.522,5.335,7.275,74.0692,43.06
--2.88,2.4,5.088,7.008,73.4016,43.46
--2.6448,2.0064,4.56,6.2928,69.7224,40.9536
--2.63452,1.78771,4.42223,6.30403,71.941214,41.6712
--2.592,1.44,4.32,6.144,73.3056,42.04
--2.6,1.3,4.1,6.2,76.45,43.14
--2.328,1.067,3.783,5.723,74.1565,42.76
--2.25792,0.9408,3.38688,5.36256,71.92416,41.5128
--2.09,0.76,3.23,5.035,72.6275,39.9285
--1.97505,0.5643,3.0096,4.98465,71.901225,39.862
--1.98,0.396,2.871,5.148,75.6954,41.9364
--1.75104,0.09216,2.39616,4.23936,70.45632,40.56
--1.782,-0.099,2.376,4.455,75.6954,42.2334
--1.64934,-0.38808,2.03742,4.07484,74.181492,42.1245
--1.5048,-0.65835,1.78695,3.9501,71.91063,40.622
--1.4553,-0.77616,1.55232,3.68676,74.181492,41.699
--1.2635,-0.81225,1.2635,3.51975,69.00515,39.938
--1.235,-1.045,1.14,3.42,72.6275,42.25
--1.15236,-1.15236,0.9603,3.36105,73.414935,41.5404
--1.2,-1.4,0.8,3.3,76.45,41.67
--1.01365,-1.56655,0.46075,2.7645,70.45789,39.5865
--0.95,-1.9,0.285,2.47,72.6275,39.862
--0.873,-2.134,0,2.328,74.1565,41.67
--0.76048,-2.28144,-0.09506,2.3765,72.682876,40.0319
--0.7524,-2.35125,-0.28215,2.16315,71.91063,41.2533
--0.65184,-2.42112,-0.4656,1.95552,71.19024,40.3132
--0.57036,-2.66168,-0.66542,1.80614,72.682876,40.621
--0.57618,-2.78487,-0.86427,1.72854,73.424538,41.3226
--0.48,-2.976,-1.056,1.344,73.392,41.26
--0.396,-3.366,-1.287,1.287,75.6954,41.0355
--0.3724,-3.4447,-1.4896,1.1172,71.17495,40.5132
--0.29403,-3.82239,-1.76418,0.88209,74.938446,40.9266
--0.285,-3.895,-1.9,0.855,72.637,39.482
--0.19,-3.895,-1.995,0.855,72.637,41.85
--0.2,-4.2,-2.3,0.5,76.46,42.04
--0.09603,-4.22532,-2.30472,0.38412,73.424538,41.3226
--0.09702,-4.3659,-2.52252,0.29106,74.181492,41.3226
-0,-4.37276,-2.56662,0.09506,72.67337,41.1992
-0,-4.704,-2.842,-0.294,74.9308,41.85
-0,-4.851,-3.00762,-0.19404,74.17179,41.1444
-0.09506,-4.94312,-3.13698,-0.57036,72.67337,41.1992
-0.09216,-4.88448,-3.13344,-0.55296,70.465536,40.176
-0.095,-5.13,-3.42,-0.57,72.637,41.56
-0.19008,-5.2272,-3.51648,-0.9504,72.667584,41.8275
-0.198,-5.643,-3.861,-1.188,75.6855,41.6196
-0.1881,-5.54895,-3.762,-1.3167,71.901225,41.1444
-0.19012,-5.89372,-4.08758,-1.80614,72.682876,40.9052
-0.294,-6.37,-4.41,-1.764,74.9308,41.74
-0.28512,-6.1776,-4.37184,-1.52064,72.667584,41.4315
-0.297,-6.336,-4.653,-1.584,75.6855,41.3226
-0.27645,-5.8976,-4.4232,-1.56655,70.36574,39.3775
-0.388,-6.208,-4.753,-1.746,74.1662,40.2065
-0.38,-6.27,-4.75,-2.28,72.637,39.273
-0.3724,-6.4239,-4.8412,-2.6999,71.18426,40.5132
-0.396,-7.128,-5.346,-2.772,75.6954,41.35
-0.38016,-6.93792,-5.2272,-2.47104,72.667584,39.5136
-0.37636,-6.86857,-5.26904,-2.54043,71.950623,39.9252
-0.38412,-6.91416,-5.47371,-2.49678,73.424538,40.6395
-0.38416,-6.91488,-5.57032,-2.401,73.432184,40.4348
-0.37632,-6.86784,-5.55072,-3.19872,71.933568,39.3024
-0.384,-7.296,-5.856,-3.552,73.4016,41.26
-0.38016,-7.50816,-5.89248,-3.61152,72.667584,40.5306
-0.388,-7.857,-6.208,-3.298,74.1662,39.8185
-0.3724,-7.5411,-6.0515,-3.1654,71.17495,40.1212
-0.3686,-7.46415,-6.0819,-3.3174,70.448675,38.893
-0.37248,-7.54272,-6.23904,-3.35232,71.208864,39.408
-0.38808,-7.95564,-6.59736,-3.58974,74.181492,40.9266
-0.3762,-7.80615,-6.48945,-3.5739,71.901225,38.9975
-0.38808,-8.2467,-6.7914,-3.8808,74.181492,40.229
-0.38412,-8.35461,-6.81813,-4.41738,73.424538,40.0222
-0.3686,-8.2935,-6.72695,-4.2389,70.45789,39.9252
-0.294,-8.918,-7.252,-4.312,74.9308,40.86
-0.28812,-8.83568,-7.29904,-4.22576,73.432184,39.935
-0.285,-8.74,-7.22,-4.37,72.637,40.94
-0.27645,-8.4778,-7.09555,-4.2389,70.45789,39.7215
-0.3,-9.2,-7.8,-4.6,76.46,40.86
-0.18432,-8.57088,-7.28064,-4.51584,70.465536,39.3024
-0.291,-9.118,-7.76,-4.656,74.1662,40.86
-0.198,-9.405,-8.019,-5.148,75.6855,40.86
-0.2,-9.6,-8.2,-5.1,76.46,40.75
-0.19,-9.31,-7.885,-4.94,72.637,38.7125
-0.0931,-9.2169,-7.8204,-5.0274,71.18426,40.4348
-0.09025,-8.93475,-7.67125,-5.054,68.996125,38.608
-0.095,-9.595,-8.17,-5.32,72.637,40.57
-0.09504,-9.78912,-8.26848,-5.51232,72.667584,40.0554
-0,-10.29,-8.722,-5.782,75.019,40.1212
-0,-10.08315,-8.6427,-5.7618,73.424538,40.3425
-0,-9.975,-8.55,-5.51,72.6275,40.94
--0.09216,-9.6768,-8.38656,-5.5296,70.45632,39.3024
--0.09215,-9.9522,-8.56995,-6.17405,70.45789,39.7118
--0.09603,-10.65933,-9.12285,-6.43401,73.414935,39.8185
--0.19,-10.545,-9.025,-6.27,72.637,38.7125
--0.196,-10.78,-9.408,-6.174,74.921,40.86
--0.196,-10.682,-9.408,-6.174,74.9308,40.0428
--0.29106,-10.57518,-9.41094,-6.20928,74.17179,40.6395
--0.288,-10.464,-9.312,-6.24,73.4016,39.5136
--0.396,-10.89,-9.702,-6.732,75.6954,40.94
--0.384,-10.848,-9.504,-7.104,73.392,40.86
--0.3686,-10.6894,-9.30715,-6.72695,70.448675,38.817
--0.495,-11.484,-9.999,-6.93,75.6954,40.86
--0.4656,-10.80192,-9.49824,-6.5184,71.199552,39.7118
--0.588,-11.27,-9.996,-6.86,74.921,40.86
--0.57,-10.925,-9.785,-6.65,72.637,38.532
--0.57,-10.925,-9.785,-6.65,72.6275,40.75
--0.67914,-11.25432,-10.09008,-6.98544,74.17179,40.3425
--0.784,-11.466,-10.29,-6.958,74.921,39.935
--0.7372,-10.96585,-9.67575,-6.8191,70.45789,38.437
--0.73728,-11.0592,-9.76896,-7.00416,70.465536,39.2256
--0.84645,-11.286,-10.06335,-7.1478,71.901225,40.0554
--0.83808,-11.36064,-10.05696,-7.17024,71.199552,38.8416
--0.9702,-11.83644,-10.57518,-7.56756,74.17179,40.1544
--0.9504,-11.68992,-10.4544,-7.41312,72.667584,40.4514
--1.01365,-11.4266,-10.22865,-7.27985,70.45789,39.4208
--1.01376,-11.52,-10.32192,-7.55712,70.557696,39.12
--1.14,-11.97,-10.735,-7.98,72.6275,40.45
--1.188,-12.771,-11.286,-8.514,75.6954,39.9465
--1.24839,-12.4839,-11.04345,-8.16255,73.424538,39.3432
--1.287,-12.87,-11.484,-8.217,75.7944,40.45
--1.358,-12.513,-11.252,-7.954,74.1662,39.2462
--1.2768,-11.7648,-10.6704,-7.8432,69.7224,38.4275
--1.47,-12.838,-11.564,-8.722,74.9308,40.56
--1.3965,-12.4754,-11.0789,-8.6583,71.17495,39.6508
--1.50528,-12.7008,-11.2896,-8.56128,71.933568,38.8416
--1.53648,-12.86802,-11.61963,-8.45064,73.424538,40.3425
--1.7,-13.3,-12.1,-8.7,76.45,40.56
--1.74636,-12.90366,-11.73942,-8.44074,74.181492,40.1643
--1.8,-13.2,-12.1,-8.7,76.46,40.75
--1.71475,-12.00325,-11.0105,-7.7615,69.00515,38.7125
--1.84338,-13.00068,-11.83644,-8.7318,74.181492,40.5306
--1.96,-13.328,-12.152,-9.212,74.921,39.8272
--2.058,-13.524,-12.25,-9.408,75.0288,40.0428
--2.079,-13.761,-12.474,-9.405,75.6954,40.86
--1.9855,-12.54475,-11.3715,-8.39325,68.996125,38.817
--2.0273,-12.80885,-11.6109,-8.56995,70.45789,39.7118
--2.25423,-13.62339,-12.34926,-9.11493,74.938446,40.7484
--2.254,-13.622,-12.446,-9.31,74.9308,41.26
--2.23488,-12.94368,-11.91936,-8.75328,71.28336,39.408
--2.352,-13.1712,-12.04224,-8.9376,71.933568,40.3368
--2.328,-13.0368,-11.91936,-8.93952,71.28336,39.9252
--2.42112,-13.12992,-12.01248,-8.93952,71.28336,39.3024
--2.47,-13.49,-12.255,-9.405,72.732,38.9975
--2.59281,-13.73229,-12.4839,-9.50697,73.510965,40.5306
--2.63452,-13.54896,-12.32579,-9.31491,72.025895,39.6342
--2.6334,-13.63725,-12.4146,-9.405,71.901225,40.2336
--2.6448,-13.224,-12.0384,-9.0288,69.73152,38.608
--2.70048,-13.59552,-12.38496,-9.49824,71.28336,39.408
--2.94,-14.308,-13.132,-10.094,75.019,40.94
--2.976,-14.112,-12.864,-9.792,73.4016,40.75
--2.8861,-13.7788,-12.5685,-9.6824,71.26805,38.608
--3.104,-14.453,-13.095,-10.185,74.2535,39.3432
--3.267,-14.751,-13.464,-10.494,75.7845,40.3425
--3.13698,-14.259,-13.02322,-10.17142,72.76843,39.4208
--3.13344,-13.824,-12.62592,-9.76896,70.557696,38.8416
--3.1008,-13.68,-12.5856,-9.7584,69.82272,38.437
--3.465,-14.949,-13.761,-10.692,75.7845,40.0455
--3.564,-15.147,-13.86,-10.989,75.7845,40.1544
--3.6,-15.5,-14.1,-11.1,76.55,40.45
--3.40955,-14.28325,-12.99315,-10.04435,70.540825,38.4275
--3.648,-14.784,-13.632,-10.176,73.488,38.832
--3.686,-14.841,-13.774,-10.476,74.2535,40.56
--3.74517,-14.69259,-13.63626,-10.46727,73.510965,39.6342
--3.59385,-14.28325,-13.17745,-10.59725,70.540825,39.2365
--3.7248,-14.61984,-13.40928,-10.80192,71.292672,39.2462
--4.059,-15.642,-14.355,-11.286,75.7845,40.2336
--3.85728,-14.77056,-13.6416,-10.44288,72.01824,39.8272
--3.9102,-14.6167,-13.4995,-10.3341,71.27736,38.437
--4.128,-14.976,-13.92,-10.56,73.488,40.35
--3.88075,-14.079,-13.1765,-9.9275,69.086375,38.3325
--4.18176,-14.82624,-13.7808,-10.73952,72.75312,40.1544
--4.1472,-14.37696,-13.45536,-10.41408,70.54848,38.832
--4.23225,-14.76585,-13.7313,-10.9098,71.995275,38.4275
--4.41784,-15.27036,-14.11788,-11.0446,73.528224,39.3568
--4.3757,-14.896,-13.7788,-10.7996,71.27736,39.4352
--4.653,-15.939,-14.751,-11.682,75.7845,40.35
--4.60992,-15.55848,-14.30996,-11.23668,73.51862,39.543
--4.4688,-15.0822,-13.8719,-10.8927,71.26805,39.7488
--4.753,-15.617,-14.453,-11.252,74.2535,39.2365
--4.95,-16.038,-14.85,-11.682,75.7845,40.45
--4.85,-15.714,-14.55,-11.446,74.2535,39.3432
--4.74912,-15.17856,-14.06112,-11.08128,71.292672,39.6342
--5.044,-15.908,-14.744,-11.737,74.2535,39.6342
--4.992,-15.84,-14.688,-11.712,73.488,39.0144
--5.09012,-15.94264,-14.69412,-11.5248,73.51862,40.1212
--5.238,-16.102,-14.841,-11.834,74.2632,40.64
--5.238,-16.005,-14.938,-11.737,74.2535,41.05
--5.17495,-15.61894,-14.48986,-11.38489,72.025895,39.7118
--5.6,-16.7,-15.5,-12.1,76.55,41.05
--5.21472,-15.64416,-14.4336,-11.64,71.28336,39.5275
--5.41842,-15.97008,-14.82936,-11.8825,72.76843,39.7118
--5.47371,-16.22907,-14.98068,-12.09978,73.520568,40.4514
--5.45664,-15.89952,-14.77056,-11.76,72.01824,39.408
--5.43685,-15.57335,-14.46755,-11.4266,70.540825,38.893
--5.7618,-16.3251,-15.17274,-12.09978,73.510965,40.4514
--5.94,-16.83,-15.642,-12.672,75.7845,40.7385
--5.97861,-16.75971,-15.58359,-12.54528,75.026655,40.3425
--5.73705,-16.08255,-14.95395,-12.0384,72.00468,38.893
--5.7722,-16.0132,-14.8029,-11.8237,71.26805,38.817
--5.92704,-16.27584,-15.0528,-12.2304,72.027648,39.3024
--6.237,-17.127,-15.939,-12.771,75.7845,40.64
--6.208,-16.781,-15.617,-12.61,74.2535,39.2365
--6.3063,-16.78446,-15.62022,-12.51558,74.26881,39.7488
--6.11325,-16.3647,-15.2361,-12.2265,72.00468,38.608
--6.27396,-16.54044,-15.39972,-12.45286,72.682876,38.9552
--6.17472,-16.128,-14.92992,-12.07296,70.465536,39.792
--6.30403,-16.46575,-15.33667,-12.04352,71.941214,40.0222
--6.59736,-17.07552,-15.81426,-12.6126,74.17179,39.7488
--6.62607,-16.90128,-15.74892,-12.77199,73.424538,39.3432
--6.42528,-16.38912,-15.27168,-12.38496,71.199552,39.3432
--6.72,-16.992,-15.84,-12.768,73.4016,40.848
--6.74784,-16.72704,-15.6816,-12.54528,72.572544,41.3376
--6.40775,-15.97425,-14.89125,-12.00325,68.9149,38.608
--7.128,-17.523,-16.335,-13.365,75.5964,41.95
--6.77448,-16.74802,-15.61894,-12.70215,71.847124,39.7118
--6.86565,-16.7409,-15.6123,-12.69675,71.81658,41.1444
--7.326,-17.721,-16.533,-13.464,75.5964,41.5404
--7.10696,-17.2872,-16.03868,-13.34956,73.345748,41.1208
--7.2765,-17.56062,-16.29936,-13.38876,74.084472,42.1146
--7.2765,-17.56062,-16.29936,-13.48578,73.997154,42.7086
--7.00416,-16.68096,-15.57504,-12.71808,70.281216,46.6848
--7.47054,-17.56062,-16.39638,-13.48578,73.987452,47.7477
--7.47054,-17.65764,-16.4934,-13.48578,73.997154,47.187
--7.33824,-17.12256,-15.9936,-13.1712,71.754816,47.8464
--7.821,-18.117,-16.929,-13.86,75.4974,45.5697
--7.42995,-17.3052,-16.08255,-13.167,71.72253,47.1636
--7.4496,-17.13408,-16.01664,-13.0368,71.022624,43.3008
--7.69824,-17.48736,-16.34688,-13.3056,72.477504,44.9856
--7.62048,-17.31072,-16.18176,-13.1712,71.745408,44.8252
--7.63584,-17.13408,-16.01664,-13.40928,71.013312,46.4064
--7.7273,-17.2235,-16.1063,-13.4995,71.00737,45.717
--7.885,-17.67,-16.53,-13.585,72.447,47.34
--8.4,-18.6,-17.4,-14.1,76.26,47.24
--7.90272,-17.49888,-16.36992,-13.45344,71.839488,46.3104
--8.33,-18.228,-17.15,-14.014,74.8328,46.3932
--7.83275,-17.23205,-16.12625,-13.2696,70.374955,44.9825
--8.09088,-17.68704,-16.464,-13.82976,71.839488,45.8248
--8.18235,-17.6814,-16.5528,-13.63725,71.81658,42.5125
--8.26848,-17.96256,-16.72704,-13.68576,72.572544,41.8944
--8.0256,-17.1456,-16.0512,-13.3152,69.73152,41.8475
--8.455,-17.86,-16.72,-13.585,72.6275,40.8025
--8.03225,-16.967,-15.97425,-13.08625,69.00515,40.8025
--8.7318,-18.33678,-17.17254,-14.16492,74.181492,41.9832
--8.6436,-18.2476,-17.09512,-14.30996,73.432184,41.7774
--8.65046,-18.15646,-17.01574,-14.06888,72.682876,41.4869
--8.47872,-17.60256,-16.49664,-13.54752,70.54848,40.848
--8.65536,-17.96928,-16.84032,-14.01792,72.027648,41.136
--8.74665,-17.96355,-16.83495,-13.82535,72.00468,40.4225
--8.84058,-18.0614,-17.01574,-14.06888,72.76843,40.8758
--8.93564,-18.15646,-17.1108,-14.06888,72.777936,40.8855
--9.306,-19.008,-17.82,-14.751,75.7944,42.55
--9.12,-18.528,-17.376,-14.4,73.4976,42.44
--9.504,-19.107,-17.919,-14.949,75.7944,42.55
--9.50697,-18.91593,-17.73981,-14.60349,75.134466,42.3324
--9.312,-18.528,-17.376,-14.304,73.584,42.66
--9.22082,-18.34658,-17.20586,-14.259,72.86349,41.9048
--9.1238,-17.9683,-16.9442,-14.0581,71.37046,40.527
--9.504,-18.624,-17.472,-14.496,73.584,40.7424
--9.604,-18.7278,-17.57532,-14.406,73.61466,41.699
--10,-19.5,-18.3,-15.2,76.66,42.55
--9.696,-18.72,-17.664,-14.592,73.5936,40.848
--9.999,-19.305,-18.216,-15.048,75.8934,42.1245
--9.49824,-18.1584,-17.13408,-14.06112,71.37648,40.9536
--9.3024,-17.784,-16.7808,-13.9536,69.9048,40.812
--9.29575,-17.59875,-16.606,-13.80825,69.176625,40.8025
--10.09503,-19.20996,-18.03384,-15.09354,75.124665,42.4215
--10.19304,-19.20996,-18.13185,-15.28956,75.222675,42.3324
--9.87525,-18.52785,-17.39925,-14.4837,72.183375,40.622
--9.975,-18.81,-17.67,-14.63,72.9125,40.8025
--9.8686,-18.3407,-17.3166,-14.3374,71.45425,40.983
--10.07424,-18.72288,-17.67744,-14.63616,72.857664,42.4215
--10.16928,-18.72288,-17.67744,-14.44608,72.9432,42.5304
--10.06656,-18.62784,-17.49888,-14.5824,72.2064,41.4144
--10.476,-19.206,-18.139,-15.132,74.4475,41.8458
--10.46727,-19.10997,-17.95761,-14.98068,73.703025,42.8175
--10.46836,-19.11196,-17.95948,-15.07828,73.7107,42.6692
--10.241,-18.5269,-17.4097,-14.3374,71.45425,41.192
--10.5633,-19.10997,-17.95761,-14.88465,73.703025,42.9264
--10.54944,-18.91296,-17.86752,-14.7312,72.9432,43.0254
--10.54944,-18.91296,-17.86752,-14.7312,72.9432,43.0254
--10.75648,-19.11196,-18.05552,-14.98224,73.7107,42.385
--11.074,-19.502,-18.424,-15.19,75.215,43.25
--10.62765,-18.71595,-17.6814,-14.57775,72.183375,41.0875
--10.61568,-18.53088,-17.50656,-14.4336,71.4696,41.9525
--11.4,-19.9,-18.8,-15.4,76.75,43.25
--10.7065,-18.62,-17.5959,-14.7098,71.45425,41.192
--11.04,-19.2,-18.144,-14.976,73.68,43.06
--10.7996,-18.7131,-17.5959,-14.7098,71.45425,40.983
--10.5792,-18.24,-17.2368,-14.4096,69.996,40.983
--10.78272,-18.52416,-17.41824,-14.37696,70.7328,41.6256
--10.78155,-18.43,-17.41635,-14.5597,70.725125,42.0592
--11.8,-20.1,-19,-15.7,76.75,43.25
--10.9858,-18.7131,-17.689,-14.7098,71.45425,42.1988
--11.781,-19.899,-18.81,-15.741,75.9825,42.6294
--11.424,-19.296,-18.24,-15.264,73.68,42.95
--11.6424,-19.50102,-18.4338,-15.13512,74.46285,42.4116
--12,-20.2,-19,-16,76.75,42.93
--11.73942,-19.69506,-18.53082,-15.42618,74.46285,42.4215
--11.61963,-19.49409,-18.34173,-15.26877,73.703025,42.1245
--11.36064,-18.90336,-17.78592,-14.71296,71.4696,40.848
--11.59732,-19.20212,-18.15646,-15.01948,72.95855,41.1668
--11.931,-19.691,-18.527,-15.423,74.4475,42.55
--11.4266,-18.6143,-17.60065,-14.65185,70.725125,40.527
--11.78496,-19.19808,-18.15264,-15.01632,72.9432,42.1245
--11.51875,-18.70645,-17.60065,-14.744,70.725125,40.4225
--12.1275,-19.69506,-18.62784,-15.5232,74.46285,41.5128
--11.6375,-18.8993,-17.8752,-14.9891,71.45425,41.8068
--12.6,-20.4,-19.2,-16,76.75,42.44
--12.07008,-19.38816,-18.24768,-15.11136,72.9432,42.0156
--12.065,-19.38,-18.24,-15.39,72.903,42.15
--12.04224,-19.19232,-18.06336,-15.0528,72.2064,41.405
--11.6736,-18.6048,-17.5104,-14.4096,69.996,40.033
--12.26274,-19.39224,-18.34658,-15.2096,72.95855,40.9825
--12.13245,-19.1862,-18.15165,-15.14205,72.183375,40.242
--12.48,-19.68,-18.528,-15.456,73.68,40.3584
--12.4852,-19.6882,-18.53572,-15.3664,73.7107,41.1208
--12.32055,-19.28025,-18.2457,-15.33015,72.183375,40.242
--12.707,-19.885,-18.818,-15.52,74.4475,42.45
--12.0384,-18.696,-17.6928,-14.6832,69.996,39.938
--12.80664,-19.8891,-18.82188,-15.81426,74.46285,41.2972
--12.635,-19.475,-18.43,-15.295,72.903,42.04
--12.25728,-18.8928,-17.87904,-14.7456,70.7328,40.3584
--12.90366,-19.98612,-18.82188,-15.5232,74.46285,41.013
--12.6027,-19.3743,-18.2457,-15.2361,72.19278,41.6196
--12.312,-18.7872,-17.6928,-14.8656,69.9048,40.3584
--12.312,-18.7872,-17.6928,-14.8656,69.996,40.3584
--12.825,-19.57,-18.525,-15.58,72.9125,39.9285
--12.92544,-19.57824,-18.5328,-15.58656,72.857664,41.6097
--12.7908,-19.46835,-18.33975,-15.2361,72.183375,40.1375
--12.89033,-19.47663,-18.34755,-15.33667,72.119985,40.5945
--13.15748,-19.88028,-18.7278,-15.75056,73.61466,41.111
--12.9789,-19.46835,-18.4338,-15.4242,72.089325,39.7575
--13.662,-20.493,-19.305,-16.137,75.8934,41.5404
--12.5856,-18.8784,-17.8752,-14.8656,69.9048,39.7575
--12.81024,-19.07712,-18.06336,-15.11424,70.649856,40.176
--12.9409,-19.2717,-18.2476,-15.3615,71.36115,40.8268
--13.72,-20.384,-19.208,-15.974,75.117,41.1208
--13.0368,-19.36896,-18.25152,-15.3648,71.37648,40.176
--13.26105,-19.5624,-18.4338,-15.4242,72.089325,41.2533
--12.72525,-18.772,-17.689,-14.801,69.176625,39.482
--13.08672,-19.16928,-18.06336,-15.11424,70.64064,39.8976
--12.9504,-18.9696,-17.8752,-15.1392,69.9048,39.482
--12.8155,-18.772,-17.77925,-14.71075,69.176625,39.7575
--13.17888,-19.16928,-18.15552,-15.2064,70.64064,39.8976
--13.0416,-19.0608,-17.9664,-14.9568,69.9048,39.7575
--13.40928,-19.46208,-18.34464,-15.17856,71.37648,40.3132
--13.54752,-19.66272,-18.53376,-15.42912,72.121728,40.8366
--14.4,-20.9,-19.8,-16.5,76.65,41.45
--13.224,-19.0608,-18.0576,-15.1392,69.91392,39.482
--13.4995,-19.551,-18.4338,-15.5477,71.36115,39.482
--14.16492,-20.27718,-19.20996,-16.20234,74.375532,40.6308
--14.016,-20.064,-19.008,-15.744,73.584,41.45
--14.26194,-20.27718,-19.20996,-16.10532,74.36583,41.2533
--13.97088,-19.86336,-18.81792,-15.77664,72.84816,39.792
--13.68864,-19.5552,-18.43776,-15.45792,71.37648,40.2065
--14.06592,-19.9584,-18.91296,-15.6816,72.762624,40.0704
--13.92384,-19.38048,-17.96928,-15.24096,72.11232,40.7288
--14.453,-19.303,-16.975,-16.781,74.3602,40.4878
--14.16096,-17.96256,-15.6816,-16.53696,72.84816,40.0704
--14.602,-17.738,-15.288,-17.248,75.0288,41.96
--14.406,-16.807,-14.21392,-16.90304,73.61466,41.013
--14.85,-17.523,-14.553,-13.761,75.7944,41.4315
--14.06112,-17.87904,-15.08544,-14.80608,71.292672,40.0032
--15.1,-19.6,-16.8,-15.8,76.56,41.74
--14.35406,-18.72682,-16.1602,-14.63924,72.777936,40.9052
--14.30168,-18.53573,-16.18348,-14.30168,72.035304,40.4878
--14.44,-18.715,-16.53,-14.44,72.732,41.67
--14.59808,-18.82384,-16.807,-14.50204,73.528224,40.9052
--14.09895,-18.0614,-16.2184,-14.0068,70.55004,40.4878
--14.2443,-18.2476,-16.4787,-14.0581,71.27736,39.6625
--15.147,-19.404,-17.622,-15.048,75.7944,41.2533
--15.09354,-19.20996,-17.54379,-15.09354,75.036456,41.5404
--14.34048,-18.34464,-16.7616,-14.71296,71.292672,40.5945
--14.19264,-18.33984,-16.68096,-14.37696,70.557696,40.0704
--14.136,-18.1488,-16.5984,-14.3184,69.82272,39.862
--14.725,-19,-17.385,-14.725,72.732,39.653
--14.976,-19.2,-17.664,-14.88,73.5072,41.67
--14.67648,-18.816,-17.4048,-14.86464,72.027648,40.0704
--15.132,-19.497,-17.945,-15.132,74.2632,40.2065
--15.132,-19.497,-18.042,-15.423,74.2632,40.3132
--15.7,-20.1,-18.7,-15.8,76.56,41.26
--14.61984,-18.81024,-17.41344,-14.71296,71.292672,39.6096
--15.17274,-19.39806,-17.95761,-15.07671,73.520568,40.0998
--15.01948,-19.10706,-17.87128,-15.01948,72.777936,40.1095
--15.8,-20.2,-18.8,-15.9,76.46,41.34
--15.01632,-19.19808,-17.96256,-15.2064,72.677088,40.9365
--15.01632,-19.29312,-17.96256,-15.2064,72.762624,40.9365
--14.65344,-18.80064,-17.5104,-14.7456,70.557696,39.8976
--14.5008,-18.6048,-17.328,-14.592,69.82272,39.792
--15.9,-20.3,-19,-16,76.56,41.26
--15.3648,-19.59012,-18.34173,-15.46083,73.520568,40.9266
--14.592,-18.696,-17.4192,-14.6832,69.82272,39.8976
--15.84,-20.295,-19.008,-16.038,75.7944,40.7484
--14.83615,-18.89075,-17.6928,-14.83615,70.45789,39.9252
--15.14205,-19.28025,-18.0576,-14.95395,71.91063,40.7484
--15.30466,-19.4873,-18.34658,-15.39972,72.682876,40.0222
--14.83615,-18.89075,-17.78495,-14.83615,70.45789,39.2825
--15.714,-19.982,-18.721,-15.714,74.1662,40.0319
--15.24258,-19.38254,-18.15937,-15.24258,71.941214,39.9252
--14.92992,-18.98496,-17.87904,-14.7456,70.465536,39.6096
--15.811,-20.079,-18.818,-15.908,74.1662,39.9252
--15.65452,-19.88028,-18.63176,-15.46244,73.432184,40.229
--16.137,-20.493,-19.305,-16.137,75.6954,41.26
--15.65289,-19.87821,-18.62982,-15.55686,73.424538,39.9252
--15.27168,-19.27584,-18.06528,-15.27168,71.199552,39.8185
--15.58,-19.665,-18.525,-15.39,72.637,41.05
--15.3615,-19.2717,-18.1545,-15.0822,71.18426,38.9975
--15.58656,-19.76832,-18.5328,-15.58656,72.667584,39.3024
--16.17165,-20.38608,-19.20996,-16.07364,74.938446,40.7484
--15.6816,-19.76832,-18.62784,-15.49152,72.65808,40.6395
--16.17165,-20.38608,-19.20996,-16.07364,74.938446,40.6395
--15.6816,-19.76832,-18.62784,-15.58656,72.667584,39.408
--16.434,-20.592,-19.404,-16.236,75.6954,40.6395
--15.1392,-19.0608,-17.9664,-14.9568,69.73152,38.9975
--15.2304,-19.0608,-17.9664,-15.1392,69.73152,39.273
--15.07175,-18.86225,-17.77925,-14.89125,69.00515,38.9975
--15.07175,-18.86225,-17.77925,-14.801,69.00515,38.9975
--15.07175,-18.86225,-17.77925,-14.89125,69.00515,38.893
--16.366,-20.482,-19.306,-16.268,74.9308,40.229
--16.296,-20.37,-19.206,-16.005,74.1662,40.94
--16.296,-20.37,-19.206,-16.199,74.1759,39.7118
--15.97008,-19.9626,-18.82188,-15.77996,72.682876,40.1212
--16.296,-20.37,-19.206,-16.102,74.1662,39.7118
--16.39638,-20.3742,-19.20996,-16.20234,74.181492,40.5306
--15.4128,-19.2432,-18.1488,-15.1392,69.73152,39.197
--15.4128,-18.6048,-16.7808,-15.048,69.73152,39.6864
--16.06176,-18.5328,-16.25184,-16.25184,72.572544,39.408
--16.66,-18.032,-15.778,-17.248,74.8328,41.05
--15.9953,-16.84211,-14.39577,-16.27757,71.856533,39.9252
--15.9885,-16.27065,-13.63725,-16.64685,71.825985,39.102
--16.1568,-17.48736,-14.44608,-14.16096,72.572544,39.6096
--16.245,-18.525,-15.675,-15.105,72.542,39.102
--16.758,-19.404,-16.562,-15.288,74.8328,41.45
--15.75765,-18.2457,-15.75765,-14.1911,70.36574,39.482
--16.59042,-19.11294,-16.78446,-14.94108,74.084472,40.8474
--16.18176,-18.53376,-16.36992,-14.39424,71.839488,40.621
--16.85772,-19.20996,-17.15175,-14.79951,74.840436,40.7385
--16.68744,-19.01592,-17.07552,-14.74704,74.084472,40.8474
--16.684,-19.109,-17.169,-14.938,74.0789,39.9252
--15.523,-17.77925,-16.15475,-13.8985,68.9149,38.9975
--16.27065,-18.6219,-16.929,-14.57775,71.81658,39.102
--16.781,-19.303,-17.557,-15.229,74.0692,40.0222
--16.781,-19.4,-17.654,-15.326,74.0692,40.0222
--16.44192,-19.10304,-17.39232,-14.82624,72.572544,40.5306
--15.94368,-18.52416,-16.95744,-14.56128,70.373376,40.0704
--16.70922,-19.30203,-17.76555,-14.98068,73.328508,41.7285
--16.53,-19.19,-17.575,-15.01,72.542,39.102
--16.88148,-19.59804,-18.04572,-15.13512,74.094174,40.8366
--16.54044,-19.20212,-17.68116,-15.01948,72.587816,40.9052
--16.53696,-19.19808,-17.77248,-14.92128,72.477504,39.6096
--16.71096,-19.49612,-18.05552,-15.46244,73.249708,40.7288
--16.70922,-19.49409,-18.05364,-15.26877,73.242081,41.3226
--15.96,-18.6048,-17.2368,-14.6832,69.55824,39.8976
--16.12625,-18.7986,-17.5085,-14.83615,70.27359,40.5945
--16.46575,-19.19436,-17.8771,-15.14849,71.753034,40.8758
--16.625,-19.38,-18.05,-15.105,72.447,41.95
--17.15,-20.09,-18.718,-15.68,74.7446,40.9052
--16.3856,-19.0855,-17.7821,-15.0822,70.99806,40.7288
--17.07552,-19.8891,-18.62784,-15.71724,73.987452,42.1245
--16.55808,-19.2864,-18.06336,-15.0528,71.754816,40.8366
--16.896,-19.776,-18.432,-15.456,73.2192,40.848
--17.072,-19.982,-18.721,-15.714,73.9819,42.55
--16.48224,-19.18272,-17.97216,-15.08544,71.013312,40.6656
--16.64685,-19.3743,-18.15165,-15.2361,71.637885,40.318
--16.992,-19.776,-18.528,-15.648,73.1232,42.85
--17.169,-20.079,-18.818,-15.714,73.8849,42.66
--17.169,-20.079,-18.818,-15.714,73.8849,42.76
--16.82562,-19.67742,-18.5367,-15.58984,72.407202,40.9825
--16.74624,-19.47456,-18.3456,-15.33504,71.660736,40.6656
--17.444,-20.384,-19.11,-15.876,74.6466,41.9048
--16.4027,-19.1672,-17.96925,-15.02045,70.190655,41.2735
--16.2336,-18.9696,-17.784,-14.9568,69.46704,40.242
--16.5718,-19.3648,-18.2476,-15.2684,70.91427,40.242
--16.91712,-19.76832,-18.62784,-15.58656,72.391968,40.4544
--17.542,-20.384,-19.208,-16.072,74.6368,42.44
--16.6649,-19.4579,-18.2476,-15.2684,70.91427,40.033
--16.6649,-19.4579,-18.3407,-15.4546,70.91427,42.091
--17.005,-19.855,-18.715,-15.675,72.2665,40.4225
--17.54379,-20.48409,-19.30797,-16.17165,74.654217,42.1245
--16.66848,-19.46208,-18.34464,-15.45792,70.836384,41.2735
--16.84032,-19.66272,-18.53376,-15.61728,71.566656,41.4144
--16.929,-19.65645,-18.52785,-15.6123,71.543835,40.318
--16.929,-19.7505,-18.6219,-15.6123,71.55324,41.8275
--16.416,-19.152,-18.0576,-15.048,69.37584,40.4225
--17.1108,-19.9626,-18.82188,-15.6849,72.312142,41.9525
--16.9362,-19.7589,-18.62982,-15.71303,71.574263,41.3802
--17.2854,-20.26233,-19.01394,-15.74892,73.050021,42.0592
--17.557,-20.467,-19.303,-16.005,73.7879,41.7682
--17.20586,-20.05766,-18.91694,-15.77996,72.312142,42.1988
--16.85472,-19.46208,-17.87904,-15.08544,70.836384,41.0892
--16.5072,-18.24,-16.1424,-15.7776,69.37584,40.1375
--17.919,-18.711,-16.335,-18.018,75.3192,42.96
--16.85472,-16.94784,-14.71296,-17.04096,70.836384,40.7788
--17.38324,-16.90304,-14.30996,-17.19116,73.057628,42.7672
--16.94784,-16.296,-13.59552,-13.5024,70.836384,42.1465
--16.5984,-17.5104,-14.592,-14.4096,69.37584,40.7424
--17.12438,-18.53573,-15.80712,-14.86622,71.574263,40.9825
--17.30092,-18.82188,-16.1602,-14.82936,72.312142,42.385
--16.5984,-18.1488,-15.7776,-14.136,69.37584,40.983
--17.836,-19.404,-17.052,-15.19,74.5486,42.6594
--17.65764,-19.11294,-16.9785,-14.94108,73.803114,42.3423
--17.385,-18.715,-16.72,-14.535,72.2665,43.06
--17.75466,-19.11294,-17.26956,-14.84406,73.803114,42.385
--17.75466,-19.11294,-17.26956,-14.84406,73.803114,44.5896
--17.751,-19.206,-17.46,-15.035,73.7879,43.45
--17.21847,-18.72391,-17.03029,-14.58395,71.574263,41.7682
--17.93583,-19.602,-17.83782,-15.28956,74.556207,43.1046
--16.6896,-18.3312,-16.6896,-14.3184,69.37584,41.3535
--17.39232,-19.10304,-17.48736,-15.01632,72.296928,42.4608
--18.3,-20.1,-18.4,-15.8,75.98,43.06
--17.39598,-19.10706,-17.5861,-14.92442,72.312142,40.9825
--17.49104,-19.20212,-17.68116,-15.01948,72.312142,42.9828
--18.216,-19.998,-18.513,-15.741,75.3093,43.64
--18.032,-19.796,-18.326,-15.484,74.4506,42.7672
--17.31072,-19.09824,-17.68704,-14.95872,71.472576,42.1056
--17.13408,-18.90336,-17.59968,-14.8992,70.752576,42.0592
--18.032,-19.992,-18.522,-15.68,74.3036,44.1392
--18.032,-19.992,-18.62,-15.68,74.3134,45.23
--18.032,-19.992,-18.62,-15.68,74.3232,47.35
--16.69625,-18.50125,-17.1475,-14.6205,68.436575,44.3175
--17.76555,-19.68615,-18.34173,-15.65289,72.819549,42.9264
--18.315,-20.295,-18.909,-15.84,75.0618,44.15
--18.315,-20.295,-19.008,-15.939,75.0618,42.2235
--17.9487,-19.8891,-18.62784,-15.81426,73.560564,42.3324
--17.9487,-19.98612,-18.62784,-15.91128,73.473246,42.8175
--17.04775,-18.9829,-17.78495,-14.9283,69.785195,40.8758
--16.872,-18.8784,-17.6016,-14.7744,69.06576,39.0925
--18.315,-20.493,-19.206,-16.137,74.9727,41.0355
--16.872,-18.8784,-17.6928,-14.9568,69.06576,39.6864
--18.414,-20.493,-19.206,-16.236,74.9727,41.4315
--17.856,-19.872,-18.624,-15.648,72.7008,43.53
--17.856,-19.968,-18.72,-15.744,72.7008,44.34
--17.67,-19.76,-18.525,-15.58,71.9435,45.15
--17.856,-19.968,-18.72,-15.552,72.7008,42.1824
--17.86344,-19.97632,-18.7278,-15.8466,72.731092,41.9832
--17.856,-19.968,-18.816,-15.744,72.7008,40.944
--16.9632,-19.0608,-17.8752,-14.8656,69.06576,41.4144
--17.4933,-19.65645,-18.4338,-15.6123,71.224065,42.408
--18.228,-20.482,-19.306,-16.366,74.2154,45.04
--18.14274,-20.27718,-19.11294,-16.0083,73.473246,43.0155
--17.23392,-19.3536,-18.15552,-15.2064,69.875712,43.056
--18.7,-21,-19.7,-16.6,75.82,45.15
--18.7,-21,-19.8,-16.6,75.83,46.24
--17.95948,-20.1684,-19.01592,-15.94264,72.817528,43.855
--18.139,-20.37,-19.206,-16.199,73.5551,45.1438
--17.77622,-20.05766,-18.82188,-15.87502,72.074492,45.5318
--17.952,-20.16,-19.008,-16.032,72.7968,46.03
--18.424,-20.188,-18.13,-16.17,74.3134,44.7468
--17.5028,-18.3407,-16.0132,-16.3856,70.59773,45.9032
--17.68892,-17.59483,-15.24258,-16.65393,71.348447,46.3175
--17.86752,-17.1072,-14.54112,-17.01216,72.068832,45.8865
--18.424,-17.052,-14.308,-17.346,74.3036,47.187
--18.42588,-17.83782,-14.7015,-14.21145,74.320983,50.6088
--17.6814,-18.2457,-15.33015,-15.048,71.318115,48.5735
--17.68704,-18.62784,-15.80544,-14.86464,71.331456,51.9694
--17.87128,-18.82188,-16.1602,-14.7343,72.217082,49.9841
--17.50656,-18.43776,-16.01664,-14.34048,70.743264,51.0511
--17.86,-18.715,-16.435,-14.345,72.1715,51.05
--17.50656,-18.34464,-16.296,-14.15424,70.752576,50.2751
--18.711,-19.503,-17.424,-15.048,75.2103,52.55
--18.9,-19.7,-17.7,-15.2,76.07,53.03
--18.14967,-19.01394,-17.09334,-14.59656,72.963594,50.4691
--17.78112,-18.62784,-16.84032,-14.48832,71.576064,50.9088
--18.15156,-19.11196,-17.38324,-14.98224,73.057628,53.263
--18.522,-19.6,-17.836,-15.484,74.5584,53.0474
--18.711,-19.899,-18.117,-15.543,75.3093,54.24
--18.14967,-19.206,-17.57349,-14.98068,73.050021,52.7098
--18.14967,-19.30203,-17.66952,-15.17274,73.146051,53.9847
--17.2368,-18.3312,-16.872,-14.2272,69.38496,52.3735
--17.955,-19.19,-17.67,-14.915,72.3615,56.14
--17.78301,-19.00618,-17.50074,-15.0544,71.668353,54.5334
--18.144,-19.392,-17.952,-15.264,73.1328,55.6224
--19,-20.3,-18.8,-15.9,76.07,55.63
--18.144,-19.584,-18.048,-15.264,73.1232,53.5104
--18.05,-19.38,-17.955,-15.01,72.3615,51.908
--18.62,-19.992,-18.522,-15.582,74.6466,56.23
--17.8695,-19.1862,-17.8695,-15.14205,71.62848,54.5688
--17.5104,-18.8928,-17.5104,-14.92992,70.189056,51.6768
--18.43,-19.885,-18.43,-15.714,73.8849,51.8368
--18.24,-19.776,-18.336,-15.456,73.1232,50.5248
--17.5085,-18.9829,-17.6928,-14.9283,70.190655,49.9985
--18.0576,-19.57824,-18.24768,-15.2064,72.391968,50.7276
--17.5085,-18.9829,-17.78495,-15.02045,70.190655,47.7375
--17.8695,-19.3743,-18.15165,-15.2361,71.637885,47.0725
--18.62,-20.286,-18.914,-15.778,74.6466,49.1372
--18.62,-20.286,-18.914,-15.876,74.6466,49.1372
--18.43,-20.079,-18.818,-15.908,73.8849,49.55
--18.336,-19.968,-18.624,-15.648,73.1232,48.6912
--18.34364,-19.88028,-18.63176,-15.65452,73.163272,48.1572
--18.53082,-20.18016,-18.82188,-15.81426,73.900134,50.7934
--18.05,-19.76,-18.525,-15.58,72.3615,51.94
--18.53082,-20.18016,-18.9189,-15.71724,73.900134,47.9655
--18.53082,-20.18016,-18.9189,-15.81426,73.900134,50.4994
--18.909,-20.691,-19.404,-16.137,75.4083,50.9355
--18.145,-19.855,-18.62,-15.77,72.3615,50.54
--17.96355,-19.65645,-18.4338,-15.4242,71.637885,49.6386
--17.4192,-19.0608,-17.8752,-15.048,69.46704,46.7875
--18.909,-20.691,-19.404,-16.335,75.4182,48.8466
--17.60065,-19.25935,-18.15355,-15.1126,70.190655,48.9171
--18.34173,-20.07027,-18.91791,-15.74892,73.146051,50.9355
--17.96355,-19.7505,-18.52785,-15.33015,71.62848,51.2226
--17.96355,-19.7505,-18.52785,-15.51825,71.637885,46.8635
--18.527,-20.273,-19.109,-16.005,73.8849,48.3448
--17.23775,-18.86225,-17.77925,-14.89125,68.743425,47.9085
--18.43776,-20.07027,-18.91791,-15.84495,73.146051,47.7477
--18.432,-20.064,-18.912,-15.936,73.1232,48.24
--18.24768,-19.86336,-18.72288,-15.77664,72.391968,50.2368
--18.81792,-20.48409,-19.40598,-16.46568,74.654217,49.4505
--18.24768,-19.9584,-18.81792,-15.77664,72.391968,47.3517
--17.6928,-19.25935,-18.2457,-15.20475,70.190655,48.6358
--18.816,-20.58,-19.404,-16.366,74.6466,46.501
--17.328,-18.9525,-17.8695,-14.9815,68.743425,44.593
--17.5104,-18.9696,-17.5104,-14.6832,69.46704,46.512
--17.6928,-18.33785,-16.31055,-16.12625,70.190655,44.7735
--18.06336,-17.78112,-15.61728,-16.464,71.660736,46.795
--17.87904,-16.85472,-14.71296,-15.73728,70.929504,45.9295
--18.53572,-16.71096,-14.11788,-16.3268,73.144064,48.7354
--18.0576,-16.5528,-13.7313,-12.9789,71.637885,45.923
--18.53379,-18.43776,-15.46083,-15.17274,73.146051,48.6358
--18.34658,-18.82188,-15.87502,-15.11454,72.407202,48.6358
--17.41825,-17.8695,-15.3425,-13.98875,68.743425,47.8325
--18.15165,-18.6219,-16.1766,-14.38965,71.543835,48.2885
--18.34658,-18.72682,-16.54044,-14.44912,72.312142,49.0294
--17.6016,-17.9664,-15.96,-13.7712,69.37584,48.24
--18.15744,-18.53376,-16.55808,-14.30016,71.660736,49.8624
--18.15165,-18.52785,-16.64685,-14.20155,71.637885,45.8185
--18.15937,-18.53573,-16.65393,-14.20759,71.668353,47.7725
--18.15165,-18.52785,-16.83495,-14.4837,71.543835,50.5395
--18.15937,-18.62982,-16.9362,-14.58395,71.574263,48.0635
--18.914,-19.502,-17.738,-15.288,74.5486,48.6668
--18.15165,-18.81,-17.1171,-14.6718,71.543835,47.633
--18.721,-19.497,-17.751,-14.938,73.7879,51.13
--18.53379,-19.206,-17.66952,-14.98068,73.146051,49.5297
--17.97216,-18.71712,-17.13408,-14.71296,70.836384,48.8395
--18.335,-19.095,-17.575,-15.01,72.2665,46.303
--18.53379,-19.39806,-17.76555,-15.17274,73.050021,48.3448
--17.97216,-18.81024,-17.41344,-14.80608,70.836384,47.9568
--18.335,-19.285,-17.765,-14.915,72.2665,47.348
--18.528,-19.488,-17.952,-15.168,73.0176,50.94
--18.721,-19.691,-18.236,-15.52,73.7879,48.15
--18.34272,-19.29312,-17.86752,-15.11136,72.296928,48.0744
--18.34658,-19.29718,-17.96634,-15.01948,72.312142,46.7831
--18.624,-19.488,-18.144,-15.264,73.0272,49.14
--19.012,-19.992,-18.62,-15.68,74.5486,48.8432
--17.9683,-19.0855,-17.7821,-14.896,70.82117,47.481
--19.3,-20.5,-19,-16.2,76.07,49.95
--17.8771,-18.89075,-17.60065,-14.9283,70.098505,47.6658
--18.43776,-19.4832,-18.15264,-15.30144,72.296928,47.3517
--18.25346,-19.28845,-18.06528,-15.14849,71.574263,48.1605
--18.44164,-19.4873,-18.25152,-15.39972,72.312142,49.1372
--18.818,-19.885,-18.624,-15.617,73.7976,49.85
--18.43,-19.57,-18.24,-15.485,72.2665,47.0725
--18.62982,-19.78218,-18.53379,-15.55686,73.050021,47.1032
--18.06528,-19.27584,-17.97216,-15.3648,70.836384,47.28
--18.25152,-19.47456,-18.25152,-15.42912,71.566656,48.4512
--18.0614,-19.2717,-18.0614,-15.1753,70.82117,46.6872
--17.87904,-19.07712,-17.87904,-15.02208,70.013952,46.6848
--18.25152,-19.47456,-18.25152,-15.42912,71.566656,47.6736
--19.01394,-20.38608,-19.01394,-15.97563,74.556207,49.9257
--18.25152,-19.47456,-18.3456,-15.42912,71.576064,46.7904
--18.25152,-19.56864,-18.3456,-15.5232,71.566656,46.512
--18.0614,-19.3648,-18.1545,-15.1753,70.72807,45.3625
--18.2457,-19.5624,-18.33975,-15.51825,71.449785,48.2526
--18.06528,-19.36896,-18.25152,-15.3648,70.743264,47.2778
--18.06528,-19.36896,-18.25152,-15.17856,70.836384,48.9024
--18.62982,-19.97424,-18.82188,-15.74892,72.953991,47.4621
--19.206,-20.691,-19.404,-16.335,75.2103,46.9755
--18.25152,-19.66272,-18.43968,-15.5232,71.472576,46.6848
--18.25346,-19.66481,-18.44164,-15.80712,71.489582,46.3951
--17.6928,-19.0608,-17.9664,-14.9568,69.28464,46.5785
--18.25152,-19.66272,-18.53376,-15.5232,71.472576,47.0688
--18.34755,-19.66481,-18.53573,-15.52485,71.480173,48.2381
--18.72585,-20.1663,-18.91791,-15.84495,72.953991,48.3448
--18.1545,-19.551,-18.4338,-15.5477,70.73738,45.4385
--19.305,-20.79,-19.602,-16.335,75.2103,47.4606
--18.1545,-19.6441,-18.4338,-15.3615,70.72807,46.132
--18.33975,-19.7505,-18.6219,-15.70635,71.449785,48.6486
--18.5328,-20.05344,-18.81792,-15.77664,72.211392,49.1634
--19.305,-20.889,-19.602,-16.533,75.2103,48.2526
--18.525,-19.855,-18.335,-15.39,72.1715,47.34
--18.3456,-18.72192,-16.55808,-16.18176,71.472576,45.84
--18.7278,-18.15156,-15.75056,-17.2872,72.961588,47.481
--18.1545,-16.8511,-14.4305,-16.4787,70.72807,45.1535
--19.5,-17.6,-14.7,-17.9,75.97,47.94
--19.5,-17.5,-14.5,-14.4,75.97,49.44
--18.1584,-17.78592,-14.8992,-14.80608,70.743264,47.1711
--18.525,-18.715,-15.865,-15.2,72.0385,45.3625
--18.72,-19.008,-16.32,-14.688,72.9312,47.13
--18.1584,-18.43776,-16.01664,-14.4336,70.743264,45.7344
--18.1584,-18.43776,-16.10976,-14.34048,70.743264,46.4064
--19.404,-19.503,-17.226,-14.949,75.2103,48.45
--18.1545,-18.3407,-16.3856,-14.0581,70.59773,44.973
--17.9712,-18.15552,-16.31232,-14.19264,69.875712,46.8864
--18.7278,-18.91988,-17.09512,-14.8862,72.827132,46.2952
--18.44164,-18.53573,-16.84211,-14.48986,71.348447,47.7725
--18.34755,-18.53573,-16.9362,-14.48986,71.339038,45.8228
--18.5367,-18.82188,-17.20586,-14.82936,72.074492,46.9965
--19.404,-19.701,-18.018,-15.543,75.0618,47.3517
--18.9189,-19.404,-17.75466,-15.23214,73.560564,46.5795
--19.01592,-19.404,-17.85168,-15.32916,73.570266,46.403
--19.01592,-19.404,-17.9487,-15.23214,73.560564,46.501
--18.63176,-19.012,-17.5861,-15.01948,72.074492,46.0265
--18.915,-19.497,-18.042,-15.423,73.5551,46.54
--19.11,-19.698,-18.228,-15.68,74.3134,47.24
--17.689,-18.14025,-16.87675,-14.44,68.42755,45.0775
--18.33975,-18.9981,-17.6814,-14.95395,71.318115,47.3517
--18.44164,-19.00618,-17.68892,-15.14849,71.339038,45.6385
--18.1584,-18.90336,-17.59968,-14.8992,70.603584,48.1605
--18.5367,-19.39224,-17.96634,-15.49478,72.083998,45.5014
--18.816,-19.584,-18.144,-15.36,72.7968,48.45
--18.44164,-19.19436,-17.8771,-15.0544,71.348447,47.3845
--19.012,-19.788,-18.43,-15.617,73.5454,46.0265
--18.0614,-18.7986,-17.60065,-14.744,69.877345,46.3951
--18.816,-19.68,-18.432,-15.648,72.7872,49.14
--18.5367,-19.4873,-18.25152,-15.11454,72.074492,48.0494
--19.6,-20.5,-19.2,-16,75.83,48.85
--18.0614,-18.89075,-17.6928,-15.20475,69.86813,46.132
--18.0614,-18.89075,-17.6928,-14.83615,69.86813,46.398
--18.43968,-19.2864,-18.15744,-15.24096,71.340864,46.6848
--18.62,-19.475,-18.335,-15.485,72.029,48.15
--18.0614,-18.89075,-17.78495,-14.9283,69.877345,46.7875
--17.8752,-18.7872,-17.6016,-14.7744,69.15696,46.4075
--19.20996,-20.28807,-19.01394,-15.6816,74.320983,48.3516
--18.816,-19.872,-18.624,-15.552,72.7872,48.04
--18.63176,-19.67742,-18.44164,-15.39972,72.083998,48.1572
--18.82188,-19.87821,-18.62982,-15.55686,72.819549,48.4407
--18.62,-19.76,-18.525,-15.58,72.029,47.75
--18.816,-19.968,-18.72,-15.936,72.7872,46.6176
--18.82188,-19.97424,-18.72585,-15.84495,72.819549,47.5688
--18.82384,-19.97632,-18.7278,-15.75056,72.817528,48.0494
--19.01592,-20.27718,-19.01592,-16.0083,73.570266,49.1634
--18.62,-19.855,-18.62,-15.58,72.029,46.303
--19.208,-20.482,-19.208,-16.072,74.3036,49.95
--18.63176,-19.86754,-18.63176,-15.58984,71.988938,46.8734
--17.8752,-19.0608,-17.9664,-15.1392,69.06576,46.224
--19.208,-20.482,-19.306,-16.17,74.3134,47.2752
--18.63176,-19.86754,-18.72682,-15.87502,71.988938,47.5688
--19.404,-20.691,-19.503,-16.335,74.9727,48.0744
--18.816,-20.064,-18.912,-16.032,72.6912,46.3488
--17.8752,-19.0608,-17.9664,-15.048,69.06576,47.3568
--18.62,-19.855,-18.715,-15.77,71.9435,48.74
--18.4338,-19.65645,-18.6219,-15.8004,71.224065,45.7425
--18.25152,-19.46208,-18.43776,-15.45792,70.519776,47.8464
--18.0614,-19.3515,-18.2457,-15.4812,69.785195,47.0725
--17.8752,-18.9696,-17.6928,-14.6832,69.06576,47.3568
--17.689,-17.95975,-15.884,-15.43275,68.346325,46.398
--18.43968,-17.78112,-15.5232,-16.9344,71.340864,47.1744
--18.91791,-17.18937,-14.88465,-17.47746,72.723519,48.7575
--19.208,-16.954,-14.308,-17.346,74.2154,48.93
--19.208,-16.856,-13.916,-14.994,74.2154,47.83
--19.503,-18.711,-15.642,-15.345,74.9727,49.1535
--19.11294,-19.01592,-16.0083,-15.32916,73.473246,48.7575
--18.3407,-18.2476,-15.6408,-14.6167,70.50463,48.0494
--18.72682,-18.72682,-16.1602,-14.54418,71.988938,48.4515
--18.912,-18.816,-16.512,-14.496,72.7008,49.03
--18.72288,-18.5328,-16.44192,-14.35104,71.973792,49.1535
--18.91988,-18.7278,-16.71096,-14.59808,72.731092,48.4512
--18.912,-18.72,-16.8,-14.688,72.7008,48.45
--18.72288,-18.5328,-16.72704,-14.35104,71.973792,48.4128
--18.15355,-17.96925,-16.31055,-13.91465,69.785195,47.3748
--18.72288,-18.5328,-16.91712,-14.35104,71.973792,45.9168
--18.72682,-18.63176,-17.01574,-14.44912,71.979432,46.795
--17.9664,-17.9664,-16.416,-13.9536,69.06576,46.1985
--18.34464,-18.43776,-16.85472,-14.34048,70.519776,47.1711
--18.3407,-18.4338,-16.9442,-14.2443,70.50463,48.8432
--19.11294,-19.20996,-17.75466,-15.0381,73.482948,48.951
--18.72682,-18.82188,-17.39598,-14.63924,71.988938,47.8501
--18.53376,-18.62784,-17.31072,-14.5824,71.246784,46.6848
--18.912,-19.104,-17.664,-14.688,72.7008,46.896
--18.91791,-19.10997,-17.76555,-14.98068,72.713916,48.3448
--18.715,-19,-17.575,-14.725,71.934,46.474
--18.72288,-19.008,-17.67744,-14.82624,71.964288,47.4624
--19.11294,-19.404,-18.04572,-15.0381,73.473246,48.0744
--19.306,-19.6,-18.228,-15.288,74.2154,48.265
--18.72682,-19.10706,-17.77622,-14.82936,71.998444,46.9965
--18.34464,-18.624,-17.41344,-14.61984,70.519776,47.2778
--17.77925,-18.14025,-16.967,-14.079,68.346325,45.8185
--19.503,-19.899,-18.612,-15.444,74.9727,48.04
--18.91988,-19.30404,-18.15156,-15.07828,72.721488,47.187
--18.52785,-18.90405,-17.77545,-14.8599,71.224065,45.4385
--18.15355,-18.6143,-17.41635,-14.65185,69.785195,48.3448
--18.53376,-18.91008,-17.78112,-14.86464,71.246784,48.1344
--18.72288,-19.10304,-17.96256,-15.01632,71.973792,48.9456
--18.72288,-19.19808,-17.96256,-14.92128,71.973792,46.7904
--19.503,-19.998,-18.81,-15.741,74.9727,48.4308
--17.9664,-18.4224,-17.328,-14.4096,69.06576,45.258
--18.15355,-18.6143,-17.5085,-14.5597,69.77598,47.9568
--18.715,-19.19,-18.05,-14.915,71.934,46.1985
--19.306,-19.796,-18.62,-15.484,74.2154,47.9514
--18.53376,-19.09824,-17.8752,-14.86464,71.246784,48.951
--19.30797,-19.89603,-18.71991,-15.6816,74.222973,48.3516
--19.7,-20.3,-19.1,-15.9,75.72,49.95
--18.52785,-19.09215,-17.96355,-15.048,71.224065,46.303
--19.503,-20.097,-18.909,-15.741,74.9727,47.2725
--18.15355,-18.70645,-17.60065,-14.65185,69.785195,46.7831
--18.53376,-19.09824,-18.06336,-15.0528,71.237376,47.089
--19.503,-20.097,-19.008,-15.741,74.9628,46.6587
--18.15552,-18.80064,-17.69472,-14.65344,69.792768,44.5824
--18.3407,-18.9924,-17.8752,-14.896,70.50463,45.5014
--18.34464,-18.99648,-17.87904,-14.8992,70.519776,45.3572
--18.72288,-19.4832,-18.24768,-15.30144,71.973792,45.6288
--19.30797,-19.99404,-18.91593,-15.6816,74.213172,45.9657
--17.9664,-18.6048,-17.6016,-14.5008,69.06576,44.5728
--18.912,-19.584,-18.528,-15.36,72.6912,44.8896
--18.91791,-19.59012,-18.53379,-15.3648,72.713916,46.5988
--18.34464,-19.0896,-17.97216,-14.8992,70.519776,44.5824
--18.91791,-19.68615,-18.53379,-15.3648,72.713916,46.2108
--18.15355,-18.7986,-17.78495,-14.83615,69.785195,45.0775
--18.91988,-19.6882,-18.53572,-15.55848,72.721488,47.187
--18.53573,-19.28845,-18.15937,-14.96031,71.254357,46.1041
--18.91791,-19.68615,-18.53379,-15.3648,72.723519,46.7831
--19.30797,-20.09205,-19.01394,-15.87762,74.222973,47.4507
--18.52785,-19.28025,-18.2457,-15.048,71.224065,45.258
--17.9664,-18.696,-17.6928,-14.7744,69.06576,45.84
--18.912,-19.68,-18.624,-15.648,72.7008,46.512
--19.109,-19.982,-18.818,-15.52,73.4581,46.3951
--18.912,-19.776,-18.624,-15.36,72.7008,47.83
--18.15552,-18.8928,-17.87904,-14.83776,69.792768,45.3504
--18.53376,-19.38048,-18.25152,-15.14688,71.246784,47.5888
--19.11294,-19.98612,-18.82188,-15.81426,73.473246,47.6574
--19.503,-20.394,-19.206,-15.84,74.9727,48.9456
--19.11294,-19.98612,-18.82188,-15.62022,73.473246,49.1535
--19.7,-20.5,-19.5,-16.2,75.72,48.74
--19.503,-20.394,-19.305,-15.939,74.8836,48.05
--18.15552,-18.98496,-17.9712,-14.65344,69.71904,46.7808
--19.306,-20.188,-19.11,-15.778,74.1272,48.73
--19.30797,-20.19006,-19.11195,-15.6816,74.213172,46.8666
--18.912,-19.776,-18.72,-15.552,72.624,47.94
--18.15355,-18.9829,-17.96925,-14.9283,69.711475,45.0775
--18.52785,-19.3743,-18.33975,-15.4242,71.224065,46.132
--18.912,-19.776,-18.72,-15.552,72.624,47.45
--18.53376,-19.38048,-18.3456,-15.14688,71.237376,46.8636
--18.72288,-19.67328,-18.5328,-15.39648,71.973792,47.2626
--18.715,-19.57,-18.525,-15.485,71.9435,45.638
--18.72288,-19.67328,-18.5328,-15.49152,71.973792,46.224
--18.72288,-19.67328,-18.5328,-15.30144,71.935776,45.552
--17.77925,-18.68175,-17.59875,-14.71075,68.346325,47.2435
--18.72682,-19.67742,-18.63176,-15.30466,71.988938,47.481
--19.30797,-20.28807,-19.11195,-15.97563,74.134764,48.4308
--19.503,-20.493,-19.404,-16.038,74.8935,47.3517
--17.9664,-18.8784,-17.8752,-14.7744,68.9928,46.683
--18.72682,-19.67742,-18.63176,-15.39972,71.91289,47.8501
--18.72288,-19.67328,-18.62784,-15.58656,71.973792,48.3516
--18.912,-19.872,-18.816,-15.456,72.7008,46.224
--19.306,-20.286,-19.208,-15.974,74.1272,49.33
--19.306,-20.286,-19.208,-15.778,74.137,48.0494
--18.15355,-19.1672,-18.0614,-14.9283,69.711475,46.683
--19.11294,-20.08314,-19.01592,-15.81426,73.385928,47.9514
--19.503,-20.493,-19.404,-16.236,74.8935,47.8566
--17.77925,-18.68175,-17.689,-14.6205,68.274125,47.5285
--19.20996,-20.08314,-19.01592,-15.62022,73.385928,47.9655
--18.72682,-19.67742,-18.63176,-15.39972,71.903384,46.9812
--19.602,-20.592,-19.404,-16.137,74.8935,48.04
--18.53376,-19.47456,-18.43968,-15.24096,71.246784,46.795
--19.503,-20.592,-19.503,-16.137,74.9727,47.6784
--17.9664,-18.9696,-17.8752,-15.048,68.9928,46.4064
--18.52785,-19.5624,-18.52785,-15.33015,71.224065,45.258
--18.81,-19.76,-18.715,-15.675,71.9435,45.923
--19.206,-20.176,-19.109,-15.811,73.3805,46.76
--19.602,-20.592,-19.503,-16.137,74.9727,47.5596
--18.0576,-18.9696,-17.9664,-14.9568,69.06576,46.224
--19.503,-20.592,-19.503,-16.236,74.9727,47.23
--18.62784,-19.56864,-18.53376,-15.42912,71.246784,46.224
--19.008,-19.968,-18.912,-15.648,72.7008,48.85
--19.008,-19.968,-18.912,-15.552,72.624,47.13
--19.602,-20.592,-19.503,-16.236,74.8935,48.7575
--19.206,-20.176,-19.109,-15.908,73.4581,46.7831
--18.2457,-19.1672,-18.15355,-15.20475,69.785195,46.0265
--18.6219,-19.5624,-18.52785,-15.33015,71.148825,47.1636
--19.602,-20.691,-19.503,-16.335,74.9727,46.4706
--18.2457,-19.25935,-18.15355,-15.1126,69.711475,45.3625
--18.6219,-19.65645,-18.6219,-15.4242,71.23347,44.042
--19.404,-20.482,-19.404,-16.17,74.137,47.04
--18.0576,-19.0608,-18.0576,-15.048,69.06576,45.4464
--18.81792,-19.76832,-18.72288,-15.58656,71.89776,46.6752
--19.8,-20.9,-19.8,-16.4,75.65,48.15
--18.81,-19.855,-18.81,-15.39,71.8675,48.23
--18.81792,-19.86336,-18.81792,-15.58656,71.89776,47.3517
--19.8,-20.9,-19.8,-16.5,75.65,48.84
--19.20996,-20.27718,-19.20996,-15.81426,73.39563,46.1874
--18.0576,-19.0608,-18.0576,-14.9568,69.06576,46.512
--19.20996,-19.98612,-18.53082,-15.5232,73.39563,46.6587
--18.62784,-18.53376,-16.18176,-16.18176,71.17152,45.4464
--18.62982,-17.50074,-14.96031,-16.65393,71.254357,46.1041
--18.6219,-16.64685,-14.01345,-16.3647,71.224065,47.8566
--18.43776,-16.01664,-13.22304,-16.48224,70.519776,46.2108
--19.404,-16.268,-13.034,-17.346,74.137,46.84
--18.81,-15.485,-11.97,-16.815,71.8675,48.56
--19.206,-15.52,-11.737,-16.49,73.3805,46.5988
--18.82188,-15.01948,-10.83684,-16.06514,71.91289,44.9692
--18.62784,-14.48832,-10.06656,-15.24096,71.246784,46.795
--19.008,-14.4,-9.696,-15.36,72.7008,48.45
--19.20996,-14.26194,-9.31392,-15.42618,73.39563,45.9032
--19.404,-14.112,-8.918,-15.386,74.137,46.6872
--18.43776,-13.22304,-7.9152,-14.71296,70.44528,45.5318
--18.6219,-12.9789,-7.524,-14.6718,71.148825,46.2924
--19.40598,-13.32936,-7.35075,-15.19155,74.144565,47.5596
--18.43776,-12.38496,-6.61152,-14.52672,70.44528,46.224
--19.008,-12.48,-6.432,-14.88,72.624,45.5616
--18.81,-12.16,-5.89,-14.82,71.8675,45.7425
--19.404,-12.152,-5.684,-15.092,74.137,47.13
--19.008,-11.712,-5.28,-14.784,72.624,47.64
--19.602,-11.781,-4.95,-15.246,74.8935,46.14
--19.404,-11.368,-4.508,-15.092,74.137,46.54
--18.81792,-10.83456,-3.99168,-14.63616,71.89776,46.1835
--19.40598,-10.68309,-3.72438,-14.79951,74.144565,46.4706
--19.40598,-10.68309,-3.52836,-14.89752,74.144565,46.0251
--18.2457,-9.86005,-2.9488,-14.0068,69.711475,45.1535
--19.008,-11.616,-3.648,-9.312,72.624,45.95
--18.24768,-12.9024,-5.43744,-10.32192,69.709824,44.496
--18.2457,-13.73035,-6.4505,-9.9522,69.711475,44.973
--19.306,-14.798,-7.84,-10.486,74.2154,46.0012
--18.3407,-14.0581,-8.0997,-9.8686,70.43015,45.1535
--18.15552,-14.00832,-8.57088,-9.6768,69.71904,44.496
--19.306,-14.896,-9.604,-10.388,74.137,46.65
--18.72288,-14.44608,-9.78912,-10.26432,71.888256,46.3716
--19.306,-15.092,-10.486,-11.074,74.2154,46.109
--18.53573,-14.67804,-10.53808,-11.10262,71.254357,45.5318
--18.816,-15.264,-11.232,-11.328,72.7008,44.0064
--19.012,-15.423,-11.737,-11.058,73.3805,44.9595
--19.01592,-15.42618,-12.03048,-10.96326,73.463544,46.2952
--19.01592,-15.32916,-12.22452,-10.96326,73.473246,46.109
--18.0614,-14.46755,-11.7952,-10.41295,69.785195,44.498
--18.4338,-14.76585,-12.2265,-10.62765,71.224065,45.9657
--18.3456,-14.86464,-12.51264,-10.8192,71.246784,44.8896
--18.72585,-15.3648,-12.96405,-11.33154,72.646695,46.6587
--18.5367,-15.39972,-13.11828,-11.4072,71.988938,45.2172
--18.5328,-15.58656,-13.3056,-11.49984,71.973792,46.7577
--18.1584,-15.3648,-13.12992,-10.98816,70.519776,44.4
--19.11195,-16.17165,-14.01543,-11.85921,74.222973,45.9657
--18.3456,-15.42912,-13.54752,-11.10144,71.246784,46.795
--17.96925,-15.1126,-13.36175,-10.96585,69.711475,43.8235
--18.62982,-15.74892,-14.02038,-11.5236,72.723519,44.1738
--18.25152,-15.42912,-13.82976,-11.19552,71.256192,45.5112
--18.43,-15.675,-14.06,-11.495,71.9435,46.14
--17.6928,-15.1392,-13.5888,-11.0352,69.06576,44.9664
--18.82188,-16.20234,-14.553,-11.83644,73.39563,46.0746
--17.6016,-15.3216,-13.7712,-11.3088,69.06576,44.973
--17.97216,-15.73728,-14.15424,-11.73312,70.44528,43.7955
--18.528,-16.32,-14.688,-11.904,72.624,42.7776
--18.15165,-15.89445,-14.38965,-11.6622,71.13942,42.9875
--17.78495,-15.6655,-14.1911,-11.51875,69.711475,43.6525
--18.91593,-16.6617,-15.19155,-12.25125,74.144565,44.4906
--17.6928,-15.75765,-14.3754,-11.6109,69.711475,43.548
--18.335,-16.34,-14.82,-12.16,71.9435,44.973
--18.25152,-16.35032,-14.92442,-12.07262,71.988938,45.717
--18.816,-16.954,-15.484,-12.544,74.2154,46.54
--17.69472,-15.94368,-14.65344,-11.79648,69.71904,44.5824
--18.24768,-16.44192,-15.11136,-12.3552,71.973792,46.3716
--17.87904,-16.20288,-14.8992,-11.91936,70.44528,46.0265
--19.1,-17.5,-16,-13,75.65,46.43
--18.527,-16.975,-15.617,-12.513,73.3805,44.6588
--18.34173,-16.80525,-15.46083,-12.38787,72.646695,44.6491
--18.145,-16.72,-15.39,-12.445,71.8675,44.0325
--18.145,-16.72,-15.39,-12.54,71.858,45.65
--17.328,-16.0512,-14.7744,-11.9472,68.9928,43.3675
--18.43,-17.072,-15.811,-12.707,73.3805,45.54
--19,-17.7,-16.3,-13.2,75.65,46.35
--18.81,-17.523,-16.236,-12.969,74.8935,46.94
--18.0614,-16.82562,-15.58984,-12.54792,71.91289,46.0012
--18.2457,-17.09334,-15.84495,-12.77199,72.646695,46.7676
--19,-17.9,-16.5,-13.3,75.65,47.23
--17.5085,-16.49485,-15.20475,-12.3481,69.711475,45.7161
--18.333,-17.363,-16.102,-13.095,73.3805,48.23
--17.59968,-16.66848,-15.45792,-12.47808,70.44528,46.4064
--18.711,-17.721,-16.434,-13.365,74.8935,46.6587
--17.96256,-17.1072,-15.87168,-13.02048,71.888256,45.168
--17.78112,-17.02848,-15.71136,-12.60672,71.162112,45.3408
--17.3242,-16.67915,-15.38905,-12.5324,69.711475,45.6385
--17.59968,-16.85472,-15.64416,-12.94368,70.44528,45.5318
--17.68704,-17.12256,-15.80544,-12.98304,71.162112,44.5728
--18.612,-17.919,-16.731,-13.563,74.8836,46.76
--17.50656,-16.85472,-15.73728,-12.75744,70.44528,45.9198
--18.048,-17.472,-16.32,-13.344,72.624,45.168
--17.50656,-17.04096,-15.73728,-12.85056,70.44528,46.5018
--18.05364,-17.66952,-16.3251,-13.25214,72.637092,46.3716
--17.41344,-17.13408,-15.92352,-12.94368,70.44528,44.2944
--17.77248,-17.48736,-16.25184,-13.21056,71.89776,44.9856
--17.59296,-17.31072,-16.08768,-13.07712,71.17152,45.2172
--17.765,-17.48,-16.245,-13.205,71.8675,46.03
--18.139,-17.848,-16.587,-13.289,73.3805,46.03
--17.952,-17.76,-16.512,-13.344,72.624,43.5168
--18.326,-18.13,-16.954,-13.916,74.137,45.15
--17.59483,-17.50074,-16.27757,-13.07851,71.169676,44.8528
--17.32032,-17.32032,-16.10976,-13.12992,70.44528,42.384
--16.9632,-16.9632,-15.7776,-12.6768,68.9928,44.1888
--16.7865,-16.7865,-15.7035,-12.72525,68.28315,45.7425
--16.9632,-16.9632,-15.8688,-13.0416,68.9928,45.7344
--17.50074,-17.59483,-16.46575,-13.36078,71.169676,46.7055
--17.3166,-17.5028,-16.2925,-13.2202,70.42084,45.717
--16.9632,-17.1456,-15.96,-12.9504,68.9928,44.784
--17.68116,-17.87128,-16.6355,-13.49852,71.91289,45.423
--17.14176,-17.23392,-16.128,-13.08672,69.709824,44.8896
--17.945,-18.139,-16.975,-13.968,73.3805,46.1041
--17.2235,-17.5028,-16.3856,-13.5926,70.43015,45.4385
--17.5861,-17.96634,-16.82562,-13.7837,71.91289,44.8625
--17.39925,-17.8695,-16.64685,-13.44915,71.148825,45.0775
--18.315,-18.711,-17.523,-14.058,74.8935,47.3517
--17.04775,-17.3242,-16.31055,-13.0853,69.711475,44.973
--17.2272,-17.50656,-16.48224,-13.22304,70.435968,45.6385
--17.2272,-17.50656,-16.48224,-13.59552,70.435968,44.8625
--17.5861,-17.96634,-16.92068,-13.87876,71.81783,43.5045
--17.76555,-14.02038,-14.78862,0.76824,72.550665,46.0746
--17.9487,-13.38876,-14.35896,-8.2467,73.29861,45.5014
--17.76555,-15.26877,-15.07671,-11.23551,72.560268,46.1934
--17.31256,-15.52485,-14.96031,-11.57307,71.179085,45.5318
--17.66952,-16.03701,-15.3648,-12.00375,72.637092,44.7558
--17.13408,-15.73728,-14.8992,-12.29184,70.435968,43.6224
--16.9556,-15.94195,-14.83615,-12.62455,69.711475,44.1085
--17.48736,-16.53696,-15.39648,-12.64032,71.89776,44.4
--17.13408,-16.20288,-15.08544,-12.1056,70.44528,44.9595
--16.7808,-15.8688,-14.7744,-11.856,68.9928,44.6784
--17.66952,-16.61319,-15.55686,-12.67596,72.637092,46.0746
--17.848,-16.781,-15.714,-12.707,73.3805,45.0468
--17.67136,-16.61492,-15.65452,-12.58124,72.65426,45.8248
--17.664,-16.608,-15.552,-12.768,72.624,46.35
--16.7808,-15.8688,-14.8656,-12.1296,68.98368,44.2944
--17.21115,-16.5528,-15.4242,-12.69675,71.148825,45.9657
--16.6896,-16.1424,-14.9568,-12.4944,68.9928,44.1888
--17.39598,-16.92068,-15.6849,-12.92816,71.91289,44.0768
--17.0373,-16.5718,-15.3615,-12.8478,70.43015,44.213
--17.39598,-16.92068,-15.77996,-12.92816,71.91289,44.9595
--17.751,-17.363,-16.102,-13.192,73.3805,46.55
--17.934,-17.542,-16.366,-13.622,74.137,44.8154
--17.0373,-16.758,-15.5477,-12.9409,70.42084,42.0185
--16.6896,-16.416,-15.3216,-12.768,68.9928,44.422
--17.0373,-16.8511,-15.6408,-13.034,70.43015,44.6292
--16.77312,-16.68096,-15.57504,-12.81024,69.71904,44.3904
--17.836,-17.738,-16.562,-13.524,74.137,46.94
--17.472,-17.472,-16.224,-13.344,72.6144,45.95
--17.1171,-17.1171,-15.9885,-13.26105,71.148825,45.2727
--17.29,-17.385,-16.15,-13.3,71.8675,42.8925
--16.94784,-17.04096,-15.8304,-13.22304,70.519776,43.824
--17.654,-17.751,-16.587,-13.774,73.4581,44.93
--17.29,-17.48,-16.245,-13.49,71.9435,43.168
--17.654,-17.848,-16.587,-13.677,73.4581,44.94
--17.1171,-17.39925,-16.1766,-13.3551,71.224065,42.788
--18.018,-18.315,-17.028,-14.058,74.9727,44.85
--17.1171,-17.39925,-16.1766,-13.5432,71.224065,44.1144
--17.47928,-17.86344,-16.61492,-13.82976,72.731092,44.5312
--17.29,-17.67,-16.53,-13.585,71.9435,45.33
--17.03029,-17.59483,-16.37166,-13.36078,71.339038,43.5045
--17.195,-17.67,-16.53,-13.585,72.0385,45.05
--17.20586,-17.77622,-16.54044,-13.68864,72.083998,43.4532
--17.02305,-17.6814,-16.45875,-13.7313,71.318115,44.3025
--17.02305,-17.6814,-16.45875,-13.5432,71.318115,43.7085
--17.02305,-17.77545,-16.5528,-13.63725,71.30871,41.9425
--17.195,-17.86,-16.625,-13.585,72.029,42.028
--16.85472,-17.41344,-16.296,-13.31616,70.612896,42.7776
--17.20586,-17.87128,-16.73056,-13.87876,72.074492,43.7472
--17.195,-17.955,-16.815,-13.775,72.029,41.9425
--16.85472,-17.59968,-16.48224,-13.5024,70.603584,42.1465
--16.8511,-17.5959,-16.4787,-13.4995,70.58842,43.2725
--17.195,-17.955,-16.815,-13.68,72.1715,43.3675
--16.67915,-17.41635,-16.31055,-13.2696,69.86813,43.1165
--17.20586,-17.87128,-16.82562,-13.97382,72.083998,42.7285
--17.376,-18.24,-17.088,-14.208,72.7872,42.4608
--17.56062,-18.53082,-17.26956,-14.35896,73.570266,43.4532
--18.1,-19.1,-17.9,-14.5,75.82,44.04
--16.33525,-17.23775,-16.15475,-12.996,68.42755,42.123
--16.5072,-17.328,-16.2336,-13.1328,69.28464,42.672
--16.85472,-17.59968,-16.57536,-13.31616,70.743264,42.5664
--16.8511,-17.5959,-16.5718,-13.4064,70.72807,42.5125
--16.8511,-17.5959,-16.5718,-13.4064,70.72807,43.2768
--17.03029,-17.8771,-16.84211,-13.73714,71.480173,43.1165
--16.67915,-17.60065,-16.49485,-13.54605,70.006355,42.2275
--17.20586,-18.15646,-17.01574,-13.87876,72.217082,43.5918
--16.5888,-17.69472,-16.5888,-13.3632,70.013952,42.672
--17.738,-18.816,-17.64,-14.21,74.4506,43.4532
--17.02305,-17.96355,-16.929,-13.5432,71.449785,43.7976
--17.38143,-18.2457,-17.2854,-14.11641,73.050021,43.7877
--16.67915,-17.5085,-16.49485,-13.6382,70.08929,42.7285
--16.8511,-17.8752,-16.758,-13.8719,70.81186,41.838
--17.1072,-18.34272,-17.20224,-13.97088,72.296928,43.7976
--17.1072,-18.34272,-17.1072,-13.87584,72.287424,42.1824
--16.67915,-17.6928,-16.587,-13.36175,70.098505,42.7285
--16.68096,-17.60256,-16.5888,-13.3632,70.106112,42
--17.02848,-17.96928,-16.9344,-13.6416,71.566656,42.6594
--16.85472,-17.87904,-16.85472,-13.78176,70.836384,42.2338
--16.8511,-17.9683,-16.8511,-14.1512,70.82117,41.287
--16.8511,-17.9683,-16.8511,-13.7788,70.82117,42.2275
--17.38143,-18.53379,-17.38143,-14.02038,73.050021,44.1144
--16.5072,-17.6016,-16.5072,-13.3152,69.45792,41.7984
--17.64,-18.816,-17.738,-14.406,74.6368,43.94
--16.85472,-17.87904,-16.85472,-13.59552,70.920192,42.4375
--18,-19.3,-18.2,-15,76.16,43.75
--17.02848,-18.25152,-17.12256,-14.112,71.651328,42.1056
--17.919,-19.305,-18.018,-14.85,75.3984,43.1046
--17.28,-18.624,-17.472,-14.304,73.1136,43.54
--16.33525,-17.5085,-16.4255,-13.357,68.7344,41.667
--17.38143,-18.53379,-17.47746,-14.30847,73.146051,42.2338
--17.20586,-18.34658,-17.30092,-14.259,72.397696,41.8458
--17.195,-18.335,-17.29,-14.25,72.3615,43.14
--17.02848,-18.3456,-17.21664,-14.112,71.660736,41.3376
--17.38143,-18.72585,-17.57349,-14.4045,73.232478,41.9525
--16.5072,-17.784,-16.6896,-13.5888,69.54912,41.0875
--17.56062,-18.9189,-17.75466,-14.553,73.987452,42.1988
--17.46,-18.818,-17.751,-14.453,73.9722,43.14
--17.557,-18.818,-17.751,-14.55,73.9722,43.46
--17.20224,-18.43776,-17.39232,-14.256,72.477504,41.7984
--17.738,-19.11,-17.934,-14.994,74.7348,42.483
--17.02305,-18.4338,-17.21115,-14.01345,71.731935,40.812
--16.67915,-18.0614,-16.9556,-13.8225,70.27359,40.8025
--16.68096,-18.06336,-16.95744,-13.824,70.281216,41.1264
--17.919,-19.404,-18.216,-14.751,75.5073,42.6294
--17.20586,-18.63176,-17.49104,-14.259,72.492756,41.7682
--17.20586,-18.63176,-17.49104,-14.16394,72.492756,41.8458
--16.67915,-18.0614,-16.9556,-13.8225,70.27359,41.8458
--17.02848,-18.53376,-17.4048,-14.20608,71.745408,42.2772
--17.56062,-19.11294,-17.9487,-14.65002,73.987452,42.5205
--16.85472,-18.34464,-17.2272,-13.968,71.022624,41.3376
--17.56062,-19.11294,-17.9487,-14.553,73.987452,42.8175
--17.20586,-18.63176,-17.5861,-14.35406,72.492756,41.9525
--16.8511,-18.2476,-17.2235,-13.965,71.00737,42.1988
--16.33525,-17.689,-16.69625,-13.62775,68.905875,41.0875
--17.738,-19.306,-18.13,-14.896,74.8328,43.25
--17.02848,-18.53376,-17.49888,-14.20608,71.839488,41.4144
--17.20224,-18.81792,-17.67744,-14.44608,72.56304,42.8175
--16.68096,-18.15552,-17.0496,-14.10048,70.373376,41.6256
--17.20224,-18.72288,-17.67744,-14.35104,72.572544,42.6294
--16.9442,-18.3407,-17.3166,-14.1512,71.09116,41.993
--17.56062,-19.11294,-18.04572,-14.65002,74.084472,42.6294
--17.12438,-18.53573,-17.50074,-14.48986,71.847124,41.5645
--17.29728,-18.81792,-17.67744,-14.54112,72.572544,42.7086
--17.29728,-18.81792,-17.67744,-14.44608,72.572544,41.136
--17.29728,-18.81792,-17.67744,-14.44608,72.572544,42.7086
--17.83782,-19.40598,-18.22986,-14.79951,74.840436,42.6294
--16.7713,-18.2457,-17.1399,-14.09895,70.36574,41.6615
--17.12256,-18.53376,-17.49888,-14.20608,71.848896,41.52
--16.7713,-18.2457,-17.1399,-14.09895,70.36574,41.9525
--17.29728,-18.81792,-17.67744,-14.54112,72.572544,42.6294
--17.472,-19.008,-17.856,-14.688,73.392,41.232
--17.47928,-19.01592,-17.95948,-14.59808,73.32654,42.1988
--17.12256,-18.72192,-17.59296,-14.39424,71.839488,42.2772
--16.7713,-18.33785,-17.23205,-14.09895,70.45789,40.7075
--16.5984,-18.1488,-17.0544,-14.0448,69.73152,41.0496
--16.7713,-18.33785,-17.23205,-14.09895,70.45789,41.5548
--17.1171,-18.71595,-17.58735,-14.38965,71.91063,42.5304
--17.65764,-19.30698,-18.14274,-14.94108,74.181492,42.6294
--17.654,-19.303,-18.139,-15.035,74.1662,41.6615
--16.77312,-18.33984,-17.32608,-14.10048,70.465536,40.848
--18.2,-19.9,-18.7,-15.3,76.46,42.84
--16.4255,-17.95975,-16.967,-13.80825,69.00515,40.622
--17.57349,-19.10997,-18.05364,-14.88465,73.424538,42.4215
--17.568,-19.104,-18.048,-14.592,73.4016,41.3376
--17.0373,-18.5269,-17.5028,-14.3374,71.18426,40.983
--18.3,-19.9,-18.8,-15.4,76.45,43.25
--16.86345,-18.33785,-17.3242,-14.28325,70.45789,41.2735
--17.21115,-18.71595,-17.6814,-14.38965,71.901225,42.5205
--17.568,-19.104,-18.048,-14.688,73.4016,43.06
--17.385,-18.905,-17.86,-14.63,72.637,42.76
--18.3,-20,-18.8,-15.4,76.46,42.85
--18.117,-19.8,-18.612,-15.444,75.6954,42.3423
--17.385,-19,-17.86,-14.63,72.637,42.55
--17.57349,-19.206,-18.05364,-14.78862,73.424538,41.6615
--16.86345,-18.43,-17.3242,-14.1911,70.45789,40.907
--17.57349,-19.206,-18.14967,-14.59656,73.424538,42.3324
--17.0373,-18.5269,-17.5028,-14.3374,71.17495,41.797
--17.31256,-18.818,-17.68892,-14.48986,71.941214,41.7682
--17.3052,-18.81,-17.77545,-14.57775,71.91063,42.6294
--17.21115,-18.81,-17.77545,-14.57775,71.91063,40.907
--17.3052,-18.81,-17.77545,-14.38965,71.91063,42.9264
--18.03384,-19.50399,-18.42588,-14.99553,74.938446,42.8175
--18.032,-19.6,-18.424,-15.19,75.0288,43.06
--17.48,-19,-17.86,-14.82,72.7225,42.76
--16.7808,-18.24,-17.2368,-13.9536,69.8136,41.192
--17.3052,-18.81,-17.77545,-14.20155,72.00468,43.0254
--17.664,-19.2,-18.144,-14.4,73.488,41.4144
--17.66952,-19.206,-18.14967,-14.59656,73.510965,42.5304
--18.4,-20,-18.9,-15.5,76.55,43.54
--17.3052,-18.71595,-17.77545,-14.57775,71.995275,41.192
--18.032,-19.502,-18.424,-15.288,75.019,43.25
--17.13408,-18.53088,-17.50656,-14.52672,71.199552,41.7682
--18.032,-19.502,-18.424,-15.288,74.9308,43.64
--17.39925,-18.81,-17.6814,-14.6718,71.995275,41.192
--17.04775,-18.43,-17.41635,-14.3754,70.448675,41.667
--17.7674,-19.40008,-18.15156,-15.17432,73.42258,42.875
--18.315,-19.899,-18.711,-15.246,75.6954,42.36
--16.872,-18.4224,-17.328,-14.2272,69.73152,42.617
--17.40665,-18.91209,-17.8771,-14.77213,71.941214,42.8352
--17.2235,-18.7131,-17.5959,-14.5236,71.09116,42.6075
--18.5,-20.1,-19,-15.6,76.36,44.45
--17.04775,-18.52215,-17.5085,-14.46755,70.36574,42.7285
--17.2235,-18.7131,-17.689,-14.6167,71.10047,42.1325
--17.5824,-19.10304,-18.0576,-14.92128,72.572544,42.3936
--17.9487,-19.59804,-18.4338,-15.5232,74.181492,43.4214
--17.04775,-18.6143,-17.5085,-14.3754,70.45789,41.458
--17.9487,-19.59804,-18.4338,-15.42618,74.094174,43.2135
--17.9487,-19.59804,-18.4338,-15.13512,74.084472,43.3125
--17.40665,-19.10027,-17.97119,-14.86622,71.941214,42.3308
--17.945,-19.691,-18.527,-15.132,74.1662,43.86
--17.67744,-19.29312,-18.15264,-14.7312,72.667584,43.2036
--17.2235,-18.8993,-17.7821,-14.7098,71.18426,42.6692
--17.1399,-18.70645,-17.60065,-14.46755,70.45789,41.192
--17.4933,-19.09215,-17.96355,-15.048,71.91063,43.2036
--18.042,-19.691,-18.527,-15.326,74.1662,42.6218
--17.14176,-18.70848,-17.60256,-14.7456,70.465536,42
--17.1399,-18.70645,-17.60065,-14.65185,70.45789,42.4375
--17.49888,-19.09824,-17.96928,-14.95872,71.933568,41.7888
--18.414,-20.097,-19.008,-15.642,75.6954,43.3125
--17.856,-19.488,-18.336,-15.36,73.4016,43.75
--17.86158,-19.49409,-18.43776,-15.17274,73.424538,42.5442
--18.04572,-19.69506,-18.62784,-15.23214,74.181492,43.4214
--17.95761,-19.49409,-18.43776,-15.3648,73.424538,43.0098
--17.67744,-19.29312,-18.24768,-15.30144,72.667584,43.7481
--18.04572,-19.79208,-18.62784,-15.5232,74.181492,43.8966
--17.59483,-19.19436,-18.06528,-14.86622,71.941214,42.6218
--17.77248,-19.38816,-18.24768,-15.30144,72.667584,43.1046
--17.765,-19.38,-18.335,-15.2,72.6275,43.94
--17.77622,-19.39224,-18.34658,-14.92442,72.67337,44.0768
--18.139,-19.788,-18.721,-15.423,74.1662,43.3008
--17.95948,-19.59216,-18.53572,-15.3664,73.51862,43.9628
--17.0544,-18.6048,-17.6016,-14.592,69.73152,43.168
--17.41344,-18.99648,-17.97216,-14.80608,71.19024,43.0098
--17.765,-19.38,-18.335,-15.2,72.732,42.0185
--18.326,-19.992,-18.914,-15.68,75.0288,43.3552
--17.77622,-19.39224,-18.34658,-15.2096,72.682876,42.9128
--17.23205,-18.70645,-17.78495,-14.65185,70.55004,41.743
--18.236,-19.788,-18.721,-15.52,74.2535,42.8352
--17.3242,-18.7986,-17.78495,-14.5597,70.55004,43.2232
--18.05552,-19.6882,-18.53572,-15.3664,73.528224,43.561
--17.6814,-19.28025,-18.15165,-15.14205,71.995275,43.7976
--17.68704,-19.2864,-18.15744,-15.0528,72.027648,44.933
--17.86752,-19.4832,-18.34272,-15.2064,72.762624,42.5664
--18.23976,-19.79208,-18.72486,-15.42618,74.26881,44.3025
--17.1456,-18.696,-17.6016,-14.592,69.8136,42.7776
--17.68704,-19.19232,-18.15744,-15.14688,72.01824,44.0412
--18.048,-19.68,-18.624,-15.36,73.4976,42.3936
--17.1456,-18.696,-17.6928,-14.592,69.8136,42.408
--17.86,-19.475,-18.43,-15.2,72.732,44.64
--18.236,-19.885,-18.818,-15.714,74.2535,43.4075
--17.5959,-19.0855,-18.0614,-14.9891,71.27736,42.693
--17.96634,-19.58236,-18.44164,-15.2096,72.76843,43.7472
--18.333,-19.885,-18.818,-15.423,74.2535,44.4648
--17.5959,-19.0855,-18.0614,-14.896,71.26805,45.2172
--18.52389,-20.09205,-19.01394,-15.6816,75.026655,45.5697
--17.78112,-19.2864,-18.25152,-15.0528,72.01824,44.9232
--18.33678,-19.79208,-18.82188,-15.32916,74.26881,46.5795
--18.333,-19.788,-18.818,-15.423,74.2535,46.14
--18.9,-20.5,-19.4,-16.1,76.55,46.65
--17.955,-19.475,-18.43,-15.105,72.732,45.44
--18.15156,-19.6882,-18.63176,-15.3664,73.51862,45.031
--17.96634,-19.4873,-18.44164,-14.92442,72.777936,44.5715
--17.41635,-18.89075,-17.8771,-14.65185,70.55004,44.2902
--17.2368,-18.696,-17.6928,-14.592,69.82272,43.6224
--17.41635,-18.7986,-17.8771,-14.744,70.55004,43.168
--18.81,-20.295,-19.206,-15.84,75.7845,45.04
--17.328,-18.696,-17.6928,-14.5008,69.8136,43.44
--17.41635,-18.89075,-17.8771,-14.5597,70.540825,43.548
--18.9,-20.5,-19.4,-16,76.56,45.85
--18.43,-19.885,-18.818,-15.52,74.2535,44.0768
--17.328,-18.696,-17.6928,-14.5008,69.8136,43.1424
--18.4338,-19.8891,-18.82188,-15.42618,74.26881,44.0412
--17.8695,-19.1862,-18.2457,-14.76585,72.00468,44.3025
--18.2476,-19.59216,-18.53572,-15.27036,73.51862,43.9628
--18.0614,-19.39224,-18.34658,-15.11454,72.76843,43.9628
--17.5085,-18.7986,-17.78495,-14.744,70.45789,43.3008
--18.43,-19.885,-18.818,-15.52,74.2535,45.04
--18.62,-20.09,-18.914,-15.484,74.9406,44.86
--18.0614,-19.4873,-18.44164,-15.30466,72.682876,43.5918
--18.24,-19.68,-18.624,-15.36,73.4016,42.7776
--17.96355,-19.28025,-18.15165,-14.95395,71.91063,44.4114
--18.336,-19.68,-18.528,-15.168,73.4016,44.45
--18.15646,-19.4873,-18.34658,-15.11454,72.682876,43.5142
--18.336,-19.68,-18.528,-15.36,73.4016,43.344
--18.71991,-20.09205,-19.01394,-15.6816,74.938446,44.7975
--18.909,-20.196,-19.107,-15.84,75.6855,44.94
--19.1,-20.5,-19.3,-15.8,76.46,45.16
--17.78592,-19.0896,-17.97216,-14.61984,71.19024,43.4075
--17.23775,-18.50125,-17.5085,-14.2595,69.00515,42.2275
--18.53082,-19.8891,-18.82188,-15.5232,74.181492,43.6688
--18.15646,-19.4873,-18.44164,-15.11454,72.682876,43.5708
--17.78592,-19.0896,-17.97216,-14.8992,71.199552,43.4075
--17.4192,-18.696,-17.6016,-14.6832,69.73152,42.028
--17.4192,-18.696,-17.6928,-14.5008,69.73152,42.332
--17.4192,-18.696,-17.6928,-14.592,69.73152,42.332
--18.24768,-19.4832,-18.43776,-15.2064,72.65808,43.0656
--18.24,-19.475,-18.43,-15.295,72.6275,44.56
--17.4192,-18.696,-17.6928,-14.592,69.73152,42.7975
--19.008,-20.394,-19.206,-15.741,75.6954,44.16
--18.25152,-19.4873,-18.44164,-15.11454,72.682876,42.9128
--17.6928,-18.89075,-17.8771,-14.83615,70.45789,42.8352
--18.24768,-19.4832,-18.43776,-15.30144,72.667584,43.9065
--17.328,-18.5915,-17.5085,-14.53025,69.00515,43.2725
--18.0576,-18.9981,-17.3052,-14.2956,71.920035,44.8074
--18.43776,-18.53379,-16.22907,-14.11641,73.424538,44.9856
--18.624,-17.751,-15.035,-13.192,74.1662,43.4075
--17.8752,-16.1994,-13.4995,-11.3582,71.17495,43.0635
--17.5104,-15.3216,-12.4944,-9.9408,69.73152,43.2384
--18.62784,-15.62022,-12.6126,-9.60498,74.181492,44.1936
--18.432,-15.072,-11.808,-8.544,73.4016,45.15
--17.8752,-14.1512,-10.7065,-7.2618,71.09116,43.7285
--18.816,-14.602,-10.682,-6.468,74.8328,43.9628
--18.432,-13.728,-9.696,-5.856,73.3152,42.576
--18.24,-13.11,-8.93,-5.13,72.542,45.44
--18.24768,-12.64032,-8.36352,-4.56192,72.572544,43.248
--18.06336,-11.94816,-7.62048,-4.51584,71.839488,43.0656
--18.43776,-11.42757,-7.29828,-5.18562,73.328508,44.8767
--18.24,-10.545,-6.935,-5.605,72.5325,42.693
--19.008,-10.296,-6.93,-5.643,75.5964,45.55
--18.62784,-9.50796,-6.11226,-5.04504,74.084472,45.4905
--18.25152,-8.65046,-5.41842,-4.56288,72.549792,44.345
--17.97216,-7.4496,-4.656,-4.46976,71.115744,43.248
--18.816,-7.154,-4.116,-3.724,74.8328,45.25
--19.008,-6.435,-3.267,-3.465,75.5073,45.2034
--18.432,-5.472,-2.208,-2.88,73.2096,46.14
--17.6928,-4.6075,-1.1058,-2.5802,70.27359,43.453
--18.432,-3.936,0,-2.208,73.2096,46.03
--18.624,-3.201,0.873,-1.455,73.9722,46.36
--18.06336,-2.352,1.78752,-1.03488,71.754816,43.824
diff --git a/tests/integration/models/refrig_case_osw/refrigcase.osw b/tests/integration/models/refrig_case_osw/refrigcase.osw
deleted file mode 100644
index 3d2f5517..00000000
--- a/tests/integration/models/refrig_case_osw/refrigcase.osw
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "seed_file" : "empty.osm",
- "weather_file": "USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.epw",
- "measure_paths": [
- "./measures/"
- ],
- "file_paths": [
- "./weather/",
- "./python/"
- ],
- "run_directory": "./run/",
- "steps" : [
- {
- "measure_dir_name" : "alfalfa_vars",
- "name" : "AlfalfaVariables",
- "description" : "Add custom variables for Alfalfa",
- "modeler_description" : "Add EMS global variables required by Alfalfa"
- },
- {
- "measure_dir_name" : "replace_idf",
- "name" : "Replace IDF",
- "description" : "Replace OpenStudio generated IDF file with user specified IDF file.",
- "modeler_description" : "Additional EnergyPlus measures and reporting measures can be placed after this measure in the workflow. Weather file should be described in the seed OSM file or in the OSW file used to run the simulation.",
- "arguments" : {
- "idf_name" : "in.idf"
- }
- },
- {
- "measure_dir_name" : "prep_idf",
- "name" : "Prepare IDF",
- "description" : "Gather necessary companion files to run IDF",
- "modeler_description" : "Gather necessary companion files to run IDF",
- "arguments" : {
- "py_name" : "case_models"
- }
- }
- ]
-}
diff --git a/tests/integration/models/refrig_case_osw/weather/USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.ddy b/tests/integration/models/refrig_case_osw/weather/USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.ddy
deleted file mode 100644
index 9eaabbd9..00000000
--- a/tests/integration/models/refrig_case_osw/weather/USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.ddy
+++ /dev/null
@@ -1,536 +0,0 @@
- ! The following Location and Design Day data are produced as possible from the indicated data source.
- ! Wind Speeds follow the indicated design conditions rather than traditional values (6.7 m/s heating, 3.35 m/s cooling)
- ! No special attempts at re-creating or determining missing data parts (e.g. Wind speed or direction)
- ! are done. Therefore, you should look at the data and fill in any incorrect values as you desire.
-
- Site:Location,
- Dayton Wright Patterson Afb_OH_USA Design_Conditions, !- Location Name
- 39.83, !- Latitude {N+ S-}
- -84.05, !- Longitude {W- E+}
- -5.00, !- Time Zone Relative to GMT {GMT+/-}
- 250.00; !- Elevation {m}
-
- ! WMO=745700 Time Zone=NAE: (GMT-05:00) Eastern Time (US & Canada)
- ! Data Source=ASHRAE 2009 Annual Design Conditions
- RunPeriodControl:DaylightSavingTime,
- 2nd Sunday in March, !- StartDate
- 2nd Sunday in November; !- EndDate
-
- ! Using Design Conditions from "Climate Design Data 2009 ASHRAE Handbook"
- ! Dayton Wright Patterson Afb_OH_USA Extreme Annual Wind Speeds, 1%=9.6m/s, 2.5%=8.4m/s, 5%=7.5m/s
- ! Dayton Wright Patterson Afb_OH_USA Extreme Annual Temperatures, Max Drybulb=-20.9�C Min Drybulb=35.1�C
-
- ! Dayton Wright Patterson Afb_OH_USA Annual Heating Design Conditions Wind Speed=3.3m/s Wind Dir=260
- ! Coldest Month=JAN
- ! Dayton Wright Patterson Afb_OH_USA Annual Heating 99.6%, MaxDB=-17�C
- SizingPeriod:DesignDay,
- Dayton Wright Patterson Afb Ann Htg 99.6% Condns DB, !- Name
- 1, !- Month
- 21, !- Day of Month
- WinterDesignDay,!- Day Type
- -17, !- Maximum Dry-Bulb Temperature {C}
- 0.0, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Wetbulb, !- Humidity Condition Type
- -17, !- Wetbulb at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily Wet-Bulb Temperature Range {deltaC}
- 98358., !- Barometric Pressure {Pa}
- 3.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
- 260, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAEClearSky, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
- 0.00; !- Clearness {0.0 to 1.1}
-
- ! Dayton Wright Patterson Afb_OH_USA Annual Heating 99%, MaxDB=-13�C
- SizingPeriod:DesignDay,
- Dayton Wright Patterson Afb Ann Htg 99% Condns DB, !- Name
- 1, !- Month
- 21, !- Day of Month
- WinterDesignDay,!- Day Type
- -13, !- Maximum Dry-Bulb Temperature {C}
- 0.0, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Wetbulb, !- Humidity Condition Type
- -13, !- Wetbulb at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily Wet-Bulb Temperature Range {deltaC}
- 98358., !- Barometric Pressure {Pa}
- 3.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
- 260, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAEClearSky, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
- 0.00; !- Clearness {0.0 to 1.1}
-
- ! Dayton Wright Patterson Afb_OH_USA Annual Humidification 99.6% Design Conditions DP=>MCDB, DP=-20.3�C
- SizingPeriod:DesignDay,
- Dayton Wright Patterson Afb Ann Hum_n 99.6% Condns DP=>MCDB, !- Name
- 1, !- Month
- 21, !- Day of Month
- WinterDesignDay,!- Day Type
- -16.2, !- Maximum Dry-Bulb Temperature {C}
- 0.0, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Dewpoint, !- Humidity Condition Type
- -20.3, !- Dewpoint at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily Wet-Bulb Temperature Range {deltaC}
- 98358., !- Barometric Pressure {Pa}
- 3.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
- 260, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAEClearSky, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
- 0.00; !- Clearness {0.0 to 1.1}
-
- ! Dayton Wright Patterson Afb_OH_USA Annual Humidification 99% Design Conditions DP=>MCDB, DP=-17�C
- SizingPeriod:DesignDay,
- Dayton Wright Patterson Afb Ann Hum_n 99% Condns DP=>MCDB, !- Name
- 1, !- Month
- 21, !- Day of Month
- WinterDesignDay,!- Day Type
- -12.4, !- Maximum Dry-Bulb Temperature {C}
- 0.0, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Dewpoint, !- Humidity Condition Type
- -17, !- Dewpoint at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily Wet-Bulb Temperature Range {deltaC}
- 98358., !- Barometric Pressure {Pa}
- 3.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
- 260, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAEClearSky, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
- 0.00; !- Clearness {0.0 to 1.1}
-
- ! Dayton Wright Patterson Afb_OH_USA Annual Heating Wind 99.6% Design Conditions WS=>MCDB, WS=11.9m/s
- SizingPeriod:DesignDay,
- Dayton Wright Patterson Afb Ann Htg Wind 99.6% Condns WS=>MCDB, !- Name
- 1, !- Month
- 21, !- Day of Month
- WinterDesignDay,!- Day Type
- -1.5, !- Maximum Dry-Bulb Temperature {C}
- 0.0, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Wetbulb, !- Humidity Condition Type
- -1.5, !- Wetbulb at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily Wet-Bulb Temperature Range {deltaC}
- 98358., !- Barometric Pressure {Pa}
- 11.9, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
- 260, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAEClearSky, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
- 0.00; !- Clearness {0.0 to 1.1}
-
- ! Dayton Wright Patterson Afb_OH_USA Annual Heating Wind 99% Design Conditions WS=>MCDB, WS=10.8m/s
- SizingPeriod:DesignDay,
- Dayton Wright Patterson Afb Ann Htg Wind 99% Condns WS=>MCDB, !- Name
- 1, !- Month
- 21, !- Day of Month
- WinterDesignDay,!- Day Type
- 0.2, !- Maximum Dry-Bulb Temperature {C}
- 0.0, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Wetbulb, !- Humidity Condition Type
- 0.2, !- Wetbulb at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily Wet-Bulb Temperature Range {deltaC}
- 98358., !- Barometric Pressure {Pa}
- 10.8, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
- 260, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAEClearSky, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
- 0.00; !- Clearness {0.0 to 1.1}
-
- ! Dayton Wright Patterson Afb Annual Cooling Design Conditions Wind Speed=3.9m/s Wind Dir=240
- ! Hottest Month=JUL
- ! Dayton Wright Patterson Afb_OH_USA Annual Cooling (DB=>MWB) .4%, MaxDB=33�C MWB=23.6�C
- SizingPeriod:DesignDay,
- Dayton Wright Patterson Afb Ann Clg .4% Condns DB=>MWB, !- Name
- 7, !- Month
- 21, !- Day of Month
- SummerDesignDay,!- Day Type
- 33, !- Maximum Dry-Bulb Temperature {C}
- 11, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Wetbulb, !- Humidity Condition Type
- 23.6, !- Wetbulb at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily Wet-Bulb Temperature Range {deltaC}
- 98358., !- Barometric Pressure {Pa}
- 3.9, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
- 240, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAETau, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- 0.484, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- 1.940; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
-
- ! Dayton Wright Patterson Afb_OH_USA Annual Cooling (DB=>MWB) 1%, MaxDB=31.8�C MWB=23.1�C
- SizingPeriod:DesignDay,
- Dayton Wright Patterson Afb Ann Clg 1% Condns DB=>MWB, !- Name
- 7, !- Month
- 21, !- Day of Month
- SummerDesignDay,!- Day Type
- 31.8, !- Maximum Dry-Bulb Temperature {C}
- 11, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Wetbulb, !- Humidity Condition Type
- 23.1, !- Wetbulb at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily Wet-Bulb Temperature Range {deltaC}
- 98358., !- Barometric Pressure {Pa}
- 3.9, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
- 240, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAETau, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- 0.484, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- 1.940; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
-
- ! Dayton Wright Patterson Afb_OH_USA Annual Cooling (DB=>MWB) 2%, MaxDB=30.2�C MWB=22.3�C
- SizingPeriod:DesignDay,
- Dayton Wright Patterson Afb Ann Clg 2% Condns DB=>MWB, !- Name
- 7, !- Month
- 21, !- Day of Month
- SummerDesignDay,!- Day Type
- 30.2, !- Maximum Dry-Bulb Temperature {C}
- 11, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Wetbulb, !- Humidity Condition Type
- 22.3, !- Wetbulb at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily Wet-Bulb Temperature Range {deltaC}
- 98358., !- Barometric Pressure {Pa}
- 3.9, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
- 240, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAETau, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- 0.484, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- 1.940; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
-
- ! Dayton Wright Patterson Afb_OH_USA Annual Cooling (WB=>MDB) .4%, MDB=30.6�C WB=25.3�C
- SizingPeriod:DesignDay,
- Dayton Wright Patterson Afb Ann Clg .4% Condns WB=>MDB, !- Name
- 7, !- Month
- 21, !- Day of Month
- SummerDesignDay,!- Day Type
- 30.6, !- Maximum Dry-Bulb Temperature {C}
- 11, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Wetbulb, !- Humidity Condition Type
- 25.3, !- Wetbulb at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily Wet-Bulb Temperature Range {deltaC}
- 98358., !- Barometric Pressure {Pa}
- 3.9, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
- 240, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAETau, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- 0.484, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- 1.940; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
-
- ! Dayton Wright Patterson Afb_OH_USA Annual Cooling (WB=>MDB) 1%, MDB=29.5�C WB=24.4�C
- SizingPeriod:DesignDay,
- Dayton Wright Patterson Afb Ann Clg 1% Condns WB=>MDB, !- Name
- 7, !- Month
- 21, !- Day of Month
- SummerDesignDay,!- Day Type
- 29.5, !- Maximum Dry-Bulb Temperature {C}
- 11, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Wetbulb, !- Humidity Condition Type
- 24.4, !- Wetbulb at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily Wet-Bulb Temperature Range {deltaC}
- 98358., !- Barometric Pressure {Pa}
- 3.9, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
- 240, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAETau, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- 0.484, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- 1.940; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
-
- ! Dayton Wright Patterson Afb_OH_USA Annual Cooling (WB=>MDB) 2%, MDB=28.3�C WB=23.6�C
- SizingPeriod:DesignDay,
- Dayton Wright Patterson Afb Ann Clg 2% Condns WB=>MDB, !- Name
- 7, !- Month
- 21, !- Day of Month
- SummerDesignDay,!- Day Type
- 28.3, !- Maximum Dry-Bulb Temperature {C}
- 11, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Wetbulb, !- Humidity Condition Type
- 23.6, !- Wetbulb at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily Wet-Bulb Temperature Range {deltaC}
- 98358., !- Barometric Pressure {Pa}
- 3.9, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
- 240, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAETau, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- 0.484, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- 1.940; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
-
- ! Dayton Wright Patterson Afb_OH_USA Annual Cooling (DP=>MDB) .4%, MDB=28.1�C DP=23.8�C HR=0.0192
- SizingPeriod:DesignDay,
- Dayton Wright Patterson Afb Ann Clg .4% Condns DP=>MDB, !- Name
- 7, !- Month
- 21, !- Day of Month
- SummerDesignDay,!- Day Type
- 28.1, !- Maximum Dry-Bulb Temperature {C}
- 11, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Dewpoint, !- Humidity Condition Type
- 23.8, !- Dewpoint at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily Wet-Bulb Temperature Range {deltaC}
- 98358., !- Barometric Pressure {Pa}
- 3.9, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
- 240, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAETau, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- 0.484, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- 1.940; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
-
- ! Dayton Wright Patterson Afb_OH_USA Annual Cooling (DP=>MDB) 1%, MDB=27.1�C DP=22.8�C HR=0.0181
- SizingPeriod:DesignDay,
- Dayton Wright Patterson Afb Ann Clg 1% Condns DP=>MDB, !- Name
- 7, !- Month
- 21, !- Day of Month
- SummerDesignDay,!- Day Type
- 27.1, !- Maximum Dry-Bulb Temperature {C}
- 11, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Dewpoint, !- Humidity Condition Type
- 22.8, !- Dewpoint at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily Wet-Bulb Temperature Range {deltaC}
- 98358., !- Barometric Pressure {Pa}
- 3.9, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
- 240, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAETau, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- 0.484, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- 1.940; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
-
- ! Dayton Wright Patterson Afb_OH_USA Annual Cooling (DP=>MDB) 2%, MDB=26.5�C DP=22.2�C HR=0.0174
- SizingPeriod:DesignDay,
- Dayton Wright Patterson Afb Ann Clg 2% Condns DP=>MDB, !- Name
- 7, !- Month
- 21, !- Day of Month
- SummerDesignDay,!- Day Type
- 26.5, !- Maximum Dry-Bulb Temperature {C}
- 11, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Dewpoint, !- Humidity Condition Type
- 22.2, !- Dewpoint at Maximum Dry-Bulb {C}
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- , !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily Wet-Bulb Temperature Range {deltaC}
- 98358., !- Barometric Pressure {Pa}
- 3.9, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
- 240, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAETau, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- 0.484, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- 1.940; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
-
- ! Dayton Wright Patterson Afb_OH_USA Annual Cooling (Enthalpy=>MDB) .4%, MDB=30.5�C Enthalpy=78400.0J/kg
- SizingPeriod:DesignDay,
- Dayton Wright Patterson Afb Ann Clg .4% Condns Enth=>MDB, !- Name
- 7, !- Month
- 21, !- Day of Month
- SummerDesignDay,!- Day Type
- 30.5, !- Maximum Dry-Bulb Temperature {C}
- 11, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Enthalpy, !- Humidity Condition Type
- , !- Wetbulb or Dewpoint at Maximum Dry-Bulb
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- 78400.0, !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily Wet-Bulb Temperature Range {deltaC}
- 98358., !- Barometric Pressure {Pa}
- 3.9, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
- 240, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAETau, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- 0.484, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- 1.940; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
-
- ! Dayton Wright Patterson Afb_OH_USA Annual Cooling (Enthalpy=>MDB) 1%, MDB=29.2�C Enthalpy=74800.0J/kg
- SizingPeriod:DesignDay,
- Dayton Wright Patterson Afb Ann Clg 1% Condns Enth=>MDB, !- Name
- 7, !- Month
- 21, !- Day of Month
- SummerDesignDay,!- Day Type
- 29.2, !- Maximum Dry-Bulb Temperature {C}
- 11, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Enthalpy, !- Humidity Condition Type
- , !- Wetbulb or Dewpoint at Maximum Dry-Bulb
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- 74800.0, !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily Wet-Bulb Temperature Range {deltaC}
- 98358., !- Barometric Pressure {Pa}
- 3.9, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
- 240, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAETau, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- 0.484, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- 1.940; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
-
- ! Dayton Wright Patterson Afb_OH_USA Annual Cooling (Enthalpy=>MDB) 2%, MDB=28.5�C Enthalpy=71600.0J/kg
- SizingPeriod:DesignDay,
- Dayton Wright Patterson Afb Ann Clg 2% Condns Enth=>MDB, !- Name
- 7, !- Month
- 21, !- Day of Month
- SummerDesignDay,!- Day Type
- 28.5, !- Maximum Dry-Bulb Temperature {C}
- 11, !- Daily Dry-Bulb Temperature Range {C}
- DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
- , !- Dry-Bulb Temperature Range Modifier Schedule Name
- Enthalpy, !- Humidity Condition Type
- , !- Wetbulb or Dewpoint at Maximum Dry-Bulb
- , !- Humidity Indicating Day Schedule Name
- , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
- 71600.0, !- Enthalpy at Maximum Dry-Bulb {J/kg}
- , !- Daily Wet-Bulb Temperature Range {deltaC}
- 98358., !- Barometric Pressure {Pa}
- 3.9, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
- 240, !- Wind Direction {Degrees; N=0, S=180}
- No, !- Rain {Yes/No}
- No, !- Snow on ground {Yes/No}
- No, !- Daylight Savings Time Indicator
- ASHRAETau, !- Solar Model Indicator
- , !- Beam Solar Day Schedule Name
- , !- Diffuse Solar Day Schedule Name
- 0.484, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
- 1.940; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
-
diff --git a/tests/integration/models/refrig_case_osw/weather/USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.stat b/tests/integration/models/refrig_case_osw/weather/USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.stat
deleted file mode 100644
index 894e2efe..00000000
--- a/tests/integration/models/refrig_case_osw/weather/USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3.stat
+++ /dev/null
@@ -1,554 +0,0 @@
- -EnergyPlus Weather Converter V7.2.0.007
- Statistics for USA_OH_Dayton-Wright.Patterson.AFB.745700_TMY3
- Location -- Dayton Wright Patterson Afb OH USA
- {N 39� 49'} {W 84� 3'} {GMT -5.0 Hours}
- Elevation -- 250m above sea level
- Standard Pressure at Elevation -- 98358Pa
- Data Source -- TMY3
-
- WMO Station 745700
-
- - Displaying Design Conditions from "Climate Design Data 2009 ASHRAE Handbook"
- - ASHRAE design conditions are carefully generated from a period of record
- - (typically 30 years) to be representative of that location and to be suitable
- - for use in heating/cooling load calculations.
-
- Design Stat ColdestMonth DB996 DB990 DP996 HR_DP996 DB_DP996 DP990 HR_DP990 DB_DP990 WS004c DB_WS004c WS010c DB_WS010c WS_DB996 WD_DB996
- Units {} {�C} {�C} {�C} {} {�C} {�C} {} {�C} {m/s} {�C} {m/s} {�C} {m/s} {deg}
- Heating 1 -17 -13 -20.3 0.6 -16.2 -17 0.9 -12.4 11.9 -1.5 10.8 0.2 3.3 260
-
- Design Stat HottestMonth DBR DB004 WB_DB004 DB010 WB_DB010 DB020 WB_DB020 WB004 DB_WB004 WB010 DB_WB010 WB020 DB_WB020 WS_DB004 WD_DB004 DP004 HR_DP004 DB_DP004 DP010 HR_DP010 DB_DP010 DP020 HR_DP020 DB_DP020 EN004 DB_EN004 EN010 DB_EN010 EN020 DB_EN020 #Hrs_8-4_&_DB-12.8/20.6
- Units {} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {m/s} {deg} {�C} {} {�C} {�C} {} {�C} {�C} {} {�C} {kJ/kg} {�C} {kJ/kg} {�C} {kJ/kg} {�C} {}
- Cooling 7 11 33 23.6 31.8 23.1 30.2 22.3 25.3 30.6 24.4 29.5 23.6 28.3 3.9 240 23.8 19.2 28.1 22.8 18.1 27.1 22.2 17.4 26.5 78.4 30.5 74.8 29.2 71.6 28.5 701
-
- Design Stat WS010 WS025 WS050 WBmax DBmin_mean DBmax_mean DBmin_stddev DBmax_stddev DBmin05years DBmax05years DBmin10years DBmax10years DBmin20years DBmax20years DBmin50years DBmax50years
- Units {m/s} {m/s} {m/s} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C}
- Extremes 9.6 8.4 7.5 28.5 -20.9 35.1 4.4 1.7 -24.1 36.3 -26.7 37.3 -29.2 38.2 -32.4 39.4
-
- - Displaying Monthly Design Conditions "Climate Design Data 2009 ASHRAE Handbook"
- - Monthly Optical Sky Depth Beam (taub) and Diffuse (taud)
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- taub (beam) 0.340 0.377 0.439 0.427 0.497 0.493 0.484 0.481 0.413 0.369 0.351 0.330
- taud (diffuse) 2.120 1.992 1.854 1.963 1.798 1.876 1.940 1.930 2.143 2.235 2.231 2.248
-
- taub = Clear Sky Optical Depth for Beam Irradiance
- taud = Clear Sky Optical Depth for Diffuse Irradiance
-
- - Monthly Solar Irradiance Wh/m� (noon on 21st of month)
- ib (beam) 801 819 805 847 793 796 799 789 826 826 788 788
- id (diffuse) 120 151 187 178 214 198 185 182 140 117 106 101
-
- ib = Clear Sky Noon Beam Normal Irradiance on 21st Day
- id = Clear Sky Noon Diffuse Horizontal Irradiance on 21st Day
-
- - Monthly Drybulb and Mean Coincident Wetbulb Temperatures �C
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- Drybulb 0.4% 17.1 18.9 24.4 28.4 30.9 34.0 35.5 34.1 32.6 27.9 22.9 18.3
- Coincident Wetbulb 0.4% 14.5 12.7 15.6 18.7 22.1 22.6 24.1 24.0 22.5 19.8 16.2 14.8
- Drybulb 2.0% 13.9 15.0 21.2 25.9 29.0 32.2 33.2 32.4 30.1 25.2 19.9 15.2
- Coincident Wetbulb 2.0% 12.1 10.5 13.8 16.9 20.5 22.2 24.3 23.7 21.4 17.8 15.1 12.7
- Drybulb 5.0% 11.0 12.3 18.1 23.0 27.2 30.4 31.9 31.0 28.0 22.8 17.7 12.5
- Coincident Wetbulb 5.0% 8.8 9.1 12.7 15.9 19.4 21.9 23.8 23.2 20.2 16.9 14.1 10.5
- Drybulb 10.% 7.6 9.1 15.0 20.9 25.1 28.8 30.1 29.1 26.3 20.8 15.7 9.7
- Coincident Wetbulb 10.% 5.6 6.4 10.8 14.4 18.5 21.1 22.8 21.9 19.5 16.0 12.7 7.7
-
- Drybulb 0.4% = 0.4% Monthly Design Drybulb Temperature
- Coincident Wetbulb 0.4% = 0.4% Monthly Mean Coincident Wetbulb Temperature
- Drybulb 2.0% = 2.0% Monthly Design Drybulb Temperature
- Coincident Wetbulb 2.0% = 2.0% Monthly Mean Coincident Wetbulb Temperature
- Drybulb 5.0% = 5.0% Monthly Design Drybulb Temperature
- Coincident Wetbulb 5.0% = 5.0% Monthly Mean Coincident Wetbulb Temperature
- Drybulb 10.% = 10.% Monthly Design Drybulb Temperature
- Coincident Wetbulb 10.% = 10.% Monthly Mean Coincident Wetbulb Temperature
-
- - Monthly Drybulb and Wetbulb Daily Ranges delta�C
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- Drybulb 8.2 9.2 10.5 11.9 11.5 11.2 11.0 11.2 11.9 11.5 9.4 7.9
- Drybulb range - DB 5% 10.4 13.6 14.7 14.7 13.9 13.1 12.3 12.6 13.6 14.1 12.3 10.6
- Wetbulb range - DB 5% 8.5 9.9 9.3 8.4 7.0 5.7 5.1 5.4 6.2 7.9 8.9 8.9
-
- Drybulb = Mean Daily Dry Bulb Temperature Range
- Drybulb range - DB 5% = Mean Daily Dry Bulb Temperature Range Coincident with 5% Design Dry Bulb Temperature
- Wetbulb range - DB 5% = Mean Daily Wet Bulb Temperature Range Coincident with 5% Design Dry Bulb Temperature
-
- - Displaying Heating/Cooling Degree Days/Hours from "Climate Design Data 2009 ASHRAE Handbook"
- - Monthly Standard Heating/Cooling Degree Days/Hours
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- HDD base 10�C 361 269 179 48 3 0 0 0 1 28 128 299
- HDD base 18.3�C 615 499 414 219 87 13 1 3 46 191 349 552
-
- CDD base 10�C 4 3 24 86 211 349 431 400 263 104 29 6
- CDD base 18.3�C 0 0 1 7 36 112 174 144 58 8 1 0
-
- CDH base 23.3�C 0 0 8 81 341 1019 1632 1261 500 68 3 0
- CDH base 26.7�C 0 0 0 13 84 363 624 446 143 9 0 0
-
- - 1911 annual (standard) cooling degree-days (10�C baseline)
- - 1317 annual (standard) heating degree-days (10�C baseline)
-
- - 541 annual (standard) cooling degree-days (18.3�C baseline)
- - 2989 annual (standard) heating degree-days (18.3�C baseline)
-
- - Monthly Statistics for Dry Bulb temperatures �C
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- Maximum 19.0 22.2 21.0 25.0 28.0 35.5 36.1 32.2 30.5 26.0 23.0 20.0
- Day:Hour 12:15 27:14 8:14 4:14 24:15 18:14 22:13 27:15 5:16 2:14 7:14 5:14
-
- Minimum -19.0 -21.2 -16.0 -8.0 3.0 7.2 12.2 8.8 1.1 -1.0 -7.0 -13.0
- Day:Hour 23:24 4:07 4:06 9:03 1:24 3:05 31:05 10:05 23:03 7:06 14:06 30:07
-
- Daily Avg -0.4 -0.2 3.5 9.0 13.8 22.7 24.6 21.3 17.5 12.2 3.4 2.6
-
- - Maximum Dry Bulb temperature of 36.1�C on Jul 22
- - Minimum Dry Bulb temperature of -21.2�C on Feb 4
-
- - Monthly Statistics for Extreme Dry Bulb temperatures �C
- #Days Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- Max >= 32 9 11 1
- Max <= 0 12 10 3 2 8
- Min <= 0 21 18 17 13 4 19 18
- Min <=-18 3 3
-
- - Monthly Statistics for Dew Point temperatures �C
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- Maximum 17.0 14.4 13.0 14.0 19.0 23.3 23.9 24.4 20.5 19.0 16.0 14.0
- Day:Hour 12:10 27:10 9:14 12:13 18:17 23:14 12:13 14:03 12:12 12:15 7:04 13:09
-
- Minimum -19.0 -23.9 -18.0 -13.0 -6.0 -3.9 7.8 8.3 -5.0 -5.0 -12.0 -14.0
- Day:Hour 23:24 4:08 4:04 9:13 15:15 2:14 16:16 6:05 22:17 25:18 12:11 30:02
-
- Daily Avg -2.1 -5.5 -1.6 -0.1 5.8 15.3 16.6 16.6 11.1 6.5 -0.7 -0.6
-
- - Maximum Dew Point temperature of 24.4�C on Aug 14
- - Minimum Dew Point temperature of -23.9�C on Feb 4
-
- - Average Hourly Statistics for Dry Bulb temperatures �C
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- 0:01- 1:00 -1.1 -1.4 1.7 5.2 11.3 19.2 20.9 17.9 14.4 10.2 2.3 1.7
- 1:01- 2:00 -1.2 -1.8 1.2 4.8 10.9 19.0 20.5 17.5 13.8 9.8 2.0 1.6
- 2:01- 3:00 -1.6 -2.1 1.2 4.4 10.4 18.5 20.3 17.3 13.3 9.3 1.8 1.4
- 3:01- 4:00 -1.6 -2.3 1.0 4.0 9.8 18.0 19.5 16.9 13.0 8.8 1.4 1.4
- 4:01- 5:00 -1.8 -2.6 0.7 3.4 9.3 17.6 19.2 16.5 12.9 8.6 1.4 1.2
- 5:01- 6:00 -1.6 -2.7 0.5 3.1 9.3 17.7 19.0 16.4 12.8 8.2 1.4 1.0
- 6:01- 7:00 -1.7 -2.9 0.4 3.9 10.9 19.2 20.4 17.2 12.8 8.0 1.4 0.8
- 7:01- 8:00 -1.7 -2.8 1.1 6.2 12.6 21.2 22.4 19.0 14.6 9.2 1.7 0.9
- 8:01- 9:00 -1.1 -1.9 2.8 8.3 14.2 22.9 24.3 21.1 16.9 11.3 2.2 1.6
- 9:01-10:00 -0.4 -0.9 3.8 10.3 15.3 24.4 25.9 22.9 19.0 12.8 3.0 2.9
- 10:01-11:00 0.2 0.2 4.6 11.2 16.0 25.6 27.2 24.3 20.5 14.5 3.8 3.7
- 11:01-12:00 0.8 1.3 5.5 12.5 16.7 26.5 28.4 25.2 21.6 15.6 4.6 4.7
- 12:01-13:00 1.0 2.0 6.2 13.5 17.2 27.3 29.1 25.9 22.3 16.4 5.4 5.1
- 13:01-14:00 1.3 2.4 6.8 14.1 17.5 27.8 29.7 26.4 22.6 16.8 5.8 5.3
- 14:01-15:00 1.6 2.8 7.1 14.6 17.8 27.7 29.8 26.5 22.9 17.2 6.1 5.3
- 15:01-16:00 1.6 2.8 7.0 14.5 17.6 27.1 29.8 26.4 23.1 16.8 6.2 5.2
- 16:01-17:00 1.3 2.6 6.7 14.0 17.1 26.9 29.9 25.7 22.7 16.0 5.4 4.4
- 17:01-18:00 0.5 1.9 6.0 13.3 16.6 26.2 28.7 24.8 21.5 14.4 4.5 3.5
- 18:01-19:00 -0.1 1.1 4.5 11.9 15.7 25.0 27.8 23.5 19.3 13.3 4.2 2.8
- 19:01-20:00 -0.4 0.7 3.6 10.6 14.4 23.6 25.8 21.7 17.9 12.2 3.8 2.6
- 20:01-21:00 -0.7 0.1 3.1 9.6 13.5 22.0 24.0 20.7 16.6 11.7 3.3 2.0
- 21:01-22:00 -0.7 -0.7 2.7 8.3 12.7 20.9 23.0 19.8 15.6 11.2 3.1 1.5
- 22:01-23:00 -1.0 -1.0 2.5 7.4 12.2 20.0 22.2 19.1 15.1 10.6 3.1 1.3
- 23:01-24:00 -1.6 -1.0 2.2 6.7 11.6 19.7 21.7 18.4 14.4 10.4 2.7 1.3
- Max Hour 16 16 15 15 15 14 17 15 16 15 16 14
- Min Hour 5 7 7 6 5 5 6 6 6 7 5 7
-
- - Average Hourly Statistics for Dew Point temperatures �C
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- 0:01- 1:00 -2.2 -6.0 -2.2 0.2 5.9 15.0 17.2 16.5 11.5 6.2 -1.5 -0.6
- 1:01- 2:00 -2.3 -6.1 -2.3 0.1 5.6 15.4 17.2 16.5 11.2 6.2 -1.5 -0.8
- 2:01- 3:00 -2.7 -6.4 -2.2 -0.2 5.7 15.4 17.0 16.3 11.0 6.2 -1.5 -0.6
- 3:01- 4:00 -2.7 -6.3 -2.4 -0.2 5.6 15.3 16.8 16.2 11.0 6.2 -1.8 -0.6
- 4:01- 5:00 -2.8 -6.4 -2.5 -0.6 5.6 15.2 16.7 15.9 11.1 6.1 -1.7 -0.7
- 5:01- 6:00 -2.7 -6.5 -2.5 -0.6 5.6 15.3 16.6 15.8 10.9 5.8 -1.8 -0.9
- 6:01- 7:00 -2.7 -6.5 -2.7 0.0 5.8 16.0 17.2 16.4 10.9 5.8 -1.6 -0.9
- 7:01- 8:00 -2.7 -6.6 -2.1 0.6 5.8 16.2 17.3 16.9 11.8 6.5 -1.5 -1.0
- 8:01- 9:00 -2.5 -6.1 -1.6 0.5 5.5 16.1 17.2 17.2 12.1 7.0 -1.3 -0.4
- 9:01-10:00 -1.9 -5.9 -1.4 0.0 5.6 15.9 16.8 17.3 11.9 7.0 -0.8 0.1
- 10:01-11:00 -1.7 -5.7 -1.2 -0.2 5.6 15.7 16.3 16.9 11.4 6.7 -1.1 0.0
- 11:01-12:00 -1.5 -5.5 -0.9 -0.4 5.6 15.3 16.3 16.8 11.1 6.6 -0.3 0.2
- 12:01-13:00 -1.3 -5.0 -0.8 -0.2 5.6 14.9 15.9 16.5 10.8 6.9 -0.0 -0.2
- 13:01-14:00 -1.3 -4.9 -0.9 -0.2 5.5 14.6 15.8 16.4 10.1 6.8 0.3 -0.2
- 14:01-15:00 -1.3 -4.6 -0.6 0.2 5.3 14.3 15.6 16.4 9.9 6.9 0.4 -0.4
- 15:01-16:00 -1.2 -4.5 -0.9 0.1 6.0 13.9 15.8 16.3 10.0 6.8 0.3 -0.2
- 16:01-17:00 -1.3 -4.2 -0.9 0.0 6.2 14.2 15.7 16.5 9.9 6.6 0.2 -0.3
- 17:01-18:00 -1.5 -4.4 -0.8 -0.4 6.1 14.3 15.9 16.6 10.3 6.9 -0.0 -0.5
- 18:01-19:00 -2.0 -4.1 -1.1 -0.4 5.9 14.9 16.1 16.7 11.2 6.8 -0.2 -0.6
- 19:01-20:00 -2.0 -4.1 -1.3 -0.3 5.7 15.2 16.6 17.0 11.6 6.8 -0.3 -0.8
- 20:01-21:00 -2.3 -4.8 -1.5 -0.1 6.0 15.8 17.0 17.1 11.7 6.6 -0.3 -1.0
- 21:01-22:00 -2.3 -5.1 -1.7 0.0 6.4 16.0 17.4 17.0 11.6 6.6 -0.4 -1.1
- 22:01-23:00 -2.6 -5.6 -1.6 0.0 6.3 15.7 17.4 16.9 11.3 6.3 -0.6 -1.1
- 23:01-24:00 -2.8 -5.8 -1.7 0.0 6.3 15.3 17.2 16.7 11.3 6.3 -0.7 -1.0
- Max Hour 16 19 15 8 22 8 23 10 9 9 15 12
- Min Hour 24 8 7 5 15 16 15 6 17 6 4 23
-
- - Monthly Statistics for Relative Humidity %
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- Maximum 100 93 100 100 100 100 100 100 100 100 100 100
- Day:Hour 1:01 20:08 2:13 5:10 3:01 7:05 20:05 8:03 17:07 1:03 6:09 1:23
-
- Minimum 46 20 25 15 25 19 24 37 25 28 25 32
- Day:Hour 28:14 24:17 6:16 2:13 15:12 2:16 16:16 19:15 11:15 31:16 4:16 5:15
-
- Daily Avg 88 68 72 57 62 67 65 77 70 71 75 80
-
- - Average Hourly Relative Humidity %
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- 0:01- 1:00 92 70 76 70 71 78 80 92 83 78 76 85
- 1:01- 2:00 92 72 79 72 71 80 82 94 85 79 77 84
- 2:01- 3:00 92 72 79 73 73 83 82 95 86 82 78 86
- 3:01- 4:00 92 73 79 74 76 85 84 96 88 84 79 87
- 4:01- 5:00 93 74 80 75 78 86 86 96 89 85 79 87
- 5:01- 6:00 92 74 82 77 78 87 86 96 88 86 79 88
- 6:01- 7:00 93 75 81 76 71 82 82 95 89 87 80 88
- 7:01- 8:00 93 74 80 68 64 74 73 88 84 84 78 87
- 8:01- 9:00 91 72 74 59 58 67 66 79 74 76 77 86
- 9:01-10:00 89 68 70 50 55 61 59 72 65 69 75 82
- 10:01-11:00 87 64 68 47 53 57 53 65 59 61 70 77
- 11:01-12:00 84 60 66 43 51 53 50 60 54 56 71 73
- 12:01-13:00 84 60 63 41 50 50 46 57 51 55 69 70
- 13:01-14:00 83 59 61 40 48 48 44 55 49 53 69 69
- 14:01-15:00 81 59 61 40 47 47 44 55 47 52 69 68
- 15:01-16:00 81 59 60 40 51 49 44 55 47 54 68 70
- 16:01-17:00 83 61 61 41 53 50 43 58 47 56 71 73
- 17:01-18:00 86 63 63 42 54 51 47 62 51 63 73 76
- 18:01-19:00 87 68 69 45 57 56 50 67 60 66 74 78
- 19:01-20:00 89 70 72 49 59 62 58 75 68 71 75 79
- 20:01-21:00 89 69 73 52 63 70 66 80 74 72 77 81
- 21:01-22:00 89 71 74 59 67 75 71 84 77 74 77 84
- 22:01-23:00 90 70 76 62 69 78 75 88 79 76 77 84
- 23:01-24:00 92 70 77 64 71 78 76 91 82 77 78 85
- Max Hour 7 7 6 6 6 6 6 5 5 7 7 7
- Min Hour 16 14 16 15 15 15 17 16 16 15 16 15
-
- - Monthly Indicators for Precipitation/Moisture (kPa)
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- 0.7 0.5 0.6 0.7 1.0 1.7 1.8 1.9 1.3 1.1 0.7 0.6
-
- - Monthly Statistics for Wind Chill/Heat Index temperatures �C **
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- Minimum WC -30 -35 -33 -18 -4 9 8 -1 -11 -14 -27
- Day:Hour 22:24 5:10 4:04 9:08 1:10 3:06 10:05 23:04 26:09 15:07 30:10
-
- Average WC -8 -11 -6 -1 3 9 10 5 0 -3 -5
- Avg Del WC 5 8 7 5 4 -1 0 1 5 4 6
- # Hours WC 548 573 555 284 140 1 5 53 217 576 543
-
- Maximum HI 27 38 39 36 28
- Day:Hour 18:18 21:15 7:17 13:14 4:18
-
- Average HI 27 32 32 30 27
- Avg Del HI 0 2 2 1 0
- # Hours HI 5 111 161 108 3
-
- - **WindChill/HeatIndex Temps -- statistics...only those different from Air Temps
-
- - Monthly Wind Direction % {N=0 or 360,E=90,S=180,W=270}
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- North 22 12 7 12 9 12 52 18 11 2 11 5
- NorthEast 15 6 13 15 12 14 9 19 22 3 9 6
- East 10 3 7 7 4 7 2 6 9 4 6 9
- SouthEast 7 6 12 6 8 6 2 6 8 14 11 11
- South 10 14 16 9 9 12 3 13 17 29 21 15
- SouthWest 15 18 16 14 21 23 6 16 13 26 8 21
- West 10 24 19 20 20 14 20 15 12 17 19 26
- NorthWest 12 16 10 17 16 12 7 7 8 5 14 7
-
- - Monthly Statistics for Wind Speed m/s
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- Maximum 10.3 14.4 13.9 12.9 11.8 10.2 9.8 10.8 8.7 12.9 12.3 13.9
- Day:Hour 13:09 24:01 9:15 6:17 5:13 13:15 2:18 4:12 22:14 25:11 7:12 14:13
-
- Minimum 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5 0.5 0.5
- Day:Hour 1:03 6:06 13:06 2:22 11:04 4:07 1:04 1:24 12:03 1:04 13:08 1:24
-
- Daily Avg 3.4 5.2 4.5 3.6 4.3 3.3 1.3 3.2 2.9 3.9 3.5 3.7
-
- - Maximum Wind Speed of 14.4 m/s on Feb 24
- - Minimum Wind Speed of 0.0 m/s on Jan 1
-
- - Average Hourly Statistics for Wind Speed m/s
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- 0:01- 1:00 3.1 4.8 4.0 2.6 3.4 2.2 0.5 1.9 2.2 3.0 3.1 3.3
- 1:01- 2:00 3.0 4.8 3.8 2.7 3.3 2.4 0.6 2.1 2.2 2.8 3.1 3.4
- 2:01- 3:00 2.9 4.3 3.8 2.8 3.3 2.5 0.4 2.0 2.1 3.0 3.0 3.5
- 3:01- 4:00 2.9 4.9 4.0 2.6 3.2 2.3 0.6 2.2 2.0 3.0 3.2 3.6
- 4:01- 5:00 2.9 4.4 3.7 2.6 3.2 2.3 0.3 2.3 2.1 3.1 3.2 3.5
- 5:01- 6:00 3.2 4.8 3.4 2.6 3.5 2.6 0.4 2.4 2.1 2.9 3.2 3.5
- 6:01- 7:00 3.2 4.6 3.7 2.7 3.7 2.6 0.8 2.4 2.2 3.1 3.1 3.7
- 7:01- 8:00 3.3 4.6 4.3 3.1 4.3 3.4 1.3 2.8 2.6 3.3 3.1 3.6
- 8:01- 9:00 3.9 5.1 4.9 3.7 5.0 3.9 1.5 3.5 3.1 4.3 3.7 3.6
- 9:01-10:00 3.8 6.0 5.2 4.2 5.2 4.3 2.0 4.2 3.7 4.6 4.0 4.3
- 10:01-11:00 4.0 6.0 5.5 4.4 5.2 4.2 1.9 4.5 3.8 5.4 4.4 4.4
- 11:01-12:00 4.1 6.7 5.5 4.8 5.4 4.3 2.1 4.2 3.8 5.8 4.5 4.3
- 12:01-13:00 4.1 7.0 5.7 4.7 5.6 4.3 2.3 4.7 3.9 5.5 4.5 4.8
- 13:01-14:00 3.9 6.8 5.7 5.1 5.4 4.7 2.3 4.9 4.1 5.7 4.5 4.8
- 14:01-15:00 3.8 6.4 5.9 5.0 5.3 4.5 2.1 4.9 4.3 5.5 4.4 4.3
- 15:01-16:00 3.7 6.2 5.6 4.7 5.7 4.6 2.1 4.4 4.1 5.3 4.3 4.0
- 16:01-17:00 3.7 5.8 5.5 4.9 4.9 4.2 2.1 4.5 4.2 4.6 3.7 3.8
- 17:01-18:00 3.7 5.1 5.1 4.5 4.9 4.3 2.4 4.0 3.4 3.6 3.1 3.4
- 18:01-19:00 3.3 4.4 4.2 3.8 4.3 3.6 1.7 3.3 2.8 3.1 3.2 3.3
- 19:01-20:00 3.2 4.2 3.6 3.2 3.8 3.2 0.9 3.0 2.3 3.3 3.0 3.3
- 20:01-21:00 3.1 4.4 3.7 3.2 3.5 2.4 0.6 2.3 2.2 3.0 3.1 3.4
- 21:01-22:00 3.3 4.7 3.6 3.2 3.5 2.1 0.7 1.9 2.2 3.0 3.0 3.2
- 22:01-23:00 3.0 4.7 3.6 2.9 3.3 2.0 0.5 2.0 2.1 3.1 2.8 3.1
- 23:01-24:00 2.9 5.0 3.8 2.8 3.4 2.1 0.6 2.1 2.0 3.0 2.9 3.3
- Max Hour 12 13 15 14 16 14 18 15 15 12 12 14
- Min Hour 5 20 6 1 5 23 5 22 4 2 23 23
-
- - Average Hourly Statistics for Wind Direction � {N=0 or 360,E=90,S=180,W=270}
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- 0:01- 1:00 164 218 163 187 195 191 44 154 114 166 220 176
- 1:01- 2:00 168 209 178 189 178 189 46 122 110 166 210 176
- 2:01- 3:00 164 222 171 178 195 160 58 125 130 157 218 177
- 3:01- 4:00 157 211 169 164 189 171 56 133 137 159 224 181
- 4:01- 5:00 155 202 183 216 188 164 41 129 122 170 218 192
- 5:01- 6:00 159 211 180 196 189 170 64 127 142 174 206 192
- 6:01- 7:00 169 208 168 187 210 160 75 140 130 180 212 179
- 7:01- 8:00 183 187 172 198 205 161 103 162 150 182 198 179
- 8:01- 9:00 172 185 176 191 223 175 145 180 160 197 188 173
- 9:01-10:00 183 204 183 202 216 204 168 209 171 207 194 173
- 10:01-11:00 177 204 181 213 218 176 165 209 166 212 200 194
- 11:01-12:00 210 215 189 218 207 198 192 180 183 213 195 205
- 12:01-13:00 203 235 208 193 222 195 229 186 180 213 198 214
- 13:01-14:00 203 231 209 214 209 215 196 211 181 219 205 212
- 14:01-15:00 204 234 207 218 222 215 194 180 191 214 197 208
- 15:01-16:00 212 222 180 223 226 174 205 197 185 212 210 213
- 16:01-17:00 191 224 192 215 232 176 199 201 177 212 203 203
- 17:01-18:00 196 229 192 213 215 205 208 177 179 207 204 203
- 18:01-19:00 184 230 191 202 215 179 163 184 173 188 185 213
- 19:01-20:00 197 224 196 201 208 188 111 170 171 199 180 198
- 20:01-21:00 200 229 180 217 192 180 58 183 150 187 210 200
- 21:01-22:00 186 210 149 195 194 189 79 171 156 177 165 205
- 22:01-23:00 167 214 163 179 193 178 57 153 147 173 152 207
- 23:01-24:00 183 213 169 173 195 165 55 154 128 173 185 200
- Max Hour 16 13 14 16 17 14 13 14 15 14 4 13
- Min Hour 5 9 22 4 2 7 5 2 2 3 23 10
-
- - Monthly Statistics for Liquid Precipitation mm
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- Total 320 107 190 47 149 116 54 98 74 233 105 175
- Max Hourly 22 23 18 10 24 45 22 35 18 24 21 31
-
- - Monthly Statistics for Albedo
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- Average 0.180 0.180 0.170 0.160 0.190 0.190 0.190 0.170 0.190 0.170 0.170 0.180
-
- - Monthly Statistics for Solar Radiation (Direct Normal, Diffuse, Global Horizontal) Wh/m�
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- Direct Avg 2110 1496 2987 3541 3349 3952 4543 3319 3973 3454 1678 1609
-
- Direct Max 6403 7534 8109 8329 9762 7022 8628 7874 8435 6848 6414 5048
- Day 27 24 23 14 22 1 15 22 23 3 3 2
-
- Diffuse Avg 1049 1214 1611 2388 2751 3015 2750 2579 1891 1417 1073 808
-
- Global Avg 1832 1899 3261 4633 5038 5923 5918 4761 4252 3169 1757 1363
- - Maximum Direct Normal Solar of 9762 Wh/m� on May 22
-
- - Average Hourly Statistics for Direct Normal Solar Radiation Wh/m�
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0
- 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0
- 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0
- 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0
- 4:01- 5:00 0 0 0 0 0 0 0 0 0 0 0 0
- 5:01- 6:00 0 0 0 1 15 10 9 1 0 0 0 0
- 6:01- 7:00 0 0 4 79 147 115 147 43 31 0 0 0
- 7:01- 8:00 0 12 66 240 243 270 253 204 173 99 17 0
- 8:01- 9:00 31 88 232 339 299 311 413 300 306 278 137 34
- 9:01-10:00 207 156 255 369 353 354 369 350 391 364 163 181
- 10:01-11:00 192 159 290 342 296 418 391 320 448 415 218 234
- 11:01-12:00 304 220 329 369 328 399 368 270 396 452 224 215
- 12:01-13:00 312 194 308 376 307 410 419 296 430 434 255 215
- 13:01-14:00 274 210 359 357 299 420 449 320 401 410 219 202
- 14:01-15:00 217 177 334 317 267 359 413 303 453 358 199 205
- 15:01-16:00 263 124 325 269 253 289 412 302 379 289 153 213
- 16:01-17:00 258 110 263 207 231 238 369 280 329 274 87 111
- 17:01-18:00 51 46 189 182 178 208 266 217 199 81 6 0
- 18:01-19:00 0 2 33 89 115 129 204 105 37 0 0 0
- 19:01-20:00 0 0 0 4 17 23 62 8 0 0 0 0
- 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0
- 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0
- 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0
- 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0
- Max Hour* 13 12 14 13 10* 14 14 10* 15 12 13 11*
- Min Hour 1 1 1 1 1 1 1 1 1 1 1 1
-
- - Average Hourly Statistics for Diffuse Horizontal Solar Radiation Wh/m�
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0
- 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0
- 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0
- 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0
- 4:01- 5:00 0 0 0 0 0 0 0 0 0 0 0 0
- 5:01- 6:00 0 0 0 0 9 18 9 0 0 0 0 0
- 6:01- 7:00 0 0 0 30 56 75 64 40 14 0 0 0
- 7:01- 8:00 0 5 43 77 116 134 130 99 72 43 9 0
- 8:01- 9:00 21 42 113 143 163 196 176 153 120 100 55 24
- 9:01-10:00 98 84 143 197 234 250 222 200 175 129 104 76
- 10:01-11:00 137 140 172 255 285 281 268 260 201 163 144 109
- 11:01-12:00 156 169 191 273 294 324 280 291 227 189 166 118
- 12:01-13:00 156 180 188 285 318 326 304 323 249 199 159 138
- 13:01-14:00 163 179 195 280 341 318 314 301 241 173 175 130
- 14:01-15:00 139 162 192 300 295 310 280 298 203 182 128 103
- 15:01-16:00 114 137 170 232 236 283 235 241 171 139 90 77
- 16:01-17:00 61 87 127 170 196 231 205 178 134 80 42 33
- 17:01-18:00 5 30 69 102 131 151 151 125 69 20 2 0
- 18:01-19:00 0 0 8 43 65 86 83 62 15 0 0 0
- 19:01-20:00 0 0 0 1 14 33 28 6 0 0 0 0
- 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0
- 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0
- 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0
- 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0
- Max Hour 14 13 14 15 14 13 14 13 13 13 14 13
- Min Hour 1 1 1 1 1 1 1 1 1 1 1 1
-
- - Average Hourly Statistics for Global Horizontal Solar Radiation Wh/m�
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0
- 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0
- 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0
- 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0
- 4:01- 5:00 0 0 0 0 0 0 0 0 0 0 0 0
- 5:01- 6:00 0 0 0 0 10 18 10 0 0 0 0 0
- 6:01- 7:00 0 0 0 39 85 102 94 46 16 0 0 0
- 7:01- 8:00 0 5 54 146 210 246 226 163 111 58 10 0
- 8:01- 9:00 24 57 189 301 331 379 406 301 245 187 83 28
- 9:01-10:00 149 136 268 427 485 511 484 428 396 298 161 121
- 10:01-11:00 209 214 351 512 531 637 592 509 509 403 242 193
- 11:01-12:00 294 291 422 578 592 693 614 523 528 479 280 211
- 12:01-13:00 310 295 414 608 605 718 699 588 590 487 295 237
- 13:01-14:00 295 303 454 581 613 712 731 580 548 434 284 218
- 14:01-15:00 234 255 410 545 520 623 638 544 515 379 211 178
- 15:01-16:00 201 189 347 408 419 504 549 452 388 263 135 132
- 16:01-17:00 109 118 232 273 329 378 434 332 270 152 55 46
- 17:01-18:00 7 36 112 160 203 245 271 207 117 29 2 0
- 18:01-19:00 0 0 10 55 90 121 138 83 19 0 0 0
- 19:01-20:00 0 0 0 1 15 35 33 7 0 0 0 0
- 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0
- 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0
- 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0
- 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0
- Max Hour 13 14 14 13 14 13 14 13 13 13 13 13
- Min Hour 1 1 1 1 1 1 1 1 1 1 1 1
-
- - Average Hourly Statistics for Total Sky Cover %
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- 0:01- 1:00 79 64 76 53 68 67 41 56 44 59 75 75
- 1:01- 2:00 75 73 78 56 69 67 44 51 48 59 74 76
- 2:01- 3:00 72 69 75 54 65 62 44 64 51 63 76 75
- 3:01- 4:00 73 79 78 58 62 62 48 60 51 60 75 78
- 4:01- 5:00 79 80 77 50 64 64 55 58 57 61 77 75
- 5:01- 6:00 81 80 77 57 71 70 65 59 54 58 76 76
- 6:01- 7:00 83 78 79 57 68 66 55 67 57 58 81 72
- 7:01- 8:00 84 83 81 61 68 57 59 64 58 58 83 75
- 8:01- 9:00 86 80 85 60 66 66 48 62 54 61 78 69
- 9:01-10:00 85 79 87 66 69 67 58 60 53 62 84 74
- 10:01-11:00 84 81 87 74 76 60 65 71 54 68 83 74
- 11:01-12:00 82 80 86 72 79 65 70 78 58 68 82 74
- 12:01-13:00 82 84 85 73 80 67 64 78 62 66 78 73
- 13:01-14:00 81 81 79 75 83 65 64 74 60 69 81 77
- 14:01-15:00 83 87 82 79 84 70 61 74 55 66 81 72
- 15:01-16:00 82 88 84 81 84 73 62 68 54 71 81 74
- 16:01-17:00 83 88 86 83 81 77 59 66 53 66 78 74
- 17:01-18:00 82 88 88 76 80 76 61 62 54 70 75 69
- 18:01-19:00 81 91 86 72 75 74 51 65 60 69 76 70
- 19:01-20:00 79 84 85 67 73 75 42 62 54 73 75 67
- 20:01-21:00 78 75 81 63 71 75 40 63 52 66 76 79
- 21:01-22:00 80 80 80 62 67 69 36 56 45 59 80 80
- 22:01-23:00 81 76 82 57 66 67 35 56 48 60 76 67
- 23:01-24:00 76 71 79 57 69 59 38 58 42 57 77 69
- Max Hour 9 19 18 17 16 17 12 12 13 20 10 22
- Min Hour 3 1 3 5 4 8 23 2 24 24 2 20
-
- - Average Hourly Statistics for Opaque Sky Cover %
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- 0:01- 1:00 75 62 72 45 60 58 34 48 40 53 65 70
- 1:01- 2:00 70 70 73 48 61 58 37 46 43 53 65 72
- 2:01- 3:00 69 65 73 49 59 53 38 54 45 55 66 71
- 3:01- 4:00 70 76 74 51 56 54 43 51 46 55 64 73
- 4:01- 5:00 75 77 74 45 56 54 47 51 50 55 64 71
- 5:01- 6:00 79 77 73 51 63 59 56 52 46 52 66 72
- 6:01- 7:00 80 76 75 49 60 54 47 56 49 51 70 69
- 7:01- 8:00 79 78 76 52 59 46 50 55 52 50 76 69
- 8:01- 9:00 81 79 79 53 59 52 40 54 48 54 69 66
- 9:01-10:00 80 76 82 56 59 55 50 52 48 53 76 71
- 10:01-11:00 80 77 84 63 68 48 56 61 47 58 72 70
- 11:01-12:00 77 75 82 61 68 54 60 67 51 59 71 69
- 12:01-13:00 79 80 80 63 70 54 55 66 52 57 69 69
- 13:01-14:00 75 76 75 64 72 53 53 63 52 59 71 71
- 14:01-15:00 78 81 80 67 74 57 50 63 46 57 72 69
- 15:01-16:00 77 81 81 70 73 61 51 60 48 62 70 69
- 16:01-17:00 80 78 83 72 70 64 52 56 45 59 69 69
- 17:01-18:00 79 81 83 64 70 63 55 55 47 61 66 65
- 18:01-19:00 79 83 81 61 66 63 45 55 53 58 68 67
- 19:01-20:00 77 81 79 60 63 63 37 53 49 63 67 62
- 20:01-21:00 76 71 78 55 62 61 35 55 47 56 67 74
- 21:01-22:00 78 79 76 54 57 59 32 50 40 54 70 75
- 22:01-23:00 78 73 80 49 55 53 31 49 45 51 67 60
- 23:01-24:00 73 68 76 48 59 49 35 50 40 47 69 64
- Max Hour 9 19 11 17 15 17 12 12 19 20 10 22
- Min Hour 3 1 1 1 23 8 23 2 24 24 4 23
-
- - Monthly Calculated "undisturbed" Ground Temperatures** �C
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- 0.5 m 4.4 0.5 -0.5 0.4 5.6 11.5 17.0 20.9 22.1 20.2 15.7 10.1
- 2.0 m 7.9 4.3 2.5 2.5 5.2 9.2 13.5 17.2 19.1 18.8 16.2 12.3
- 4.0 m 10.2 7.3 5.6 5.1 6.1 8.4 11.3 14.2 16.1 16.5 15.4 13.1
-
- - **These ground temperatures should NOT BE USED in the GroundTemperatures object to compute building floor losses.
- - The temperatures for 0.5 m depth can be used for GroundTemperatures:Surface.
- - The temperatures for 4.0 m depth can be used for GroundTemperatures:Deep.
- - Calculations use a standard soil diffusivity of 2.3225760E-03 {m**2/day}
-
- - Heating/Cooling Degree Days/Hours calculated from this weather file.
- - Heating/Cooling Degree Days/Hours from design conditions shown earlier in this report.
- - Monthly Weather File Heating/Cooling Degree Days/Hours
- Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
- HDD base 10C 340 293 212 70 2 0 0 0 2 40 212 239
- HDD base 18C 571 511 451 270 141 6 0 5 50 184 439 477
-
- CDD base 10C 17 6 9 40 119 380 451 350 227 109 12 10
- CDD base 18C 0 0 0 0 10 146 203 107 34 5 0 0
-
- CDH base 20C 0 9 1 104 286 2746 3732 2023 858 191 11 0
- CDH base 23C 0 0 0 18 103 1477 2156 925 357 34 0 0
- CDH base 27C 0 0 0 0 2 532 770 209 46 0 0 0
-
- - 1731 annual (wthr file) cooling degree-days (10�C baseline)
- - 1410 annual (wthr file) heating degree-days (10�C baseline)
-
- - 505 annual (wthr file) cooling degree-days (18�C baseline)
- - 3105 annual (wthr file) heating degree-days (18�C baseline)
-
- - Climate type "Dfa" (K�ppen classification)**
- - Humid continental (hot summer, cold winter, no dry season, lat. 30-60�N)
- - Unbearably hot dry periods in summer, but passive cooling is possible
- - **Note that the K�ppen classification shown here is derived algorithmically from the source weather data.
- - It may not be indicative of the long term climate for this location.
-
- - Climate type "5A" (ASHRAE Standard 196-2006 Climate Zone)**
- - Cool - Humid, Probable K�ppen classification=Dfa, Humid Continental (Warm Summer)
- - **Note that the ASHRAE classification shown here is derived algorithmically from the source weather data.
- - It may not be indicative of the long term climate for this location.
-
- - Typical/Extreme Period Determination
-
- - Summer is Jun:Aug
- Extreme Summer Week (nearest maximum temperature for summer)
- Extreme Hot Week Period selected: Jun 15:Jun 21, Maximum Temp= 36.10�C, Deviation=| 9.291|�C
- Typical Summer Week (nearest average temperature for summer)
- Typical Week Period selected: Aug 24:Aug 30, Average Temp= 22.84�C, Deviation=| 0.284|�C
-
- - Winter is Dec:Feb
- Extreme Winter Week (nearest minimum temperature for winter)
- Extreme Cold Week Period selected: Jan 27:Feb 2, Minimum Temp= -21.20�C, Deviation=|13.713|�C
- Typical Winter Week (nearest average temperature for winter)
- Typical Week Period selected: Feb 10:Feb 16, Average Temp= 0.68�C, Deviation=| 1.174|�C
-
- - Autumn is Sep:Nov
- Typical Autumn Week (nearest average temperature for autumn)
- Typical Week Period selected: Oct 13:Oct 19, Average Temp= 11.03�C, Deviation=| 0.250|�C
-
- - Spring is Mar:May
- Typical Spring Week (nearest average temperature for spring)
- Typical Week Period selected: Mar 29:Apr 4, Average Temp= 8.74�C, Deviation=| 0.718|�C
diff --git a/tests/integration/models/refrig_case_osw/weather/weather_data.csv b/tests/integration/models/refrig_case_osw/weather/weather_data.csv
deleted file mode 100644
index 473dd9d6..00000000
--- a/tests/integration/models/refrig_case_osw/weather/weather_data.csv
+++ /dev/null
@@ -1,525601 +0,0 @@
-Date,Time,OABDT,OARH
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-9999,9999,9999,9999
-1/8/2021,7:54:00,-0.149333333,69.648
-1/8/2021,7:55:00,-0.1595,72.0225
-1/8/2021,7:56:00,-0.154666667,69.456
-1/8/2021,7:57:00,-0.1595,71.0325
-1/8/2021,7:58:00,-0.153055556,68.1625
-1/8/2021,7:59:00,-0.156277778,69.5005
-1/8/2021,8:00:00,-0.157888889,70.119
-1/8/2021,8:01:00,-0.107777778,69.5005
-1/8/2021,8:02:00,-0.156277778,69.5005
-1/8/2021,8:03:00,-0.16,68.784
-1/8/2021,8:04:00,-0.100277778,68.1625
-1/8/2021,8:05:00,-0.11,71.0325
-1/8/2021,8:06:00,-0.111111111,71.55
-1/8/2021,8:07:00,-0.100277778,68.1625
-1/8/2021,8:08:00,-0.108888889,70.315
-1/8/2021,8:09:00,-0.059888889,70.3052
-1/8/2021,8:10:00,-0.064666667,69.4908
-1/8/2021,8:11:00,-0.055,70.8345
-1/8/2021,8:12:00,-0.061111111,71.85
-1/8/2021,8:13:00,-0.061111111,71.95
-1/8/2021,8:14:00,-0.053333333,68.688
-1/8/2021,8:15:00,-0.010666667,68.496
-1/8/2021,8:16:00,-0.011111111,71.55
-1/8/2021,8:17:00,-0.005555556,71.95
-1/8/2021,8:18:00,-0.011,71.6265
-1/8/2021,8:19:00,-0.011111111,72.25
-1/8/2021,8:20:00,0.036944444,68.4475
-1/8/2021,8:21:00,0.044444444,72.35
-1/8/2021,8:22:00,0.079166667,69.2075
-1/8/2021,8:23:00,0.089722222,68.9225
-1/8/2021,8:24:00,0.087111111,70.7952
-1/8/2021,8:25:00,0.088,71.1216
-1/8/2021,8:26:00,0.141555556,69.629
-1/8/2021,8:27:00,0.131944444,67.0225
-1/8/2021,8:28:00,0.141555556,69.041
-1/8/2021,8:29:00,0.088,69.6366
-1/8/2021,8:30:00,0.141555556,69.041
-1/8/2021,8:31:00,0.113166667,68.0358
-1/8/2021,8:32:00,0.087111111,68.943
-1/8/2021,8:33:00,0.0935,69.7455
-1/8/2021,8:34:00,0.091611111,68.3365
-1/8/2021,8:35:00,0.140111111,68.3365
-1/8/2021,8:36:00,0.1375,69.9435
-1/8/2021,8:37:00,0.136111111,69.237
-1/8/2021,8:38:00,0.144444444,70.65
-1/8/2021,8:39:00,0.133333333,67.728
-1/8/2021,8:40:00,0.134722222,68.5305
-1/8/2021,8:41:00,0.131944444,66.9275
-1/8/2021,8:42:00,0.133333333,67.728
-1/8/2021,8:43:00,0.138888889,70.75
-1/8/2021,8:44:00,0.137222222,67.2125
-1/8/2021,8:45:00,0.137222222,67.3075
-1/8/2021,8:46:00,0.138888889,70.85
-1/8/2021,8:47:00,0.134722222,68.7245
-1/8/2021,8:48:00,0.138888889,70.65
-1/8/2021,8:49:00,0.138888889,70.65
-1/8/2021,8:50:00,0.1375,69.8445
-1/8/2021,8:51:00,0.137222222,67.3075
-1/8/2021,8:52:00,0.138888889,71.54
-1/8/2021,8:53:00,0.130666667,70.413
-1/8/2021,8:54:00,0.137222222,68.5425
-1/8/2021,8:55:00,0.136111111,70.511
-1/8/2021,8:56:00,0.188611111,69.7915
-1/8/2021,8:57:00,0.136111111,69.923
-1/8/2021,8:58:00,0.190555556,70.3934
-1/8/2021,8:59:00,0.188888889,71.45
-1/8/2021,9:00:00,0.190555556,69.629
-1/8/2021,9:01:00,0.184722222,67.2125
-1/8/2021,9:02:00,0.187,69.7455
-1/8/2021,9:03:00,0.186666667,67.152
-1/8/2021,9:04:00,0.181333333,67.152
-1/8/2021,9:05:00,0.133333333,67.152
-1/8/2021,9:06:00,0.138666667,67.056
-1/8/2021,9:07:00,0.137222222,66.3575
-1/8/2021,9:08:00,0.133333333,67.248
-1/8/2021,9:09:00,0.131944444,66.0725
-1/8/2021,9:10:00,0.138888889,69.05
-1/8/2021,9:11:00,0.112,65.808
-1/8/2021,9:12:00,0.0935,67.8645
-1/8/2021,9:13:00,0.084444444,65.5025
-1/8/2021,9:14:00,0.092555556,66.983
-1/8/2021,9:15:00,0.0935,67.2705
-1/8/2021,9:16:00,0.088888889,67.95
-1/8/2021,9:17:00,0.0935,67.2705
-1/8/2021,9:18:00,0.092555556,66.395
-1/8/2021,9:19:00,0.085333333,65.232
-1/8/2021,9:20:00,0.083333333,67.75
-1/8/2021,9:21:00,0.085333333,65.5104
-1/8/2021,9:22:00,0.089722222,65.4075
-1/8/2021,9:23:00,0.088,67.9635
-1/8/2021,9:24:00,0.086222222,66.5905
-1/8/2021,9:25:00,0.131944444,65.1225
-1/8/2021,9:26:00,0.133333333,65.0016
-1/8/2021,9:27:00,0.136111111,66.689
-1/8/2021,9:28:00,0.133333333,65.04
-1/8/2021,9:29:00,0.1375,66.3795
-1/8/2021,9:30:00,0.137222222,63.6025
-1/8/2021,9:31:00,0.188611111,64.9415
-1/8/2021,9:32:00,0.187,66.2805
-1/8/2021,9:33:00,0.188888889,66.85
-1/8/2021,9:34:00,0.242,66.2805
-1/8/2021,9:35:00,0.229333333,64.176
-1/8/2021,9:36:00,0.242,66.1815
-1/8/2021,9:37:00,0.226944444,63.2225
-1/8/2021,9:38:00,0.274444444,63.1275
-1/8/2021,9:39:00,0.279722222,63.118
-1/8/2021,9:40:00,0.280222222,64.6505
-1/8/2021,9:41:00,0.327222222,63.5075
-1/8/2021,9:42:00,0.3355,66.0825
-1/8/2021,9:43:00,0.3355,65.8746
-1/8/2021,9:44:00,0.334111111,64.3595
-1/8/2021,9:45:00,0.373333333,63.888
-1/8/2021,9:46:00,0.374722222,62.9375
-1/8/2021,9:47:00,0.388888889,66.65
-1/8/2021,9:48:00,0.369444444,62.8425
-1/8/2021,9:49:00,0.388888889,66.45
-1/8/2021,9:50:00,0.369444444,62.6525
-1/8/2021,9:51:00,0.381111111,64.925
-1/8/2021,9:52:00,0.381111111,66.297
-1/8/2021,9:53:00,0.377222222,65.4265
-1/8/2021,9:54:00,0.426666667,64.944
-1/8/2021,9:55:00,0.425722222,65.4265
-1/8/2021,9:56:00,0.44,66.5775
-1/8/2021,9:57:00,0.431111111,65.3295
-1/8/2021,9:58:00,0.426666667,65.232
-1/8/2021,9:59:00,0.479111111,65.121
-1/8/2021,10:00:00,0.469333333,62.544
-1/8/2021,10:01:00,0.469722222,62.1775
-1/8/2021,10:02:00,0.474666667,63.024
-1/8/2021,10:03:00,0.4895,64.7955
-1/8/2021,10:04:00,0.479611111,63.7775
-1/8/2021,10:05:00,0.474666667,63.12
-1/8/2021,10:06:00,0.469722222,62.1775
-1/8/2021,10:07:00,0.474222222,63.6805
-1/8/2021,10:08:00,0.4895,65.1915
-1/8/2021,10:09:00,0.484555556,64.827
-1/8/2021,10:10:00,0.4895,65.2905
-1/8/2021,10:11:00,0.494444444,65.75
-1/8/2021,10:12:00,0.435555556,64.435
-1/8/2021,10:13:00,0.369444444,62.4625
-1/8/2021,10:14:00,0.361055556,63.8648
-1/8/2021,10:15:00,0.381111111,64.827
-1/8/2021,10:16:00,0.3905,65.3895
-1/8/2021,10:17:00,0.394444444,66.15
-1/8/2021,10:18:00,0.386555556,64.729
-1/8/2021,10:19:00,0.394444444,66.05
-1/8/2021,10:20:00,0.378666667,63.024
-1/8/2021,10:21:00,0.321944444,62.5575
-1/8/2021,10:22:00,0.377222222,64.0685
-1/8/2021,10:23:00,0.382611111,65.0385
-1/8/2021,10:24:00,0.381111111,64.827
-1/8/2021,10:25:00,0.426666667,63.12
-1/8/2021,10:26:00,0.435555556,64.435
-1/8/2021,10:27:00,0.474666667,63.312
-1/8/2021,10:28:00,0.517333333,63.216
-1/8/2021,10:29:00,0.511944444,60.9425
-1/8/2021,10:30:00,0.528111111,61.1585
-1/8/2021,10:31:00,0.594444444,63.75
-1/8/2021,10:32:00,0.644444444,63.65
-1/8/2021,10:33:00,0.625111111,61.2555
-1/8/2021,10:34:00,0.618666667,61.008
-1/8/2021,10:35:00,0.654444444,60.458
-1/8/2021,10:36:00,0.722111111,61.9345
-1/8/2021,10:37:00,0.7865,62.5185
-1/8/2021,10:38:00,0.754722222,60.6575
-1/8/2021,10:39:00,0.827555556,62.475
-1/8/2021,10:40:00,0.849722222,60.4675
-1/8/2021,10:41:00,0.897222222,60.5625
-1/8/2021,10:42:00,0.916111111,61.2555
-1/8/2021,10:43:00,0.964611111,61.3525
-1/8/2021,10:44:00,0.916111111,60.5765
-1/8/2021,10:45:00,0.897222222,59.7075
-1/8/2021,10:46:00,0.9215,61.1682
-1/8/2021,10:47:00,0.903777778,62.083
-1/8/2021,10:48:00,0.9025,60.6575
-1/8/2021,10:49:00,0.916111111,61.7405
-1/8/2021,10:50:00,0.897222222,61.0375
-1/8/2021,10:51:00,0.849722222,61.6075
-1/8/2021,10:52:00,0.894444444,64.85
-1/8/2021,10:53:00,0.827555556,64.043
-1/8/2021,10:54:00,0.749444444,61.7025
-1/8/2021,10:55:00,0.794444444,65.75
-1/8/2021,10:56:00,0.778555556,64.533
-1/8/2021,10:57:00,0.707222222,62.2725
-1/8/2021,10:58:00,0.735,64.8368
-1/8/2021,10:59:00,0.794444444,66.05
-1/8/2021,11:00:00,0.762666667,62.928
-1/8/2021,11:01:00,0.792,64.1025
-1/8/2021,11:02:00,0.707222222,61.3225
-1/8/2021,11:03:00,0.694444444,64.75
-1/8/2021,11:04:00,0.6305,63.0015
-1/8/2021,11:05:00,0.618666667,62.256
-1/8/2021,11:06:00,0.625111111,63.0015
-1/8/2021,11:07:00,0.644444444,65.25
-1/8/2021,11:08:00,0.631555556,63.455
-1/8/2021,11:09:00,0.517,64.3005
-1/8/2021,11:10:00,0.594,64.3005
-1/8/2021,11:11:00,0.582555556,63.553
-1/8/2021,11:12:00,0.564722222,61.8925
-1/8/2021,11:13:00,0.582555556,63.455
-1/8/2021,11:14:00,0.5885,64.5975
-1/8/2021,11:15:00,0.576611111,63.3895
-1/8/2021,11:16:00,0.582555556,63.259
-1/8/2021,11:17:00,0.565333333,62.256
-1/8/2021,11:18:00,0.612222222,61.6075
-1/8/2021,11:19:00,0.638,63.8055
-1/8/2021,11:20:00,0.582555556,63.161
-1/8/2021,11:21:00,0.571222222,62.5165
-1/8/2021,11:22:00,0.517222222,61.3225
-1/8/2021,11:23:00,0.544444444,64.95
-1/8/2021,11:24:00,0.517222222,62.7475
-1/8/2021,11:25:00,0.582555556,65.219
-1/8/2021,11:26:00,0.638,66.1815
-1/8/2021,11:27:00,0.549333333,63.024
-1/8/2021,11:28:00,0.618666667,63.216
-1/8/2021,11:29:00,0.675111111,64.729
-1/8/2021,11:30:00,0.722111111,64.1655
-1/8/2021,11:31:00,0.744444444,64.75
-1/8/2021,11:32:00,0.661333333,61.968
-1/8/2021,11:33:00,0.673611111,63.3895
-1/8/2021,11:34:00,0.673611111,63.3895
-1/8/2021,11:35:00,0.638,64.2015
-1/8/2021,11:36:00,0.570666667,62.256
-1/8/2021,11:37:00,0.576,62.544
-1/8/2021,11:38:00,0.522722222,63.4865
-1/8/2021,11:39:00,0.539,65.0925
-1/8/2021,11:40:00,0.517222222,63.0325
-1/8/2021,11:41:00,0.522666667,63.6
-1/8/2021,11:42:00,0.539,65.6865
-1/8/2021,11:43:00,0.564722222,63.3175
-1/8/2021,11:44:00,0.638888889,66.25
-1/8/2021,11:45:00,0.644444444,66.05
-1/8/2021,11:46:00,0.631555556,64.141
-1/8/2021,11:47:00,0.65,66.05
-1/8/2021,11:48:00,0.644444444,65.85
-1/8/2021,11:49:00,0.686,64.729
-1/8/2021,11:50:00,0.675111111,64.239
-1/8/2021,11:51:00,0.722111111,63.8745
-1/8/2021,11:52:00,0.744444444,66.25
-1/8/2021,11:53:00,0.7865,65.2905
-1/8/2021,11:54:00,0.778555556,64.043
-1/8/2021,11:55:00,0.810666667,62.64
-1/8/2021,11:56:00,0.810666667,62.448
-1/8/2021,11:57:00,0.827555556,63.357
-1/8/2021,11:58:00,0.827555556,63.161
-1/8/2021,11:59:00,0.819111111,63.9715
-1/8/2021,12:00:00,0.836,65.4885
-1/8/2021,12:01:00,0.867611111,63.2925
-1/8/2021,12:02:00,0.944444444,64.95
-1/8/2021,12:03:00,0.899944444,62.5165
-1/8/2021,12:04:00,0.867611111,62.4195
-1/8/2021,12:05:00,0.836,63.6075
-1/8/2021,12:06:00,0.762666667,61.584
-1/8/2021,12:07:00,0.744444444,64.45
-1/8/2021,12:08:00,0.737,63.9045
-1/8/2021,12:09:00,0.680555556,63.455
-1/8/2021,12:10:00,0.659722222,61.6075
-1/8/2021,12:11:00,0.675111111,62.573
-1/8/2021,12:12:00,0.612222222,60.8475
-1/8/2021,12:13:00,0.631555556,63.063
-1/8/2021,12:14:00,0.644444444,64.45
-1/8/2021,12:15:00,0.673611111,62.5165
-1/8/2021,12:16:00,0.680555556,62.671
-1/8/2021,12:17:00,0.744444444,63.55
-1/8/2021,12:18:00,0.722111111,61.9345
-1/8/2021,12:19:00,0.729555556,61.985
-1/8/2021,12:20:00,0.638,62.1225
-1/8/2021,12:21:00,0.570666667,61.104
-1/8/2021,12:22:00,0.544444444,63.55
-1/8/2021,12:23:00,0.544444444,64.55
-1/8/2021,12:24:00,0.5555,62.5185
-1/8/2021,12:25:00,0.544444444,62.85
-1/8/2021,12:26:00,0.5335,61.4495
-1/8/2021,12:27:00,0.517333333,60.24
-1/8/2021,12:28:00,0.522666667,60.624
-1/8/2021,12:29:00,0.533555556,63.553
-1/8/2021,12:30:00,0.582,62.1285
-1/8/2021,12:31:00,0.625111111,63.1955
-1/8/2021,12:32:00,0.666666667,62.064
-1/8/2021,12:33:00,0.6875,63.8055
-1/8/2021,12:34:00,0.729555556,62.181
-1/8/2021,12:35:00,0.659722222,59.432
-1/8/2021,12:36:00,0.654444444,59.6125
-1/8/2021,12:37:00,0.6875,62.5185
-1/8/2021,12:38:00,0.666666667,60.144
-1/8/2021,12:39:00,0.668222222,60.7705
-1/8/2021,12:40:00,0.729555556,60.711
-1/8/2021,12:41:00,0.707222222,58.7575
-1/8/2021,12:42:00,0.707222222,58.7575
-1/8/2021,12:43:00,0.744444444,62.25
-1/8/2021,12:44:00,0.714666667,60.24
-1/8/2021,12:45:00,0.729555556,61.299
-1/8/2021,12:46:00,0.661333333,60.048
-1/8/2021,12:47:00,0.693,62.7165
-1/8/2021,12:48:00,0.673611111,61.4495
-1/8/2021,12:49:00,0.714666667,60.24
-1/8/2021,12:50:00,0.744444444,62.47
-1/8/2021,12:51:00,0.762666667,60.144
-1/8/2021,12:52:00,0.778555556,61.005
-1/8/2021,12:53:00,0.762666667,59.952
-1/8/2021,12:54:00,0.762666667,60.144
-1/8/2021,12:55:00,0.810666667,60.24
-1/8/2021,12:56:00,0.822111111,61.201
-1/8/2021,12:57:00,0.813722222,60.3825
-1/8/2021,12:58:00,0.855,58.9475
-1/8/2021,12:59:00,0.819111111,59.8975
-1/8/2021,13:00:00,0.8,61.35
-1/8/2021,13:01:00,0.722111111,60.1885
-1/8/2021,13:02:00,0.714666667,59.952
-1/8/2021,13:03:00,0.707222222,59.3275
-1/8/2021,13:04:00,0.659722222,60.4675
-1/8/2021,13:05:00,0.75,64.25
-1/8/2021,13:06:00,0.666666667,60.24
-1/8/2021,13:07:00,0.686,61.985
-1/8/2021,13:08:00,0.673611111,60.1885
-1/8/2021,13:09:00,0.644444444,61.95
-1/8/2021,13:10:00,0.582555556,60.809
-1/8/2021,13:11:00,0.539,62.2215
-1/8/2021,13:12:00,0.570666667,60.048
-1/8/2021,13:13:00,0.5885,61.5285
-1/8/2021,13:14:00,0.571222222,60.1885
-1/8/2021,13:15:00,0.544444444,62.05
-1/8/2021,13:16:00,0.55,61.95
-1/8/2021,13:17:00,0.522666667,59.568
-1/8/2021,13:18:00,0.528111111,60.4795
-1/8/2021,13:19:00,0.544444444,62.45
-1/8/2021,13:20:00,0.533555556,60.907
-1/8/2021,13:21:00,0.4895,61.5285
-1/8/2021,13:22:00,0.494444444,62.15
-1/8/2021,13:23:00,0.484555556,61.201
-1/8/2021,13:24:00,0.475,59.6125
-1/8/2021,13:25:00,0.484555556,61.299
-1/8/2021,13:26:00,0.4895,62.1225
-1/8/2021,13:27:00,0.474666667,60.24
-1/8/2021,13:28:00,0.494444444,62.95
-1/8/2021,13:29:00,0.528111111,60.9645
-1/8/2021,13:30:00,0.539,62.3205
-1/8/2021,13:31:00,0.539,62.0235
-1/8/2021,13:32:00,0.517222222,59.1375
-1/8/2021,13:33:00,0.517222222,58.5675
-1/8/2021,13:34:00,0.479111111,60.809
-1/8/2021,13:35:00,0.474666667,60.24
-1/8/2021,13:36:00,0.517222222,59.6125
-1/8/2021,13:37:00,0.533555556,61.005
-1/8/2021,13:38:00,0.594444444,62.45
-1/8/2021,13:39:00,0.631555556,61.593
-1/8/2021,13:40:00,0.570666667,59.76
-1/8/2021,13:41:00,0.638888889,62.65
-1/8/2021,13:42:00,0.631555556,61.299
-1/8/2021,13:43:00,0.626111111,60.515
-1/8/2021,13:44:00,0.612222222,59.1375
-1/8/2021,13:45:00,0.638,61.7265
-1/8/2021,13:46:00,0.618666667,59.472
-1/8/2021,13:47:00,0.626111111,61.201
-1/8/2021,13:48:00,0.618666667,59.664
-1/8/2021,13:49:00,0.659722222,59.0425
-1/8/2021,13:50:00,0.665,59.4225
-1/8/2021,13:51:00,0.694444444,61.85
-1/8/2021,13:52:00,0.680555556,60.809
-1/8/2021,13:53:00,0.7,61.56
-1/8/2021,13:54:00,0.6875,61.0335
-1/8/2021,13:55:00,0.694444444,61.75
-1/8/2021,13:56:00,0.659722222,58.7575
-1/8/2021,13:57:00,0.659722222,58.4725
-1/8/2021,13:58:00,0.694444444,61.65
-1/8/2021,13:59:00,0.668222222,59.4125
-1/8/2021,14:00:00,0.638,61.6275
-1/8/2021,14:01:00,0.618666667,59.568
-1/8/2021,14:02:00,0.65,61.95
-1/8/2021,14:03:00,0.638888889,61.85
-1/8/2021,14:04:00,0.612222222,58.7575
-1/8/2021,14:05:00,0.5885,63.8055
-1/8/2021,14:06:00,0.576611111,60.5765
-1/8/2021,14:07:00,0.528111111,59.9945
-1/8/2021,14:08:00,0.533555556,60.711
-1/8/2021,14:09:00,0.443333333,58.4725
-1/8/2021,14:10:00,0.528111111,59.8975
-1/8/2021,14:11:00,0.582555556,60.711
-1/8/2021,14:12:00,0.631555556,60.417
-1/8/2021,14:13:00,0.644444444,61.05
-1/8/2021,14:14:00,0.694444444,61.25
-1/8/2021,14:15:00,0.598166667,59.3155
-1/8/2021,14:16:00,0.612222222,58.0925
-1/8/2021,14:17:00,0.638,60.4395
-1/8/2021,14:18:00,0.594444444,61.35
-1/8/2021,14:19:00,0.582555556,60.221
-1/8/2021,14:20:00,0.582,59.9945
-1/8/2021,14:21:00,0.559444444,58.8525
-1/8/2021,14:22:00,0.5885,60.6375
-1/8/2021,14:23:00,0.494444444,61.75
-1/8/2021,14:24:00,0.44,61.6275
-1/8/2021,14:25:00,0.435555556,61.299
-1/8/2021,14:26:00,0.422222222,59.5175
-1/8/2021,14:27:00,0.426666667,60.432
-1/8/2021,14:28:00,0.45,63.06
-1/8/2021,14:29:00,0.366666667,63.15
-1/8/2021,14:30:00,0.327222222,59.5175
-1/8/2021,14:31:00,0.334111111,61.2555
-1/8/2021,14:32:00,0.285611111,61.6435
-1/8/2021,14:33:00,0.279722222,60.4675
-1/8/2021,14:34:00,0.277333333,61.776
-1/8/2021,14:35:00,0.232222222,60.3725
-1/8/2021,14:36:00,0.234666667,61.488
-1/8/2021,14:37:00,0.242,64.0035
-1/8/2021,14:38:00,0.234666667,61.3056
-1/8/2021,14:39:00,0.237111111,61.6435
-1/8/2021,14:40:00,0.234666667,61.2
-1/8/2021,14:41:00,0.282666667,61.2
-1/8/2021,14:42:00,0.229333333,60.528
-1/8/2021,14:43:00,0.137222222,59.8975
-1/8/2021,14:44:00,0.086222222,61.6435
-1/8/2021,14:45:00,0.037333333,61.488
-1/8/2021,14:46:00,-0.005555556,64.35
-1/8/2021,14:47:00,-0.058666667,62.256
-1/8/2021,14:48:00,-0.054444444,63.455
-1/8/2021,14:49:00,-0.055,64.4985
-1/8/2021,14:50:00,-0.055555556,65.35
-1/8/2021,14:51:00,-0.053888889,62.4195
-1/8/2021,14:52:00,-0.102388889,62.3225
-1/8/2021,14:53:00,-0.149333333,61.872
-1/8/2021,14:54:00,-0.156277778,62.7105
-1/8/2021,14:55:00,-0.2035,65.1915
-1/8/2021,14:56:00,-0.199388889,63.4865
-1/8/2021,14:57:00,-0.255888889,65.121
-1/8/2021,14:58:00,-0.199388889,64.3595
-1/8/2021,14:59:00,-0.199388889,65.5235
-1/8/2021,15:00:00,-0.2035,65.5875
-1/8/2021,15:01:00,-0.204777778,63.5835
-1/8/2021,15:02:00,-0.199388889,63.4865
-1/8/2021,15:03:00,-0.197333333,62.928
-1/8/2021,15:04:00,-0.201444444,63.553
-1/8/2021,15:05:00,-0.255888889,64.141
-1/8/2021,15:06:00,-0.250666667,63.0144
-1/8/2021,15:07:00,-0.272222222,64.74
-1/8/2021,15:08:00,-0.248055556,61.4175
-1/8/2021,15:09:00,-0.301777778,62.8075
-1/8/2021,15:10:00,-0.301777778,62.8948
-1/8/2021,15:11:00,-0.247888889,62.8075
-1/8/2021,15:12:00,-0.250666667,62.256
-1/8/2021,15:13:00,-0.255555556,64.85
-1/8/2021,15:14:00,-0.248055556,61.7025
-1/8/2021,15:15:00,-0.255555556,65.05
-1/8/2021,15:16:00,-0.2585,63.3996
-1/8/2021,15:17:00,-0.311111111,64.35
-1/8/2021,15:18:00,-0.311111111,64.55
-1/8/2021,15:19:00,-0.348444444,63.259
-1/8/2021,15:20:00,-0.3575,63.4986
-1/8/2021,15:21:00,-0.404166667,62.9045
-1/8/2021,15:22:00,-0.394666667,62.352
-1/8/2021,15:23:00,-0.343055556,61.7025
-1/8/2021,15:24:00,-0.4015,63.8055
-1/8/2021,15:25:00,-0.390555556,61.598
-1/8/2021,15:26:00,-0.402888889,63.553
-1/8/2021,15:27:00,-0.394666667,62.256
-1/8/2021,15:28:00,-0.398777778,62.9918
-1/8/2021,15:29:00,-0.402888889,64.0332
-1/8/2021,15:30:00,-0.411111111,65.35
-1/8/2021,15:31:00,-0.443333333,62.073
-1/8/2021,15:32:00,-0.442666667,63.12
-1/8/2021,15:33:00,-0.398777778,64.5535
-1/8/2021,15:34:00,-0.390555556,63.403
-1/8/2021,15:35:00,-0.455555556,66.35
-1/8/2021,15:36:00,-0.438055556,63.118
-1/8/2021,15:37:00,-0.411111111,67.15
-1/8/2021,15:38:00,-0.407,65.7855
-1/8/2021,15:39:00,-0.402888889,66.199
-1/8/2021,15:40:00,-0.398777778,64.6505
-1/8/2021,15:41:00,-0.407,65.6766
-1/8/2021,15:42:00,-0.385277778,62.6525
-1/8/2021,15:43:00,-0.394666667,63.2064
-1/8/2021,15:44:00,-0.390555556,62.643
-1/8/2021,15:45:00,-0.407,65.1915
-1/8/2021,15:46:00,-0.411111111,65.65
-1/8/2021,15:47:00,-0.390555556,62.4625
-1/8/2021,15:48:00,-0.390555556,62.453
-1/8/2021,15:49:00,-0.411111111,65.94
-1/8/2021,15:50:00,-0.389333333,63.312
-1/8/2021,15:51:00,-0.407,65.6865
-1/8/2021,15:52:00,-0.390555556,62.9185
-1/8/2021,15:53:00,-0.397444444,64.729
-1/8/2021,15:54:00,-0.397444444,65.611
-1/8/2021,15:55:00,-0.346666667,64.0704
-1/8/2021,15:56:00,-0.346666667,63.888
-1/8/2021,15:57:00,-0.361111111,66.25
-1/8/2021,15:58:00,-0.319,65.5776
-1/8/2021,15:59:00,-0.316666667,66.04
-1/8/2021,16:00:00,-0.311111111,66.14
-1/8/2021,16:01:00,-0.295555556,63.1275
-1/8/2021,16:02:00,-0.295555556,63.0325
-1/8/2021,16:03:00,-0.353888889,64.7192
-1/8/2021,16:04:00,-0.301777778,63.9618
-1/8/2021,16:05:00,-0.298666667,63.216
-1/8/2021,16:06:00,-0.3135,65.2806
-1/8/2021,16:07:00,-0.348444444,65.121
-1/8/2021,16:08:00,-0.350277778,64.5535
-1/8/2021,16:09:00,-0.350277778,64.3498
-1/8/2021,16:10:00,-0.346666667,64.8384
-1/8/2021,16:11:00,-0.3575,65.5875
-1/8/2021,16:12:00,-0.3575,65.9835
-1/8/2021,16:13:00,-0.3575,65.9835
-1/8/2021,16:14:00,-0.3575,66.0726
-1/8/2021,16:15:00,-0.353888889,65.3072
-1/8/2021,16:16:00,-0.348333333,62.6525
-1/8/2021,16:17:00,-0.343055556,62.643
-1/8/2021,16:18:00,-0.352,65.5875
-1/8/2021,16:19:00,-0.353888889,65.121
-1/8/2021,16:20:00,-0.353888889,65.023
-1/8/2021,16:21:00,-0.402888889,64.827
-1/8/2021,16:22:00,-0.411111111,66.44
-1/8/2021,16:23:00,-0.398777778,64.2625
-1/8/2021,16:24:00,-0.390555556,62.928
-1/8/2021,16:25:00,-0.4015,65.8845
-1/8/2021,16:26:00,-0.411111111,66.85
-1/8/2021,16:27:00,-0.398777778,64.3498
-1/8/2021,16:28:00,-0.461111111,65.55
-1/8/2021,16:29:00,-0.4565,64.4985
-1/8/2021,16:30:00,-0.485555556,61.7975
-1/8/2021,16:31:00,-0.511111111,65.35
-1/8/2021,16:32:00,-0.506555556,63.7678
-1/8/2021,16:33:00,-0.544277778,63.6805
-1/8/2021,16:34:00,-0.544277778,63.9715
-1/8/2021,16:35:00,-0.533055556,62.928
-1/8/2021,16:36:00,-0.561111111,66.05
-1/8/2021,16:37:00,-0.544,63.6
-1/8/2021,16:38:00,-0.549888889,64.7192
-1/8/2021,16:39:00,-0.5555,65.8845
-1/8/2021,16:40:00,-0.538666667,64.752
-1/8/2021,16:41:00,-0.544277778,65.9115
-1/8/2021,16:42:00,-0.544,65.2224
-1/8/2021,16:43:00,-0.5555,67.9635
-1/8/2021,16:44:00,-0.544277778,65.9018
-1/8/2021,16:45:00,-0.549888889,65.905
-1/8/2021,16:46:00,-0.561,66.2706
-1/8/2021,16:47:00,-0.544277778,64.8445
-1/8/2021,16:48:00,-0.561111111,66.75
-1/8/2021,16:49:00,-0.549888889,65.5032
-1/8/2021,16:50:00,-0.549888889,65.709
-1/8/2021,16:51:00,-0.544277778,65.0288
-1/8/2021,16:52:00,-0.549888889,65.8952
-1/8/2021,16:53:00,-0.561,66.2706
-1/8/2021,16:54:00,-0.5555,66.3696
-1/8/2021,16:55:00,-0.538666667,64.4544
-1/8/2021,16:56:00,-0.533055556,63.8875
-1/8/2021,16:57:00,-0.500888889,66.297
-1/8/2021,16:58:00,-0.496,65.4144
-1/8/2021,16:59:00,-0.4565,67.1715
-1/8/2021,17:00:00,-0.442666667,64.3584
-1/8/2021,17:01:00,-0.451888889,65.5032
-1/8/2021,17:02:00,-0.394666667,63.8784
-1/8/2021,17:03:00,-0.385277778,63.1275
-1/8/2021,17:04:00,-0.402888889,65.3072
-1/8/2021,17:05:00,-0.398777778,64.5438
-1/8/2021,17:06:00,-0.411111111,66.74
-1/8/2021,17:07:00,-0.390555556,63.498
-1/8/2021,17:08:00,-0.385277778,63.8875
-1/8/2021,17:09:00,-0.341333333,64.4544
-1/8/2021,17:10:00,-0.344888889,64.4565
-1/8/2021,17:11:00,-0.3575,65.4786
-1/8/2021,17:12:00,-0.361111111,66.24
-1/8/2021,17:13:00,-0.346666667,63.7824
-1/8/2021,17:14:00,-0.348333333,63.308
-1/8/2021,17:15:00,-0.355666667,64.8445
-1/8/2021,17:16:00,-0.353888889,65.5032
-1/8/2021,17:17:00,-0.361111111,66.55
-1/8/2021,17:18:00,-0.361111111,66.55
-1/8/2021,17:19:00,-0.355555556,66.55
-1/8/2021,17:20:00,-0.353888889,65.2092
-1/8/2021,17:21:00,-0.402888889,65.3072
-1/8/2021,17:22:00,-0.385,66.2805
-1/8/2021,17:23:00,-0.341333333,64.3584
-1/8/2021,17:24:00,-0.3575,66.3696
-1/8/2021,17:25:00,-0.3575,66.4686
-1/8/2021,17:26:00,-0.344888889,64.7475
-1/8/2021,17:27:00,-0.343055556,63.5075
-1/8/2021,17:28:00,-0.343055556,63.5075
-1/8/2021,17:29:00,-0.353888889,65.709
-1/8/2021,17:30:00,-0.353888889,65.7972
-1/8/2021,17:31:00,-0.343055556,64.2675
-1/8/2021,17:32:00,-0.353888889,66.0912
-1/8/2021,17:33:00,-0.348444444,65.807
-1/8/2021,17:34:00,-0.353888889,65.807
-1/8/2021,17:35:00,-0.343055556,62.7475
-1/8/2021,17:36:00,-0.346666667,63.6864
-1/8/2021,17:37:00,-0.343055556,63.308
-1/8/2021,17:38:00,-0.3575,66.0726
-1/8/2021,17:39:00,-0.395833333,63.3175
-1/8/2021,17:40:00,-0.3575,66.0825
-1/8/2021,17:41:00,-0.353888889,65.3072
-1/8/2021,17:42:00,-0.3575,66.0825
-1/8/2021,17:43:00,-0.361111111,67.04
-1/8/2021,17:44:00,-0.350277778,64.8445
-1/8/2021,17:45:00,-0.398777778,64.8445
-1/8/2021,17:46:00,-0.408333333,65.4052
-1/8/2021,17:47:00,-0.407,66.0825
-1/8/2021,17:48:00,-0.411111111,67.04
-1/8/2021,17:49:00,-0.407,66.2706
-1/8/2021,17:50:00,-0.411111111,66.75
-1/8/2021,17:51:00,-0.447277778,65.0385
-1/8/2021,17:52:00,-0.390555556,64.0775
-1/8/2021,17:53:00,-0.408333333,65.8952
-1/8/2021,17:54:00,-0.447277778,65.1355
-1/8/2021,17:55:00,-0.422222222,67.14
-1/8/2021,17:56:00,-0.461111111,67.24
-1/8/2021,17:57:00,-0.393388889,65.2325
-1/8/2021,17:58:00,-0.398777778,65.5235
-1/8/2021,17:59:00,-0.402888889,66.493
-1/8/2021,18:00:00,-0.407,67.3695
-1/8/2021,18:01:00,-0.359333333,66.5812
-1/8/2021,18:02:00,-0.350277778,66.1055
-1/8/2021,18:03:00,-0.3575,67.0626
-1/8/2021,18:04:00,-0.350277778,65.2325
-1/8/2021,18:05:00,-0.343055556,63.878
-1/8/2021,18:06:00,-0.341333333,64.656
-1/8/2021,18:07:00,-0.427777778,67.54
-1/8/2021,18:08:00,-0.350277778,65.4168
-1/8/2021,18:09:00,-0.343055556,63.9825
-1/8/2021,18:10:00,-0.311111111,67.45
-1/8/2021,18:11:00,-0.361111111,67.35
-1/8/2021,18:12:00,-0.350277778,65.4265
-1/8/2021,18:13:00,-0.350277778,65.5138
-1/8/2021,18:14:00,-0.350277778,65.5235
-1/8/2021,18:15:00,-0.346666667,65.136
-1/8/2021,18:16:00,-0.361111111,67.64
-1/8/2021,18:17:00,-0.308,67.1715
-1/8/2021,18:18:00,-0.305555556,67.85
-1/8/2021,18:19:00,-0.311111111,67.94
-1/8/2021,18:20:00,-0.295555556,64.3625
-1/8/2021,18:21:00,-0.304888889,66.1892
-1/8/2021,18:22:00,-0.295555556,64.068
-1/8/2021,18:23:00,-0.2805,66.5676
-1/8/2021,18:24:00,-0.255888889,66.0912
-1/8/2021,18:25:00,-0.261111111,67.35
-1/8/2021,18:26:00,-0.253333333,63.878
-1/8/2021,18:27:00,-0.2585,66.5676
-1/8/2021,18:28:00,-0.2585,66.4785
-1/8/2021,18:29:00,-0.253277778,64.6505
-1/8/2021,18:30:00,-0.374,66.0726
-1/8/2021,18:31:00,-0.308,66.1716
-1/8/2021,18:32:00,-0.301777778,64.7475
-1/8/2021,18:33:00,-0.301777778,65.0288
-1/8/2021,18:34:00,-0.311111111,67.15
-1/8/2021,18:35:00,-0.298666667,64.5504
-1/8/2021,18:36:00,-0.3025,66.7755
-1/8/2021,18:37:00,-0.343,66.0912
-1/8/2021,18:38:00,-0.310333333,66.1892
-1/8/2021,18:39:00,-0.308,66.7755
-1/8/2021,18:40:00,-0.296388889,65.5138
-1/8/2021,18:41:00,-0.304888889,66.1892
-1/8/2021,18:42:00,-0.311111111,67.55
-1/8/2021,18:43:00,-0.311111111,67.95
-1/8/2021,18:44:00,-0.308,67.4586
-1/8/2021,18:45:00,-0.308,67.2606
-1/8/2021,18:46:00,-0.304888889,66.6792
-1/8/2021,18:47:00,-0.311111111,68.05
-1/8/2021,18:48:00,-0.301777778,66.2025
-1/8/2021,18:49:00,-0.311111111,68.34
-1/8/2021,18:50:00,-0.308,67.7655
-1/8/2021,18:51:00,-0.295555556,64.923
-1/8/2021,18:52:00,-0.298666667,65.6064
-1/8/2021,18:53:00,-0.307166667,66.4838
-1/8/2021,18:54:00,-0.250666667,65.712
-1/8/2021,18:55:00,-0.293333333,65.328
-1/8/2021,18:56:00,-0.2585,67.6665
-1/8/2021,18:57:00,-0.253277778,66.2898
-1/8/2021,18:58:00,-0.298666667,65.232
-1/8/2021,18:59:00,-0.308,67.3596
-1/8/2021,19:00:00,-0.301777778,66.2025
-1/8/2021,19:01:00,-0.301777778,65.8145
-1/8/2021,19:02:00,-0.298666667,65.52
-1/8/2021,19:03:00,-0.298666667,65.2224
-1/8/2021,19:04:00,-0.350277778,65.9988
-1/8/2021,19:05:00,-0.344888889,66.3965
-1/8/2021,19:06:00,-0.361111111,68.75
-1/8/2021,19:07:00,-0.363,68.4486
-1/8/2021,19:08:00,-0.308,68.2605
-1/8/2021,19:09:00,-0.3025,68.4585
-1/8/2021,19:10:00,-0.308,68.2605
-1/8/2021,19:11:00,-0.290277778,65.5975
-1/8/2021,19:12:00,-0.304888889,67.2672
-1/8/2021,19:13:00,-0.295555556,65.0275
-1/8/2021,19:14:00,-0.304888889,66.983
-1/8/2021,19:15:00,-0.301777778,66.4838
-1/8/2021,19:16:00,-0.299444444,67.375
-1/8/2021,19:17:00,-0.248055556,65.0275
-1/8/2021,19:18:00,-0.308,67.6566
-1/8/2021,19:19:00,-0.298666667,65.3184
-1/8/2021,19:20:00,-0.298666667,65.232
-1/8/2021,19:21:00,-0.298666667,65.04
-1/8/2021,19:22:00,-0.308,66.6666
-1/8/2021,19:23:00,-0.308,67.2705
-1/8/2021,19:24:00,-0.304888889,65.513
-1/8/2021,19:25:00,-0.311111111,65.85
-1/8/2021,19:26:00,-0.361111111,66.04
-1/8/2021,19:27:00,-0.350277778,64.3595
-1/8/2021,19:28:00,-0.346666667,63.696
-1/8/2021,19:29:00,-0.407,65.8746
-1/8/2021,19:30:00,-0.405555556,66.25
-1/8/2021,19:31:00,-0.407,65.9736
-1/8/2021,19:32:00,-0.442666667,63.984
-1/8/2021,19:33:00,-0.451888889,65.3072
-1/8/2021,19:34:00,-0.522666667,65.4052
-1/8/2021,19:35:00,-0.511111111,66.75
-1/8/2021,19:36:00,-0.490666667,64.0704
-1/8/2021,19:37:00,-0.485555556,63.3175
-1/8/2021,19:38:00,-0.485555556,63.688
-1/8/2021,19:39:00,-0.485555556,63.688
-1/8/2021,19:40:00,-0.500888889,65.7972
-1/8/2021,19:41:00,-0.506333333,65.7972
-1/8/2021,19:42:00,-0.505555556,67.35
-1/8/2021,19:43:00,-0.538666667,64.656
-1/8/2021,19:44:00,-0.538333333,63.973
-1/8/2021,19:45:00,-0.500888889,66.199
-1/8/2021,19:46:00,-0.495777778,65.6108
-1/8/2021,19:47:00,-0.490666667,64.9344
-1/8/2021,19:48:00,-0.511111111,67.44
-1/8/2021,19:49:00,-0.501166667,65.3198
-1/8/2021,19:50:00,-0.5005,66.7755
-1/8/2021,19:51:00,-0.485555556,64.448
-1/8/2021,19:52:00,-0.511111111,68.05
-1/8/2021,19:53:00,-0.496,65.0304
-1/8/2021,19:54:00,-0.457333333,66.2872
-1/8/2021,19:55:00,-0.438055556,64.1725
-1/8/2021,19:56:00,-0.447277778,65.4265
-1/8/2021,19:57:00,-0.451,67.0725
-1/8/2021,19:58:00,-0.4565,66.9735
-1/8/2021,19:59:00,-0.443333333,64.353
-1/8/2021,20:00:00,-0.438055556,64.3625
-1/8/2021,20:01:00,-0.506,67.0626
-1/8/2021,20:02:00,-0.442666667,65.04
-1/8/2021,20:03:00,-0.461111111,67.94
-1/8/2021,20:04:00,-0.466666667,67.94
-1/8/2021,20:05:00,-0.432777778,64.3625
-1/8/2021,20:06:00,-0.500888889,66.3852
-1/8/2021,20:07:00,-0.495444444,66.493
-1/8/2021,20:08:00,-0.485555556,64.543
-1/8/2021,20:09:00,-0.490388889,65.5138
-1/8/2021,20:10:00,-0.506,66.5775
-1/8/2021,20:11:00,-0.561111111,67.04
-1/8/2021,20:12:00,-0.544277778,64.8348
-1/8/2021,20:13:00,-0.533055556,63.688
-1/8/2021,20:14:00,-0.538666667,64.4544
-1/8/2021,20:15:00,-0.544277778,65.1258
-1/8/2021,20:16:00,-0.549888889,65.8952
-1/8/2021,20:17:00,-0.598888889,65.8952
-1/8/2021,20:18:00,-0.611111111,67.34
-1/8/2021,20:19:00,-0.592777778,65.4168
-1/8/2021,20:20:00,-0.586666667,65.0304
-1/8/2021,20:21:00,-0.580555556,64.5525
-1/8/2021,20:22:00,-0.593444444,66.591
-1/8/2021,20:23:00,-0.580555556,64.448
-1/8/2021,20:24:00,-0.598888889,66.4832
-1/8/2021,20:25:00,-0.604333333,66.3852
-1/8/2021,20:26:00,-0.605,66.8646
-1/8/2021,20:27:00,-0.598888889,66.0912
-1/8/2021,20:28:00,-0.611111111,67.65
-1/8/2021,20:29:00,-0.611111111,67.85
-1/8/2021,20:30:00,-0.611111111,67.74
-1/8/2021,20:31:00,-0.626111111,66.2872
-1/8/2021,20:32:00,-0.580555556,64.3625
-1/8/2021,20:33:00,-0.592777778,65.7078
-1/8/2021,20:34:00,-0.586666667,65.1264
-1/8/2021,20:35:00,-0.586666667,65.1264
-1/8/2021,20:36:00,-0.598888889,66.8752
-1/8/2021,20:37:00,-0.604333333,67.0712
-1/8/2021,20:38:00,-0.586666667,65.7024
-1/8/2021,20:39:00,-0.580555556,64.638
-1/8/2021,20:40:00,-0.586666667,65.2224
-1/8/2021,20:41:00,-0.555555556,67.95
-1/8/2021,20:42:00,-0.538666667,65.3184
-1/8/2021,20:43:00,-0.549888889,66.7772
-1/8/2021,20:44:00,-0.55,67.2606
-1/8/2021,20:45:00,-0.549666667,65.9018
-1/8/2021,20:46:00,-0.538888889,65.9115
-1/8/2021,20:47:00,-0.5555,67.3596
-1/8/2021,20:48:00,-0.538666667,65.4144
-1/8/2021,20:49:00,-0.538333333,64.8375
-1/8/2021,20:50:00,-0.5555,67.5576
-1/8/2021,20:51:00,-0.5555,67.5675
-1/8/2021,20:52:00,-0.544277778,66.1928
-1/8/2021,20:53:00,-0.527777778,65.018
-1/8/2021,20:54:00,-0.561,67.5576
-1/8/2021,20:55:00,-0.538666667,65.3184
-1/8/2021,20:56:00,-0.544444444,66.689
-1/8/2021,20:57:00,-0.533055556,64.638
-1/8/2021,20:58:00,-0.55,67.4685
-1/8/2021,20:59:00,-0.544277778,65.9018
-1/8/2021,21:00:00,-0.5555,67.4586
-1/8/2021,21:01:00,-0.5555,67.2705
-1/8/2021,21:02:00,-0.538666667,65.424
-1/8/2021,21:03:00,-0.538666667,65.2224
-1/8/2021,21:04:00,-0.544277778,66.0958
-1/8/2021,21:05:00,-0.5555,67.6665
-1/8/2021,21:06:00,-0.533333333,65.712
-1/8/2021,21:07:00,-0.490833333,65.018
-1/8/2021,21:08:00,-0.485555556,64.828
-1/8/2021,21:09:00,-0.5115,67.5576
-1/8/2021,21:10:00,-0.500888889,66.9732
-1/8/2021,21:11:00,-0.485555556,65.208
-1/8/2021,21:12:00,-0.506,67.7655
-1/8/2021,21:13:00,-0.490388889,66.3868
-1/8/2021,21:14:00,-0.500888889,66.5812
-1/8/2021,21:15:00,-0.496,65.1264
-1/8/2021,21:16:00,-0.511111111,67.84
-1/8/2021,21:17:00,-0.549888889,66.5812
-1/8/2021,21:18:00,-0.485555556,64.6475
-1/8/2021,21:19:00,-0.561111111,67.94
-1/8/2021,21:20:00,-0.606944444,64.543
-1/8/2021,21:21:00,-0.544444444,66.591
-1/8/2021,21:22:00,-0.538666667,65.1264
-1/8/2021,21:23:00,-0.549888889,66.4832
-1/8/2021,21:24:00,-0.544277778,65.5138
-1/8/2021,21:25:00,-0.538666667,64.8384
-1/8/2021,21:26:00,-0.533055556,64.2675
-1/8/2021,21:27:00,-0.544,64.9344
-1/8/2021,21:28:00,-0.533055556,64.3625
-1/8/2021,21:29:00,-0.549888889,66.591
-1/8/2021,21:30:00,-0.538666667,65.1264
-1/8/2021,21:31:00,-0.585833333,64.448
-1/8/2021,21:32:00,-0.598888889,66.7772
-1/8/2021,21:33:00,-0.598888889,66.6792
-1/8/2021,21:34:00,-0.549888889,66.5812
-1/8/2021,21:35:00,-0.5995,67.1715
-1/8/2021,21:36:00,-0.611111111,67.94
-1/8/2021,21:37:00,-0.580555556,64.638
-1/8/2021,21:38:00,-0.598888889,67.277
-1/8/2021,21:39:00,-0.592777778,65.9988
-1/8/2021,21:40:00,-0.605,66.9735
-1/8/2021,21:41:00,-0.611111111,67.94
-1/8/2021,21:42:00,-0.580555556,64.353
-1/8/2021,21:43:00,-0.580555556,64.448
-1/8/2021,21:44:00,-0.661111111,68.14
-1/8/2021,21:45:00,-0.593444444,66.493
-1/8/2021,21:46:00,-0.661111111,67.54
-1/8/2021,21:47:00,-0.641277778,65.6108
-1/8/2021,21:48:00,-0.646666667,65.5138
-1/8/2021,21:49:00,-0.689777778,65.6496
-1/8/2021,21:50:00,-0.689777778,65.9018
-1/8/2021,21:51:00,-0.682666667,65.3184
-1/8/2021,21:52:00,-0.705555556,68.05
-1/8/2021,21:53:00,-0.689777778,65.9988
-1/8/2021,21:54:00,-0.689777778,65.9018
-1/8/2021,21:55:00,-0.696888889,66.6792
-1/8/2021,21:56:00,-0.711111111,68.04
-1/8/2021,21:57:00,-0.688,65.4144
-1/8/2021,21:58:00,-0.704,67.6566
-1/8/2021,21:59:00,-0.704,67.6566
-1/8/2021,22:00:00,-0.704,67.4586
-1/8/2021,22:01:00,-0.682666667,65.2224
-1/8/2021,22:02:00,-0.688,65.3184
-1/8/2021,22:03:00,-0.689777778,66.1055
-1/8/2021,22:04:00,-0.704,67.5576
-1/8/2021,22:05:00,-0.688,65.4144
-1/8/2021,22:06:00,-0.675555556,64.828
-1/8/2021,22:07:00,-0.675555556,65.1225
-1/8/2021,22:08:00,-0.691444444,67.081
-1/8/2021,22:09:00,-0.682666667,65.6064
-1/8/2021,22:10:00,-0.682666667,65.6064
-1/8/2021,22:11:00,-0.704,67.5576
-1/8/2021,22:12:00,-0.675555556,65.113
-1/8/2021,22:13:00,-0.680833333,65.113
-1/8/2021,22:14:00,-0.696888889,67.2672
-1/8/2021,22:15:00,-0.723055556,65.113
-1/8/2021,22:16:00,-0.711111111,69.24
-1/8/2021,22:17:00,-0.704,68.4486
-1/8/2021,22:18:00,-0.696888889,67.5612
-1/8/2021,22:19:00,-0.675555556,65.398
-1/8/2021,22:20:00,-0.688,66.0864
-1/8/2021,22:21:00,-0.680833333,65.398
-1/8/2021,22:22:00,-0.680833333,65.493
-1/8/2021,22:23:00,-0.670277778,65.493
-1/8/2021,22:24:00,-0.675555556,65.5975
-1/8/2021,22:25:00,-0.704,68.1516
-1/8/2021,22:26:00,-0.704,68.1516
-1/8/2021,22:27:00,-0.675555556,65.493
-1/8/2021,22:28:00,-0.7095,68.3496
-1/8/2021,22:29:00,-0.689777778,66.9785
-1/8/2021,22:30:00,-0.680833333,65.303
-1/8/2021,22:31:00,-0.705555556,68.74
-1/8/2021,22:32:00,-0.689777778,66.8718
-1/8/2021,22:33:00,-0.689777778,66.8815
-1/8/2021,22:34:00,-0.696888889,67.571
-1/8/2021,22:35:00,-0.704,68.5476
-1/8/2021,22:36:00,-0.711111111,69.35
-1/8/2021,22:37:00,-0.711111111,69.14
-1/8/2021,22:38:00,-0.704,68.3595
-1/8/2021,22:39:00,-0.711111111,69.04
-1/8/2021,22:40:00,-0.689777778,66.9785
-1/8/2021,22:41:00,-0.6985,68.5575
-1/8/2021,22:42:00,-0.696888889,67.9532
-1/8/2021,22:43:00,-0.702333333,67.865
-1/8/2021,22:44:00,-0.696888889,68.1492
-1/8/2021,22:45:00,-0.684388889,67.4635
-1/8/2021,22:46:00,-0.696888889,68.1492
-1/8/2021,22:47:00,-0.675555556,65.873
-1/8/2021,22:48:00,-0.711111111,69.04
-1/8/2021,22:49:00,-0.682666667,66.288
-1/8/2021,22:50:00,-0.680833333,65.778
-1/8/2021,22:51:00,-0.711111111,69.04
-1/8/2021,22:52:00,-0.704,68.2605
-1/8/2021,22:53:00,-0.702333333,67.8552
-1/8/2021,22:54:00,-0.682666667,66.0864
-1/8/2021,22:55:00,-0.711111111,69.04
-1/8/2021,22:56:00,-0.711111111,68.94
-1/8/2021,22:57:00,-0.696888889,67.5612
-1/8/2021,22:58:00,-0.704,68.2605
-1/8/2021,22:59:00,-0.682666667,66.3744
-1/8/2021,23:00:00,-0.730666667,66.1824
-1/8/2021,23:01:00,-0.730666667,66.1824
-1/8/2021,23:02:00,-0.745888889,67.571
-1/8/2021,23:03:00,-0.748,68.2506
-1/8/2021,23:04:00,-0.738277778,67.1628
-1/8/2021,23:05:00,-0.7535,68.7456
-1/8/2021,23:06:00,-0.736,66.6624
-1/8/2021,23:07:00,-0.743666667,67.2598
-1/8/2021,23:08:00,-0.761111111,69.34
-1/8/2021,23:09:00,-0.738277778,67.1725
-1/8/2021,23:10:00,-0.7535,68.5476
-1/8/2021,23:11:00,-0.7535,68.5476
-1/8/2021,23:12:00,-0.730666667,66.576
-1/8/2021,23:13:00,-0.689777778,67.2695
-1/8/2021,23:14:00,-0.730666667,66.4704
-1/8/2021,23:15:00,-0.730666667,66.576
-1/8/2021,23:16:00,-0.723055556,65.778
-1/8/2021,23:17:00,-0.725333333,66.576
-1/8/2021,23:18:00,-0.761111111,69.24
-1/8/2021,23:19:00,-0.738277778,67.2598
-1/8/2021,23:20:00,-0.730666667,66.6624
-1/8/2021,23:21:00,-0.730666667,66.8544
-1/8/2021,23:22:00,-0.745888889,68.2472
-1/8/2021,23:23:00,-0.761111111,69.84
-1/8/2021,23:24:00,-0.723055556,66.0725
-1/8/2021,23:25:00,-0.761111111,69.34
-1/8/2021,23:26:00,-0.748,68.7555
-1/8/2021,23:27:00,-0.761111111,69.24
-1/8/2021,23:28:00,-0.723055556,65.778
-1/8/2021,23:29:00,-0.723055556,65.778
-1/8/2021,23:30:00,-0.745888889,67.9532
-1/8/2021,23:31:00,-0.7535,68.3496
-1/8/2021,23:32:00,-0.751333333,67.4632
-1/8/2021,23:33:00,-0.738277778,66.6875
-1/8/2021,23:34:00,-0.784,65.7024
-1/8/2021,23:35:00,-0.786777778,66.4838
-1/8/2021,23:36:00,-0.770555556,65.303
-1/8/2021,23:37:00,-0.778666667,66.0864
-1/8/2021,23:38:00,-0.794888889,67.2672
-1/8/2021,23:39:00,-0.778666667,66.0864
-1/8/2021,23:40:00,-0.811111111,69.25
-1/8/2021,23:41:00,-0.803,68.1516
-1/8/2021,23:42:00,-0.800333333,67.2672
-1/8/2021,23:43:00,-0.794888889,67.3652
-1/8/2021,23:44:00,-0.816666667,68.64
-1/8/2021,23:45:00,-0.805555556,68.74
-1/8/2021,23:46:00,-0.784,66.1824
-1/8/2021,23:47:00,-0.794888889,67.669
-1/8/2021,23:48:00,-0.803,68.2506
-1/8/2021,23:49:00,-0.803,68.1516
-1/8/2021,23:50:00,-0.811111111,68.84
-1/8/2021,23:51:00,-0.794888889,67.4632
-1/8/2021,23:52:00,-0.786777778,66.6778
-1/8/2021,23:53:00,-0.794888889,67.571
-1/8/2021,23:54:00,-0.803,68.2506
-1/8/2021,23:55:00,-0.811111111,68.94
-1/8/2021,23:56:00,-0.811111111,69.05
-1/8/2021,23:57:00,-0.794888889,67.3652
-1/8/2021,23:58:00,-0.770555556,65.3125
-1/8/2021,23:59:00,-0.816666667,68.74
-1/9/2021,0:00:00,-0.794888889,67.473
-1/9/2021,0:01:00,-0.803,68.1516
-1/9/2021,0:02:00,-0.811111111,69.14
-1/9/2021,0:03:00,-0.811111111,69.14
-1/9/2021,0:04:00,-0.778666667,66.192
-1/9/2021,0:05:00,-0.811111111,68.94
-1/9/2021,0:06:00,-0.7535,68.3496
-1/9/2021,0:07:00,-0.778666667,66.0864
-1/9/2021,0:08:00,-0.770555556,65.5025
-1/9/2021,0:09:00,-0.770555556,65.5975
-1/9/2021,0:10:00,-0.770555556,65.778
-1/9/2021,0:11:00,-0.786777778,67.5508
-1/9/2021,0:12:00,-0.8085,69.0426
-1/9/2021,0:13:00,-0.794888889,67.7572
-1/9/2021,0:14:00,-0.786777778,67.1628
-1/9/2021,0:15:00,-0.786777778,67.1725
-1/9/2021,0:16:00,-0.811111111,69.44
-1/9/2021,0:17:00,-0.786777778,67.5605
-1/9/2021,0:18:00,-0.786777778,67.5508
-1/9/2021,0:19:00,-0.770555556,65.873
-1/9/2021,0:20:00,-0.770555556,65.683
-1/9/2021,0:21:00,-0.822222222,69.04
-1/9/2021,0:22:00,-0.811111111,68.84
-1/9/2021,0:23:00,-0.811111111,69.04
-1/9/2021,0:24:00,-0.861111111,68.85
-1/9/2021,0:25:00,-0.927777778,69.24
-1/9/2021,0:26:00,-0.843888889,67.9532
-1/9/2021,0:27:00,-0.826666667,66.48
-1/9/2021,0:28:00,-0.835277778,67.0658
-1/9/2021,0:29:00,-0.8525,68.4585
-1/9/2021,0:30:00,-0.786777778,67.2598
-1/9/2021,0:31:00,-0.861111111,69.34
-1/9/2021,0:32:00,-0.8525,68.6466
-1/9/2021,0:33:00,-0.826666667,66.672
-1/9/2021,0:34:00,-0.8525,68.5773
-1/9/2021,0:35:00,-0.840666667,66.9688
-1/9/2021,0:36:00,-0.832,66.1824
-1/9/2021,0:37:00,-0.818055556,65.6925
-1/9/2021,0:38:00,-0.835277778,66.9785
-1/9/2021,0:39:00,-0.858,68.4486
-1/9/2021,0:40:00,-0.874666667,66.7584
-1/9/2021,0:41:00,-0.861111111,69.84
-1/9/2021,0:42:00,-0.835277778,67.6478
-1/9/2021,0:43:00,-0.823333333,66.253
-1/9/2021,0:44:00,-0.843888889,67.8846
-1/9/2021,0:45:00,-0.874666667,66.7584
-1/9/2021,0:46:00,-0.883777778,67.2598
-1/9/2021,0:47:00,-0.818055556,66.063
-1/9/2021,0:48:00,-0.866666667,68.94
-1/9/2021,0:49:00,-0.835277778,66.5808
-1/9/2021,0:50:00,-0.861111111,68.44
-1/9/2021,0:51:00,-0.902,67.7556
-1/9/2021,0:52:00,-0.874666667,65.3184
-1/9/2021,0:53:00,-0.892888889,66.6792
-1/9/2021,0:54:00,-0.902,67.6566
-1/9/2021,0:55:00,-0.889166667,66.2898
-1/9/2021,0:56:00,-0.913055556,64.923
-1/9/2021,0:57:00,-0.941888889,67.3652
-1/9/2021,0:58:00,-0.947333333,67.3652
-1/9/2021,0:59:00,-0.9515,67.6566
-1/9/2021,1:00:00,-0.938888889,68.44
-1/9/2021,1:01:00,-0.898333333,66.7772
-1/9/2021,1:02:00,-0.892888889,66.9732
-1/9/2021,1:03:00,-0.913055556,64.828
-1/9/2021,1:04:00,-0.922666667,65.3184
-1/9/2021,1:05:00,-0.961111111,68.14
-1/9/2021,1:06:00,-0.947333333,66.8752
-1/9/2021,1:07:00,-0.922666667,66.4704
-1/9/2021,1:08:00,-0.932277778,67.0658
-1/9/2021,1:09:00,-0.9515,67.7556
-1/9/2021,1:10:00,-0.928,65.7024
-1/9/2021,1:11:00,-0.934166667,64.828
-1/9/2021,1:12:00,-0.961111111,68.14
-1/9/2021,1:13:00,-0.937666667,65.7078
-1/9/2021,1:14:00,-0.941888889,66.5812
-1/9/2021,1:15:00,-0.966666667,67.94
-1/9/2021,1:16:00,-0.941888889,66.4832
-1/9/2021,1:17:00,-0.947333333,66.5812
-1/9/2021,1:18:00,-0.9515,67.2606
-1/9/2021,1:19:00,-0.947333333,66.7772
-1/9/2021,1:20:00,-0.9515,67.4586
-1/9/2021,1:21:00,-0.911111111,68.14
-1/9/2021,1:22:00,-0.896,65.6064
-1/9/2021,1:23:00,-0.865555556,65.018
-1/9/2021,1:24:00,-0.883777778,66.0958
-1/9/2021,1:25:00,-0.865555556,64.923
-1/9/2021,1:26:00,-0.865555556,65.208
-1/9/2021,1:27:00,-0.911111111,68.34
-1/9/2021,1:28:00,-0.861111111,68.14
-1/9/2021,1:29:00,-0.861111111,68.15
-1/9/2021,1:30:00,-0.835277778,66.1928
-1/9/2021,1:31:00,-0.861111111,68.24
-1/9/2021,1:32:00,-0.861111111,68.14
-1/9/2021,1:33:00,-0.8635,67.5576
-1/9/2021,1:34:00,-0.835277778,66.3868
-1/9/2021,1:35:00,-0.803,68.1516
-1/9/2021,1:36:00,-0.843888889,67.0712
-1/9/2021,1:37:00,-0.8525,67.4586
-1/9/2021,1:38:00,-0.803,67.2606
-1/9/2021,1:39:00,-0.770555556,64.448
-1/9/2021,1:40:00,-0.849333333,66.5812
-1/9/2021,1:41:00,-0.843888889,66.6792
-1/9/2021,1:42:00,-0.840666667,65.9018
-1/9/2021,1:43:00,-0.858,67.2606
-1/9/2021,1:44:00,-0.861111111,67.44
-1/9/2021,1:45:00,-0.840666667,65.0288
-1/9/2021,1:46:00,-0.818055556,63.783
-1/9/2021,1:47:00,-0.837333333,64.2624
-1/9/2021,1:48:00,-0.811111111,66.34
-1/9/2021,1:49:00,-0.8525,66.0726
-1/9/2021,1:50:00,-0.835277778,65.0288
-1/9/2021,1:51:00,-0.858,66.3696
-1/9/2021,1:52:00,-0.8525,66.3696
-1/9/2021,1:53:00,-0.835277778,65.1258
-1/9/2021,1:54:00,-0.835277778,65.2228
-1/9/2021,1:55:00,-0.858,66.9636
-1/9/2021,1:56:00,-0.832,64.8384
-1/9/2021,1:57:00,-0.8525,66.6765
-1/9/2021,1:58:00,-0.826666667,64.6464
-1/9/2021,1:59:00,-0.8525,66.8745
-1/9/2021,2:00:00,-0.829888889,65.5138
-1/9/2021,2:01:00,-0.800333333,66.2872
-1/9/2021,2:02:00,-0.786777778,65.2228
-1/9/2021,2:03:00,-0.816666667,67.04
-1/9/2021,2:04:00,-0.803,66.0726
-1/9/2021,2:05:00,-0.794888889,65.1112
-1/9/2021,2:06:00,-0.770555556,63.213
-1/9/2021,2:07:00,-0.7535,65.8746
-1/9/2021,2:08:00,-0.738277778,64.5438
-1/9/2021,2:09:00,-0.738277778,64.3498
-1/9/2021,2:10:00,-0.723055556,62.928
-1/9/2021,2:11:00,-0.766666667,66.34
-1/9/2021,2:12:00,-0.786777778,64.8445
-1/9/2021,2:13:00,-0.803,65.8746
-1/9/2021,2:14:00,-0.811111111,66.24
-1/9/2021,2:15:00,-0.794888889,65.0132
-1/9/2021,2:16:00,-0.818055556,63.023
-1/9/2021,2:17:00,-0.855555556,66.04
-1/9/2021,2:18:00,-0.835277778,64.1558
-1/9/2021,2:19:00,-0.818055556,63.213
-1/9/2021,2:20:00,-0.858,65.5776
-1/9/2021,2:21:00,-0.818055556,62.738
-1/9/2021,2:22:00,-0.835277778,64.1655
-1/9/2021,2:23:00,-0.874666667,63.6864
-1/9/2021,2:24:00,-0.835277778,63.9715
-1/9/2021,2:25:00,-0.88,63.4944
-1/9/2021,2:26:00,-0.911111111,66.24
-1/9/2021,2:27:00,-0.883777778,64.0588
-1/9/2021,2:28:00,-0.870833333,62.453
-1/9/2021,2:29:00,-0.883777778,63.9618
-1/9/2021,2:30:00,-0.892888889,64.7192
-1/9/2021,2:31:00,-0.865555556,62.738
-1/9/2021,2:32:00,-0.865555556,63.118
-1/9/2021,2:33:00,-0.870833333,63.023
-1/9/2021,2:34:00,-0.889166667,64.1558
-1/9/2021,2:35:00,-0.88,63.5904
-1/9/2021,2:36:00,-0.870833333,62.928
-1/9/2021,2:37:00,-0.898333333,64.9152
-1/9/2021,2:38:00,-0.865555556,63.1275
-1/9/2021,2:39:00,-0.911111111,66.54
-1/9/2021,2:40:00,-0.874666667,63.6864
-1/9/2021,2:41:00,-0.911111111,66.44
-1/9/2021,2:42:00,-0.902,65.9736
-1/9/2021,2:43:00,-0.911111111,66.45
-1/9/2021,2:44:00,-0.898333333,65.1112
-1/9/2021,2:45:00,-0.902,65.6766
-1/9/2021,2:46:00,-0.883777778,64.4468
-1/9/2021,2:47:00,-0.9075,65.8746
-1/9/2021,2:48:00,-0.874666667,63.9744
-1/9/2021,2:49:00,-0.883777778,64.7378
-1/9/2021,2:50:00,-0.9075,66.2706
-1/9/2021,2:51:00,-0.849333333,65.8952
-1/9/2021,2:52:00,-0.849333333,65.5032
-1/9/2021,2:53:00,-0.826666667,64.1664
-1/9/2021,2:54:00,-0.916666667,66.44
-1/9/2021,2:55:00,-0.9075,65.8746
-1/9/2021,2:56:00,-0.88,63.6864
-1/9/2021,2:57:00,-0.865555556,63.023
-1/9/2021,2:58:00,-0.898333333,65.1112
-1/9/2021,2:59:00,-0.898333333,65.5032
-1/9/2021,3:00:00,-0.911111111,67.64
-1/9/2021,3:01:00,-0.902,66.6666
-1/9/2021,3:02:00,-0.911111111,67.34
-1/9/2021,3:03:00,-0.983333333,67.54
-1/9/2021,3:04:00,-0.911111111,67.54
-1/9/2021,3:05:00,-0.902,66.6666
-1/9/2021,3:06:00,-0.823333333,63.973
-1/9/2021,3:07:00,-0.818055556,64.068
-1/9/2021,3:08:00,-0.823333333,63.973
-1/9/2021,3:09:00,-0.861111111,67.54
-1/9/2021,3:10:00,-0.835277778,65.5138
-1/9/2021,3:11:00,-0.843888889,65.9932
-1/9/2021,3:12:00,-0.883777778,65.4168
-1/9/2021,3:13:00,-0.835277778,65.5138
-1/9/2021,3:14:00,-0.818055556,64.353
-1/9/2021,3:15:00,-0.861111111,67.34
-1/9/2021,3:16:00,-0.826666667,64.6464
-1/9/2021,3:17:00,-0.8525,66.8646
-1/9/2021,3:18:00,-0.905555556,67.44
-1/9/2021,3:19:00,-0.835277778,66.1928
-1/9/2021,3:20:00,-0.818055556,64.353
-1/9/2021,3:21:00,-0.8525,66.3795
-1/9/2021,3:22:00,-0.8525,65.7855
-1/9/2021,3:23:00,-0.849333333,65.0132
-1/9/2021,3:24:00,-0.8525,65.4786
-1/9/2021,3:25:00,-0.865555556,62.833
-1/9/2021,3:26:00,-0.902,65.5776
-1/9/2021,3:27:00,-0.883777778,64.2528
-1/9/2021,3:28:00,-0.925555556,65.1112
-1/9/2021,3:29:00,-0.865555556,63.308
-1/9/2021,3:30:00,-0.892888889,65.0132
-1/9/2021,3:31:00,-0.9515,65.4786
-1/9/2021,3:32:00,-0.922666667,63.3024
-1/9/2021,3:33:00,-0.922666667,63.3024
-1/9/2021,3:34:00,-1.001777778,64.8172
-1/9/2021,3:35:00,-1.001,65.3796
-1/9/2021,3:36:00,-0.960555556,62.833
-1/9/2021,3:37:00,-0.960555556,63.118
-1/9/2021,3:38:00,-0.990888889,64.9152
-1/9/2021,3:39:00,-0.976,63.7824
-1/9/2021,3:40:00,-0.996333333,65.1112
-1/9/2021,3:41:00,-0.986166667,64.4468
-1/9/2021,3:42:00,-0.970666667,63.7824
-1/9/2021,3:43:00,-0.960555556,63.213
-1/9/2021,3:44:00,-1.005555556,66.75
-1/9/2021,3:45:00,-1.001,66.2706
-1/9/2021,3:46:00,-0.960555556,64.163
-1/9/2021,3:47:00,-1.012,66.9636
-1/9/2021,3:48:00,-0.970666667,65.8944
-1/9/2021,3:49:00,-1.011111111,68.05
-1/9/2021,3:50:00,-0.980777778,65.4168
-1/9/2021,3:51:00,-0.970666667,64.1664
-1/9/2021,3:52:00,-0.996333333,65.5032
-1/9/2021,3:53:00,-1.0065,65.9736
-1/9/2021,3:54:00,-1.001,65.7756
-1/9/2021,3:55:00,-1.0505,65.7756
-1/9/2021,3:56:00,-1.029277778,64.2528
-1/9/2021,3:57:00,-1.061111111,66.04
-1/9/2021,3:58:00,-1.088888889,64.6408
-1/9/2021,3:59:00,-1.072,63.3024
-1/9/2021,4:00:00,-1.077777778,64.1558
-1/9/2021,4:01:00,-1.088888889,64.9152
-1/9/2021,4:02:00,-1.077777778,63.8648
-1/9/2021,4:03:00,-1.114666667,63.3024
-1/9/2021,4:04:00,-1.1055,65.3796
-1/9/2021,4:05:00,-1.1495,65.0826
-1/9/2021,4:06:00,-1.103055556,62.453
-1/9/2021,4:07:00,-1.166666667,65.55
-1/9/2021,4:08:00,-1.161111111,65.84
-1/9/2021,4:09:00,-1.211111111,65.94
-1/9/2021,4:10:00,-1.199,64.7856
-1/9/2021,4:11:00,-1.235888889,64.5232
-1/9/2021,4:12:00,-1.2485,65.5776
-1/9/2021,4:13:00,-1.266666667,65.54
-1/9/2021,4:14:00,-1.228666667,63.7678
-1/9/2021,4:15:00,-1.261111111,66.14
-1/9/2021,4:16:00,-1.283333333,66.44
-1/9/2021,4:17:00,-1.264,63.4944
-1/9/2021,4:18:00,-1.284888889,64.5232
-1/9/2021,4:19:00,-1.250833333,62.358
-1/9/2021,4:20:00,-1.353,65.2806
-1/9/2021,4:21:00,-1.366666667,66.14
-1/9/2021,4:22:00,-1.325666667,64.2528
-1/9/2021,4:23:00,-1.325666667,64.4468
-1/9/2021,4:24:00,-1.312,63.8784
-1/9/2021,4:25:00,-1.366666667,66.74
-1/9/2021,4:26:00,-1.298333333,63.498
-1/9/2021,4:27:00,-1.320277778,64.8348
-1/9/2021,4:28:00,-1.325666667,65.0288
-1/9/2021,4:29:00,-1.339333333,65.8952
-1/9/2021,4:30:00,-1.333888889,65.8952
-1/9/2021,4:31:00,-1.325666667,65.3198
-1/9/2021,4:32:00,-1.293055556,63.878
-1/9/2021,4:33:00,-1.370666667,64.3584
-1/9/2021,4:34:00,-1.320277778,65.0288
-1/9/2021,4:35:00,-1.361111111,67.04
-1/9/2021,4:36:00,-1.312,64.1664
-1/9/2021,4:37:00,-1.361111111,66.94
-1/9/2021,4:38:00,-1.325666667,65.1258
-1/9/2021,4:39:00,-1.3585,66.3696
-1/9/2021,4:40:00,-1.333888889,65.6012
-1/9/2021,4:41:00,-1.353,66.1716
-1/9/2021,4:42:00,-1.333888889,65.5032
-1/9/2021,4:43:00,-1.374166667,65.5138
-1/9/2021,4:44:00,-1.36,64.4256
-1/9/2021,4:45:00,-1.397,66.0726
-1/9/2021,4:46:00,-1.411111111,66.54
-1/9/2021,4:47:00,-1.397,65.8746
-1/9/2021,4:48:00,-1.345833333,63.308
-1/9/2021,4:49:00,-1.416666667,66.84
-1/9/2021,4:50:00,-1.466666667,66.94
-1/9/2021,4:51:00,-1.437333333,65.5032
-1/9/2021,4:52:00,-1.461111111,66.94
-1/9/2021,4:53:00,-1.402666667,64.3584
-1/9/2021,4:54:00,-1.452,66.6666
-1/9/2021,4:55:00,-1.466666667,67.14
-1/9/2021,4:56:00,-1.466666667,67.14
-1/9/2021,4:57:00,-1.507,66.3597
-1/9/2021,4:58:00,-1.452,66.3696
-1/9/2021,4:59:00,-1.466666667,67.04
-1/9/2021,5:00:00,-1.408,64.2624
-1/9/2021,5:01:00,-1.417277778,64.9318
-1/9/2021,5:02:00,-1.408,63.9744
-1/9/2021,5:03:00,-1.422666667,64.6408
-1/9/2021,5:04:00,-1.5015,65.9736
-1/9/2021,5:05:00,-1.471166667,64.6408
-1/9/2021,5:06:00,-1.471166667,64.7378
-1/9/2021,5:07:00,-1.435555556,63.593
-1/9/2021,5:08:00,-1.496,66.4686
-1/9/2021,5:09:00,-1.504,64.5504
-1/9/2021,5:10:00,-1.551,66.6765
-1/9/2021,5:11:00,-1.522222222,67.24
-1/9/2021,5:12:00,-1.519666667,65.0288
-1/9/2021,5:13:00,-1.498666667,64.2624
-1/9/2021,5:14:00,-1.519666667,65.0288
-1/9/2021,5:15:00,-1.561111111,66.94
-1/9/2021,5:16:00,-1.561111111,66.94
-1/9/2021,5:17:00,-1.514277778,65.0288
-1/9/2021,5:18:00,-1.572222222,67.14
-1/9/2021,5:19:00,-1.535833333,63.878
-1/9/2021,5:20:00,-1.578888889,66.0912
-1/9/2021,5:21:00,-1.6005,66.3696
-1/9/2021,5:22:00,-1.6005,66.3696
-1/9/2021,5:23:00,-1.535833333,63.878
-1/9/2021,5:24:00,-1.584333333,65.8952
-1/9/2021,5:25:00,-1.616666667,67.04
-1/9/2021,5:26:00,-1.6005,66.1716
-1/9/2021,5:27:00,-1.535833333,63.688
-1/9/2021,5:28:00,-1.65,66.2706
-1/9/2021,5:29:00,-1.583333333,63.783
-1/9/2021,5:30:00,-1.594666667,64.2624
-1/9/2021,5:31:00,-1.6,64.3584
-1/9/2021,5:32:00,-1.711111111,67.04
-1/9/2021,5:33:00,-1.711111111,67.24
-1/9/2021,5:34:00,-1.648,64.6464
-1/9/2021,5:35:00,-1.665166667,65.2228
-1/9/2021,5:36:00,-1.716666667,67.34
-1/9/2021,5:37:00,-1.682333333,65.9932
-1/9/2021,5:38:00,-1.682333333,65.7972
-1/9/2021,5:39:00,-1.648,64.6464
-1/9/2021,5:40:00,-1.694,66.5676
-1/9/2021,5:41:00,-1.648,64.3584
-1/9/2021,5:42:00,-1.630833333,63.878
-1/9/2021,5:43:00,-1.731333333,65.8952
-1/9/2021,5:44:00,-1.749,66.2706
-1/9/2021,5:45:00,-1.673055556,63.688
-1/9/2021,5:46:00,-1.696,64.4544
-1/9/2021,5:47:00,-1.678333333,63.878
-1/9/2021,5:48:00,-1.731333333,66.1892
-1/9/2021,5:49:00,-1.749,66.8646
-1/9/2021,5:50:00,-1.766666667,67.34
-1/9/2021,5:51:00,-1.766666667,67.44
-1/9/2021,5:52:00,-1.811111111,67.33
-1/9/2021,5:53:00,-1.85,67.23
-1/9/2021,5:54:00,-1.749,66.5676
-1/9/2021,5:55:00,-1.744,64.7424
-1/9/2021,5:56:00,-1.744,64.8384
-1/9/2021,5:57:00,-1.749,66.3696
-1/9/2021,5:58:00,-1.780333333,65.7972
-1/9/2021,5:59:00,-1.744,64.3584
-1/9/2021,6:00:00,-1.804,66.2706
-1/9/2021,6:01:00,-1.810666667,65.0288
-1/9/2021,6:02:00,-1.805277778,65.4168
-1/9/2021,6:03:00,-1.792,64.8384
-1/9/2021,6:04:00,-1.773333333,63.973
-1/9/2021,6:05:00,-1.829333333,65.7874
-1/9/2021,6:06:00,-1.862,65.7874
-1/9/2021,6:07:00,-1.916666667,67.34
-1/9/2021,6:08:00,-1.84,64.5504
-1/9/2021,6:09:00,-1.853777778,65.4168
-1/9/2021,6:10:00,-1.84,64.6464
-1/9/2021,6:11:00,-1.9415,66.5676
-1/9/2021,6:12:00,-1.9415,66.5676
-1/9/2021,6:13:00,-1.882666667,64.5888
-1/9/2021,6:14:00,-1.888,64.7424
-1/9/2021,6:15:00,-1.966666667,67.54
-1/9/2021,6:16:00,-1.9415,66.8646
-1/9/2021,6:17:00,-1.947,67.2606
-1/9/2021,6:18:00,-1.868333333,64.353
-1/9/2021,6:19:00,-1.972222222,67.74
-1/9/2021,6:20:00,-1.888,64.4544
-1/9/2021,6:21:00,-1.915833333,63.783
-1/9/2021,6:22:00,-2.016666667,67.24
-1/9/2021,6:23:00,-1.936,64.5504
-1/9/2021,6:24:00,-2.002,66.6666
-1/9/2021,6:25:00,-1.915833333,63.878
-1/9/2021,6:26:00,-1.987222222,65.9932
-1/9/2021,6:27:00,-1.915833333,64.1535
-1/9/2021,6:28:00,-1.963333333,64.353
-1/9/2021,6:29:00,-1.963333333,64.163
-1/9/2021,6:30:00,-1.963333333,64.638
-1/9/2021,6:31:00,-2.0515,67.0626
-1/9/2021,6:32:00,-1.984,64.3584
-1/9/2021,6:33:00,-1.978666667,64.3584
-1/9/2021,6:34:00,-1.984,64.1664
-1/9/2021,6:35:00,-1.984,63.8784
-1/9/2021,6:36:00,-2.037333333,63.9744
-1/9/2021,6:37:00,-2.116666667,66.64
-1/9/2021,6:38:00,-2.053166667,64.7378
-1/9/2021,6:39:00,-2.010833333,63.308
-1/9/2021,6:40:00,-2.053166667,64.4468
-1/9/2021,6:41:00,-2.074333333,65.2092
-1/9/2021,6:42:00,-2.145,65.7756
-1/9/2021,6:43:00,-2.123333333,65.2092
-1/9/2021,6:44:00,-2.128777778,65.1994
-1/9/2021,6:45:00,-2.166666667,66.74
-1/9/2021,6:46:00,-2.238888889,66.94
-1/9/2021,6:47:00,-2.1945,65.9736
-1/9/2021,6:48:00,-2.1945,65.5776
-1/9/2021,6:49:00,-2.216666667,66.44
-1/9/2021,6:50:00,-2.244,65.9736
-1/9/2021,6:51:00,-2.244,66.4587
-1/9/2021,6:52:00,-2.221333333,65.7874
-1/9/2021,6:53:00,-2.158611111,63.973
-1/9/2021,6:54:00,-2.153333333,64.0585
-1/9/2021,6:55:00,-2.153333333,64.068
-1/9/2021,6:56:00,-2.204055556,65.7078
-1/9/2021,6:57:00,-2.176,65.4144
-1/9/2021,6:58:00,-2.116388889,64.828
-1/9/2021,6:59:00,-2.2,67.0527
-1/9/2021,7:00:00,-2.216666667,67.14
-1/9/2021,7:01:00,-2.198666667,65.1161
-1/9/2021,7:02:00,-2.244,66.6666
-1/9/2021,7:03:00,-2.266666667,67.44
-1/9/2021,7:04:00,-2.266666667,67.44
-1/9/2021,7:05:00,-2.181333333,64.9248
-1/9/2021,7:06:00,-2.299,66.8547
-1/9/2021,7:07:00,-2.316666667,67.34
-1/9/2021,7:08:00,-2.270333333,66.1794
-1/9/2021,7:09:00,-2.316666667,67.44
-1/9/2021,7:10:00,-2.299,66.9537
-1/9/2021,7:11:00,-2.316666667,67.74
-1/9/2021,7:12:00,-2.316666667,67.54
-1/9/2021,7:13:00,-2.322222222,67.33
-1/9/2021,7:14:00,-2.343,66.5676
-1/9/2021,7:15:00,-2.366666667,67.13
-1/9/2021,7:16:00,-2.319333333,65.8952
-1/9/2021,7:17:00,-2.325333333,64.4448
-1/9/2021,7:18:00,-2.349555556,65.3198
-1/9/2021,7:19:00,-2.394666667,64.8288
-1/9/2021,7:20:00,-2.368333333,66.3852
-1/9/2021,7:21:00,-2.344166667,66.1928
-1/9/2021,7:22:00,-2.368333333,66.8654
-1/9/2021,7:23:00,-2.344166667,66.2898
-1/9/2021,7:24:00,-2.416666667,67.84
-1/9/2021,7:25:00,-2.32,64.8384
-1/9/2021,7:26:00,-2.32,64.7328
-1/9/2021,7:27:00,-2.373777778,66.1794
-1/9/2021,7:28:00,-2.348611111,64.1535
-1/9/2021,7:29:00,-2.471777778,66.2774
-1/9/2021,7:30:00,-2.516666667,67.54
-1/9/2021,7:31:00,-2.516666667,67.53
-1/9/2021,7:32:00,-2.522222222,67.63
-1/9/2021,7:33:00,-2.566666667,67.83
-1/9/2021,7:34:00,-2.466333333,66.8752
-1/9/2021,7:35:00,-2.464,65.8944
-1/9/2021,7:36:00,-2.441166667,66.6681
-1/9/2021,7:37:00,-2.466333333,67.6592
-1/9/2021,7:38:00,-2.4915,68.5476
-1/9/2021,7:39:00,-2.497,68.4486
-1/9/2021,7:40:00,-2.392666667,66.5808
-1/9/2021,7:41:00,-2.442,67.7457
-1/9/2021,7:42:00,-2.442,68.1516
-1/9/2021,7:43:00,-2.295833333,65.2935
-1/9/2021,7:44:00,-2.295833333,65.1985
-1/9/2021,7:45:00,-2.295833333,65.208
-1/9/2021,7:46:00,-2.3925,67.5477
-1/9/2021,7:47:00,-2.3925,67.4586
-1/9/2021,7:48:00,-2.368333333,66.3852
-1/9/2021,7:49:00,-2.301111111,65.2935
-1/9/2021,7:50:00,-2.416666667,68.94
-1/9/2021,7:51:00,-2.344166667,66.5711
-1/9/2021,7:52:00,-2.403444444,66.0861
-1/9/2021,7:53:00,-2.368333333,66.0814
-1/9/2021,7:54:00,-2.301111111,63.9635
-1/9/2021,7:55:00,-2.368333333,65.9834
-1/9/2021,7:56:00,-2.3765,65.4168
-1/9/2021,7:57:00,-2.343333333,64.2485
-1/9/2021,7:58:00,-2.368,64.9248
-1/9/2021,7:59:00,-2.466333333,66.3754
-1/9/2021,8:00:00,-2.466333333,66.5714
-1/9/2021,8:01:00,-2.441166667,65.6011
-1/9/2021,8:02:00,-2.421333333,64.9248
-1/9/2021,8:03:00,-2.4915,66.9636
-1/9/2021,8:04:00,-2.516666667,67.44
-1/9/2021,8:05:00,-2.4915,66.8547
-1/9/2021,8:06:00,-2.471777778,66.4832
-1/9/2021,8:07:00,-2.516666667,67.94
-1/9/2021,8:08:00,-2.516666667,67.83
-1/9/2021,8:09:00,-2.497,67.0527
-1/9/2021,8:10:00,-2.4915,67.1616
-1/9/2021,8:11:00,-2.446555556,66.0861
-1/9/2021,8:12:00,-2.516666667,68.43
-1/9/2021,8:13:00,-2.516666667,68.34
-1/9/2021,8:14:00,-2.471777778,66.8654
-1/9/2021,8:15:00,-2.441166667,66.3868
-1/9/2021,8:16:00,-2.446555556,66.9591
-1/9/2021,8:17:00,-2.348611111,65.1985
-1/9/2021,8:18:00,-2.417333333,66.9634
-1/9/2021,8:19:00,-2.368,65.5008
-1/9/2021,8:20:00,-2.368,65.4144
-1/9/2021,8:21:00,-2.373333333,65.4048
-1/9/2021,8:22:00,-2.348611111,64.733
-1/9/2021,8:23:00,-2.392666667,66.1928
-1/9/2021,8:24:00,-2.422777778,66.9634
-1/9/2021,8:25:00,-2.392666667,66.1831
-1/9/2021,8:26:00,-2.4475,67.5477
-1/9/2021,8:27:00,-2.442,67.6467
-1/9/2021,8:28:00,-2.343333333,65.1035
-1/9/2021,8:29:00,-2.416666667,68.43
-1/9/2021,8:30:00,-2.349555556,66.3868
-1/9/2021,8:31:00,-2.301111111,64.7235
-1/9/2021,8:32:00,-2.348611111,64.7235
-1/9/2021,8:33:00,-2.344166667,66.0958
-1/9/2021,8:34:00,-2.349555556,66.2801
-1/9/2021,8:35:00,-2.384666667,66.8654
-1/9/2021,8:36:00,-2.3925,67.5576
-1/9/2021,8:37:00,-2.32,65.4048
-1/9/2021,8:38:00,-2.366666667,67.54
-1/9/2021,8:39:00,-2.372222222,66.63
-1/9/2021,8:40:00,-2.366666667,66.04
-1/9/2021,8:41:00,-2.408833333,64.1461
-1/9/2021,8:42:00,-2.295666667,64.5438
-1/9/2021,8:43:00,-2.248333333,63.688
-1/9/2021,8:44:00,-2.295666667,64.8251
-1/9/2021,8:45:00,-2.366666667,66.54
-1/9/2021,8:46:00,-2.295666667,64.5438
-1/9/2021,8:47:00,-2.247166667,64.1558
-1/9/2021,8:48:00,-2.2935,65.3697
-1/9/2021,8:49:00,-2.346555556,64.8074
-1/9/2021,8:50:00,-2.299,65.1816
-1/9/2021,8:51:00,-2.270333333,64.4252
-1/9/2021,8:52:00,-2.316666667,65.94
-1/9/2021,8:53:00,-2.247166667,63.9618
-1/9/2021,8:54:00,-2.170666667,63.3024
-1/9/2021,8:55:00,-2.198666667,64.2528
-1/9/2021,8:56:00,-2.244,65.2707
-1/9/2021,8:57:00,-2.198666667,63.8648
-1/9/2021,8:58:00,-2.153333333,62.4435
-1/9/2021,8:59:00,-2.221333333,64.1312
-1/9/2021,9:00:00,-2.158611111,62.3485
-1/9/2021,9:01:00,-2.128,62.9184
-1/9/2021,9:02:00,-2.2,65.0727
-1/9/2021,9:03:00,-2.105833333,62.453
-1/9/2021,9:04:00,-2.216666667,65.94
-1/9/2021,9:05:00,-2.128,63.2928
-1/9/2021,9:06:00,-2.216666667,65.93
-1/9/2021,9:07:00,-2.08,63.0144
-1/9/2021,9:08:00,-2.166666667,65.5
-1/9/2021,9:09:00,-2.123333333,64.1312
-1/9/2021,9:10:00,-2.116666667,65.74
-1/9/2021,9:11:00,-2.010833333,62.643
-1/9/2021,9:12:00,-2.010833333,62.833
-1/9/2021,9:13:00,-2.074333333,64.4252
-1/9/2021,9:14:00,-2.046,64.8846
-1/9/2021,9:15:00,-1.968611111,62.1585
-1/9/2021,9:16:00,-1.9965,64.8846
-1/9/2021,9:17:00,-1.976333333,64.2292
-1/9/2021,9:18:00,-1.893333333,63.2064
-1/9/2021,9:19:00,-1.888,62.9184
-1/9/2021,9:20:00,-1.966666667,65.24
-1/9/2021,9:21:00,-1.927333333,63.7392
-1/9/2021,9:22:00,-1.966666667,65.04
-1/9/2021,9:23:00,-1.820833333,61.883
-1/9/2021,9:24:00,-1.878333333,64.0332
-1/9/2021,9:25:00,-1.829333333,64.1312
-1/9/2021,9:26:00,-1.7985,64.6866
-1/9/2021,9:27:00,-1.713666667,63.1858
-1/9/2021,9:28:00,-1.716666667,64.24
-1/9/2021,9:29:00,-1.6995,63.3006
-1/9/2021,9:30:00,-1.6995,63.0036
-1/9/2021,9:31:00,-1.6995,62.8056
-1/9/2021,9:32:00,-1.648,61.1904
-1/9/2021,9:33:00,-1.6995,62.8056
-1/9/2021,9:34:00,-1.676888889,62.5632
-1/9/2021,9:35:00,-1.6,60.9984
-1/9/2021,9:36:00,-1.622055556,61.7211
-1/9/2021,9:37:00,-1.535833333,60.458
-1/9/2021,9:38:00,-1.562777778,61.5368
-1/9/2021,9:39:00,-1.584333333,62.1712
-1/9/2021,9:40:00,-1.562777778,61.8278
-1/9/2021,9:41:00,-1.504,61.5744
-1/9/2021,9:42:00,-1.435555556,60.743
-1/9/2021,9:43:00,-1.456,60.8064
-1/9/2021,9:44:00,-1.440833333,59.983
-1/9/2021,9:45:00,-1.486333333,61.7792
-1/9/2021,9:46:00,-1.456,60.8064
-1/9/2021,9:47:00,-1.516666667,63.54
-1/9/2021,9:48:00,-1.54,62.5086
-1/9/2021,9:49:00,-1.486333333,62.2692
-1/9/2021,9:50:00,-1.388055556,60.553
-1/9/2021,9:51:00,-1.345833333,59.888
-1/9/2021,9:52:00,-1.354666667,60.7104
-1/9/2021,9:53:00,-1.353,62.4096
-1/9/2021,9:54:00,-1.339333333,61.7106
-1/9/2021,9:55:00,-1.245555556,59.983
-1/9/2021,9:56:00,-1.203333333,60.838
-1/9/2021,9:57:00,-1.168,60.9984
-1/9/2021,9:58:00,-1.108333333,60.268
-1/9/2021,9:59:00,-1.116666667,62.74
-1/9/2021,10:00:00,-1.034666667,59.5584
-1/9/2021,10:01:00,-0.980777778,60.1788
-1/9/2021,10:02:00,-0.961111111,62.04
-1/9/2021,10:03:00,-0.866666667,61.84
-1/9/2021,10:04:00,-0.794888889,60.2112
-1/9/2021,10:05:00,-0.8195,59.8356
-1/9/2021,10:06:00,-0.849333333,59.7212
-1/9/2021,10:07:00,-0.803,60.9246
-1/9/2021,10:08:00,-0.730666667,59.0784
-1/9/2021,10:09:00,-0.670277778,58.273
-1/9/2021,10:10:00,-0.682666667,57.5424
-1/9/2021,10:11:00,-0.822222222,59.64
-1/9/2021,10:12:00,-0.803,58.9446
-1/9/2021,10:13:00,-0.835277778,58.3358
-1/9/2021,10:14:00,-0.826666667,59.0784
-1/9/2021,10:15:00,-0.775833333,58.178
-1/9/2021,10:16:00,-0.770555556,58.273
-1/9/2021,10:17:00,-0.740444444,59.731
-1/9/2021,10:18:00,-0.745888889,58.7412
-1/9/2021,10:19:00,-0.738277778,58.1515
-1/9/2021,10:20:00,-0.7535,59.6376
-1/9/2021,10:21:00,-0.691444444,59.3292
-1/9/2021,10:22:00,-0.611111111,60.54
-1/9/2021,10:23:00,-0.533055556,57.2375
-1/9/2021,10:24:00,-0.490666667,57.168
-1/9/2021,10:25:00,-0.490666667,56.7744
-1/9/2021,10:26:00,-0.5005,58.5585
-1/9/2021,10:27:00,-0.5115,58.2516
-1/9/2021,10:28:00,-0.506,58.2615
-1/9/2021,10:29:00,-0.549888889,57.673
-1/9/2021,10:30:00,-0.555333333,58.3492
-1/9/2021,10:31:00,-0.500888889,58.947
-1/9/2021,10:32:00,-0.490388889,58.1515
-1/9/2021,10:33:00,-0.438055556,56.5725
-1/9/2021,10:34:00,-0.390555556,56.6675
-1/9/2021,10:35:00,-0.346666667,57.072
-1/9/2021,10:36:00,-0.3025,58.9545
-1/9/2021,10:37:00,-0.2585,59.0535
-1/9/2021,10:38:00,-0.209,58.5585
-1/9/2021,10:39:00,-0.202666667,56.5824
-1/9/2021,10:40:00,-0.157888889,57.575
-1/9/2021,10:41:00,-0.147777778,55.6225
-1/9/2021,10:42:00,-0.105555556,55.6225
-1/9/2021,10:43:00,-0.054444444,57.477
-1/9/2021,10:44:00,-0.061111111,58.05
-1/9/2021,10:45:00,-0.053333333,55.728
-1/9/2021,10:46:00,-0.010888889,56.791
-1/9/2021,10:47:00,-0.011,57.4695
-1/9/2021,10:48:00,-0.052777778,55.1475
-1/9/2021,10:49:00,-0.114333333,56.5852
-1/9/2021,10:50:00,-0.147777778,55.3375
-1/9/2021,10:51:00,-0.154,58.3605
-1/9/2021,10:52:00,-0.061111111,58.94
-1/9/2021,10:53:00,-0.011111111,59.25
-1/9/2021,10:54:00,-0.026666667,56.304
-1/9/2021,10:55:00,0.086222222,56.7935
-1/9/2021,10:56:00,0.092555556,56.987
-1/9/2021,10:57:00,0.141555556,57.085
-1/9/2021,10:58:00,0.239555556,56.595
-1/9/2021,10:59:00,0.294444444,57.55
-1/9/2021,11:00:00,0.3355,56.6775
-1/9/2021,11:01:00,0.377222222,54.4655
-1/9/2021,11:02:00,0.330666667,53.904
-1/9/2021,11:03:00,0.337555556,55.713
-1/9/2021,11:04:00,0.334111111,55.6295
-1/9/2021,11:05:00,0.294444444,56.15
-1/9/2021,11:06:00,0.237111111,54.4655
-1/9/2021,11:07:00,0.137222222,54.2925
-1/9/2021,11:08:00,0.143,57.1725
-1/9/2021,11:09:00,0.144444444,57.25
-1/9/2021,11:10:00,0.186666667,54.768
-1/9/2021,11:11:00,0.229333333,54.96
-1/9/2021,11:12:00,0.283111111,55.909
-1/9/2021,11:13:00,0.285611111,55.6295
-1/9/2021,11:14:00,0.288888889,56.55
-1/9/2021,11:15:00,0.237111111,54.8535
-1/9/2021,11:16:00,0.229333333,55.056
-1/9/2021,11:17:00,0.234666667,54.288
-1/9/2021,11:18:00,0.1925,56.0835
-1/9/2021,11:19:00,0.234111111,55.909
-1/9/2021,11:20:00,0.239555556,56.595
-1/9/2021,11:21:00,0.288555556,56.791
-1/9/2021,11:22:00,0.337555556,56.595
-1/9/2021,11:23:00,0.422222222,54.1975
-1/9/2021,11:24:00,0.517222222,54.1025
-1/9/2021,11:25:00,0.564722222,53.4375
-1/9/2021,11:26:00,0.638,55.4895
-1/9/2021,11:27:00,0.6875,55.3905
-1/9/2021,11:28:00,0.776,54.0872
-1/9/2021,11:29:00,0.754722222,52.9625
-1/9/2021,11:30:00,0.8415,55.0935
-1/9/2021,11:31:00,0.894444444,55.35
-1/9/2021,11:32:00,0.916111111,53.4955
-1/9/2021,11:33:00,0.994444444,55.25
-1/9/2021,11:34:00,1.023555556,53.851
-1/9/2021,11:35:00,1.039722222,52.2025
-1/9/2021,11:36:00,1.072555556,53.557
-1/9/2021,11:37:00,1.061611111,52.7195
-1/9/2021,11:38:00,1.061611111,52.7195
-1/9/2021,11:39:00,1.023555556,52.675
-1/9/2021,11:40:00,0.912,52.6656
-1/9/2021,11:41:00,0.931,54.145
-1/9/2021,11:42:00,0.864,53.3376
-1/9/2021,11:43:00,0.876555556,54.733
-1/9/2021,11:44:00,0.876555556,54.047
-1/9/2021,11:45:00,0.894444444,55.05
-1/9/2021,11:46:00,0.97,53.6022
-1/9/2021,11:47:00,1.067,53.0105
-1/9/2021,11:48:00,1.2,54.56
-1/9/2021,11:49:00,1.304111111,52.7195
-1/9/2021,11:50:00,1.395722222,52.3315
-1/9/2021,11:51:00,1.44,51.3216
-1/9/2021,11:52:00,1.6005,51.2742
-1/9/2021,11:53:00,1.746,50.6922
-1/9/2021,11:54:00,1.770666667,50.1696
-1/9/2021,11:55:00,1.843,51.1772
-1/9/2021,11:56:00,1.847222222,50.0175
-1/9/2021,11:57:00,1.8915,50.3042
-1/9/2021,11:58:00,1.8525,49.267
-1/9/2021,11:59:00,1.96,50.7248
-1/9/2021,12:00:00,1.94,50.0132
-1/9/2021,12:01:00,1.914666667,49.6896
-1/9/2021,12:02:00,1.9305,51.0444
-1/9/2021,12:03:00,1.936,51.0444
-1/9/2021,12:04:00,1.9305,50.8464
-1/9/2021,12:05:00,1.92,49.9776
-1/9/2021,12:06:00,2.155555556,51.66
-1/9/2021,12:07:00,2.277,50.4504
-1/9/2021,12:08:00,2.3765,49.6252
-1/9/2021,12:09:00,2.575888889,48.7037
-1/9/2021,12:10:00,2.5705,48.3642
-1/9/2021,12:11:00,2.592,47.9616
-1/9/2021,12:12:00,2.755555556,50.46
-1/9/2021,12:13:00,2.772,49.1634
-1/9/2021,12:14:00,2.861111111,49.46
-1/9/2021,12:15:00,2.755,46.797
-1/9/2021,12:16:00,2.905555556,48.76
-1/9/2021,12:17:00,2.855555556,48.76
-1/9/2021,12:18:00,2.855555556,48.86
-1/9/2021,12:19:00,2.712777778,46.512
-1/9/2021,12:20:00,2.693333333,47.5776
-1/9/2021,12:21:00,2.769888889,47.9762
-1/9/2021,12:22:00,2.6675,47.6852
-1/9/2021,12:23:00,2.527388889,46.8122
-1/9/2021,12:24:00,2.261333333,47.5872
-1/9/2021,12:25:00,2.112,48.4416
-1/9/2021,12:26:00,2.105555556,50.46
-1/9/2021,12:27:00,2.005555556,51.16
-1/9/2021,12:28:00,1.955555556,51.76
-1/9/2021,12:29:00,1.837,50.9553
-1/9/2021,12:30:00,1.8,51.36
-1/9/2021,12:31:00,1.685333333,49.4016
-1/9/2021,12:32:00,1.6885,51.3414
-1/9/2021,12:33:00,1.617,50.8228
-1/9/2021,12:34:00,1.5785,51.4404
-1/9/2021,12:35:00,1.605888889,50.8862
-1/9/2021,12:36:00,1.6625,49.647
-1/9/2021,12:37:00,1.6975,50.4012
-1/9/2021,12:38:00,1.589333333,49.5936
-1/9/2021,12:39:00,1.655555556,53.26
-1/9/2021,12:40:00,1.671444444,51.9008
-1/9/2021,12:41:00,1.6975,51.2742
-1/9/2021,12:42:00,1.855555556,52.26
-1/9/2021,12:43:00,1.936,51.8364
-1/9/2021,12:44:00,2.05,51.46
-1/9/2021,12:45:00,1.968,49.296
-1/9/2021,12:46:00,2.058,50.4308
-1/9/2021,12:47:00,2.064,48.6336
-1/9/2021,12:48:00,2.178,50.4504
-1/9/2021,12:49:00,2.254,51.0188
-1/9/2021,12:50:00,2.231,48.4612
-1/9/2021,12:51:00,2.259444444,48.7648
-1/9/2021,12:52:00,2.3,50.06
-1/9/2021,12:53:00,2.254,49.0588
-1/9/2021,12:54:00,2.256,48.2496
-1/9/2021,12:55:00,2.381888889,48.6552
-1/9/2021,12:56:00,2.5245,50.0544
-1/9/2021,12:57:00,2.602444444,49.0882
-1/9/2021,12:58:00,2.728,49.4604
-1/9/2021,12:59:00,2.749444444,48.9608
-1/9/2021,13:00:00,2.827,49.2723
-1/9/2021,13:01:00,2.818388889,47.6852
-1/9/2021,13:02:00,2.945444444,47.7946
-1/9/2021,13:03:00,2.976,46.6176
-1/9/2021,13:04:00,2.997777778,45.847
-1/9/2021,13:05:00,3.163277778,46.1332
-1/9/2021,13:06:00,3.178666667,45.7632
-1/9/2021,13:07:00,3.411111111,47.06
-1/9/2021,13:08:00,3.461111111,47.16
-1/9/2021,13:09:00,3.448888889,46.0071
-1/9/2021,13:10:00,3.408,44.7072
-1/9/2021,13:11:00,3.421,46.0053
-1/9/2021,13:12:00,3.357277778,46.0459
-1/9/2021,13:13:00,3.351888889,45.5609
-1/9/2021,13:14:00,3.511111111,46.28
-1/9/2021,13:15:00,3.505555556,46.77
-1/9/2021,13:16:00,3.377777778,44.1465
-1/9/2021,13:17:00,3.514666667,44.8032
-1/9/2021,13:18:00,3.636888889,45.3446
-1/9/2021,13:19:00,3.599777778,45.0759
-1/9/2021,13:20:00,3.761111111,46.17
-1/9/2021,13:21:00,3.734888889,45.0506
-1/9/2021,13:22:00,3.789333333,44.6586
-1/9/2021,13:23:00,3.832888889,44.4626
-1/9/2021,13:24:00,3.842277778,43.6209
-1/9/2021,13:25:00,3.802666667,43.5552
-1/9/2021,13:26:00,3.881888889,44.8546
-1/9/2021,13:27:00,3.808,43.6512
-1/9/2021,13:28:00,3.9215,44.5203
-1/9/2021,13:29:00,3.927,44.0352
-1/9/2021,13:30:00,3.763055556,42.4365
-1/9/2021,13:31:00,3.715555556,42.3415
-1/9/2021,13:32:00,3.872,44.2233
-1/9/2021,13:33:00,3.881888889,43.2866
-1/9/2021,13:34:00,3.881888889,43.7766
-1/9/2021,13:35:00,4.016666667,44.77
-1/9/2021,13:36:00,3.930888889,43.7766
-1/9/2021,13:37:00,4.011111111,45.07
-1/9/2021,13:38:00,3.810555556,42.2465
-1/9/2021,13:39:00,3.930888889,43.9726
-1/9/2021,13:40:00,3.971,44.6193
-1/9/2021,13:41:00,3.896166667,43.7179
-1/9/2021,13:42:00,3.810555556,42.3605
-1/9/2021,13:43:00,3.763055556,42.3415
-1/9/2021,13:44:00,3.810555556,42.6265
-1/9/2021,13:45:00,4.0755,44.3223
-1/9/2021,13:46:00,3.946666667,42.8832
-1/9/2021,13:47:00,4.090166667,42.7479
-1/9/2021,13:48:00,4.216666667,44.37
-1/9/2021,13:49:00,4.083333333,43.9726
-1/9/2021,13:50:00,4.166666667,44.97
-1/9/2021,13:51:00,4.000555556,42.5315
-1/9/2021,13:52:00,4.053333333,42.4365
-1/9/2021,13:53:00,4.266666667,44.57
-1/9/2021,13:54:00,4.133277778,43.5239
-1/9/2021,13:55:00,4.100833333,42.7215
-1/9/2021,13:56:00,4.187166667,44.1059
-1/9/2021,13:57:00,4.230277778,44.2999
-1/9/2021,13:58:00,4.224888889,44.7566
-1/9/2021,13:59:00,4.181777778,43.8149
-1/9/2021,14:00:00,4.192,42.8832
-1/9/2021,14:01:00,4.366666667,44.87
-1/9/2021,14:02:00,4.144,43.4688
-1/9/2021,14:03:00,4.148333333,42.2465
-1/9/2021,14:04:00,4.328333333,43.3846
-1/9/2021,14:05:00,4.328333333,43.0906
-1/9/2021,14:06:00,4.234666667,42.5952
-1/9/2021,14:07:00,4.288,42.6912
-1/9/2021,14:08:00,4.422,43.6293
-1/9/2021,14:09:00,4.381166667,42.5539
-1/9/2021,14:10:00,4.420888889,42.7084
-1/9/2021,14:11:00,4.338333333,41.5815
-1/9/2021,14:12:00,4.566666667,43.57
-1/9/2021,14:13:00,4.429666667,42.6509
-1/9/2021,14:14:00,4.521,43.3323
-1/9/2021,14:15:00,4.381166667,41.9719
-1/9/2021,14:16:00,4.381166667,41.5839
-1/9/2021,14:17:00,4.4715,42.2532
-1/9/2021,14:18:00,4.4715,42.0453
-1/9/2021,14:19:00,4.572222222,42.08
-1/9/2021,14:20:00,4.561111111,42.27
-1/9/2021,14:21:00,4.432,40.5792
-1/9/2021,14:22:00,4.48,40.5792
-1/9/2021,14:23:00,4.666666667,42.07
-1/9/2021,14:24:00,4.675,42.3423
-1/9/2021,14:25:00,4.575166667,41.8749
-1/9/2021,14:26:00,4.526666667,41.9719
-1/9/2021,14:27:00,4.391111111,40.9165
-1/9/2021,14:28:00,4.611111111,42.37
-1/9/2021,14:29:00,4.616666667,42.07
-1/9/2021,14:30:00,4.437333333,40.6752
-1/9/2021,14:31:00,4.5705,42.2433
-1/9/2021,14:32:00,4.576,42.2532
-1/9/2021,14:33:00,4.526666667,41.1959
-1/9/2021,14:34:00,4.666666667,42.58
-1/9/2021,14:35:00,4.666666667,42.67
-1/9/2021,14:36:00,4.575166667,41.4966
-1/9/2021,14:37:00,4.385833333,40.5365
-1/9/2021,14:38:00,4.572222222,43.17
-1/9/2021,14:39:00,4.338333333,41.0115
-1/9/2021,14:40:00,4.432,40.9632
-1/9/2021,14:41:00,4.437333333,41.0688
-1/9/2021,14:42:00,4.62,42.0453
-1/9/2021,14:43:00,4.666666667,42.57
-1/9/2021,14:44:00,4.548222222,41.1959
-1/9/2021,14:45:00,4.672222222,42.48
-1/9/2021,14:46:00,4.532055556,41.4869
-1/9/2021,14:47:00,4.62,42.4413
-1/9/2021,14:48:00,4.485333333,41.2608
-1/9/2021,14:49:00,4.616888889,42.1106
-1/9/2021,14:50:00,4.569777778,41.4869
-1/9/2021,14:51:00,4.486111111,40.641
-1/9/2021,14:52:00,4.671333333,41.6206
-1/9/2021,14:53:00,4.676777778,41.8264
-1/9/2021,14:54:00,4.671333333,42.5026
-1/9/2021,14:55:00,4.816666667,43.47
-1/9/2021,14:56:00,4.7685,41.9562
-1/9/2021,14:57:00,4.672166667,40.8079
-1/9/2021,14:58:00,4.575833333,39.881
-1/9/2021,14:59:00,4.570555556,39.8715
-1/9/2021,15:00:00,4.719,41.5503
-1/9/2021,15:01:00,4.671333333,41.1404
-1/9/2021,15:02:00,4.7245,41.5602
-1/9/2021,15:03:00,4.676777778,41.1306
-1/9/2021,15:04:00,4.581333333,40.2048
-1/9/2021,15:05:00,4.528333333,39.7765
-1/9/2021,15:06:00,4.772222222,42.28
-1/9/2021,15:07:00,4.719,41.9463
-1/9/2021,15:08:00,4.580555556,41.0116
-1/9/2021,15:09:00,4.676777778,41.6304
-1/9/2021,15:10:00,4.671333333,41.4344
-1/9/2021,15:11:00,4.533333333,40.3008
-1/9/2021,15:12:00,4.629055556,40.8176
-1/9/2021,15:13:00,4.629055556,40.7109
-1/9/2021,15:14:00,4.575833333,39.596
-1/9/2021,15:15:00,4.774,40.5702
-1/9/2021,15:16:00,4.677555556,39.8476
-1/9/2021,15:17:00,4.624,39.7248
-1/9/2021,15:18:00,4.7685,41.1642
-1/9/2021,15:19:00,4.772222222,41.67
-1/9/2021,15:20:00,4.623666667,40.5169
-1/9/2021,15:21:00,4.655,40.8366
-1/9/2021,15:22:00,4.772222222,41.88
-1/9/2021,15:23:00,4.581333333,40.7808
-1/9/2021,15:24:00,4.580555556,41.7876
-1/9/2021,15:25:00,4.528333333,40.6315
-1/9/2021,15:26:00,4.716666667,43.38
-1/9/2021,15:27:00,4.722222222,42.98
-1/9/2021,15:28:00,4.62,42.8373
-1/9/2021,15:29:00,4.666666667,43.07
-1/9/2021,15:30:00,4.578777778,42.4046
-1/9/2021,15:31:00,4.5155,42.9363
-1/9/2021,15:32:00,4.437333333,42.0288
-1/9/2021,15:33:00,4.572222222,43.58
-1/9/2021,15:34:00,4.389333333,41.7312
-1/9/2021,15:35:00,4.384,41.9232
-1/9/2021,15:36:00,4.429666667,42.3599
-1/9/2021,15:37:00,4.429666667,42.1659
-1/9/2021,15:38:00,4.420888889,42.5026
-1/9/2021,15:39:00,4.381166667,42.3696
-1/9/2021,15:40:00,4.332666667,42.5539
-1/9/2021,15:41:00,4.332666667,42.5539
-1/9/2021,15:42:00,4.332666667,42.5539
-1/9/2021,15:43:00,4.243333333,41.4865
-1/9/2021,15:44:00,4.516666667,43.77
-1/9/2021,15:45:00,4.290833333,41.2965
-1/9/2021,15:46:00,4.243333333,41.4865
-1/9/2021,15:47:00,4.282666667,41.5392
-1/9/2021,15:48:00,4.416666667,43.47
-1/9/2021,15:49:00,4.288,42.2112
-1/9/2021,15:50:00,4.377333333,42.6986
-1/9/2021,15:51:00,4.377333333,42.8946
-1/9/2021,15:52:00,4.278777778,41.9719
-1/9/2021,15:53:00,4.24,41.6352
-1/9/2021,15:54:00,4.24,42.0192
-1/9/2021,15:55:00,4.416666667,43.77
-1/9/2021,15:56:00,4.3175,43.1343
-1/9/2021,15:57:00,4.148333333,41.2965
-1/9/2021,15:58:00,4.311111111,43.17
-1/9/2021,15:59:00,4.230333333,42.3066
-1/9/2021,16:00:00,4.316666667,43.47
-1/9/2021,16:01:00,4.048055556,41.2015
-1/9/2021,16:02:00,4.000555556,41.2015
-1/9/2021,16:03:00,4,41.7312
-1/9/2021,16:04:00,3.958333333,41.2965
-1/9/2021,16:05:00,4.0755,43.6293
-1/9/2021,16:06:00,4.034333333,42.8946
-1/9/2021,16:07:00,3.979888889,42.7966
-1/9/2021,16:08:00,4.061111111,43.97
-1/9/2021,16:09:00,3.971,43.4313
-1/9/2021,16:10:00,3.896166667,42.6509
-1/9/2021,16:11:00,3.930888889,43.2866
-1/9/2021,16:12:00,3.847666667,42.7479
-1/9/2021,16:13:00,3.76,42.6912
-1/9/2021,16:14:00,3.832888889,43.8746
-1/9/2021,16:15:00,3.754666667,42.8832
-1/9/2021,16:16:00,3.783888889,43.5806
-1/9/2021,16:17:00,3.828,44.0253
-1/9/2021,16:18:00,3.706666667,42.3072
-1/9/2021,16:19:00,3.761111111,44.47
-1/9/2021,16:20:00,3.605166667,43.4269
-1/9/2021,16:21:00,3.711111111,44.97
-1/9/2021,16:22:00,3.575,43.9263
-1/9/2021,16:23:00,3.561111111,44.76
-1/9/2021,16:24:00,3.391888889,44.5606
-1/9/2021,16:25:00,3.357277778,44.5909
-1/9/2021,16:26:00,3.411111111,46.17
-1/9/2021,16:27:00,3.274666667,44.2272
-1/9/2021,16:28:00,3.193055556,44.2415
-1/9/2021,16:29:00,3.140277778,43.947
-1/9/2021,16:30:00,3.206388889,45.1729
-1/9/2021,16:31:00,3.311111111,46.97
-1/9/2021,16:32:00,3.255555556,47.67
-1/9/2021,16:33:00,3.092777778,45.467
-1/9/2021,16:34:00,3.190444444,46.6088
-1/9/2021,16:35:00,3.098055556,45.1915
-1/9/2021,16:36:00,3.146888889,46.6088
-1/9/2021,16:37:00,3.077333333,45.6576
-1/9/2021,16:38:00,3.077333333,45.6576
-1/9/2021,16:39:00,3.211111111,47.37
-1/9/2021,16:40:00,3.124,46.5894
-1/9/2021,16:41:00,2.955555556,44.6215
-1/9/2021,16:42:00,2.945444444,46.3148
-1/9/2021,16:43:00,2.837333333,45.6672
-1/9/2021,16:44:00,2.842666667,46.2432
-1/9/2021,16:45:00,2.823777778,47.2002
-1/9/2021,16:46:00,2.765555556,46.322
-1/9/2021,16:47:00,2.8765,48.6684
-1/9/2021,16:48:00,2.855555556,49.06
-1/9/2021,16:49:00,2.741333333,47.1936
-1/9/2021,16:50:00,2.749444444,47.4908
-1/9/2021,16:51:00,2.670555556,46.037
-1/9/2021,16:52:00,2.64,46.2336
-1/9/2021,16:53:00,2.6785,48.1734
-1/9/2021,16:54:00,2.624388889,47.5882
-1/9/2021,16:55:00,2.522777778,46.797
-1/9/2021,16:56:00,2.629,48.6684
-1/9/2021,16:57:00,2.605555556,49.46
-1/9/2021,16:58:00,2.527388889,47.9762
-1/9/2021,16:59:00,2.504444444,48.7648
-1/9/2021,17:00:00,2.478888889,47.8986
-1/9/2021,17:01:00,2.5,48.86
-1/9/2021,17:02:00,2.475,48.5694
-1/9/2021,17:03:00,2.381888889,48.0732
-1/9/2021,17:04:00,2.357333333,48.0576
-1/9/2021,17:05:00,2.332,50.0544
-1/9/2021,17:06:00,2.256,48.5376
-1/9/2021,17:07:00,2.2055,50.2524
-1/9/2021,17:08:00,2.213333333,49.1136
-1/9/2021,17:09:00,2.187888889,49.7222
-1/9/2021,17:10:00,2.112,49.4016
-1/9/2021,17:11:00,2.1835,51.3414
-1/9/2021,17:12:00,2.112444444,51.2148
-1/9/2021,17:13:00,1.995,49.742
-1/9/2021,17:14:00,2.009,51.5088
-1/9/2021,17:15:00,2.005555556,52.86
-1/9/2021,17:16:00,1.916444444,51.9008
-1/9/2021,17:17:00,1.8865,52.6284
-1/9/2021,17:18:00,1.805,50.502
-1/9/2021,17:19:00,1.7945,51.7495
-1/9/2021,17:20:00,1.733333333,51.3216
-1/9/2021,17:21:00,1.715,52.5868
-1/9/2021,17:22:00,1.615,51.072
-1/9/2021,17:23:00,1.584,51.9936
-1/9/2021,17:24:00,1.577777778,54.25
-1/9/2021,17:25:00,1.55,54.35
-1/9/2021,17:26:00,1.434666667,52.272
-1/9/2021,17:27:00,1.455,53.1075
-1/9/2021,17:28:00,1.444444444,55.05
-1/9/2021,17:29:00,1.366555556,54.1548
-1/9/2021,17:30:00,1.324722222,52.8675
-1/9/2021,17:31:00,1.344444444,55.75
-1/9/2021,17:32:00,1.296,53.136
-1/9/2021,17:33:00,1.242666667,53.136
-1/9/2021,17:34:00,1.194666667,53.04
-1/9/2021,17:35:00,1.244444444,55.65
-1/9/2021,17:36:00,1.158611111,54.3685
-1/9/2021,17:37:00,1.14,53.2475
-1/9/2021,17:38:00,1.098666667,53.808
-1/9/2021,17:39:00,1.050666667,53.904
-1/9/2021,17:40:00,1.023555556,55.223
-1/9/2021,17:41:00,1.002666667,54.288
-1/9/2021,17:42:00,1.023555556,55.419
-1/9/2021,17:43:00,0.994444444,56.75
-1/9/2021,17:44:00,0.954666667,54.576
-1/9/2021,17:45:00,0.9215,55.3385
-1/9/2021,17:46:00,0.935,56.6775
-1/9/2021,17:47:00,0.876555556,56.105
-1/9/2021,17:48:00,0.858666667,55.056
-1/9/2021,17:49:00,0.810666667,55.152
-1/9/2021,17:50:00,0.827555556,56.693
-1/9/2021,17:51:00,0.819111111,56.2115
-1/9/2021,17:52:00,0.770611111,56.4055
-1/9/2021,17:53:00,0.773111111,57.085
-1/9/2021,17:54:00,0.701944444,55.4325
-1/9/2021,17:55:00,0.737,57.5685
-1/9/2021,17:56:00,0.737,57.6675
-1/9/2021,17:57:00,0.668222222,56.5995
-1/9/2021,17:58:00,0.619722222,56.4928
-1/9/2021,17:59:00,0.638,57.7665
-1/9/2021,18:00:00,0.582555556,57.281
-1/9/2021,18:01:00,0.576611111,56.9778
-1/9/2021,18:02:00,0.533555556,57.575
-1/9/2021,18:03:00,0.522666667,56.7264
-1/9/2021,18:04:00,0.484555556,57.771
-1/9/2021,18:05:00,0.469333333,56.5824
-1/9/2021,18:06:00,0.469722222,56.183
-1/9/2021,18:07:00,0.421333333,56.8704
-1/9/2021,18:08:00,0.377222222,57.5695
-1/9/2021,18:09:00,0.385,59.0436
-1/9/2021,18:10:00,0.388888889,59.84
-1/9/2021,18:11:00,0.330666667,57.456
-1/9/2021,18:12:00,0.332111111,58.751
-1/9/2021,18:13:00,0.332111111,58.7412
-1/9/2021,18:14:00,0.274444444,56.943
-1/9/2021,18:15:00,0.226944444,56.943
-1/9/2021,18:16:00,0.231722222,58.3358
-1/9/2021,18:17:00,0.188888889,60.24
-1/9/2021,18:18:00,0.181333333,57.7344
-1/9/2021,18:19:00,0.181333333,57.84
-1/9/2021,18:20:00,0.072222222,60.34
-1/9/2021,18:21:00,0.136111111,59.1332
-1/9/2021,18:22:00,0.088,59.8356
-1/9/2021,18:23:00,0.085333333,58.4064
-1/9/2021,18:24:00,0.037722222,58.9178
-1/9/2021,18:25:00,0.038111111,59.7212
-1/9/2021,18:26:00,-0.010666667,58.5984
-1/9/2021,18:27:00,-0.016333333,59.8192
-1/9/2021,18:28:00,-0.059277778,59.6938
-1/9/2021,18:29:00,-0.059277778,59.8878
-1/9/2021,18:30:00,-0.105555556,58.748
-1/9/2021,18:31:00,-0.156277778,60.0818
-1/9/2021,18:32:00,-0.16,59.4624
-1/9/2021,18:33:00,-0.149333333,59.6544
-1/9/2021,18:34:00,-0.154666667,59.7504
-1/9/2021,18:35:00,-0.211111111,62.24
-1/9/2021,18:36:00,-0.216666667,62.34
-1/9/2021,18:37:00,-0.211111111,62.44
-1/9/2021,18:38:00,-0.205833333,59.223
-1/9/2021,18:39:00,-0.2585,61.9146
-1/9/2021,18:40:00,-0.301777778,60.7608
-1/9/2021,18:41:00,-0.300833333,59.508
-1/9/2021,18:42:00,-0.311111111,62.84
-1/9/2021,18:43:00,-0.298666667,60.4224
-1/9/2021,18:44:00,-0.3575,62.5086
-1/9/2021,18:45:00,-0.350277778,61.3428
-1/9/2021,18:46:00,-0.348333333,60.553
-1/9/2021,18:47:00,-0.346666667,61.1904
-1/9/2021,18:48:00,-0.3575,63.2016
-1/9/2021,18:49:00,-0.411111111,63.74
-1/9/2021,18:50:00,-0.394666667,61.2864
-1/9/2021,18:51:00,-0.404166667,61.7308
-1/9/2021,18:52:00,-0.451888889,62.5632
-1/9/2021,18:53:00,-0.438055556,60.553
-1/9/2021,18:54:00,-0.448,61.2864
-1/9/2021,18:55:00,-0.5115,63.5976
-1/9/2021,18:56:00,-0.506555556,62.3128
-1/9/2021,18:57:00,-0.561111111,64.34
-1/9/2021,18:58:00,-0.605,63.7956
-1/9/2021,18:59:00,-0.616666667,64.84
-1/9/2021,19:00:00,-0.586666667,62.4384
-1/9/2021,19:01:00,-0.622222222,65.03
-1/9/2021,19:02:00,-0.661111111,65.14
-1/9/2021,19:03:00,-0.661111111,65.34
-1/9/2021,19:04:00,-0.634666667,62.7264
-1/9/2021,19:05:00,-0.647888889,64.1312
-1/9/2021,19:06:00,-0.695166667,63.5738
-1/9/2021,19:07:00,-0.7095,64.8846
-1/9/2021,19:08:00,-0.689777778,63.7678
-1/9/2021,19:09:00,-0.7535,65.4786
-1/9/2021,19:10:00,-0.7535,65.5776
-1/9/2021,19:11:00,-0.751333333,64.9054
-1/9/2021,19:12:00,-0.743666667,64.2528
-1/9/2021,19:13:00,-0.728333333,62.833
-1/9/2021,19:14:00,-0.751333333,64.9054
-1/9/2021,19:15:00,-0.8085,65.5776
-1/9/2021,19:16:00,-0.778666667,63.6864
-1/9/2021,19:17:00,-0.770555556,63.023
-1/9/2021,19:18:00,-0.775833333,62.928
-1/9/2021,19:19:00,-0.784,63.5904
-1/9/2021,19:20:00,-0.816666667,66.24
-1/9/2021,19:21:00,-0.770555556,63.023
-1/9/2021,19:22:00,-0.818055556,63.023
-1/9/2021,19:23:00,-0.843888889,65.0132
-1/9/2021,19:24:00,-0.832,63.5808
-1/9/2021,19:25:00,-0.840666667,64.3498
-1/9/2021,19:26:00,-0.892888889,65.1112
-1/9/2021,19:27:00,-0.9075,65.7756
-1/9/2021,19:28:00,-0.932277778,64.5438
-1/9/2021,19:29:00,-0.918333333,63.308
-1/9/2021,19:30:00,-0.922666667,64.0704
-1/9/2021,19:31:00,-0.913055556,63.403
-1/9/2021,19:32:00,-0.976,64.0704
-1/9/2021,19:33:00,-0.990888889,65.5032
-1/9/2021,19:34:00,-1.066666667,67.04
-1/9/2021,19:35:00,-1.013333333,63.498
-1/9/2021,19:36:00,-1.055555556,63.593
-1/9/2021,19:37:00,-1.094333333,65.7874
-1/9/2021,19:38:00,-1.1055,66.6666
-1/9/2021,19:39:00,-1.072,64.7328
-1/9/2021,19:40:00,-1.1055,66.7557
-1/9/2021,19:41:00,-1.116666667,67.44
-1/9/2021,19:42:00,-1.12,64.992
-1/9/2021,19:43:00,-1.108333333,64.3435
-1/9/2021,19:44:00,-1.155,67.0626
-1/9/2021,19:45:00,-1.155,67.1517
-1/9/2021,19:46:00,-1.108333333,64.448
-1/9/2021,19:47:00,-1.180166667,66.0861
-1/9/2021,19:48:00,-1.180166667,65.9891
-1/9/2021,19:49:00,-1.21,67.2507
-1/9/2021,19:50:00,-1.216,65.2128
-1/9/2021,19:51:00,-1.254,67.4487
-1/9/2021,19:52:00,-1.277166667,65.9018
-1/9/2021,19:53:00,-1.303611111,64.7235
-1/9/2021,19:54:00,-1.349333333,65.8848
-1/9/2021,19:55:00,-1.298333333,65.1035
-1/9/2021,19:56:00,-1.339333333,67.1692
-1/9/2021,19:57:00,-1.374166667,66.3771
-1/9/2021,19:58:00,-1.365333333,65.5968
-1/9/2021,19:59:00,-1.393333333,65.018
-1/9/2021,20:00:00,-1.476555556,66.3771
-1/9/2021,20:01:00,-1.446111111,64.9135
-1/9/2021,20:02:00,-1.488333333,64.9135
-1/9/2021,20:03:00,-1.551,67.7457
-1/9/2021,20:04:00,-1.65,67.9437
-1/9/2021,20:05:00,-1.636111111,65.1985
-1/9/2021,20:06:00,-1.687777778,67.1594
-1/9/2021,20:07:00,-1.696,66.1728
-1/9/2021,20:08:00,-1.731111111,65.4835
-1/9/2021,20:09:00,-1.810666667,66.9591
-1/9/2021,20:10:00,-1.903,68.4387
-1/9/2021,20:11:00,-1.907666667,67.3471
-1/9/2021,20:12:00,-1.927333333,68.2374
-1/9/2021,20:13:00,-1.981777778,68.5314
-1/9/2021,20:14:00,-1.989333333,67.1328
-1/9/2021,20:15:00,-2.032,67.1328
-1/9/2021,20:16:00,-2.058555556,67.9291
-1/9/2021,20:17:00,-2.063611111,66.5285
-1/9/2021,20:18:00,-2.068888889,66.7185
-1/9/2021,20:19:00,-2.133333333,67.5168
-1/9/2021,20:20:00,-2.221333333,69.1194
-1/9/2021,20:21:00,-2.229333333,67.7088
-1/9/2021,20:22:00,-2.247166667,68.8021
-1/9/2021,20:23:00,-2.272,68.2848
-1/9/2021,20:24:00,-2.288,68.4768
-1/9/2021,20:25:00,-2.422222222,71.53
-1/9/2021,20:26:00,-2.301111111,68.2385
-1/9/2021,20:27:00,-2.398,71.1117
-1/9/2021,20:28:00,-2.4475,71.2107
-1/9/2021,20:29:00,-2.453,71.4978
-1/9/2021,20:30:00,-2.422777778,70.9814
-1/9/2021,20:31:00,-2.396111111,68.7135
-1/9/2021,20:32:00,-2.522222222,72.73
-1/9/2021,20:33:00,-2.446555556,70.6451
-1/9/2021,20:34:00,-2.446555556,70.6354
-1/9/2021,20:35:00,-2.396111111,69.4735
-1/9/2021,20:36:00,-2.396111111,69.4735
-1/9/2021,20:37:00,-2.421333333,70.2048
-1/9/2021,20:38:00,-2.464,70.0128
-1/9/2021,20:39:00,-2.474666667,70.0032
-1/9/2021,20:40:00,-2.443611111,69.1885
-1/9/2021,20:41:00,-2.622222222,72.83
-1/9/2021,20:42:00,-2.618777778,71.5694
-1/9/2021,20:43:00,-2.592055556,71.0331
-1/9/2021,20:44:00,-2.6455,72.8937
-1/9/2021,20:45:00,-2.613333333,70.5888
-1/9/2021,20:46:00,-2.727777778,73.42
-1/9/2021,20:47:00,-2.689055556,71.4211
-1/9/2021,20:48:00,-2.822222222,73.73
-1/9/2021,20:49:00,-2.681111111,70.2335
-1/9/2021,20:50:00,-2.728611111,70.5185
-1/9/2021,20:51:00,-2.757333333,71.4528
-1/9/2021,20:52:00,-2.8985,73.9728
-1/9/2021,20:53:00,-2.776111111,71.4685
-1/9/2021,20:54:00,-2.834555556,73.0701
-1/9/2021,20:55:00,-2.863777778,74.1174
-1/9/2021,20:56:00,-2.839944444,73.3514
-1/9/2021,20:57:00,-2.853333333,72.6048
-1/9/2021,20:58:00,-2.883055556,73.3611
-1/9/2021,20:59:00,-2.823611111,71.839
-1/9/2021,21:00:00,-2.912777778,74.1174
-1/9/2021,21:01:00,-3.022222222,75.73
-1/9/2021,21:02:00,-2.906666667,72.8928
-1/9/2021,21:03:00,-3.022222222,75.73
-1/9/2021,21:04:00,-3.0415,74.8737
-1/9/2021,21:05:00,-2.980055556,73.2641
-1/9/2021,21:06:00,-2.954666667,72.7008
-1/9/2021,21:07:00,-3.065222222,74.1174
-1/9/2021,21:08:00,-3.059777778,74.3134
-1/9/2021,21:09:00,-3.013611111,72.3235
-1/9/2021,21:10:00,-3.077055556,73.9431
-1/9/2021,21:11:00,-3.077055556,74.0304
-1/9/2021,21:12:00,-3.108777778,74.9014
-1/9/2021,21:13:00,-3.157777778,74.9014
-1/9/2021,21:14:00,-3.061111111,72.5135
-1/9/2021,21:15:00,-3.19,75.6657
-1/9/2021,21:16:00,-3.093333333,73.3728
-1/9/2021,21:17:00,-3.1955,75.8538
-1/9/2021,21:18:00,-3.19,75.7647
-1/9/2021,21:19:00,-3.283333333,76.42
-1/9/2021,21:20:00,-3.141333333,73.2768
-1/9/2021,21:21:00,-3.108611111,72.599
-1/9/2021,21:22:00,-3.174055556,74.1274
-1/9/2021,21:23:00,-3.388888889,76.42
-1/9/2021,21:24:00,-3.2945,75.5568
-1/9/2021,21:25:00,-3.310222222,74.7936
-1/9/2021,21:26:00,-3.237333333,73.0752
-1/9/2021,21:27:00,-3.388,75.2598
-1/9/2021,21:28:00,-3.251111111,72.5135
-1/9/2021,21:29:00,-3.4375,75.4578
-1/9/2021,21:30:00,-3.351388889,72.314
-1/9/2021,21:31:00,-3.527777778,76.62
-1/9/2021,21:32:00,-3.487,76.1607
-1/9/2021,21:33:00,-3.5365,75.9528
-1/9/2021,21:34:00,-3.542,75.9528
-1/9/2021,21:35:00,-3.513555556,74.8064
-1/9/2021,21:36:00,-3.477333333,74.0352
-1/9/2021,21:37:00,-3.604222222,75.5776
-1/9/2021,21:38:00,-3.530666667,74.0352
-1/9/2021,21:39:00,-3.573333333,74.0352
-1/9/2021,21:40:00,-3.675,75.5776
-1/9/2021,21:41:00,-3.664444444,74.8064
-1/9/2021,21:42:00,-3.588888889,73.359
-1/9/2021,21:43:00,-3.827777778,77.22
-1/9/2021,21:44:00,-3.707555556,75.0004
-1/9/2021,21:45:00,-3.683888889,73.359
-1/9/2021,21:46:00,-3.761444444,74.981
-1/9/2021,21:47:00,-3.977777778,77.32
-1/9/2021,21:48:00,-3.898222222,75.8716
-1/9/2021,21:49:00,-3.778888889,73.454
-1/9/2021,21:50:00,-3.866666667,74.5152
-1/9/2021,21:51:00,-3.914666667,74.7072
-1/9/2021,21:52:00,-3.979888889,76.4596
-1/9/2021,21:53:00,-3.914666667,75.0912
-1/9/2021,21:54:00,-4.037,77.6358
-1/9/2021,21:55:00,-4.083333333,78.52
-1/9/2021,21:56:00,-4.072222222,78.62
-1/9/2021,21:57:00,-3.996222222,77.2436
-1/9/2021,21:58:00,-4.037,78.1308
-1/9/2021,21:59:00,-4.0865,78.1308
-1/9/2021,22:00:00,-4.0865,78.2298
-1/9/2021,22:01:00,-4.045222222,77.42
-1/9/2021,22:02:00,-4.045222222,77.3416
-1/9/2021,22:03:00,-3.968888889,74.879
-1/9/2021,22:04:00,-4.177777778,78.92
-1/9/2021,22:05:00,-4.136,78.1308
-1/9/2021,22:06:00,-4.227777778,78.82
-1/9/2021,22:07:00,-4.016388889,74.784
-1/9/2021,22:08:00,-4.016388889,74.784
-1/9/2021,22:09:00,-4.106666667,75.6672
-1/9/2021,22:10:00,-4.283333333,79.12
-1/9/2021,22:11:00,-4.241222222,77.7336
-1/9/2021,22:12:00,-4.2845,78.5268
-1/9/2021,22:13:00,-4.154666667,76.2432
-1/9/2021,22:14:00,-4.202666667,76.1472
-1/9/2021,22:15:00,-4.158888889,75.354
-1/9/2021,22:16:00,-4.334,78.3288
-1/9/2021,22:17:00,-4.250666667,75.8592
-1/9/2021,22:18:00,-4.339222222,77.4396
-1/9/2021,22:19:00,-4.477777778,79.02
-1/9/2021,22:20:00,-4.253888889,75.354
-1/9/2021,22:21:00,-4.433,78.5268
-1/9/2021,22:22:00,-4.388222222,77.8316
-1/9/2021,22:23:00,-4.437222222,78.2236
-1/9/2021,22:24:00,-4.391944444,77.6097
-1/9/2021,22:25:00,-4.346666667,77.4144
-1/9/2021,22:26:00,-4.477777778,81.12
-1/9/2021,22:27:00,-4.433,80.5068
-1/9/2021,22:28:00,-4.339222222,79.4976
-1/9/2021,22:29:00,-4.3835,80.3088
-1/9/2021,22:30:00,-4.3165,78.4924
-1/9/2021,22:31:00,-4.3835,80.1108
-1/9/2021,22:32:00,-4.208,77.8752
-1/9/2021,22:33:00,-4.339222222,79.3016
-1/9/2021,22:34:00,-4.339222222,78.9096
-1/9/2021,22:35:00,-4.206388889,76.304
-1/9/2021,22:36:00,-4.256,76.9152
-1/9/2021,22:37:00,-4.343444444,77.6097
-1/9/2021,22:38:00,-4.433,79.2198
-1/9/2021,22:39:00,-4.4825,79.3188
-1/9/2021,22:40:00,-4.437222222,78.7136
-1/9/2021,22:41:00,-4.346666667,77.4912
-1/9/2021,22:42:00,-4.301388889,76.874
-1/9/2021,22:43:00,-4.346666667,77.8752
-1/9/2021,22:44:00,-4.346666667,77.6736
-1/9/2021,22:45:00,-4.346666667,77.6832
-1/9/2021,22:46:00,-4.346666667,77.6832
-1/9/2021,22:47:00,-4.397333333,78.5894
-1/9/2021,22:48:00,-4.346666667,77.7792
-1/9/2021,22:49:00,-4.527777778,81.52
-1/9/2021,22:50:00,-4.298666667,78.3552
-1/9/2021,22:51:00,-4.477777778,81.82
-1/9/2021,22:52:00,-4.253888889,77.539
-1/9/2021,22:53:00,-4.4385,80.6058
-1/9/2021,22:54:00,-4.388222222,79.6936
-1/9/2021,22:55:00,-4.433,80.6058
-1/9/2021,22:56:00,-4.388222222,79.8896
-1/9/2021,22:57:00,-4.433,80.5068
-1/9/2021,22:58:00,-4.388222222,79.4878
-1/9/2021,22:59:00,-4.388222222,79.3996
-1/9/2021,23:00:00,-4.527777778,80.83
-1/9/2021,23:01:00,-4.527777778,80.72
-1/9/2021,23:02:00,-4.4825,79.9128
-1/9/2021,23:03:00,-4.348888889,76.589
-1/9/2021,23:04:00,-4.532,79.8138
-1/9/2021,23:05:00,-4.540666667,79.1938
-1/9/2021,23:06:00,-4.638888889,80.82
-1/9/2021,23:07:00,-4.542833333,78.4924
-1/9/2021,23:08:00,-4.677777778,81.02
-1/9/2021,23:09:00,-4.490666667,77.7792
-1/9/2021,23:10:00,-4.585944444,78.6767
-1/9/2021,23:11:00,-4.686,80.3979
-1/9/2021,23:12:00,-4.538666667,77.8752
-1/9/2021,23:13:00,-4.586666667,77.8752
-1/9/2021,23:14:00,-4.544166667,77.1495
-1/9/2021,23:15:00,-4.586666667,77.9712
-1/9/2021,23:16:00,-4.538888889,77.2445
-1/9/2021,23:17:00,-4.591666667,77.064
-1/9/2021,23:18:00,-4.827777778,81.32
-1/9/2021,23:19:00,-4.833333333,81.42
-1/9/2021,23:20:00,-4.64,78.2592
-1/9/2021,23:21:00,-4.736833333,79.1617
-1/9/2021,23:22:00,-4.829,80.8038
-1/9/2021,23:23:00,-4.8345,80.6949
-1/9/2021,23:24:00,-4.780222222,80.2718
-1/9/2021,23:25:00,-4.688,78.7392
-1/9/2021,23:26:00,-4.736,78.5472
-1/9/2021,23:27:00,-4.681388889,77.824
-1/9/2021,23:28:00,-4.834666667,80.1836
-1/9/2021,23:29:00,-4.829222222,80.3796
-1/9/2021,23:30:00,-4.736,78.8256
-1/9/2021,23:31:00,-4.686666667,78.204
-1/9/2021,23:32:00,-4.736,79.2192
-1/9/2021,23:33:00,-4.736,79.3056
-1/9/2021,23:34:00,-4.730666667,79.5072
-1/9/2021,23:35:00,-4.834666667,81.3498
-1/9/2021,23:36:00,-4.639166667,79.0495
-1/9/2021,23:37:00,-4.877777778,83.72
-1/9/2021,23:38:00,-4.586388889,79.629
-1/9/2021,23:39:00,-4.64,80.1792
-1/9/2021,23:40:00,-4.783333333,83.11
-1/9/2021,23:41:00,-4.634444444,80.2287
-1/9/2021,23:42:00,-4.586666667,79.4112
-1/9/2021,23:43:00,-4.544166667,78.4795
-1/9/2021,23:44:00,-4.682944444,80.1414
-1/9/2021,23:45:00,-4.827777778,82.32
-1/9/2021,23:46:00,-4.64,78.9312
-1/9/2021,23:47:00,-4.780222222,80.4776
-1/9/2021,23:48:00,-4.877777778,82.12
-1/9/2021,23:49:00,-4.829222222,80.2816
-1/9/2021,23:50:00,-4.8785,81.1998
-1/9/2021,23:51:00,-4.883666667,80.3796
-1/9/2021,23:52:00,-4.778666667,78.5472
-1/9/2021,23:53:00,-4.876944444,79.3654
-1/9/2021,23:54:00,-5.027777778,81.82
-1/9/2021,23:55:00,-5.083333333,81.82
-1/9/2021,23:56:00,-4.823888889,77.6245
-1/9/2021,23:57:00,-4.979333333,79.2587
-1/9/2021,23:58:00,-5.079666667,80.0758
-1/9/2021,23:59:00,-5.126,80.9028
-1/10/2021,0:00:00,-5.227777778,81.91
-1/10/2021,0:01:00,-5.123222222,80.3698
-1/10/2021,0:02:00,-5.225,81.1899
-1/10/2021,0:03:00,-5.177666667,80.4678
-1/10/2021,0:04:00,-5.072,78.9312
-1/10/2021,0:05:00,-5.12,79.0176
-1/10/2021,0:06:00,-5.12,79.3056
-1/10/2021,0:07:00,-5.2745,82.0809
-1/10/2021,0:08:00,-5.2745,82.2789
-1/10/2021,0:09:00,-5.226666667,81.5458
-1/10/2021,0:10:00,-5.226666667,81.6438
-1/10/2021,0:11:00,-5.114666667,79.9776
-1/10/2021,0:12:00,-5.2745,82.4868
-1/10/2021,0:13:00,-5.28,82.4769
-1/10/2021,0:14:00,-5.066666667,79.2395
-1/10/2021,0:15:00,-5.12,80.2656
-1/10/2021,0:16:00,-5.333333333,83.61
-1/10/2021,0:17:00,-5.12,80.2656
-1/10/2021,0:18:00,-5.114666667,80.3712
-1/10/2021,0:19:00,-5.162555556,81.2957
-1/10/2021,0:20:00,-5.124833333,81.4897
-1/10/2021,0:21:00,-5.013888889,79.8095
-1/10/2021,0:22:00,-5.172222222,82.3298
-1/10/2021,0:23:00,-5.1755,83.2788
-1/10/2021,0:24:00,-5.024,80.9376
-1/10/2021,0:25:00,-5.024,81.0336
-1/10/2021,0:26:00,-5.076333333,81.8777
-1/10/2021,0:27:00,-4.971666667,80.1895
-1/10/2021,0:28:00,-5.079666667,82.6336
-1/10/2021,0:29:00,-4.918888889,79.914
-1/10/2021,0:30:00,-5.128666667,82.3298
-1/10/2021,0:31:00,-5.233333333,83.91
-1/10/2021,0:32:00,-5.233333333,83.71
-1/10/2021,0:33:00,-5.233333333,83.61
-1/10/2021,0:34:00,-5.128666667,81.8398
-1/10/2021,0:35:00,-5.019166667,79.1445
-1/10/2021,0:36:00,-5.172222222,81.5458
-1/10/2021,0:37:00,-5.2745,82.2789
-1/10/2021,0:38:00,-5.12,79.8816
-1/10/2021,0:39:00,-5.162666667,79.9776
-1/10/2021,0:40:00,-5.45,83.31
-1/10/2021,0:41:00,-5.275666667,81.7418
-1/10/2021,0:42:00,-5.162666667,80.2656
-1/10/2021,0:43:00,-5.168,80.6496
-1/10/2021,0:44:00,-5.108888889,79.9045
-1/10/2021,0:45:00,-5.221833333,81.6837
-1/10/2021,0:46:00,-5.173333333,81.1296
-1/10/2021,0:47:00,-5.168,81.1296
-1/10/2021,0:48:00,-5.2745,83.6649
-1/10/2021,0:49:00,-5.12,81.1296
-1/10/2021,0:50:00,-5.327777778,84.52
-1/10/2021,0:51:00,-5.173333333,81.9747
-1/10/2021,0:52:00,-5.173333333,81.2256
-1/10/2021,0:53:00,-5.327777778,84.72
-1/10/2021,0:54:00,-5.221222222,83.2118
-1/10/2021,0:55:00,-5.114666667,81.6096
-1/10/2021,0:56:00,-5.333333333,84.91
-1/10/2021,0:57:00,-5.019166667,80.6645
-1/10/2021,0:58:00,-5.226666667,83.0158
-1/10/2021,0:59:00,-5.327777778,84.51
-1/10/2021,1:00:00,-5.066666667,80.1895
-1/10/2021,1:01:00,-5.216444444,81.7807
-1/10/2021,1:02:00,-5.114166667,79.9995
-1/10/2021,1:03:00,-5.3295,83.2689
-1/10/2021,1:04:00,-5.330111111,82.3298
-1/10/2021,1:05:00,-5.3735,83.0709
-1/10/2021,1:06:00,-5.4285,82.9719
-1/10/2021,1:07:00,-5.264,80.3616
-1/10/2021,1:08:00,-5.478,82.9719
-1/10/2021,1:09:00,-5.527777778,83.81
-1/10/2021,1:10:00,-5.422666667,82.3298
-1/10/2021,1:11:00,-5.415833333,81.4897
-1/10/2021,1:12:00,-5.415833333,81.3927
-1/10/2021,1:13:00,-5.633333333,83.91
-1/10/2021,1:14:00,-5.5715,83.0709
-1/10/2021,1:15:00,-5.351666667,79.6195
-1/10/2021,1:16:00,-5.512833333,81.1987
-1/10/2021,1:17:00,-5.561333333,81.1987
-1/10/2021,1:18:00,-5.733333333,83.71
-1/10/2021,1:19:00,-5.777777778,83.81
-1/10/2021,1:20:00,-5.552,80.6496
-1/10/2021,1:21:00,-5.667666667,82.7218
-1/10/2021,1:22:00,-5.667666667,82.9178
-1/10/2021,1:23:00,-5.552,81.5136
-1/10/2021,1:24:00,-5.552,81.8976
-1/10/2021,1:25:00,-5.676,84.5559
-1/10/2021,1:26:00,-5.441388889,81.3295
-1/10/2021,1:27:00,-5.596888889,84.2898
-1/10/2021,1:28:00,-5.456,82.5696
-1/10/2021,1:29:00,-5.351666667,81.7095
-1/10/2021,1:30:00,-5.633333333,85.91
-1/10/2021,1:31:00,-5.520666667,84.231
-1/10/2021,1:32:00,-5.402666667,82.4736
-1/10/2021,1:33:00,-5.464333333,83.3327
-1/10/2021,1:34:00,-5.415833333,83.2357
-1/10/2021,1:35:00,-5.304166667,81.5195
-1/10/2021,1:36:00,-5.5275,84.9519
-1/10/2021,1:37:00,-5.304166667,81.5195
-1/10/2021,1:38:00,-5.415833333,83.3327
-1/10/2021,1:39:00,-5.471666667,84.0056
-1/10/2021,1:40:00,-5.5275,84.6549
-1/10/2021,1:41:00,-5.415833333,83.0417
-1/10/2021,1:42:00,-5.5275,84.7539
-1/10/2021,1:43:00,-5.583333333,85.61
-1/10/2021,1:44:00,-5.36,82.1856
-1/10/2021,1:45:00,-5.627777778,85.61
-1/10/2021,1:46:00,-5.408,81.9936
-1/10/2021,1:47:00,-5.577,84.4569
-1/10/2021,1:48:00,-5.408,81.8976
-1/10/2021,1:49:00,-5.399166667,81.0445
-1/10/2021,1:50:00,-5.399166667,81.1395
-1/10/2021,1:51:00,-5.676,84.5559
-1/10/2021,1:52:00,-5.446666667,81.2345
-1/10/2021,1:53:00,-5.504,82.1856
-1/10/2021,1:54:00,-5.676,84.7539
-1/10/2021,1:55:00,-5.446666667,81.643
-1/10/2021,1:56:00,-5.504,82.7616
-1/10/2021,1:57:00,-5.446666667,81.9945
-1/10/2021,1:58:00,-5.561333333,83.9147
-1/10/2021,1:59:00,-5.507444444,84.1184
-1/10/2021,2:00:00,-5.456,83.3376
-1/10/2021,2:01:00,-5.351666667,82.4695
-1/10/2021,2:02:00,-5.464333333,84.3997
-1/10/2021,2:03:00,-5.5715,86.1399
-1/10/2021,2:04:00,-5.5275,86.3379
-1/10/2021,2:05:00,-5.415833333,84.6907
-1/10/2021,2:06:00,-5.544444444,87.51
-1/10/2021,2:07:00,-5.317333333,83.9136
-1/10/2021,2:08:00,-5.256666667,82.8495
-1/10/2021,2:09:00,-5.4285,86.3379
-1/10/2021,2:10:00,-5.313444444,84.5937
-1/10/2021,2:11:00,-5.270333333,84.5937
-1/10/2021,2:12:00,-5.319222222,85.4658
-1/10/2021,2:13:00,-5.114166667,82.7545
-1/10/2021,2:14:00,-5.216444444,84.3997
-1/10/2021,2:15:00,-5.383333333,87.01
-1/10/2021,2:16:00,-5.168,83.7216
-1/10/2021,2:17:00,-5.333333333,87.41
-1/10/2021,2:18:00,-5.072,84.2976
-1/10/2021,2:19:00,-5.024,84.4032
-1/10/2021,2:20:00,-4.970666667,84.2112
-1/10/2021,2:21:00,-4.976,84.2016
-1/10/2021,2:22:00,-4.973944444,84.9914
-1/10/2021,2:23:00,-5.083333333,87.71
-1/10/2021,2:24:00,-4.925444444,84.9914
-1/10/2021,2:25:00,-4.954444444,85.9558
-1/10/2021,2:26:00,-4.734166667,83.239
-1/10/2021,2:27:00,-4.928,86.3478
-1/10/2021,2:28:00,-4.834666667,85.2698
-1/10/2021,2:29:00,-4.730666667,83.4432
-1/10/2021,2:30:00,-4.736833333,83.9147
-1/10/2021,2:31:00,-4.644444444,81.909
-1/10/2021,2:32:00,-4.780222222,84.3976
-1/10/2021,2:33:00,-4.780222222,84.2016
-1/10/2021,2:34:00,-4.731444444,83.2454
-1/10/2021,2:35:00,-4.731444444,82.9544
-1/10/2021,2:36:00,-4.736833333,82.8477
-1/10/2021,2:37:00,-4.829222222,83.5156
-1/10/2021,2:38:00,-4.884,84.1698
-1/10/2021,2:39:00,-4.8785,84.0708
-1/10/2021,2:40:00,-4.884,84.0609
-1/10/2021,2:41:00,-4.736,81.5232
-1/10/2021,2:42:00,-4.878222222,83.1236
-1/10/2021,2:43:00,-4.778666667,81.2352
-1/10/2021,2:44:00,-5.027777778,84.42
-1/10/2021,2:45:00,-5.027777778,84.21
-1/10/2021,2:46:00,-4.874666667,80.7552
-1/10/2021,2:47:00,-5.082,83.3679
-1/10/2021,2:48:00,-5.133333333,84.31
-1/10/2021,2:49:00,-5.079666667,82.7316
-1/10/2021,2:50:00,-4.976,81.0336
-1/10/2021,2:51:00,-5.018666667,80.9472
-1/10/2021,2:52:00,-5.123222222,82.6336
-1/10/2021,2:53:00,-5.283333333,84.41
-1/10/2021,2:54:00,-5.061388889,80.199
-1/10/2021,2:55:00,-5.221222222,82.8296
-1/10/2021,2:56:00,-5.275666667,83.1138
-1/10/2021,2:57:00,-5.275666667,83.2118
-1/10/2021,2:58:00,-5.383333333,85.31
-1/10/2021,2:59:00,-5.119444444,81.244
-1/10/2021,3:00:00,-5.333333333,85.51
-1/10/2021,3:01:00,-5.270222222,83.8096
-1/10/2021,3:02:00,-5.270222222,83.7116
-1/10/2021,3:03:00,-5.168,82.0992
-1/10/2021,3:04:00,-5.270222222,83.7116
-1/10/2021,3:05:00,-5.114166667,81.054
-1/10/2021,3:06:00,-5.264944444,82.7604
-1/10/2021,3:07:00,-5.433333333,85.32
-1/10/2021,3:08:00,-5.216,81.8112
-1/10/2021,3:09:00,-5.4285,84.1599
-1/10/2021,3:10:00,-5.373666667,83.1138
-1/10/2021,3:11:00,-5.256666667,80.4745
-1/10/2021,3:12:00,-5.422666667,82.9178
-1/10/2021,3:13:00,-5.5275,83.7639
-1/10/2021,3:14:00,-5.577,83.7738
-1/10/2021,3:15:00,-5.627777778,84.61
-1/10/2021,3:16:00,-5.6155,84.0609
-1/10/2021,3:17:00,-5.404444444,80.8545
-1/10/2021,3:18:00,-5.512833333,82.6537
-1/10/2021,3:19:00,-5.618666667,83.6038
-1/10/2021,3:20:00,-5.555944444,82.6634
-1/10/2021,3:21:00,-5.676,84.2589
-1/10/2021,3:22:00,-5.609833333,82.5567
-1/10/2021,3:23:00,-5.667666667,83.6136
-1/10/2021,3:24:00,-5.7255,84.5559
-1/10/2021,3:25:00,-5.833333333,85.51
-1/10/2021,3:26:00,-5.716666667,83.9958
-1/10/2021,3:27:00,-5.6,82.3776
-1/10/2021,3:28:00,-5.6,82.2816
-1/10/2021,3:29:00,-5.594444444,81.4245
-1/10/2021,3:30:00,-5.648,82.3776
-1/10/2021,3:31:00,-5.8245,85.0509
-1/10/2021,3:32:00,-5.696,82.4736
-1/10/2021,3:33:00,-5.874,85.0509
-1/10/2021,3:34:00,-5.755333333,83.4297
-1/10/2021,3:35:00,-5.874,85.2489
-1/10/2021,3:36:00,-5.690666667,82.5696
-1/10/2021,3:37:00,-5.977777778,86.11
-1/10/2021,3:38:00,-5.863666667,84.5838
-1/10/2021,3:39:00,-5.678888889,82.1845
-1/10/2021,3:40:00,-5.983333333,86.51
-1/10/2021,3:41:00,-5.803833333,84.0117
-1/10/2021,3:42:00,-5.9235,85.7439
-1/10/2021,3:43:00,-5.983333333,86.61
-1/10/2021,3:44:00,-5.983333333,86.61
-1/10/2021,3:45:00,-5.912666667,84.6818
-1/10/2021,3:46:00,-5.907222222,84.5838
-1/10/2021,3:47:00,-5.731666667,81.8995
-1/10/2021,3:48:00,-5.961666667,84.3878
-1/10/2021,3:49:00,-5.961666667,84.3878
-1/10/2021,3:50:00,-6.133333333,86.11
-1/10/2021,3:51:00,-5.826666667,81.8045
-1/10/2021,3:52:00,-6.059666667,84.3878
-1/10/2021,3:53:00,-6.1215,85.3479
-1/10/2021,3:54:00,-6.114111111,84.476
-1/10/2021,3:55:00,-6.171,85.3479
-1/10/2021,3:56:00,-5.984,82.6656
-1/10/2021,3:57:00,-5.984,82.7616
-1/10/2021,3:58:00,-6.1655,85.3479
-1/10/2021,3:59:00,-5.969166667,81.8045
-1/10/2021,4:00:00,-6.157666667,84.3878
-1/10/2021,4:01:00,-6.032,82.7616
-1/10/2021,4:02:00,-6.143333333,83.5267
-1/10/2021,4:03:00,-6.137944444,83.6237
-1/10/2021,4:04:00,-6.08,82.7616
-1/10/2021,4:05:00,-6.011388889,81.9945
-1/10/2021,4:06:00,-6.333333333,86.31
-1/10/2021,4:07:00,-6.27,85.5459
-1/10/2021,4:08:00,-6.366666667,86.51
-1/10/2021,4:09:00,-6.338888889,86.71
-1/10/2021,4:10:00,-6.016666667,82.4695
-1/10/2021,4:11:00,-6.3195,85.9419
-1/10/2021,4:12:00,-6.333333333,86.81
-1/10/2021,4:13:00,-6.255666667,85.2698
-1/10/2021,4:14:00,-6.08,83.6256
-1/10/2021,4:15:00,-6.333333333,87.11
-1/10/2021,4:16:00,-6.206666667,85.4658
-1/10/2021,4:17:00,-6.206666667,85.5638
-1/10/2021,4:18:00,-6.27,86.4369
-1/10/2021,4:19:00,-5.969166667,82.9445
-1/10/2021,4:20:00,-6.148722222,84.7877
-1/10/2021,4:21:00,-6.277777778,87.51
-1/10/2021,4:22:00,-6.157666667,85.9558
-1/10/2021,4:23:00,-6.171,86.9319
-1/10/2021,4:24:00,-6.114111111,86.0538
-1/10/2021,4:25:00,-6.171,86.9319
-1/10/2021,4:26:00,-6.233333333,87.81
-1/10/2021,4:27:00,-6.114111111,86.0538
-1/10/2021,4:28:00,-6.171,87.0309
-1/10/2021,4:29:00,-6.059666667,86.2498
-1/10/2021,4:30:00,-6.1215,87.2289
-1/10/2021,4:31:00,-6.010666667,86.8378
-1/10/2021,4:32:00,-6.088888889,88.51
-1/10/2021,4:33:00,-6.083333333,88.51
-1/10/2021,4:34:00,-6.033333333,88.61
-1/10/2021,4:35:00,-5.988888889,88.71
-1/10/2021,4:36:00,-5.636666667,84.5595
-1/10/2021,4:37:00,-5.589166667,84.6545
-1/10/2021,4:38:00,-5.760222222,87.2298
-1/10/2021,4:39:00,-5.6,85.4496
-1/10/2021,4:40:00,-5.494166667,84.4645
-1/10/2021,4:41:00,-5.742,88.0209
-1/10/2021,4:42:00,-5.676,87.8229
-1/10/2021,4:43:00,-5.399166667,84.0845
-1/10/2021,4:44:00,-5.399166667,83.9895
-1/10/2021,4:45:00,-5.6265,87.3279
-1/10/2021,4:46:00,-5.461333333,84.4896
-1/10/2021,4:47:00,-5.512833333,85.1757
-1/10/2021,4:48:00,-5.456,84.2976
-1/10/2021,4:49:00,-5.526111111,86.1518
-1/10/2021,4:50:00,-5.346388889,83.4195
-1/10/2021,4:51:00,-5.464333333,85.1757
-1/10/2021,4:52:00,-5.520666667,86.0538
-1/10/2021,4:53:00,-5.408,84.2016
-1/10/2021,4:54:00,-5.477111111,85.8578
-1/10/2021,4:55:00,-5.577777778,87.51
-1/10/2021,4:56:00,-5.304166667,82.9445
-1/10/2021,4:57:00,-5.381333333,84.0096
-1/10/2021,4:58:00,-5.256666667,83.1345
-1/10/2021,4:59:00,-5.256666667,83.1345
-1/10/2021,5:00:00,-5.417222222,85.6716
-1/10/2021,5:01:00,-5.209166667,83.0395
-1/10/2021,5:02:00,-5.373666667,85.4658
-1/10/2021,5:03:00,-5.373666667,85.4658
-1/10/2021,5:04:00,-5.483333333,87.12
-1/10/2021,5:05:00,-5.373666667,85.2698
-1/10/2021,5:06:00,-5.483333333,87.11
-1/10/2021,5:07:00,-5.423,86.3478
-1/10/2021,5:08:00,-5.433333333,87.11
-1/10/2021,5:09:00,-5.3735,86.1399
-1/10/2021,5:10:00,-5.216,83.2416
-1/10/2021,5:11:00,-5.379,85.8528
-1/10/2021,5:12:00,-5.264944444,84.0214
-1/10/2021,5:13:00,-5.156388889,82.289
-1/10/2021,5:14:00,-5.427777778,86.42
-1/10/2021,5:15:00,-5.270333333,83.7207
-1/10/2021,5:16:00,-5.433333333,86.21
-1/10/2021,5:17:00,-5.488888889,86.11
-1/10/2021,5:18:00,-5.318833333,83.5364
-1/10/2021,5:19:00,-5.209166667,81.909
-1/10/2021,5:20:00,-5.423,85.2489
-1/10/2021,5:21:00,-5.161666667,81.8995
-1/10/2021,5:22:00,-5.368222222,84.3878
-1/10/2021,5:23:00,-5.313444444,83.4394
-1/10/2021,5:24:00,-5.264,82.4736
-1/10/2021,5:25:00,-5.4285,85.0608
-1/10/2021,5:26:00,-5.264,82.4736
-1/10/2021,5:27:00,-5.4285,85.2489
-1/10/2021,5:28:00,-5.306666667,82.4832
-1/10/2021,5:29:00,-5.478,84.9618
-1/10/2021,5:30:00,-5.256666667,81.5195
-1/10/2021,5:31:00,-5.36,82.2816
-1/10/2021,5:32:00,-5.36,82.2912
-1/10/2021,5:33:00,-5.298888889,81.434
-1/10/2021,5:34:00,-5.402666667,82.1856
-1/10/2021,5:35:00,-5.520666667,83.7998
-1/10/2021,5:36:00,-5.683333333,85.51
-1/10/2021,5:37:00,-5.6265,84.5559
-1/10/2021,5:38:00,-5.393888889,81.054
-1/10/2021,5:39:00,-5.676,84.4668
-1/10/2021,5:40:00,-5.494166667,80.959
-1/10/2021,5:41:00,-5.552,81.7056
-1/10/2021,5:42:00,-5.658333333,82.5567
-1/10/2021,5:43:00,-5.658333333,82.6634
-1/10/2021,5:44:00,-5.594444444,81.1395
-1/10/2021,5:45:00,-5.760222222,83.8978
-1/10/2021,5:46:00,-5.706833333,83.0417
-1/10/2021,5:47:00,-5.701444444,83.1484
-1/10/2021,5:48:00,-5.933333333,85.71
-1/10/2021,5:49:00,-5.820111111,83.8978
-1/10/2021,5:50:00,-5.696,82.2816
-1/10/2021,5:51:00,-5.636666667,81.3295
-1/10/2021,5:52:00,-5.744,82.0896
-1/10/2021,5:53:00,-5.863666667,83.7998
-1/10/2021,5:54:00,-5.792,82.0896
-1/10/2021,5:55:00,-6.027777778,85.81
-1/10/2021,5:56:00,-5.852333333,83.4297
-1/10/2021,5:57:00,-5.912666667,84.4858
-1/10/2021,5:58:00,-5.900833333,83.9147
-1/10/2021,5:59:00,-5.973,85.5459
-1/10/2021,6:00:00,-5.792,83.0496
-1/10/2021,6:01:00,-6.033333333,86.61
-1/10/2021,6:02:00,-5.731666667,82.4695
-1/10/2021,6:03:00,-5.852333333,84.1087
-1/10/2021,6:04:00,-5.973,85.8429
-1/10/2021,6:05:00,-5.846944444,84.2154
-1/10/2021,6:06:00,-5.912666667,85.0738
-1/10/2021,6:07:00,-5.973,85.8429
-1/10/2021,6:08:00,-5.731666667,82.3745
-1/10/2021,6:09:00,-5.731666667,82.3745
-1/10/2021,6:10:00,-5.731666667,82.4695
-1/10/2021,6:11:00,-5.792,83.2416
-1/10/2021,6:12:00,-5.797333333,83.2416
-1/10/2021,6:13:00,-5.973,85.8429
-1/10/2021,6:14:00,-5.731666667,82.3745
-1/10/2021,6:15:00,-5.792,83.3376
-1/10/2021,6:16:00,-5.731666667,82.3745
-1/10/2021,6:17:00,-6.033333333,86.71
-1/10/2021,6:18:00,-5.726388889,82.3745
-1/10/2021,6:19:00,-5.912666667,84.9758
-1/10/2021,6:20:00,-5.852333333,84.1087
-1/10/2021,6:21:00,-5.912666667,84.9758
-1/10/2021,6:22:00,-5.967111111,84.9758
-1/10/2021,6:23:00,-5.84,83.1456
-1/10/2021,6:24:00,-5.961666667,84.6818
-1/10/2021,6:25:00,-5.84,82.8576
-1/10/2021,6:26:00,-5.888,82.8576
-1/10/2021,6:27:00,-6.010666667,84.3878
-1/10/2021,6:28:00,-5.930666667,82.6656
-1/10/2021,6:29:00,-6.127,85.2489
-1/10/2021,6:30:00,-5.874166667,81.8045
-1/10/2021,6:31:00,-6.108666667,84.3878
-1/10/2021,6:32:00,-5.984,82.8576
-1/10/2021,6:33:00,-5.926944444,82.0895
-1/10/2021,6:34:00,-5.921666667,82.0895
-1/10/2021,6:35:00,-6.233333333,86.51
-1/10/2021,6:36:00,-6.1655,85.6449
-1/10/2021,6:37:00,-6.046333333,84.0117
-1/10/2021,6:38:00,-6.2205,85.7439
-1/10/2021,6:39:00,-6.355555556,86.51
-1/10/2021,6:40:00,-6.2205,85.4469
-1/10/2021,6:41:00,-5.969166667,81.9945
-1/10/2021,6:42:00,-6.143333333,83.6237
-1/10/2021,6:43:00,-6.383333333,86.11
-1/10/2021,6:44:00,-6.064166667,81.8995
-1/10/2021,6:45:00,-6.064166667,81.8045
-1/10/2021,6:46:00,-6.128,82.7616
-1/10/2021,6:47:00,-6.3745,85.3479
-1/10/2021,6:48:00,-6.304666667,84.4858
-1/10/2021,6:49:00,-6.176,82.7616
-1/10/2021,6:50:00,-6.224,82.7616
-1/10/2021,6:51:00,-6.159166667,81.9945
-1/10/2021,6:52:00,-6.4185,85.4469
-1/10/2021,6:53:00,-6.353666667,84.7798
-1/10/2021,6:54:00,-6.224,83.0496
-1/10/2021,6:55:00,-6.353666667,84.7798
-1/10/2021,6:56:00,-6.288833333,84.0117
-1/10/2021,6:57:00,-6.224,83.2416
-1/10/2021,6:58:00,-6.288833333,84.2057
-1/10/2021,6:59:00,-6.224,83.5296
-1/10/2021,7:00:00,-6.288833333,84.3027
-1/10/2021,7:01:00,-6.277333333,83.3376
-1/10/2021,7:02:00,-6.272,83.2416
-1/10/2021,7:03:00,-6.402666667,84.9758
-1/10/2021,7:04:00,-6.5175,85.9419
-1/10/2021,7:05:00,-6.385833333,84.2057
-1/10/2021,7:06:00,-6.337333333,84.2057
-1/10/2021,7:07:00,-6.391222222,84.1087
-1/10/2021,7:08:00,-6.451666667,85.0738
-1/10/2021,7:09:00,-6.451666667,84.9758
-1/10/2021,7:10:00,-6.254166667,82.3745
-1/10/2021,7:11:00,-6.428944444,83.9147
-1/10/2021,7:12:00,-6.410666667,82.944
-1/10/2021,7:13:00,-6.354444444,81.8995
-1/10/2021,7:14:00,-6.733333333,86.31
-1/10/2021,7:15:00,-6.733333333,86.3
-1/10/2021,7:16:00,-6.666,85.4469
-1/10/2021,7:17:00,-6.579833333,83.808
-1/10/2021,7:18:00,-6.444166667,82.3745
-1/10/2021,7:19:00,-6.7155,85.8429
-1/10/2021,7:20:00,-6.512,83.3184
-1/10/2021,7:21:00,-6.454722222,82.555
-1/10/2021,7:22:00,-6.647666667,85.26
-1/10/2021,7:23:00,-6.721,86.0409
-1/10/2021,7:24:00,-6.444166667,82.5645
-1/10/2021,7:25:00,-6.444166667,82.6595
-1/10/2021,7:26:00,-6.7155,86.1399
-1/10/2021,7:27:00,-6.574444444,84.3027
-1/10/2021,7:28:00,-6.765,85.9419
-1/10/2021,7:29:00,-6.56,83.2416
-1/10/2021,7:30:00,-6.628333333,84.099
-1/10/2021,7:31:00,-6.833333333,86.71
-1/10/2021,7:32:00,-6.833333333,86.81
-1/10/2021,7:33:00,-6.883333333,86.8
-1/10/2021,7:34:00,-6.955555556,86.8
-1/10/2021,7:35:00,-6.676833333,84.2057
-1/10/2021,7:36:00,-6.676833333,84.099
-1/10/2021,7:37:00,-6.933333333,86.7
-1/10/2021,7:38:00,-6.661333333,83.328
-1/10/2021,7:39:00,-6.8695,85.8429
-1/10/2021,7:40:00,-6.725333333,84.099
-1/10/2021,7:41:00,-6.709333333,83.2416
-1/10/2021,7:42:00,-6.634166667,82.3745
-1/10/2021,7:43:00,-6.773833333,84.099
-1/10/2021,7:44:00,-6.773833333,84.099
-1/10/2021,7:45:00,-7.094444444,86.7
-1/10/2021,7:46:00,-7.038888889,86.6
-1/10/2021,7:47:00,-7.0125,85.7439
-1/10/2021,7:48:00,-7.0125,85.7439
-1/10/2021,7:49:00,-6.876222222,84.002
-1/10/2021,7:50:00,-7.0675,85.635
-1/10/2021,7:51:00,-7.138888889,86.5
-1/10/2021,7:52:00,-6.824166667,82.08
-1/10/2021,7:53:00,-6.901333333,82.944
-1/10/2021,7:54:00,-7.117,85.635
-1/10/2021,7:55:00,-6.967833333,84.002
-1/10/2021,7:56:00,-6.876944444,82.365
-1/10/2021,7:57:00,-6.949333333,83.424
-1/10/2021,7:58:00,-6.871666667,82.84
-1/10/2021,7:59:00,-7.117,86.526
-1/10/2021,8:00:00,-6.973222222,84.875
-1/10/2021,8:01:00,-7.188888889,87.6
-1/10/2021,8:02:00,-7.117,86.724
-1/10/2021,8:03:00,-6.896,84.192
-1/10/2021,8:04:00,-6.996111111,86.044
-1/10/2021,8:05:00,-6.848,84.384
-1/10/2021,8:06:00,-6.781944444,83.505
-1/10/2021,8:07:00,-6.947111111,85.946
-1/10/2021,8:08:00,-7.0675,86.823
-1/10/2021,8:09:00,-6.853333333,84.192
-1/10/2021,8:10:00,-6.781944444,83.4195
-1/10/2021,8:11:00,-7.062,86.8329
-1/10/2021,8:12:00,-7.138888889,87.7
-1/10/2021,8:13:00,-6.781944444,83.22
-1/10/2021,8:14:00,-7.138888889,87.5
-1/10/2021,8:15:00,-6.996111111,85.848
-1/10/2021,8:16:00,-6.781944444,83.125
-1/10/2021,8:17:00,-6.781944444,83.125
-1/10/2021,8:18:00,-6.829444444,83.315
-1/10/2021,8:19:00,-6.853333333,84.384
-1/10/2021,8:20:00,-6.853333333,84.48
-1/10/2021,8:21:00,-7.062,87.12
-1/10/2021,8:22:00,-6.848,84.576
-1/10/2021,8:23:00,-6.876222222,85.457
-1/10/2021,8:24:00,-6.805333333,84.576
-1/10/2021,8:25:00,-6.881611111,85.554
-1/10/2021,8:26:00,-6.757333333,84.7776
-1/10/2021,8:27:00,-6.686944444,83.79
-1/10/2021,8:28:00,-6.963,87.417
-1/10/2021,8:29:00,-6.892666667,86.5438
-1/10/2021,8:30:00,-6.779222222,85.748
-1/10/2021,8:31:00,-6.6975,83.98
-1/10/2021,8:32:00,-6.591944444,83.98
-1/10/2021,8:33:00,-6.656,85.056
-1/10/2021,8:34:00,-6.725333333,85.9517
-1/10/2021,8:35:00,-6.682222222,86.233
-1/10/2021,8:36:00,-6.767444444,87.416
-1/10/2021,8:37:00,-6.788888889,89.4
-1/10/2021,8:38:00,-6.531333333,86.912
-1/10/2021,8:39:00,-6.301666667,85.405
-1/10/2021,8:40:00,-6.32,86.6016
-1/10/2021,8:41:00,-6.164444444,85.785
-1/10/2021,8:42:00,-6.240333333,87.7074
-1/10/2021,8:43:00,-6.133333333,86.8896
-1/10/2021,8:44:00,-6.333333333,90.61
-1/10/2021,8:45:00,-6.094833333,87.8917
-1/10/2021,8:46:00,-6.065111111,88.7978
-1/10/2021,8:47:00,-6.1215,89.7039
-1/10/2021,8:48:00,-6.072,89.6049
-1/10/2021,8:49:00,-6.0225,89.4069
-1/10/2021,8:50:00,-5.918111111,88.4058
-1/10/2021,8:51:00,-5.874,89.2089
-1/10/2021,8:52:00,-5.706833333,87.3097
-1/10/2021,8:53:00,-5.653333333,86.2176
-1/10/2021,8:54:00,-5.658333333,86.8247
-1/10/2021,8:55:00,-5.788888889,89.2
-1/10/2021,8:56:00,-5.615222222,86.0487
-1/10/2021,8:57:00,-5.446666667,83.9895
-1/10/2021,8:58:00,-5.446666667,83.9895
-1/10/2021,8:59:00,-5.683333333,88.21
-1/10/2021,9:00:00,-5.469722222,85.5637
-1/10/2021,9:01:00,-5.304166667,83.8945
-1/10/2021,9:02:00,-5.312,84.8736
-1/10/2021,9:03:00,-5.4285,87.5259
-1/10/2021,9:04:00,-5.3845,87.6249
-1/10/2021,9:05:00,-5.114166667,84.0845
-1/10/2021,9:06:00,-5.13,83.9895
-1/10/2021,9:07:00,-5.018666667,84.7776
-1/10/2021,9:08:00,-5.022444444,85.6607
-1/10/2021,9:09:00,-4.973944444,85.6704
-1/10/2021,9:10:00,-5.077777778,88.21
-1/10/2021,9:11:00,-4.932666667,86.4458
-1/10/2021,9:12:00,-4.894555556,86.2498
-1/10/2021,9:13:00,-4.731444444,85.1757
-1/10/2021,9:14:00,-4.634666667,84.0096
-1/10/2021,9:15:00,-4.783333333,87.51
-1/10/2021,9:16:00,-4.591333333,84.8847
-1/10/2021,9:17:00,-4.449166667,82.859
-1/10/2021,9:18:00,-4.598,86.2389
-1/10/2021,9:19:00,-4.346666667,83.3472
-1/10/2021,9:20:00,-4.253888889,82.194
-1/10/2021,9:21:00,-4.433333333,86.32
-1/10/2021,9:22:00,-4.295666667,84.2996
-1/10/2021,9:23:00,-4.2845,84.7638
-1/10/2021,9:24:00,-4.2845,84.4668
-1/10/2021,9:25:00,-4.277777778,85.12
-1/10/2021,9:26:00,-4.058666667,81.4272
-1/10/2021,9:27:00,-4.1855,83.8728
-1/10/2021,9:28:00,-4.052444444,82.0814
-1/10/2021,9:29:00,-4.127777778,84.42
-1/10/2021,9:30:00,-4.0425,83.4768
-1/10/2021,9:31:00,-3.873888889,79.914
-1/10/2021,9:32:00,-3.826388889,79.819
-1/10/2021,9:33:00,-3.9325,83.0808
-1/10/2021,9:34:00,-3.761444444,81.5964
-1/10/2021,9:35:00,-3.7895,83.2788
-1/10/2021,9:36:00,-3.588888889,79.914
-1/10/2021,9:37:00,-3.664444444,81.5091
-1/10/2021,9:38:00,-3.653222222,82.2514
-1/10/2021,9:39:00,-3.672222222,83.83
-1/10/2021,9:40:00,-3.586,82.9917
-1/10/2021,9:41:00,-3.527777778,83.62
-1/10/2021,9:42:00,-3.346111111,79.3535
-1/10/2021,9:43:00,-3.408222222,81.7516
-1/10/2021,9:44:00,-3.319555556,80.9174
-1/10/2021,9:45:00,-3.3385,82.4967
-1/10/2021,9:46:00,-3.2945,82.4868
-1/10/2021,9:47:00,-3.277777778,83.23
-1/10/2021,9:48:00,-3.19,82.1007
-1/10/2021,9:49:00,-3.098666667,79.3248
-1/10/2021,9:50:00,-3.059777778,80.5854
-1/10/2021,9:51:00,-3.072222222,81.83
-1/10/2021,9:52:00,-3.010777778,79.8014
-1/10/2021,9:53:00,-2.9425,80.3187
-1/10/2021,9:54:00,-2.781388889,76.7885
-1/10/2021,9:55:00,-2.791444444,78.4051
-1/10/2021,9:56:00,-2.709333333,77.3088
-1/10/2021,9:57:00,-2.681111111,76.3135
-1/10/2021,9:58:00,-2.638888889,76.1235
-1/10/2021,9:59:00,-2.613333333,76.5408
-1/10/2021,10:00:00,-2.722222222,79.73
-1/10/2021,10:01:00,-2.570666667,76.4448
-1/10/2021,10:02:00,-2.622222222,79.53
-1/10/2021,10:03:00,-2.443611111,75.2685
-1/10/2021,10:04:00,-2.572222222,79.33
-1/10/2021,10:05:00,-2.421333333,75.3888
-1/10/2021,10:06:00,-2.398055556,76.0771
-1/10/2021,10:07:00,-2.325333333,75.1968
-1/10/2021,10:08:00,-2.372222222,78.23
-1/10/2021,10:09:00,-2.3485,77.3487
-1/10/2021,10:10:00,-2.275777778,76.7634
-1/10/2021,10:11:00,-2.198666667,75.6891
-1/10/2021,10:12:00,-2.148055556,74.4135
-1/10/2021,10:13:00,-2.063611111,74.3185
-1/10/2021,10:14:00,-2.037333333,74.4288
-1/10/2021,10:15:00,-2.037333333,74.2368
-1/10/2021,10:16:00,-2.072222222,77.03
-1/10/2021,10:17:00,-2.022222222,76.83
-1/10/2021,10:18:00,-1.921111111,72.8935
-1/10/2021,10:19:00,-1.888,73.8528
-1/10/2021,10:20:00,-1.845333333,74.0448
-1/10/2021,10:21:00,-1.810666667,74.6318
-1/10/2021,10:22:00,-1.848,75.9627
-1/10/2021,10:23:00,-1.7985,75.7746
-1/10/2021,10:24:00,-1.717333333,73.6608
-1/10/2021,10:25:00,-1.648,73.3824
-1/10/2021,10:26:00,-1.65,75.0717
-1/10/2021,10:27:00,-1.541111111,72.3235
-1/10/2021,10:28:00,-1.535333333,74.5094
-1/10/2021,10:29:00,-1.456666667,72.4185
-1/10/2021,10:30:00,-1.471166667,73.9431
-1/10/2021,10:31:00,-1.422666667,73.2738
-1/10/2021,10:32:00,-1.416666667,76.04
-1/10/2021,10:33:00,-1.366666667,75.84
-1/10/2021,10:34:00,-1.3035,75.2796
-1/10/2021,10:35:00,-1.216,72.7104
-1/10/2021,10:36:00,-1.168,72.9024
-1/10/2021,10:37:00,-1.072,72.9024
-1/10/2021,10:38:00,-1.1055,74.4876
-1/10/2021,10:39:00,-1.0065,74.7846
-1/10/2021,10:40:00,-0.941888889,72.8532
-1/10/2021,10:41:00,-0.902,73.1016
-1/10/2021,10:42:00,-0.843888889,72.2652
-1/10/2021,10:43:00,-0.800333333,72.9512
-1/10/2021,10:44:00,-0.8085,72.2106
-1/10/2021,10:45:00,-0.745888889,70.4032
-1/10/2021,10:46:00,-0.759,71.3196
-1/10/2021,10:47:00,-0.682666667,69.5136
-1/10/2021,10:48:00,-0.646666667,70.3638
-1/10/2021,10:49:00,-0.580555556,69.008
-1/10/2021,10:50:00,-0.5555,71.2206
-1/10/2021,10:51:00,-0.533055556,68.058
-1/10/2021,10:52:00,-0.485555556,66.823
-1/10/2021,10:53:00,-0.4565,70.1316
-1/10/2021,10:54:00,-0.416666667,70.64
-1/10/2021,10:55:00,-0.346666667,67.4304
-1/10/2021,10:56:00,-0.353888889,69.5212
-1/10/2021,10:57:00,-0.311111111,70.14
-1/10/2021,10:58:00,-0.261111111,70.44
-1/10/2021,10:59:00,-0.211111111,70.44
-1/10/2021,11:00:00,-0.156277778,68.0455
-1/10/2021,11:01:00,-0.1595,69.4485
-1/10/2021,11:02:00,-0.059277778,67.3665
-1/10/2021,11:03:00,-0.059888889,67.5612
-1/10/2021,11:04:00,-0.058666667,66.192
-1/10/2021,11:05:00,-0.010777778,67.7545
-1/10/2021,11:06:00,0.037722222,67.3665
-1/10/2021,11:07:00,0.037333333,66.672
-1/10/2021,11:08:00,0.088,68.8545
-1/10/2021,11:09:00,0.133333333,65.8944
-1/10/2021,11:10:00,0.188888889,68.85
-1/10/2021,11:11:00,0.188611111,66.5905
-1/10/2021,11:12:00,0.226944444,65.2175
-1/10/2021,11:13:00,0.234111111,67.669
-1/10/2021,11:14:00,0.334111111,66.5905
-1/10/2021,11:15:00,0.325333333,65.52
-1/10/2021,11:16:00,0.321944444,64.7995
-1/10/2021,11:17:00,0.378666667,65.232
-1/10/2021,11:18:00,0.378666667,64.656
-1/10/2021,11:19:00,0.374722222,63.7925
-1/10/2021,11:20:00,0.494444444,66.95
-1/10/2021,11:21:00,0.484555556,66.689
-1/10/2021,11:22:00,0.528111111,65.317
-1/10/2021,11:23:00,0.571222222,64.8445
-1/10/2021,11:24:00,0.638,66.2805
-1/10/2021,11:25:00,0.666666667,64.368
-1/10/2021,11:26:00,0.762666667,62.352
-1/10/2021,11:27:00,0.770611111,62.9045
-1/10/2021,11:28:00,0.867611111,63.4865
-1/10/2021,11:29:00,0.912,62.2656
-1/10/2021,11:30:00,0.964611111,61.8375
-1/10/2021,11:31:00,1.034,63.0135
-1/10/2021,11:32:00,1.050666667,61.872
-1/10/2021,11:33:00,1.045,61.6075
-1/10/2021,11:34:00,1.158611111,62.4195
-1/10/2021,11:35:00,1.182222222,60.762
-1/10/2021,11:36:00,1.2,60.1536
-1/10/2021,11:37:00,1.182222222,59.5175
-1/10/2021,11:38:00,1.274,62.0928
-1/10/2021,11:39:00,1.317555556,61.6028
-1/10/2021,11:40:00,1.344,60.4416
-1/10/2021,11:41:00,1.4245,61.8255
-1/10/2021,11:42:00,1.3775,59.812
-1/10/2021,11:43:00,1.434666667,59.664
-1/10/2021,11:44:00,1.5345,61.6374
-1/10/2021,11:45:00,1.552,60.7802
-1/10/2021,11:46:00,1.578666667,59.6736
-1/10/2021,11:47:00,1.649,60.2952
-1/10/2021,11:48:00,1.7325,61.0434
-1/10/2021,11:49:00,1.764,60.2308
-1/10/2021,11:50:00,1.776,58.7136
-1/10/2021,11:51:00,1.805,58.102
-1/10/2021,11:52:00,1.911,59.2508
-1/10/2021,11:53:00,2.0295,59.7564
-1/10/2021,11:54:00,2.058,58.6628
-1/10/2021,11:55:00,2.155555556,59.26
-1/10/2021,11:56:00,2.2,59.26
-1/10/2021,11:57:00,2.210444444,58.0552
-1/10/2021,11:58:00,2.231,56.9002
-1/10/2021,11:59:00,2.2825,58.6674
-1/10/2021,12:00:00,2.237777778,56.867
-1/10/2021,12:01:00,2.455555556,60.46
-1/10/2021,12:02:00,2.505555556,59.67
-1/10/2021,12:03:00,2.496,55.8336
-1/10/2021,12:04:00,2.522777778,54.967
-1/10/2021,12:05:00,2.755555556,56.96
-1/10/2021,12:06:00,2.7775,55.6974
-1/10/2021,12:07:00,2.693333333,53.7312
-1/10/2021,12:08:00,2.698666667,53.3376
-1/10/2021,12:09:00,2.793,54.3508
-1/10/2021,12:10:00,2.760277778,52.782
-1/10/2021,12:11:00,2.847444444,54.2528
-1/10/2021,12:12:00,2.872277778,53.0202
-1/10/2021,12:13:00,2.9755,53.9154
-1/10/2021,12:14:00,3.055555556,55.27
-1/10/2021,12:15:00,3.012388889,54.0872
-1/10/2021,12:16:00,3.066277778,52.5449
-1/10/2021,12:17:00,3.114777778,53.4179
-1/10/2021,12:18:00,3.125333333,53.2416
-1/10/2021,12:19:00,3.206388889,53.1172
-1/10/2021,12:20:00,3.355555556,54.66
-1/10/2021,12:21:00,3.303388889,52.9329
-1/10/2021,12:22:00,3.357277778,51.8659
-1/10/2021,12:23:00,3.476,53.4303
-1/10/2021,12:24:00,3.561111111,54.67
-1/10/2021,12:25:00,3.466666667,51.7056
-1/10/2021,12:26:00,3.509333333,51.3312
-1/10/2021,12:27:00,3.514666667,51.4272
-1/10/2021,12:28:00,3.525555556,50.4165
-1/10/2021,12:29:00,3.525555556,50.4165
-1/10/2021,12:30:00,3.578333333,50.7015
-1/10/2021,12:31:00,3.7235,52.9254
-1/10/2021,12:32:00,3.691388889,52.0599
-1/10/2021,12:33:00,3.861111111,52.97
-1/10/2021,12:34:00,3.783888889,51.5186
-1/10/2021,12:35:00,3.832888889,51.3128
-1/10/2021,12:36:00,3.754666667,49.6032
-1/10/2021,12:37:00,3.876444444,50.9208
-1/10/2021,12:38:00,4.011111111,51.77
-1/10/2021,12:39:00,3.810555556,48.8015
-1/10/2021,12:40:00,3.858055556,48.6115
-1/10/2021,12:41:00,4.0205,51.0543
-1/10/2021,12:42:00,3.946666667,49.3152
-1/10/2021,12:43:00,4.028888889,50.1466
-1/10/2021,12:44:00,3.910833333,48.8965
-1/10/2021,12:45:00,3.994666667,49.3152
-1/10/2021,12:46:00,4.0755,50.0643
-1/10/2021,12:47:00,3.898666667,49.3152
-1/10/2021,12:48:00,3.987777778,50.1199
-1/10/2021,12:49:00,4.030888889,50.1199
-1/10/2021,12:50:00,4.084777778,50.0229
-1/10/2021,12:51:00,4.077888889,49.8526
-1/10/2021,12:52:00,4.111111111,51.07
-1/10/2021,12:53:00,3.993166667,49.6349
-1/10/2021,12:54:00,4.111111111,51.17
-1/10/2021,12:55:00,3.979888889,50.0486
-1/10/2021,12:56:00,3.778888889,48.8965
-1/10/2021,12:57:00,3.768333333,48.4215
-1/10/2021,12:58:00,3.966666667,51.87
-1/10/2021,12:59:00,3.763055556,48.8015
-1/10/2021,13:00:00,3.712,49.5072
-1/10/2021,13:01:00,3.805555556,51.47
-1/10/2021,13:02:00,3.750666667,50.0229
-1/10/2021,13:03:00,3.706666667,49.3152
-1/10/2021,13:04:00,3.789333333,50.8326
-1/10/2021,13:05:00,3.789333333,50.6366
-1/10/2021,13:06:00,3.836888889,50.3139
-1/10/2021,13:07:00,4.011111111,51.77
-1/10/2021,13:08:00,3.808,50.0832
-1/10/2021,13:09:00,3.9765,51.3513
-1/10/2021,13:10:00,3.879166667,49.3715
-1/10/2021,13:11:00,4.216666667,51.77
-1/10/2021,13:12:00,4.187166667,49.5379
-1/10/2021,13:13:00,4.192,48.8352
-1/10/2021,13:14:00,4.234666667,48.4512
-1/10/2021,13:15:00,4.238055556,47.7565
-1/10/2021,13:16:00,4.3615,49.2723
-1/10/2021,13:17:00,4.095555556,47.9465
-1/10/2021,13:18:00,4.048,48.5472
-1/10/2021,13:19:00,3.946666667,48.8352
-1/10/2021,13:20:00,4.016666667,50.97
-1/10/2021,13:21:00,3.961111111,51.17
-1/10/2021,13:22:00,3.832888889,50.6366
-1/10/2021,13:23:00,3.872,51.2523
-1/10/2021,13:24:00,3.961111111,51.77
-1/10/2021,13:25:00,3.768333333,48.9915
-1/10/2021,13:26:00,3.810555556,48.9915
-1/10/2021,13:27:00,3.936333333,50.6366
-1/10/2021,13:28:00,3.763055556,48.8015
-1/10/2021,13:29:00,3.715555556,48.6115
-1/10/2021,13:30:00,3.8225,51.0543
-1/10/2021,13:31:00,3.658666667,49.6992
-1/10/2021,13:32:00,3.648277778,50.4109
-1/10/2021,13:33:00,3.648277778,50.9929
-1/10/2021,13:34:00,3.734888889,51.6166
-1/10/2021,13:35:00,3.658666667,50.6592
-1/10/2021,13:36:00,3.861111111,52.47
-1/10/2021,13:37:00,3.754666667,50.2752
-1/10/2021,13:38:00,3.961111111,52.37
-1/10/2021,13:39:00,4.011111111,52.27
-1/10/2021,13:40:00,3.905555556,50.1315
-1/10/2021,13:41:00,4.090666667,49.7952
-1/10/2021,13:42:00,4.181777778,50.5079
-1/10/2021,13:43:00,4.284166667,49.7319
-1/10/2021,13:44:00,4.234666667,49.2192
-1/10/2021,13:45:00,4.355555556,51.07
-1/10/2021,13:46:00,4.144,48.8352
-1/10/2021,13:47:00,4.053333333,48.3265
-1/10/2021,13:48:00,4.000555556,48.8015
-1/10/2021,13:49:00,4.036277778,49.5379
-1/10/2021,13:50:00,3.994666667,49.6032
-1/10/2021,13:51:00,4.048,49.7952
-1/10/2021,13:52:00,4.090666667,49.6992
-1/10/2021,13:53:00,4.2735,50.7573
-1/10/2021,13:54:00,4.053333333,48.6115
-1/10/2021,13:55:00,4.213,50.7474
-1/10/2021,13:56:00,4.138666667,49.4409
-1/10/2021,13:57:00,4.090666667,48.9312
-1/10/2021,13:58:00,4.125,50.7573
-1/10/2021,13:59:00,3.958333333,49.1815
-1/10/2021,14:00:00,3.952,49.3152
-1/10/2021,14:01:00,3.898666667,49.1232
-1/10/2021,14:02:00,4.028888889,50.3426
-1/10/2021,14:03:00,4.111111111,51.77
-1/10/2021,14:04:00,4.061111111,51.27
-1/10/2021,14:05:00,3.856,49.3152
-1/10/2021,14:06:00,3.890777778,49.9259
-1/10/2021,14:07:00,3.842277778,50.2169
-1/10/2021,14:08:00,3.808,49.6032
-1/10/2021,14:09:00,3.754666667,49.6992
-1/10/2021,14:10:00,3.750666667,50.4109
-1/10/2021,14:11:00,3.783888889,50.9208
-1/10/2021,14:12:00,3.783888889,51.4206
-1/10/2021,14:13:00,3.8775,52.1433
-1/10/2021,14:14:00,3.872,51.8463
-1/10/2021,14:15:00,3.842277778,51.1772
-1/10/2021,14:16:00,4.011111111,51.87
-1/10/2021,14:17:00,3.810555556,49.0865
-1/10/2021,14:18:00,3.936333333,50.8326
-1/10/2021,14:19:00,3.858055556,49.1815
-1/10/2021,14:20:00,3.946666667,49.6032
-1/10/2021,14:21:00,3.910833333,49.2765
-1/10/2021,14:22:00,4.077888889,50.4406
-1/10/2021,14:23:00,4.166666667,51.37
-1/10/2021,14:24:00,4.169,51.1533
-1/10/2021,14:25:00,4.224,51.2523
-1/10/2021,14:26:00,4.048055556,48.8965
-1/10/2021,14:27:00,4.133277778,49.3439
-1/10/2021,14:28:00,4.316666667,51.07
-1/10/2021,14:29:00,4.100833333,48.4215
-1/10/2021,14:30:00,4.187166667,49.8289
-1/10/2021,14:31:00,4.181333333,49.6032
-1/10/2021,14:32:00,4.273888889,50.2446
-1/10/2021,14:33:00,4.416666667,50.97
-1/10/2021,14:34:00,4.278777778,49.3439
-1/10/2021,14:35:00,4.288,48.3552
-1/10/2021,14:36:00,4.461111111,50.07
-1/10/2021,14:37:00,4.336,48.3552
-1/10/2021,14:38:00,4.336,48.8352
-1/10/2021,14:39:00,4.336,47.7792
-1/10/2021,14:40:00,4.381166667,48.3739
-1/10/2021,14:41:00,4.243333333,47.3765
-1/10/2021,14:42:00,4.422,49.4703
-1/10/2021,14:43:00,4.328333333,48.5786
-1/10/2021,14:44:00,4.328333333,48.6766
-1/10/2021,14:45:00,4.288,48.0672
-1/10/2021,14:46:00,4.238055556,47.2815
-1/10/2021,14:47:00,4.381166667,47.9859
-1/10/2021,14:48:00,4.338333333,46.9965
-1/10/2021,14:49:00,4.429666667,48.1605
-1/10/2021,14:50:00,4.472777778,47.6949
-1/10/2021,14:51:00,4.5705,47.9853
-1/10/2021,14:52:00,4.521,48.0843
-1/10/2021,14:53:00,4.384,46.5312
-1/10/2021,14:54:00,4.429666667,47.1129
-1/10/2021,14:55:00,4.469888889,47.5006
-1/10/2021,14:56:00,4.566666667,48.57
-1/10/2021,14:57:00,4.622222222,48.57
-1/10/2021,14:58:00,4.384,46.4352
-1/10/2021,14:59:00,4.475333333,47.4026
-1/10/2021,15:00:00,4.429666667,47.2099
-1/10/2021,15:01:00,4.475333333,47.7946
-1/10/2021,15:02:00,4.426666667,46.7232
-1/10/2021,15:03:00,4.385833333,46.9015
-1/10/2021,15:04:00,4.485333333,47.2992
-1/10/2021,15:05:00,4.526666667,46.6279
-1/10/2021,15:06:00,4.432,46.1472
-1/10/2021,15:07:00,4.333055556,45.6665
-1/10/2021,15:08:00,4.429666667,46.9189
-1/10/2021,15:09:00,4.384,46.5312
-1/10/2021,15:10:00,4.478166667,47.0159
-1/10/2021,15:11:00,4.478166667,47.1129
-1/10/2021,15:12:00,4.573333333,47.7946
-1/10/2021,15:13:00,4.532055556,47.0159
-1/10/2021,15:14:00,4.474666667,46.3392
-1/10/2021,15:15:00,4.622333333,47.5006
-1/10/2021,15:16:00,4.675,47.8863
-1/10/2021,15:17:00,4.575166667,46.7249
-1/10/2021,15:18:00,4.716666667,48.57
-1/10/2021,15:19:00,4.653,48.1833
-1/10/2021,15:20:00,4.671333333,47.7946
-1/10/2021,15:21:00,4.720333333,47.6966
-1/10/2021,15:22:00,4.624,46.6272
-1/10/2021,15:23:00,4.720666667,46.7346
-1/10/2021,15:24:00,4.866666667,48.57
-1/10/2021,15:25:00,4.672,46.4352
-1/10/2021,15:26:00,4.922222222,48.37
-1/10/2021,15:27:00,4.8675,47.8863
-1/10/2021,15:28:00,4.670833333,45.6665
-1/10/2021,15:29:00,4.916666667,48.17
-1/10/2021,15:30:00,4.818333333,46.8146
-1/10/2021,15:31:00,4.823777778,46.5206
-1/10/2021,15:32:00,4.916666667,47.47
-1/10/2021,15:33:00,4.676111111,45.3815
-1/10/2021,15:34:00,4.774777778,47.0106
-1/10/2021,15:35:00,4.866666667,47.57
-1/10/2021,15:36:00,4.628611111,45.2865
-1/10/2021,15:37:00,4.628611111,45.581
-1/10/2021,15:38:00,4.720666667,46.6279
-1/10/2021,15:39:00,4.677555556,46.6279
-1/10/2021,15:40:00,4.720333333,47.2066
-1/10/2021,15:41:00,4.720333333,47.1086
-1/10/2021,15:42:00,4.629055556,47.0159
-1/10/2021,15:43:00,4.576,46.6272
-1/10/2021,15:44:00,4.716666667,48.77
-1/10/2021,15:45:00,4.486111111,46.4265
-1/10/2021,15:46:00,4.480833333,46.5215
-1/10/2021,15:47:00,4.480833333,46.5215
-1/10/2021,15:48:00,4.575166667,47.3069
-1/10/2021,15:49:00,4.480833333,46.5215
-1/10/2021,15:50:00,4.573333333,47.8926
-1/10/2021,15:51:00,4.433333333,46.7115
-1/10/2021,15:52:00,4.526666667,47.3069
-1/10/2021,15:53:00,4.438611111,46.3315
-1/10/2021,15:54:00,4.62,48.9753
-1/10/2021,15:55:00,4.62,48.4803
-1/10/2021,15:56:00,4.433333333,46.4265
-1/10/2021,15:57:00,4.62,48.4803
-1/10/2021,15:58:00,4.573333333,48.0886
-1/10/2021,15:59:00,4.48,46.8192
-1/10/2021,16:00:00,4.433333333,46.3315
-1/10/2021,16:01:00,4.573333333,47.8926
-1/10/2021,16:02:00,4.433333333,46.3315
-1/10/2021,16:03:00,4.385833333,46.5215
-1/10/2021,16:04:00,4.616666667,48.77
-1/10/2021,16:05:00,4.521,48.4803
-1/10/2021,16:06:00,4.521,48.7773
-1/10/2021,16:07:00,4.381166667,47.4039
-1/10/2021,16:08:00,4.422,48.7773
-1/10/2021,16:09:00,4.3725,48.8763
-1/10/2021,16:10:00,4.323,49.2723
-1/10/2021,16:11:00,4.2735,49.2723
-1/10/2021,16:12:00,4.266666667,49.97
-1/10/2021,16:13:00,4.084777778,48.6649
-1/10/2021,16:14:00,4.1195,49.5693
-1/10/2021,16:15:00,4.116666667,50.17
-1/10/2021,16:16:00,3.858055556,48.0415
-1/10/2021,16:17:00,3.971,50.6583
-1/10/2021,16:18:00,3.961111111,51.17
-1/10/2021,16:19:00,3.961111111,51.27
-1/10/2021,16:20:00,3.715555556,48.6115
-1/10/2021,16:21:00,3.706666667,49.1232
-1/10/2021,16:22:00,3.668055556,48.9915
-1/10/2021,16:23:00,3.658666667,49.6032
-1/10/2021,16:24:00,3.811111111,51.67
-1/10/2021,16:25:00,3.610666667,49.5072
-1/10/2021,16:26:00,3.648277778,50.1199
-1/10/2021,16:27:00,3.573055556,49.0865
-1/10/2021,16:28:00,3.557333333,49.4112
-1/10/2021,16:29:00,3.514666667,49.6032
-1/10/2021,16:30:00,3.619,50.9553
-1/10/2021,16:31:00,3.611111111,51.17
-1/10/2021,16:32:00,3.383055556,48.8015
-1/10/2021,16:33:00,3.484444444,50.2446
-1/10/2021,16:34:00,3.476,51.2523
-1/10/2021,16:35:00,3.440888889,50.6268
-1/10/2021,16:36:00,3.391888889,50.7346
-1/10/2021,16:37:00,3.288055556,49.0865
-1/10/2021,16:38:00,3.269333333,49.6896
-1/10/2021,16:39:00,3.377,51.4404
-1/10/2021,16:40:00,3.3275,51.7374
-1/10/2021,16:41:00,3.173333333,50.4672
-1/10/2021,16:42:00,3.206388889,51.0802
-1/10/2021,16:43:00,3.255555556,52.96
-1/10/2021,16:44:00,3.25,52.96
-1/10/2021,16:45:00,2.997777778,50.217
-1/10/2021,16:46:00,3.029333333,51.0336
-1/10/2021,16:47:00,3.0745,52.9254
-1/10/2021,16:48:00,2.994444444,52.3908
-1/10/2021,16:49:00,2.963888889,52.1472
-1/10/2021,16:50:00,2.963888889,52.5352
-1/10/2021,16:51:00,3.005555556,53.76
-1/10/2021,16:52:00,2.915388889,52.1472
-1/10/2021,16:53:00,2.866888889,52.2442
-1/10/2021,16:54:00,2.955555556,53.86
-1/10/2021,16:55:00,2.789333333,51.8976
-1/10/2021,16:56:00,2.847444444,53.0768
-1/10/2021,16:57:00,2.847444444,53.7628
-1/10/2021,16:58:00,2.741333333,52.2816
-1/10/2021,16:59:00,2.798444444,53.2728
-1/10/2021,17:00:00,2.7775,53.8164
-1/10/2021,17:01:00,2.7645,52.7292
-1/10/2021,17:02:00,2.665277778,51.832
-1/10/2021,17:03:00,2.7225,54.3114
-1/10/2021,17:04:00,2.64,52.7616
-1/10/2021,17:05:00,2.728,54.7074
-1/10/2021,17:06:00,2.6675,53.5052
-1/10/2021,17:07:00,2.64,52.8576
-1/10/2021,17:08:00,2.597333333,53.2416
-1/10/2021,17:09:00,2.619,53.8932
-1/10/2021,17:10:00,2.629,55.2024
-1/10/2021,17:11:00,2.5705,54.2715
-1/10/2021,17:12:00,2.65,55.96
-1/10/2021,17:13:00,2.522777778,53.162
-1/10/2021,17:14:00,2.5175,53.257
-1/10/2021,17:15:00,2.575888889,54.3782
-1/10/2021,17:16:00,2.574,55.3014
-1/10/2021,17:17:00,2.47,53.0575
-1/10/2021,17:18:00,2.475277778,53.067
-1/10/2021,17:19:00,2.548,55.0368
-1/10/2021,17:20:00,2.427777778,53.732
-1/10/2021,17:21:00,2.5245,55.9944
-1/10/2021,17:22:00,2.455444444,55.3308
-1/10/2021,17:23:00,2.425,54.8535
-1/10/2021,17:24:00,2.4255,56.1924
-1/10/2021,17:25:00,2.401,55.9188
-1/10/2021,17:26:00,2.3275,54.4825
-1/10/2021,17:27:00,2.3265,57.0735
-1/10/2021,17:28:00,2.35,57.75
-1/10/2021,17:29:00,2.208,55.632
-1/10/2021,17:30:00,2.205,57.0948
-1/10/2021,17:31:00,2.134,56.7062
-1/10/2021,17:32:00,2.0425,55.822
-1/10/2021,17:33:00,2.016,56.5056
-1/10/2021,17:34:00,2.058,57.7808
-1/10/2021,17:35:00,1.983111111,57.3755
-1/10/2021,17:36:00,1.9745,58.8555
-1/10/2021,17:37:00,1.872,57.168
-1/10/2021,17:38:00,1.862,58.359
-1/10/2021,17:39:00,1.776,57.264
-1/10/2021,17:40:00,1.782,59.2515
-1/10/2021,17:41:00,1.638777778,58.751
-1/10/2021,17:42:00,1.621333333,57.744
-1/10/2021,17:43:00,1.628,59.7465
-1/10/2021,17:44:00,1.584,58.128
-1/10/2021,17:45:00,1.594444444,60.65
-1/10/2021,17:46:00,1.5345,60.0435
-1/10/2021,17:47:00,1.429333333,58.512
-1/10/2021,17:48:00,1.434666667,58.8
-1/10/2021,17:49:00,1.444444444,61.25
-1/10/2021,17:50:00,1.366555556,60.123
-1/10/2021,17:51:00,1.317555556,60.319
-1/10/2021,17:52:00,1.229722222,58.6625
-1/10/2021,17:53:00,1.207111111,60.1885
-1/10/2021,17:54:00,1.225,60.809
-1/10/2021,17:55:00,1.170555556,61.103
-1/10/2021,17:56:00,1.104,60.048
-1/10/2021,17:57:00,1.039722222,59.4225
-1/10/2021,17:58:00,1.072555556,61.593
-1/10/2021,17:59:00,1.013111111,61.2555
-1/10/2021,18:00:00,0.954666667,60.624
-1/10/2021,18:01:00,0.9845,62.7165
-1/10/2021,18:02:00,0.897222222,60.3725
-1/10/2021,18:03:00,0.944444444,63.65
-1/10/2021,18:04:00,0.849722222,60.5625
-1/10/2021,18:05:00,0.827555556,62.573
-1/10/2021,18:06:00,0.810666667,61.488
-1/10/2021,18:07:00,0.796944444,60.8475
-1/10/2021,18:08:00,0.762666667,61.584
-1/10/2021,18:09:00,0.765222222,62.2158
-1/10/2021,18:10:00,0.770611111,62.2255
-1/10/2021,18:11:00,0.738888889,64.15
-1/10/2021,18:12:00,0.701944444,61.1325
-1/10/2021,18:13:00,0.668222222,62.4195
-1/10/2021,18:14:00,0.638888889,64.34
-1/10/2021,18:15:00,0.613333333,61.6704
-1/10/2021,18:16:00,0.565333333,61.7664
-1/10/2021,18:17:00,0.583,63.7956
-1/10/2021,18:18:00,0.533555556,63.161
-1/10/2021,18:19:00,0.494444444,64.75
-1/10/2021,18:20:00,0.479611111,63.0985
-1/10/2021,18:21:00,0.469333333,62.6304
-1/10/2021,18:22:00,0.422222222,61.8925
-1/10/2021,18:23:00,0.438888889,65.24
-1/10/2021,18:24:00,0.385,64.6965
-1/10/2021,18:25:00,0.327222222,62.263
-1/10/2021,18:26:00,0.338888889,65.64
-1/10/2021,18:27:00,0.328722222,63.8648
-1/10/2021,18:28:00,0.283333333,66.04
-1/10/2021,18:29:00,0.280222222,64.1558
-1/10/2021,18:30:00,0.288555556,65.0132
-1/10/2021,18:31:00,0.229333333,63.7824
-1/10/2021,18:32:00,0.2365,65.8746
-1/10/2021,18:33:00,0.224,63.9744
-1/10/2021,18:34:00,0.234111111,65.2092
-1/10/2021,18:35:00,0.238888889,66.64
-1/10/2021,18:36:00,0.181333333,64.0704
-1/10/2021,18:37:00,0.181333333,64.2624
-1/10/2021,18:38:00,0.179666667,65.6012
-1/10/2021,18:39:00,0.187,66.4686
-1/10/2021,18:40:00,0.181333333,64.4544
-1/10/2021,18:41:00,0.183222222,65.1258
-1/10/2021,18:42:00,0.138888889,67.04
-1/10/2021,18:43:00,0.126666667,63.593
-1/10/2021,18:44:00,0.016666667,67.14
-1/10/2021,18:45:00,0.086222222,65.5138
-1/10/2021,18:46:00,0.084444444,64.163
-1/10/2021,18:47:00,0.044,67.1616
-1/10/2021,18:48:00,0.084444444,64.353
-1/10/2021,18:49:00,0.085333333,65.3184
-1/10/2021,18:50:00,0.087111111,66.5812
-1/10/2021,18:51:00,0.085333333,65.2224
-1/10/2021,18:52:00,0.059277778,65.9988
-1/10/2021,18:53:00,0.037333333,65.3184
-1/10/2021,18:54:00,0.080833333,65.9018
-1/10/2021,18:55:00,0.037333333,65.3184
-1/10/2021,18:56:00,0.038111111,66.6792
-1/10/2021,18:57:00,0.038111111,66.6792
-1/10/2021,18:58:00,-0.010666667,65.4144
-1/10/2021,18:59:00,-0.016666667,68.24
-1/10/2021,19:00:00,-0.059277778,66.1928
-1/10/2021,19:01:00,-0.058055556,64.828
-1/10/2021,19:02:00,-0.061111111,68.64
-1/10/2021,19:03:00,-0.0605,68.8446
-1/10/2021,19:04:00,-0.064,66.2784
-1/10/2021,19:05:00,-0.059888889,67.4632
-1/10/2021,19:06:00,-0.0605,68.2506
-1/10/2021,19:07:00,-0.059888889,67.4632
-1/10/2021,19:08:00,-0.058666667,65.9904
-1/10/2021,19:09:00,-0.065333333,67.4632
-1/10/2021,19:10:00,-0.059277778,66.6778
-1/10/2021,19:11:00,-0.058055556,65.493
-1/10/2021,19:12:00,-0.059888889,67.8552
-1/10/2021,19:13:00,-0.065333333,67.6592
-1/10/2021,19:14:00,-0.1155,68.3496
-1/10/2021,19:15:00,-0.107777778,66.9688
-1/10/2021,19:16:00,-0.161111111,69.14
-1/10/2021,19:17:00,-0.157888889,67.7572
-1/10/2021,19:18:00,-0.209,68.5476
-1/10/2021,19:19:00,-0.211111111,69.14
-1/10/2021,19:20:00,-0.210166667,67.1628
-1/10/2021,19:21:00,-0.209,68.5476
-1/10/2021,19:22:00,-0.253277778,67.2598
-1/10/2021,19:23:00,-0.2585,68.6466
-1/10/2021,19:24:00,-0.266666667,69.34
-1/10/2021,19:25:00,-0.308,68.7456
-1/10/2021,19:26:00,-0.298666667,66.7584
-1/10/2021,19:27:00,-0.310333333,68.1492
-1/10/2021,19:28:00,-0.298666667,66.7584
-1/10/2021,19:29:00,-0.3135,68.8446
-1/10/2021,19:30:00,-0.301777778,67.5508
-1/10/2021,19:31:00,-0.308,69.1416
-1/10/2021,19:32:00,-0.295555556,66.443
-1/10/2021,19:33:00,-0.353888889,68.8352
-1/10/2021,19:34:00,-0.350277778,68.3268
-1/10/2021,19:35:00,-0.316666667,70.24
-1/10/2021,19:36:00,-0.301777778,68.2298
-1/10/2021,19:37:00,-0.295555556,66.633
-1/10/2021,19:38:00,-0.301777778,68.0358
-1/10/2021,19:39:00,-0.296388889,67.9388
-1/10/2021,19:40:00,-0.301777778,67.9388
-1/10/2021,19:41:00,-0.298666667,67.1424
-1/10/2021,19:42:00,-0.3135,69.3396
-1/10/2021,19:43:00,-0.300833333,66.633
-1/10/2021,19:44:00,-0.311111111,70.14
-1/10/2021,19:45:00,-0.308,69.4386
-1/10/2021,19:46:00,-0.298666667,67.3344
-1/10/2021,19:47:00,-0.298666667,67.3344
-1/10/2021,19:48:00,-0.332111111,68.7372
-1/10/2021,19:49:00,-0.304888889,68.8352
-1/10/2021,19:50:00,-0.298666667,67.5264
-1/10/2021,19:51:00,-0.343055556,66.918
-1/10/2021,19:52:00,-0.346666667,67.6224
-1/10/2021,19:53:00,-0.361111111,70.44
-1/10/2021,19:54:00,-0.346666667,67.7184
-1/10/2021,19:55:00,-0.346666667,67.7184
-1/10/2021,19:56:00,-0.359333333,69.1292
-1/10/2021,19:57:00,-0.3575,69.9336
-1/10/2021,19:58:00,-0.361111111,70.64
-1/10/2021,19:59:00,-0.390555556,67.013
-1/10/2021,20:00:00,-0.402888889,69.1292
-1/10/2021,20:01:00,-0.448,67.7184
-1/10/2021,20:02:00,-0.398777778,68.6178
-1/10/2021,20:03:00,-0.451888889,69.6192
-1/10/2021,20:04:00,-0.447277778,68.8118
-1/10/2021,20:05:00,-0.500888889,69.5212
-1/10/2021,20:06:00,-0.5115,70.2306
-1/10/2021,20:07:00,-0.544,68.1984
-1/10/2021,20:08:00,-0.549888889,69.531
-1/10/2021,20:09:00,-0.611111111,71.04
-1/10/2021,20:10:00,-0.5995,70.4286
-1/10/2021,20:11:00,-0.601666667,67.678
-1/10/2021,20:12:00,-0.666666667,71.25
-1/10/2021,20:13:00,-0.704,70.8246
-1/10/2021,20:14:00,-0.704,71.0226
-1/10/2021,20:15:00,-0.689777778,69.4908
-1/10/2021,20:16:00,-0.723055556,68.153
-1/10/2021,20:17:00,-0.730666667,68.8704
-1/10/2021,20:18:00,-0.797555556,69.6848
-1/10/2021,20:19:00,-0.811111111,71.74
-1/10/2021,20:20:00,-0.786777778,69.5878
-1/10/2021,20:21:00,-0.8085,71.0226
-1/10/2021,20:22:00,-0.811111111,71.84
-1/10/2021,20:23:00,-0.835277778,69.5878
-1/10/2021,20:24:00,-0.818055556,68.153
-1/10/2021,20:25:00,-0.818055556,68.248
-1/10/2021,20:26:00,-0.88,68.9664
-1/10/2021,20:27:00,-0.911111111,71.94
-1/10/2021,20:28:00,-0.883777778,69.7818
-1/10/2021,20:29:00,-0.928,69.1584
-1/10/2021,20:30:00,-0.922666667,69.1584
-1/10/2021,20:31:00,-0.928,69.3504
-1/10/2021,20:32:00,-0.965833333,68.533
-1/10/2021,20:33:00,-1.012,71.3097
-1/10/2021,20:34:00,-1.011111111,72.04
-1/10/2021,20:35:00,-1.013333333,68.723
-1/10/2021,20:36:00,-1.045333333,70.7952
-1/10/2021,20:37:00,-1.088888889,70.8932
-1/10/2021,20:38:00,-1.072,69.5424
-1/10/2021,20:39:00,-1.094333333,71.0892
-1/10/2021,20:40:00,-1.131666667,70.5578
-1/10/2021,20:41:00,-1.155,72.1116
-1/10/2021,20:42:00,-1.155833333,69.293
-1/10/2021,20:43:00,-1.216666667,73.14
-1/10/2021,20:44:00,-1.192333333,71.5792
-1/10/2021,20:45:00,-1.216,70.1184
-1/10/2021,20:46:00,-1.266666667,73.14
-1/10/2021,20:47:00,-1.266666667,73.34
-1/10/2021,20:48:00,-1.290333333,71.8732
-1/10/2021,20:49:00,-1.277166667,71.4308
-1/10/2021,20:50:00,-1.377777778,73.54
-1/10/2021,20:51:00,-1.290333333,72.3632
-1/10/2021,20:52:00,-1.361111111,73.84
-1/10/2021,20:53:00,-1.250833333,70.243
-1/10/2021,20:54:00,-1.264,70.8864
-1/10/2021,20:55:00,-1.314888889,71.5278
-1/10/2021,20:56:00,-1.361111111,73.84
-1/10/2021,20:57:00,-1.361111111,73.84
-1/10/2021,20:58:00,-1.331055556,71.6248
-1/10/2021,20:59:00,-1.312,70.9824
-1/10/2021,21:00:00,-1.36,70.8864
-1/10/2021,21:01:00,-1.388333333,72.5886
-1/10/2021,21:02:00,-1.393777778,72.5592
-1/10/2021,21:03:00,-1.374166667,71.8188
-1/10/2021,21:04:00,-1.4025,73.4976
-1/10/2021,21:05:00,-1.4025,73.4976
-1/10/2021,21:06:00,-1.345833333,70.718
-1/10/2021,21:07:00,-1.408,71.5584
-1/10/2021,21:08:00,-1.442777778,73.0492
-1/10/2021,21:09:00,-1.374166667,72.4008
-1/10/2021,21:10:00,-1.413333333,71.6448
-1/10/2021,21:11:00,-1.452,73.7946
-1/10/2021,21:12:00,-1.471166667,72.2068
-1/10/2021,21:13:00,-1.422666667,72.4978
-1/10/2021,21:14:00,-1.424,71.8368
-1/10/2021,21:15:00,-1.516666667,74.94
-1/10/2021,21:16:00,-1.465777778,72.5948
-1/10/2021,21:17:00,-1.440833333,71.383
-1/10/2021,21:18:00,-1.456,72.1344
-1/10/2021,21:19:00,-1.516666667,74.93
-1/10/2021,21:20:00,-1.519666667,72.8858
-1/10/2021,21:21:00,-1.504,72.0384
-1/10/2021,21:22:00,-1.535333333,73.4314
-1/10/2021,21:23:00,-1.509333333,72.0384
-1/10/2021,21:24:00,-1.535833333,71.288
-1/10/2021,21:25:00,-1.65,74.2797
-1/10/2021,21:26:00,-1.6,72.1344
-1/10/2021,21:27:00,-1.633333333,73.6274
-1/10/2021,21:28:00,-1.630833333,71.478
-1/10/2021,21:29:00,-1.6995,74.5866
-1/10/2021,21:30:00,-1.665166667,73.0798
-1/10/2021,21:31:00,-1.749,74.6757
-1/10/2021,21:32:00,-1.648,72.9024
-1/10/2021,21:33:00,-1.7545,74.9826
-1/10/2021,21:34:00,-1.766666667,75.64
-1/10/2021,21:35:00,-1.705,74.9826
-1/10/2021,21:36:00,-1.719055556,73.3611
-1/10/2021,21:37:00,-1.766666667,75.64
-1/10/2021,21:38:00,-1.683611111,71.7535
-1/10/2021,21:39:00,-1.725833333,71.858
-1/10/2021,21:40:00,-1.816666667,75.74
-1/10/2021,21:41:00,-1.804,74.9727
-1/10/2021,21:42:00,-1.780333333,74.2252
-1/10/2021,21:43:00,-1.7985,74.8737
-1/10/2021,21:44:00,-1.725833333,71.8485
-1/10/2021,21:45:00,-1.725833333,71.953
-1/10/2021,21:46:00,-1.744,72.7104
-1/10/2021,21:47:00,-1.7985,75.1806
-1/10/2021,21:48:00,-1.780333333,74.3232
-1/10/2021,21:49:00,-1.744,72.8928
-1/10/2021,21:50:00,-1.749333333,73.0944
-1/10/2021,21:51:00,-1.719055556,73.8558
-1/10/2021,21:52:00,-1.713666667,73.9528
-1/10/2021,21:53:00,-1.636111111,72.4185
-1/10/2021,21:54:00,-1.665166667,73.8461
-1/10/2021,21:55:00,-1.682333333,74.5192
-1/10/2021,21:56:00,-1.636111111,72.3235
-1/10/2021,21:57:00,-1.583333333,72.3235
-1/10/2021,21:58:00,-1.633333333,74.5094
-1/10/2021,21:59:00,-1.552,72.9984
-1/10/2021,22:00:00,-1.562,75.3687
-1/10/2021,22:01:00,-1.525055556,73.8461
-1/10/2021,22:02:00,-1.488333333,72.238
-1/10/2021,22:03:00,-1.471166667,73.6618
-1/10/2021,22:04:00,-1.486333333,74.3232
-1/10/2021,22:05:00,-1.472222222,76.03
-1/10/2021,22:06:00,-1.36,72.8064
-1/10/2021,22:07:00,-1.374166667,73.4678
-1/10/2021,22:08:00,-1.317333333,72.5088
-1/10/2021,22:09:00,-1.325666667,73.2738
-1/10/2021,22:10:00,-1.316666667,75.34
-1/10/2021,22:11:00,-1.298,74.4876
-1/10/2021,22:12:00,-1.264,72.2304
-1/10/2021,22:13:00,-1.316666667,75.14
-1/10/2021,22:14:00,-1.3035,74.2896
-1/10/2021,22:15:00,-1.277166667,72.7888
-1/10/2021,22:16:00,-1.311111111,75.04
-1/10/2021,22:17:00,-1.221333333,71.9328
-1/10/2021,22:18:00,-1.2485,74.1906
-1/10/2021,22:19:00,-1.203333333,71.288
-1/10/2021,22:20:00,-1.254,74.1906
-1/10/2021,22:21:00,-1.254,74.2896
-1/10/2021,22:22:00,-1.228666667,72.6821
-1/10/2021,22:23:00,-1.228666667,72.6918
-1/10/2021,22:24:00,-1.216,71.9424
-1/10/2021,22:25:00,-1.203333333,71.098
-1/10/2021,22:26:00,-1.266666667,74.84
-1/10/2021,22:27:00,-1.228666667,72.5948
-1/10/2021,22:28:00,-1.221333333,71.8464
-1/10/2021,22:29:00,-1.261111111,74.84
-1/10/2021,22:30:00,-1.216,71.7504
-1/10/2021,22:31:00,-1.254,74.0916
-1/10/2021,22:32:00,-1.216666667,74.74
-1/10/2021,22:33:00,-1.180166667,72.4978
-1/10/2021,22:34:00,-1.168,71.6544
-1/10/2021,22:35:00,-1.168,71.6544
-1/10/2021,22:36:00,-1.216666667,74.64
-1/10/2021,22:37:00,-1.180166667,72.4008
-1/10/2021,22:38:00,-1.150555556,70.813
-1/10/2021,22:39:00,-1.216666667,74.64
-1/10/2021,22:40:00,-1.180166667,72.4008
-1/10/2021,22:41:00,-1.155833333,70.908
-1/10/2021,22:42:00,-1.168,71.5584
-1/10/2021,22:43:00,-1.168,71.4624
-1/10/2021,22:44:00,-1.168,71.6544
-1/10/2021,22:45:00,-1.192333333,73.1472
-1/10/2021,22:46:00,-1.180166667,72.4978
-1/10/2021,22:47:00,-1.150555556,71.003
-1/10/2021,22:48:00,-1.203333333,71.003
-1/10/2021,22:49:00,-1.228666667,72.3911
-1/10/2021,22:50:00,-1.203333333,71.003
-1/10/2021,22:51:00,-1.241333333,73.2452
-1/10/2021,22:52:00,-1.254,73.9926
-1/10/2021,22:53:00,-1.203333333,71.003
-1/10/2021,22:54:00,-1.316666667,74.84
-1/10/2021,22:55:00,-1.264,71.9424
-1/10/2021,22:56:00,-1.277166667,72.7888
-1/10/2021,22:57:00,-1.298,74.3886
-1/10/2021,22:58:00,-1.264,72.1344
-1/10/2021,22:59:00,-1.245555556,71.383
-1/10/2021,23:00:00,-1.250833333,71.288
-1/10/2021,23:01:00,-1.290333333,73.5392
-1/10/2021,23:02:00,-1.298333333,71.288
-1/10/2021,23:03:00,-1.264,72.1344
-1/10/2021,23:04:00,-1.271777778,72.8858
-1/10/2021,23:05:00,-1.303611111,71.288
-1/10/2021,23:06:00,-1.353,74.2896
-1/10/2021,23:07:00,-1.320277778,72.7888
-1/10/2021,23:08:00,-1.339333333,73.6372
-1/10/2021,23:09:00,-1.306666667,72.1344
-1/10/2021,23:10:00,-1.4025,74.2896
-1/10/2021,23:11:00,-1.353,74.2896
-1/10/2021,23:12:00,-1.368777778,72.8858
-1/10/2021,23:13:00,-1.416666667,75.24
-1/10/2021,23:14:00,-1.345833333,71.478
-1/10/2021,23:15:00,-1.374166667,73.0798
-1/10/2021,23:16:00,-1.4025,74.5866
-1/10/2021,23:17:00,-1.461111111,75.24
-1/10/2021,23:18:00,-1.466666667,75.24
-1/10/2021,23:19:00,-1.461111111,75.14
-1/10/2021,23:20:00,-1.408,72.3264
-1/10/2021,23:21:00,-1.452,74.6856
-1/10/2021,23:22:00,-1.456,72.4224
-1/10/2021,23:23:00,-1.5015,74.7846
-1/10/2021,23:24:00,-1.446111111,71.8485
-1/10/2021,23:25:00,-1.516666667,75.74
-1/10/2021,23:26:00,-1.440833333,71.858
-1/10/2021,23:27:00,-1.522222222,75.54
-1/10/2021,23:28:00,-1.504,72.6144
-1/10/2021,23:29:00,-1.551,74.9826
-1/10/2021,23:30:00,-1.551,75.0816
-1/10/2021,23:31:00,-1.498888889,72.143
-1/10/2021,23:32:00,-1.535333333,74.4212
-1/10/2021,23:33:00,-1.535833333,72.143
-1/10/2021,23:34:00,-1.535833333,72.333
-1/10/2021,23:35:00,-1.568166667,73.8558
-1/10/2021,23:36:00,-1.661,75.4677
-1/10/2021,23:37:00,-1.616666667,73.9528
-1/10/2021,23:38:00,-1.568166667,73.9528
-1/10/2021,23:39:00,-1.616666667,76.24
-1/10/2021,23:40:00,-1.584333333,74.7152
-1/10/2021,23:41:00,-1.552,73.2864
-1/10/2021,23:42:00,-1.616666667,76.43
-1/10/2021,23:43:00,-1.616666667,76.44
-1/10/2021,23:44:00,-1.557333333,73.2864
-1/10/2021,23:45:00,-1.541111111,72.428
-1/10/2021,23:46:00,-1.65,75.4776
-1/10/2021,23:47:00,-1.583333333,72.523
-1/10/2021,23:48:00,-1.6,73.1904
-1/10/2021,23:49:00,-1.670555556,74.2438
-1/10/2021,23:50:00,-1.633333333,75.0092
-1/10/2021,23:51:00,-1.625555556,72.808
-1/10/2021,23:52:00,-1.716666667,76.74
-1/10/2021,23:53:00,-1.630833333,72.903
-1/10/2021,23:54:00,-1.672222222,76.84
-1/10/2021,23:55:00,-1.682333333,75.4012
-1/10/2021,23:56:00,-1.676888889,75.4012
-1/10/2021,23:57:00,-1.670555556,74.7288
-1/10/2021,23:58:00,-1.665166667,74.8258
-1/10/2021,23:59:00,-1.6,74.2464
-1/11/2021,0:00:00,-1.6,74.2464
-1/11/2021,0:01:00,-1.6,74.2464
-1/11/2021,0:02:00,-1.616666667,74.9228
-1/11/2021,0:03:00,-1.589777778,75.6952
-1/11/2021,0:04:00,-1.568166667,74.9228
-1/11/2021,0:05:00,-1.552,74.1504
-1/11/2021,0:06:00,-1.6005,76.2696
-1/11/2021,0:07:00,-1.535833333,73.188
-1/11/2021,0:08:00,-1.552,73.9584
-1/11/2021,0:09:00,-1.504,73.9584
-1/11/2021,0:10:00,-1.488333333,73.188
-1/11/2021,0:11:00,-1.535833333,73.093
-1/11/2021,0:12:00,-1.551,76.2696
-1/11/2021,0:13:00,-1.514277778,74.7288
-1/11/2021,0:14:00,-1.525055556,74.7288
-1/11/2021,0:15:00,-1.535333333,75.4992
-1/11/2021,0:16:00,-1.516666667,77.04
-1/11/2021,0:17:00,-1.440833333,73.093
-1/11/2021,0:18:00,-1.496,76.0716
-1/11/2021,0:19:00,-1.471166667,74.4378
-1/11/2021,0:20:00,-1.486333333,75.2052
-1/11/2021,0:21:00,-1.440833333,72.903
-1/11/2021,0:22:00,-1.5015,75.7746
-1/11/2021,0:23:00,-1.440833333,72.713
-1/11/2021,0:24:00,-1.456,73.4784
-1/11/2021,0:25:00,-1.452,75.7746
-1/11/2021,0:26:00,-1.466666667,76.54
-1/11/2021,0:27:00,-1.422666667,74.2438
-1/11/2021,0:28:00,-1.492722222,74.2438
-1/11/2021,0:29:00,-1.374166667,74.1468
-1/11/2021,0:30:00,-1.4025,75.5766
-1/11/2021,0:31:00,-1.4025,75.5766
-1/11/2021,0:32:00,-1.4025,75.6756
-1/11/2021,0:33:00,-1.388333333,74.9112
-1/11/2021,0:34:00,-1.345833333,72.523
-1/11/2021,0:35:00,-1.4025,75.4776
-1/11/2021,0:36:00,-1.354666667,73.2864
-1/11/2021,0:37:00,-1.366666667,76.44
-1/11/2021,0:38:00,-1.353,75.6756
-1/11/2021,0:39:00,-1.353,75.6063
-1/11/2021,0:40:00,-1.366666667,76.34
-1/11/2021,0:41:00,-1.366666667,76.24
-1/11/2021,0:42:00,-1.320277778,73.8558
-1/11/2021,0:43:00,-1.320277778,73.8558
-1/11/2021,0:44:00,-1.312,72.9984
-1/11/2021,0:45:00,-1.325666667,73.7588
-1/11/2021,0:46:00,-1.306666667,73.0944
-1/11/2021,0:47:00,-1.264,72.9984
-1/11/2021,0:48:00,-1.277166667,73.7588
-1/11/2021,0:49:00,-1.258666667,72.9024
-1/11/2021,0:50:00,-1.311111111,75.84
-1/11/2021,0:51:00,-1.269333333,72.7104
-1/11/2021,0:52:00,-1.245555556,71.858
-1/11/2021,0:53:00,-1.250833333,71.858
-1/11/2021,0:54:00,-1.258666667,72.7104
-1/11/2021,0:55:00,-1.298,75.0816
-1/11/2021,0:56:00,-1.250833333,72.143
-1/11/2021,0:57:00,-1.250833333,72.048
-1/11/2021,0:58:00,-1.3035,74.9826
-1/11/2021,0:59:00,-1.290333333,74.0292
-1/11/2021,1:00:00,-1.198055556,71.763
-1/11/2021,1:01:00,-1.228666667,73.1768
-1/11/2021,1:02:00,-1.228666667,73.0798
-1/11/2021,1:03:00,-1.254,74.5866
-1/11/2021,1:04:00,-1.241333333,73.7352
-1/11/2021,1:05:00,-1.216,72.2304
-1/11/2021,1:06:00,-1.221333333,72.3264
-1/11/2021,1:07:00,-1.241333333,73.8332
-1/11/2021,1:08:00,-1.180166667,73.1768
-1/11/2021,1:09:00,-1.228666667,73.0798
-1/11/2021,1:10:00,-1.219166667,71.573
-1/11/2021,1:11:00,-1.2045,74.6856
-1/11/2021,1:12:00,-1.174777778,73.0798
-1/11/2021,1:13:00,-1.216666667,75.44
-1/11/2021,1:14:00,-1.211111111,75.44
-1/11/2021,1:15:00,-1.186888889,73.8332
-1/11/2021,1:16:00,-1.199,74.4876
-1/11/2021,1:17:00,-1.186888889,73.7352
-1/11/2021,1:18:00,-1.162666667,72.4224
-1/11/2021,1:19:00,-1.155833333,71.763
-1/11/2021,1:20:00,-1.199,74.7846
-1/11/2021,1:21:00,-1.155833333,71.763
-1/11/2021,1:22:00,-1.161111111,75.54
-1/11/2021,1:23:00,-1.113611111,71.763
-1/11/2021,1:24:00,-1.143333333,74.0292
-1/11/2021,1:25:00,-1.137888889,73.8332
-1/11/2021,1:26:00,-1.155,74.2896
-1/11/2021,1:27:00,-1.161111111,75.04
-1/11/2021,1:28:00,-1.137888889,73.4412
-1/11/2021,1:29:00,-1.108333333,71.098
-1/11/2021,1:30:00,-1.114666667,71.7504
-1/11/2021,1:31:00,-1.166666667,74.74
-1/11/2021,1:32:00,-1.157333333,71.7504
-1/11/2021,1:33:00,-1.114666667,71.6544
-1/11/2021,1:34:00,-1.126277778,72.4105
-1/11/2021,1:35:00,-1.108333333,70.908
-1/11/2021,1:36:00,-1.161111111,74.74
-1/11/2021,1:37:00,-1.108333333,71.003
-1/11/2021,1:38:00,-1.161111111,74.64
-1/11/2021,1:39:00,-1.1495,73.9926
-1/11/2021,1:40:00,-1.161111111,74.74
-1/11/2021,1:41:00,-1.143333333,73.3432
-1/11/2021,1:42:00,-1.148777778,73.4412
-1/11/2021,1:43:00,-1.155,74.1906
-1/11/2021,1:44:00,-1.161111111,74.94
-1/11/2021,1:45:00,-1.137888889,73.4412
-1/11/2021,1:46:00,-1.060833333,71.098
-1/11/2021,1:47:00,-1.055555556,71.098
-1/11/2021,1:48:00,-1.116666667,74.74
-1/11/2021,1:49:00,-1.060833333,71.1075
-1/11/2021,1:50:00,-1.055555556,71.003
-1/11/2021,1:51:00,-1.1055,73.9926
-1/11/2021,1:52:00,-1.111111111,74.64
-1/11/2021,1:53:00,-1.060833333,70.718
-1/11/2021,1:54:00,-1.077777778,72.2068
-1/11/2021,1:55:00,-1.066666667,71.4624
-1/11/2021,1:56:00,-1.104722222,72.1098
-1/11/2021,1:57:00,-1.018666667,71.2704
-1/11/2021,1:58:00,-1.055555556,70.433
-1/11/2021,1:59:00,-1.008055556,70.3475
-1/11/2021,2:00:00,-1.034666667,71.8188
-1/11/2021,2:01:00,-1.018666667,70.9824
-1/11/2021,2:02:00,-1.0505,73.2006
-1/11/2021,2:03:00,-1.034666667,71.6248
-1/11/2021,2:04:00,-1.061111111,73.84
-1/11/2021,2:05:00,-1.001,73.0026
-1/11/2021,2:06:00,-0.960555556,70.433
-1/11/2021,2:07:00,-0.996333333,72.4612
-1/11/2021,2:08:00,-1.011111111,73.74
-1/11/2021,2:09:00,-0.996333333,72.1672
-1/11/2021,2:10:00,-0.965833333,70.053
-1/11/2021,2:11:00,-0.980777778,71.3338
-1/11/2021,2:12:00,-0.922666667,70.5024
-1/11/2021,2:13:00,-0.941888889,72.0692
-1/11/2021,2:14:00,-0.932277778,71.2368
-1/11/2021,2:15:00,-0.9625,72.6066
-1/11/2021,2:16:00,-0.961111111,73.24
-1/11/2021,2:17:00,-0.9515,72.4086
-1/11/2021,2:18:00,-0.932277778,70.8488
-1/11/2021,2:19:00,-0.922666667,70.1184
-1/11/2021,2:20:00,-0.957,72.1116
-1/11/2021,2:21:00,-0.88,70.0224
-1/11/2021,2:22:00,-0.916666667,73.04
-1/11/2021,2:23:00,-0.902,72.2106
-1/11/2021,2:24:00,-0.9075,72.1116
-1/11/2021,2:25:00,-0.916666667,72.94
-1/11/2021,2:26:00,-0.916666667,72.74
-1/11/2021,2:27:00,-0.818055556,69.198
-1/11/2021,2:28:00,-0.865555556,69.293
-1/11/2021,2:29:00,-0.883777778,70.7518
-1/11/2021,2:30:00,-0.911111111,72.95
-1/11/2021,2:31:00,-0.983333333,72.94
-1/11/2021,2:32:00,-0.874666667,70.0224
-1/11/2021,2:33:00,-0.865555556,69.2075
-1/11/2021,2:34:00,-0.941888889,71.5792
-1/11/2021,2:35:00,-0.9515,72.4086
-1/11/2021,2:36:00,-0.913055556,69.578
-1/11/2021,2:37:00,-0.966666667,73.34
-1/11/2021,2:38:00,-0.932277778,71.0428
-1/11/2021,2:39:00,-0.947333333,71.8732
-1/11/2021,2:40:00,-0.922666667,70.4064
-1/11/2021,2:41:00,-0.913055556,69.673
-1/11/2021,2:42:00,-0.933333333,70.3104
-1/11/2021,2:43:00,-0.9515,72.5175
-1/11/2021,2:44:00,-0.913055556,69.578
-1/11/2021,2:45:00,-0.913055556,69.483
-1/11/2021,2:46:00,-0.961111111,73.14
-1/11/2021,2:47:00,-0.966666667,73.14
-1/11/2021,2:48:00,-0.932277778,70.9458
-1/11/2021,2:49:00,-0.922666667,70.3104
-1/11/2021,2:50:00,-0.916666667,73.34
-1/11/2021,2:51:00,-0.916666667,73.34
-1/11/2021,2:52:00,-0.892888889,71.8732
-1/11/2021,2:53:00,-0.902,72.6066
-1/11/2021,2:54:00,-0.883777778,71.1398
-1/11/2021,2:55:00,-0.88,70.2144
-1/11/2021,2:56:00,-0.826666667,70.1184
-1/11/2021,2:57:00,-0.894555556,70.9458
-1/11/2021,2:58:00,-0.892888889,71.7752
-1/11/2021,2:59:00,-0.916666667,73.44
-1/11/2021,3:00:00,-0.826666667,70.4064
-1/11/2021,3:01:00,-0.8525,72.6066
-1/11/2021,3:02:00,-0.858,72.5076
-1/11/2021,3:03:00,-0.861111111,73.14
-1/11/2021,3:04:00,-0.892888889,71.6772
-1/11/2021,3:05:00,-0.892888889,71.7752
-1/11/2021,3:06:00,-0.865555556,69.768
-1/11/2021,3:07:00,-0.969111111,71.8732
-1/11/2021,3:08:00,-0.874666667,70.4064
-1/11/2021,3:09:00,-0.916666667,73.34
-1/11/2021,3:10:00,-0.902,72.6066
-1/11/2021,3:11:00,-0.9075,72.8046
-1/11/2021,3:12:00,-0.889166667,71.3338
-1/11/2021,3:13:00,-0.885333333,70.4064
-1/11/2021,3:14:00,-0.892888889,71.8732
-1/11/2021,3:15:00,-0.8965,72.5076
-1/11/2021,3:16:00,-0.902,72.4086
-1/11/2021,3:17:00,-0.911111111,73.34
-1/11/2021,3:18:00,-0.88,70.4064
-1/11/2021,3:19:00,-0.916666667,73.34
-1/11/2021,3:20:00,-0.865555556,69.5875
-1/11/2021,3:21:00,-0.916666667,73.44
-1/11/2021,3:22:00,-0.865555556,69.5875
-1/11/2021,3:23:00,-0.858,72.4086
-1/11/2021,3:24:00,-0.843888889,71.7752
-1/11/2021,3:25:00,-0.861111111,73.24
-1/11/2021,3:26:00,-0.826666667,70.3104
-1/11/2021,3:27:00,-0.835277778,71.1398
-1/11/2021,3:28:00,-0.854777778,71.8732
-1/11/2021,3:29:00,-0.826666667,70.4064
-1/11/2021,3:30:00,-0.818055556,69.768
-1/11/2021,3:31:00,-0.843888889,71.8732
-1/11/2021,3:32:00,-0.832,70.4064
-1/11/2021,3:33:00,-0.823333333,69.673
-1/11/2021,3:34:00,-0.866666667,73.44
-1/11/2021,3:35:00,-0.8525,72.7056
-1/11/2021,3:36:00,-0.826666667,70.3104
-1/11/2021,3:37:00,-0.818055556,69.578
-1/11/2021,3:38:00,-0.861111111,73.24
-1/11/2021,3:39:00,-0.818055556,69.483
-1/11/2021,3:40:00,-0.803,72.3096
-1/11/2021,3:41:00,-0.811111111,72.94
-1/11/2021,3:42:00,-0.816666667,72.84
-1/11/2021,3:43:00,-0.778666667,69.936
-1/11/2021,3:44:00,-0.816666667,72.84
-1/11/2021,3:45:00,-0.811111111,72.85
-1/11/2021,3:46:00,-0.784,69.8304
-1/11/2021,3:47:00,-0.803,72.0126
-1/11/2021,3:48:00,-0.786777778,70.5675
-1/11/2021,3:49:00,-0.8085,72.1116
-1/11/2021,3:50:00,-0.800333333,71.3832
-1/11/2021,3:51:00,-0.811111111,72.74
-1/11/2021,3:52:00,-0.786777778,70.5578
-1/11/2021,3:53:00,-0.778666667,69.84
-1/11/2021,3:54:00,-0.794888889,71.5792
-1/11/2021,3:55:00,-0.786777778,70.9458
-1/11/2021,3:56:00,-0.765277778,69.483
-1/11/2021,3:57:00,-0.784,70.1184
-1/11/2021,3:58:00,-0.794888889,71.491
-1/11/2021,3:59:00,-0.794888889,71.491
-1/11/2021,4:00:00,-0.811111111,72.94
-1/11/2021,4:01:00,-0.803,72.2205
-1/11/2021,4:02:00,-0.816666667,73.04
-1/11/2021,4:03:00,-0.766666667,72.94
-1/11/2021,4:04:00,-0.803,72.3096
-1/11/2021,4:05:00,-0.723055556,69.388
-1/11/2021,4:06:00,-0.723055556,69.293
-1/11/2021,4:07:00,-0.761111111,73.04
-1/11/2021,4:08:00,-0.786777778,70.7518
-1/11/2021,4:09:00,-0.778666667,69.936
-1/11/2021,4:10:00,-0.738277778,70.7518
-1/11/2021,4:11:00,-0.738277778,70.7615
-1/11/2021,4:12:00,-0.730666667,70.0224
-1/11/2021,4:13:00,-0.7535,72.0126
-1/11/2021,4:14:00,-0.730666667,69.8304
-1/11/2021,4:15:00,-0.711111111,72.75
-1/11/2021,4:16:00,-0.745888889,71.2852
-1/11/2021,4:17:00,-0.675555556,69.1125
-1/11/2021,4:18:00,-0.682666667,69.744
-1/11/2021,4:19:00,-0.7095,72.0126
-1/11/2021,4:20:00,-0.682666667,70.0224
-1/11/2021,4:21:00,-0.711111111,73.24
-1/11/2021,4:22:00,-0.696888889,71.4812
-1/11/2021,4:23:00,-0.696888889,71.2852
-1/11/2021,4:24:00,-0.781,72.0126
-1/11/2021,4:25:00,-0.695166667,70.5675
-1/11/2021,4:26:00,-0.7095,71.8146
-1/11/2021,4:27:00,-0.682666667,69.648
-1/11/2021,4:28:00,-0.696888889,71.1872
-1/11/2021,4:29:00,-0.732888889,70.4608
-1/11/2021,4:30:00,-0.7535,72.0126
-1/11/2021,4:31:00,-0.704,71.9136
-1/11/2021,4:32:00,-0.696888889,71.2852
-1/11/2021,4:33:00,-0.711111111,72.64
-1/11/2021,4:34:00,-0.745888889,71.1872
-1/11/2021,4:35:00,-0.761111111,72.74
-1/11/2021,4:36:00,-0.689777778,70.6548
-1/11/2021,4:37:00,-0.725333333,69.936
-1/11/2021,4:38:00,-0.738277778,70.7518
-1/11/2021,4:39:00,-0.728333333,69.388
-1/11/2021,4:40:00,-0.738277778,70.8585
-1/11/2021,4:41:00,-0.766666667,72.85
-1/11/2021,4:42:00,-0.745888889,71.3832
-1/11/2021,4:43:00,-0.738277778,70.7518
-1/11/2021,4:44:00,-0.761111111,72.94
-1/11/2021,4:45:00,-0.723055556,69.1125
-1/11/2021,4:46:00,-0.738277778,70.7518
-1/11/2021,4:47:00,-0.7535,72.2106
-1/11/2021,4:48:00,-0.723055556,69.293
-1/11/2021,4:49:00,-0.7535,72.2106
-1/11/2021,4:50:00,-0.761111111,72.85
-1/11/2021,4:51:00,-0.745888889,71.5792
-1/11/2021,4:52:00,-0.738277778,70.8585
-1/11/2021,4:53:00,-0.7535,72.3195
-1/11/2021,4:54:00,-0.738277778,70.7518
-1/11/2021,4:55:00,-0.745888889,71.491
-1/11/2021,4:56:00,-0.723055556,69.3025
-1/11/2021,4:57:00,-0.7755,72.2205
-1/11/2021,4:58:00,-0.803,72.1116
-1/11/2021,4:59:00,-0.740444444,71.589
-1/11/2021,5:00:00,-0.816666667,73.04
-1/11/2021,5:01:00,-0.745888889,71.6772
-1/11/2021,5:02:00,-0.778666667,70.2144
-1/11/2021,5:03:00,-0.730666667,70.1184
-1/11/2021,5:04:00,-0.778666667,70.224
-1/11/2021,5:05:00,-0.723055556,68.913
-1/11/2021,5:06:00,-0.786777778,70.5578
-1/11/2021,5:07:00,-0.786777778,70.7518
-1/11/2021,5:08:00,-0.738277778,70.9555
-1/11/2021,5:09:00,-0.728333333,69.483
-1/11/2021,5:10:00,-0.730666667,70.1184
-1/11/2021,5:11:00,-0.745888889,71.4812
-1/11/2021,5:12:00,-0.751333333,71.5792
-1/11/2021,5:13:00,-0.761111111,73.04
-1/11/2021,5:14:00,-0.745888889,71.4812
-1/11/2021,5:15:00,-0.761111111,72.75
-1/11/2021,5:16:00,-0.766666667,72.64
-1/11/2021,5:17:00,-0.784,69.84
-1/11/2021,5:18:00,-0.745888889,71.5792
-1/11/2021,5:19:00,-0.723055556,69.2075
-1/11/2021,5:20:00,-0.725333333,69.936
-1/11/2021,5:21:00,-0.723055556,69.198
-1/11/2021,5:22:00,-0.730666667,69.936
-1/11/2021,5:23:00,-0.761111111,72.74
-1/11/2021,5:24:00,-0.745888889,71.0892
-1/11/2021,5:25:00,-0.723055556,68.9225
-1/11/2021,5:26:00,-0.723055556,68.818
-1/11/2021,5:27:00,-0.723055556,68.8275
-1/11/2021,5:28:00,-0.761111111,72.64
-1/11/2021,5:29:00,-0.738277778,70.5578
-1/11/2021,5:30:00,-0.738277778,70.5578
-1/11/2021,5:31:00,-0.7535,72.0126
-1/11/2021,5:32:00,-0.723055556,69.1125
-1/11/2021,5:33:00,-0.759,71.9235
-1/11/2021,5:34:00,-0.748,72.0225
-1/11/2021,5:35:00,-0.723055556,69.008
-1/11/2021,5:36:00,-0.730666667,69.8304
-1/11/2021,5:37:00,-0.723055556,69.293
-1/11/2021,5:38:00,-0.723055556,69.3975
-1/11/2021,5:39:00,-0.7535,72.3096
-1/11/2021,5:40:00,-0.761111111,72.95
-1/11/2021,5:41:00,-0.751333333,71.4812
-1/11/2021,5:42:00,-0.738277778,70.8585
-1/11/2021,5:43:00,-0.738277778,70.6548
-1/11/2021,5:44:00,-0.738277778,70.6548
-1/11/2021,5:45:00,-0.743666667,70.6548
-1/11/2021,5:46:00,-0.730666667,69.936
-1/11/2021,5:47:00,-0.730666667,69.8304
-1/11/2021,5:48:00,-0.745888889,71.3832
-1/11/2021,5:49:00,-0.822222222,72.84
-1/11/2021,5:50:00,-0.759,72.0126
-1/11/2021,5:51:00,-0.745888889,71.4812
-1/11/2021,5:52:00,-0.730666667,70.128
-1/11/2021,5:53:00,-0.730666667,69.8304
-1/11/2021,5:54:00,-0.723055556,69.198
-1/11/2021,5:55:00,-0.723055556,69.483
-1/11/2021,5:56:00,-0.7535,72.3195
-1/11/2021,5:57:00,-0.696666667,69.483
-1/11/2021,5:58:00,-0.704,72.5076
-1/11/2021,5:59:00,-0.675555556,69.483
-1/11/2021,6:00:00,-0.696888889,71.7752
-1/11/2021,6:01:00,-0.711111111,73.15
-1/11/2021,6:02:00,-0.705555556,73.24
-1/11/2021,6:03:00,-0.634666667,70.224
-1/11/2021,6:04:00,-0.686,71.5792
-1/11/2021,6:05:00,-0.633333333,70.053
-1/11/2021,6:06:00,-0.641277778,71.5278
-1/11/2021,6:07:00,-0.647888889,71.981
-1/11/2021,6:08:00,-0.611111111,73.05
-1/11/2021,6:09:00,-0.580555556,69.198
-1/11/2021,6:10:00,-0.593444444,71.1872
-1/11/2021,6:11:00,-0.592,70.0224
-1/11/2021,6:12:00,-0.580555556,70.528
-1/11/2021,6:13:00,-0.586666667,72.3264
-1/11/2021,6:14:00,-0.549888889,73.6372
-1/11/2021,6:15:00,-0.5555,74.2896
-1/11/2021,6:16:00,-0.561111111,74.85
-1/11/2021,6:17:00,-0.538333333,70.623
-1/11/2021,6:18:00,-0.561111111,74.35
-1/11/2021,6:19:00,-0.5555,72.5076
-1/11/2021,6:20:00,-0.5555,72.7155
-1/11/2021,6:21:00,-0.549666667,71.2368
-1/11/2021,6:22:00,-0.533055556,69.388
-1/11/2021,6:23:00,-0.55,72.2205
-1/11/2021,6:24:00,-0.549888889,71.2852
-1/11/2021,6:25:00,-0.544277778,70.6548
-1/11/2021,6:26:00,-0.561111111,72.94
-1/11/2021,6:27:00,-0.549888889,73.647
-1/11/2021,6:28:00,-0.561111111,74.05
-1/11/2021,6:29:00,-0.5555,73.8045
-1/11/2021,6:30:00,-0.5555,72.9135
-1/11/2021,6:31:00,-0.544,71.0784
-1/11/2021,6:32:00,-0.495777778,72.9828
-1/11/2021,6:33:00,-0.480277778,71.1075
-1/11/2021,6:34:00,-0.485555556,70.718
-1/11/2021,6:35:00,-0.490833333,71.6775
-1/11/2021,6:36:00,-0.506,74.3985
-1/11/2021,6:37:00,-0.544277778,73.2932
-1/11/2021,6:38:00,-0.495777778,73.4775
-1/11/2021,6:39:00,-0.485555556,71.0125
-1/11/2021,6:40:00,-0.561111111,74.25
-1/11/2021,6:41:00,-0.549666667,72.0225
-1/11/2021,6:42:00,-0.495444444,73.549
-1/11/2021,6:43:00,-0.506,74.2005
-1/11/2021,6:44:00,-0.490833333,72.4375
-1/11/2021,6:45:00,-0.490666667,72.816
-1/11/2021,6:46:00,-0.500888889,73.4412
-1/11/2021,6:47:00,-0.533055556,71.9435
-1/11/2021,6:48:00,-0.5555,75.0915
-1/11/2021,6:49:00,-0.561111111,76.05
-1/11/2021,6:50:00,-0.5555,75.0915
-1/11/2021,6:51:00,-0.561,75.0816
-1/11/2021,6:52:00,-0.561111111,75.45
-1/11/2021,6:53:00,-0.538666667,72.624
-1/11/2021,6:54:00,-0.533055556,71.4875
-1/11/2021,6:55:00,-0.5555,74.5965
-1/11/2021,6:56:00,-0.538666667,72.72
-1/11/2021,6:57:00,-0.538666667,74.16
-1/11/2021,6:58:00,-0.561,77.0715
-1/11/2021,6:59:00,-0.544,74.352
-1/11/2021,7:00:00,-0.5555,76.2795
-1/11/2021,7:01:00,-0.561111111,77.15
-1/11/2021,7:02:00,-0.544277778,75.4175
-1/11/2021,7:03:00,-0.511111111,77.34
-1/11/2021,7:04:00,-0.506,75.6855
-1/11/2021,7:05:00,-0.485555556,72.0575
-1/11/2021,7:06:00,-0.495777778,73.1865
-1/11/2021,7:07:00,-0.506,74.2005
-1/11/2021,7:08:00,-0.549888889,73.353
-1/11/2021,7:09:00,-0.544277778,72.5948
-1/11/2021,7:10:00,-0.544277778,72.5075
-1/11/2021,7:11:00,-0.544277778,72.7015
-1/11/2021,7:12:00,-0.544277778,72.4105
-1/11/2021,7:13:00,-0.591111111,71.003
-1/11/2021,7:14:00,-0.592,71.76
-1/11/2021,7:15:00,-0.586666667,71.664
-1/11/2021,7:16:00,-0.653333333,73.4412
-1/11/2021,7:17:00,-0.647888889,73.451
-1/11/2021,7:18:00,-0.696888889,73.549
-1/11/2021,7:19:00,-0.689777778,73.5745
-1/11/2021,7:20:00,-0.695166667,73.9528
-1/11/2021,7:21:00,-0.704,75.0915
-1/11/2021,7:22:00,-0.705555556,77.05
-1/11/2021,7:23:00,-0.689777778,73.8655
-1/11/2021,7:24:00,-0.738277778,73.4775
-1/11/2021,7:25:00,-0.7535,75.0915
-1/11/2021,7:26:00,-0.794888889,74.1468
-1/11/2021,7:27:00,-0.775833333,71.7725
-1/11/2021,7:28:00,-0.843888889,74.235
-1/11/2021,7:29:00,-0.826666667,72.72
-1/11/2021,7:30:00,-0.818055556,72.1525
-1/11/2021,7:31:00,-0.9295,75.3786
-1/11/2021,7:32:00,-0.861111111,76.15
-1/11/2021,7:33:00,-0.88,72.9984
-1/11/2021,7:34:00,-0.865555556,72.1525
-1/11/2021,7:35:00,-0.913055556,72.3425
-1/11/2021,7:36:00,-0.941888889,74.627
-1/11/2021,7:37:00,-0.932277778,74.0595
-1/11/2021,7:38:00,-0.913055556,72.5325
-1/11/2021,7:39:00,-0.990888889,74.823
-1/11/2021,7:40:00,-0.965833333,72.998
-1/11/2021,7:41:00,-1.001,76.8735
-1/11/2021,7:42:00,-1.0065,76.4676
-1/11/2021,7:43:00,-0.980777778,74.5445
-1/11/2021,7:44:00,-1.008055556,73.3875
-1/11/2021,7:45:00,-1.029277778,74.8355
-1/11/2021,7:46:00,-1.008055556,72.7225
-1/11/2021,7:47:00,-1.1,75.7746
-1/11/2021,7:48:00,-1.108333333,72.523
-1/11/2021,7:49:00,-1.143333333,74.8132
-1/11/2021,7:50:00,-1.137888889,74.921
-1/11/2021,7:51:00,-1.103055556,72.7225
-1/11/2021,7:52:00,-1.192333333,75.2052
-1/11/2021,7:53:00,-1.216666667,77.04
-1/11/2021,7:54:00,-1.162666667,73.776
-1/11/2021,7:55:00,-1.228666667,74.3408
-1/11/2021,7:56:00,-1.186888889,75.215
-1/11/2021,7:57:00,-1.150555556,72.808
-1/11/2021,7:58:00,-1.235888889,74.921
-1/11/2021,7:59:00,-1.210666667,73.584
-1/11/2021,8:00:00,-1.235888889,75.7932
-1/11/2021,8:01:00,-1.2485,76.5666
-1/11/2021,8:02:00,-1.192333333,76.7732
-1/11/2021,8:03:00,-1.228666667,75.0295
-1/11/2021,8:04:00,-1.2485,76.4775
-1/11/2021,8:05:00,-1.254,76.4676
-1/11/2021,8:06:00,-1.271777778,74.8258
-1/11/2021,8:07:00,-1.3035,76.6656
-1/11/2021,8:08:00,-1.298,76.3686
-1/11/2021,8:09:00,-1.284888889,75.607
-1/11/2021,8:10:00,-1.311111111,77.14
-1/11/2021,8:11:00,-1.258666667,73.872
-1/11/2021,8:12:00,-1.311111111,76.84
-1/11/2021,8:13:00,-1.290333333,75.215
-1/11/2021,8:14:00,-1.277166667,74.2438
-1/11/2021,8:15:00,-1.366666667,76.54
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
-9999,9999,0,0
diff --git a/tests/integration/models/simple_1_zone_heating.fmu b/tests/integration/models/simple_1_zone_heating.fmu
deleted file mode 100644
index c3e7f254..00000000
Binary files a/tests/integration/models/simple_1_zone_heating.fmu and /dev/null differ
diff --git a/tests/integration/models/simple_thermostat.fmu b/tests/integration/models/simple_thermostat.fmu
deleted file mode 100644
index d08ca3b4..00000000
Binary files a/tests/integration/models/simple_thermostat.fmu and /dev/null differ
diff --git a/tests/integration/models/single_zone_vav.fmu b/tests/integration/models/single_zone_vav.fmu
deleted file mode 100644
index 4ee351e5..00000000
Binary files a/tests/integration/models/single_zone_vav.fmu and /dev/null differ
diff --git a/tests/integration/models/small_office/measures/python_ems/measure.rb b/tests/integration/models/small_office/measures/python_ems/measure.rb
index c7522fda..2bef1f92 100644
--- a/tests/integration/models/small_office/measures/python_ems/measure.rb
+++ b/tests/integration/models/small_office/measures/python_ems/measure.rb
@@ -17,87 +17,55 @@ def modeler_description
end
# define the arguments that the user will input
- def arguments(ws)
+ def arguments(workspace)
args = OpenStudio::Ruleset::OSArgumentVector.new
- # argument for python script name
- py_name = OpenStudio::Ruleset::OSArgument.makeStringArgument(
- 'py_name',
- true
- )
- py_name.setDisplayName('Python Script Name')
- py_name.setDescription('Name of script with extension (e.g., myPlugin.py)')
-
- class_name = OpenStudio::Ruleset::OSArgument.makeStringArgument(
- 'class_name',
- true
- )
- class_name.setDisplayName('Python Plugin Class Name')
- class_name.setDescription('Name of class in python script (must inherit from EnergyPlusPlugin)')
-
- args << py_name
- args << class_name
-
return args
end
# define what happens when the measure is run
- def run(ws, runner, usr_args)
+ def run(workspace, runner, usr_args)
# call the parent class method
- super(ws, runner, usr_args)
+ super(workspace, runner, usr_args)
# use the built-in error checking
return false unless runner.validateUserArguments(
- arguments(ws),
- usr_args
- )
-
- # assign the user inputs to variables
- py_name = runner.getStringArgumentValue(
- 'py_name',
- usr_args
- )
-
- class_name = runner.getStringArgumentValue(
- 'class_name',
+ arguments(workspace),
usr_args
)
# define python script dir
py_dir = "#{__dir__}/resources"
- # make sure python script exists
- unless File.exist?("#{py_dir}/#{py_name}")
- runner.registerError("Could not find file at #{py_dir}/#{py_name}.")
- return false
- end
-
# add python plugin search paths
- n = OpenStudio::IdfObject.new('PythonPlugin_SearchPaths'.to_IddObjectType)
- n.setString(0, 'Python Plugin Search Paths')
- n.setString(1, 'Yes')
- n.setString(2, 'Yes')
- # set site packages location depending on operating system
- if (RUBY_PLATFORM =~ /linux/) != nil
- n.setString(4, '/usr/local/lib/python3.7/dist-packages')
- elsif (RUBY_PLATFORM =~ /darwin/) != nil
- n.setString(4, '/usr/local/lib/python3.7/site-packages')
- elsif (RUBY_PLATFORM =~ /cygwin|mswin|mingw|bccwin|wince|emx/) != nil
- h = ENV['USERPROFILE'].gsub('\\', '/')
- n.setString(4, "#{h}/AppData/Local/Programs/Python/Python37/Lib/site-packages")
- end
+ plugin_paths = OpenStudio::IdfObject.new('PythonPlugin_SearchPaths'.to_IddObjectType)
+ plugin_paths.setString(0, 'Python Plugin Search Paths')
+ plugin_paths.setString(1, 'Yes')
+ plugin_paths.setString(2, 'Yes')
+ plugin_paths.setString(3, 'No')
# add python dir
- n.setString(5, py_dir)
- ws.addObject(n)
+ plugin_paths.setString(4, py_dir)
+ workspace.addObject(plugin_paths)
# add python plugin instance
- n = OpenStudio::IdfObject.new('PythonPlugin_Instance'.to_IddObjectType)
- n.setString(0, 'Python Plugin Instance Name')
- n.setString(1, 'No')
- n.setString(2, py_name.sub('.py', ''))
- n.setString(3, class_name)
- ws.addObject(n)
+ plugin_instance = OpenStudio::IdfObject.new('PythonPlugin_Instance'.to_IddObjectType)
+ plugin_instance.setString(0, 'Python Plugin Instance Name')
+ plugin_instance.setString(1, 'No')
+ plugin_instance.setString(2, 'simple_plugin')
+ plugin_instance.setString(3, 'SimplePlugin')
+ workspace.addObject(plugin_instance)
+
+ plugin_variables = OpenStudio::IdfObject.new('PythonPlugin_Variables'.to_IddObjectType)
+ plugin_variables.setString(0, 'Python Plugin Variables')
+ plugin_variables.setString(1, 'input')
+ plugin_variables.setString(2, 'output')
+ workspace.addObject(plugin_variables)
+
+ alfalfa = runner.alfalfa
+ alfalfa.exposeGlobalVariable('input', "Python Input")
+ alfalfa.exposeGlobalVariable('output', "Python Output")
+ alfalfa.exposeConstant(17.5, 'test value')
return true
diff --git a/tests/integration/models/small_office/measures/python_ems/resources/requirements.txt b/tests/integration/models/small_office/measures/python_ems/resources/requirements.txt
index ff88936c..d5e06028 100644
--- a/tests/integration/models/small_office/measures/python_ems/resources/requirements.txt
+++ b/tests/integration/models/small_office/measures/python_ems/resources/requirements.txt
@@ -1 +1 @@
-scikit-learn
\ No newline at end of file
+scikit-learn
diff --git a/tests/integration/models/small_office/measures/python_ems/resources/simple_plugin.py b/tests/integration/models/small_office/measures/python_ems/resources/simple_plugin.py
index bdde75e7..598b98f3 100644
--- a/tests/integration/models/small_office/measures/python_ems/resources/simple_plugin.py
+++ b/tests/integration/models/small_office/measures/python_ems/resources/simple_plugin.py
@@ -5,5 +5,13 @@ class SimplePlugin(EnergyPlusPlugin):
def __init__(self) -> None:
super().__init__()
+ self.input_handle = None
+ self.output_handle = None
+
def on_begin_timestep_before_predictor(self, state):
+ if self.input_handle == None:
+ self.input_handle = self.api.exchange.get_global_handle(state, "input")
+ if self.output_handle == None:
+ self.output_handle = self.api.exchange.get_global_handle(state, "output")
+ self.api.exchange.set_global_value(state, self.output_handle, self.api.exchange.get_global_value(state, self.input_handle))
return 0
diff --git a/tests/integration/models/small_office/small_office.osm b/tests/integration/models/small_office/small_office.osm
index f7411840..b85b39b1 100644
--- a/tests/integration/models/small_office/small_office.osm
+++ b/tests/integration/models/small_office/small_office.osm
@@ -1437,7 +1437,7 @@ OS:Schedule:Rule,
OS:Schedule:Day,
{341ae3c0-1e4b-438d-a349-78c4d893609b}, !- Handle
- OfficeLarge INFIL_SCH_PNNL SmrDsn|Wkdy Day, !- Name
+ OfficeLarge INFIL_SCH_PNNL SmrDsn Wkdy Day, !- Name
{6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
, !- Interpolate to Timestep
6, !- Hour 1
@@ -1487,7 +1487,7 @@ OS:Schedule:Rule,
OS:Schedule:Day,
{11021c79-21b2-410d-8761-4ca0169659f2}, !- Handle
- OfficeLarge INFIL_SCH_PNNL WntrDsn|Sat Day, !- Name
+ OfficeLarge INFIL_SCH_PNNL WntrDsn Sat Day, !- Name
{6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
, !- Interpolate to Timestep
6, !- Hour 1
@@ -1897,7 +1897,7 @@ OS:Schedule:Rule,
OS:Schedule:Day,
{4406b98b-31bd-4dc2-a658-13bcf3846951}, !- Handle
- OfficeSmall BLDG_LIGHT_SCH_2013 Default|Wkdy Day, !- Name
+ OfficeSmall BLDG_LIGHT_SCH_2013 Default Wkdy Day, !- Name
{6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
, !- Interpolate to Timestep
5, !- Hour 1
@@ -2044,7 +2044,7 @@ OS:Schedule:Rule,
OS:Schedule:Day,
{337306e3-b404-4a68-bc99-79afe05dcf30}, !- Handle
- OfficeSmall BLDG_EQUIP_SCH_2013 Default|Wkdy Day, !- Name
+ OfficeSmall BLDG_EQUIP_SCH_2013 Default Wkdy Day, !- Name
{6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
, !- Interpolate to Timestep
6, !- Hour 1
@@ -2173,7 +2173,7 @@ OS:Schedule:Rule,
OS:Schedule:Day,
{fc01d6fc-d969-44d1-a67c-a9ff3e5b6cd6}, !- Handle
- OfficeSmall INFIL_QUARTER_ON_SCH SmrDsn|Wkdy Day, !- Name
+ OfficeSmall INFIL_QUARTER_ON_SCH SmrDsn Wkdy Day, !- Name
{6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
, !- Interpolate to Timestep
7, !- Hour 1
@@ -2223,7 +2223,7 @@ OS:Schedule:Rule,
OS:Schedule:Day,
{3a15d0a5-3713-4a26-b0e9-1769737d7390}, !- Handle
- OfficeSmall INFIL_QUARTER_ON_SCH WntrDsn|Sat Day, !- Name
+ OfficeSmall INFIL_QUARTER_ON_SCH WntrDsn Sat Day, !- Name
{6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
, !- Interpolate to Timestep
7, !- Hour 1
@@ -3907,7 +3907,7 @@ OS:Schedule:Rule,
OS:Schedule:Day,
{7cb9a909-a4bc-487a-9039-9c89d6e46446}, !- Handle
- OfficeSmall HVACOperationSchd SmrDsn|Wkdy Day, !- Name
+ OfficeSmall HVACOperationSchd SmrDsn Wkdy Day, !- Name
{48baeb6c-4b7b-4ed4-b6e9-8aec399e0994}, !- Schedule Type Limits Name
, !- Interpolate to Timestep
6, !- Hour 1
@@ -3983,7 +3983,7 @@ OS:Schedule:Rule,
OS:Schedule:Day,
{49e896a1-9932-44e7-9f71-7804973dceef}, !- Handle
- OfficeSmall MinOA_MotorizedDamper_Sched SmrDsn|Wkdy Day, !- Name
+ OfficeSmall MinOA_MotorizedDamper_Sched SmrDsn Wkdy Day, !- Name
{6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
, !- Interpolate to Timestep
7, !- Hour 1
@@ -7468,7 +7468,7 @@ OS:Schedule:Rule,
OS:Schedule:Day,
{369091e4-572f-4aca-a17a-07f2be0d237c}, !- Handle
- OfficeSmall BLDG_SWH_SCH WntrDsn|SmrDsn|Wkdy Day, !- Name
+ OfficeSmall BLDG_SWH_SCH WntrDsn SmrDsn Wkdy Day, !- Name
{6cfc91bf-7372-4e39-adfc-dfbaccb008b2}, !- Schedule Type Limits Name
, !- Interpolate to Timestep
7, !- Hour 1
diff --git a/tests/integration/models/small_office/workflow.osw b/tests/integration/models/small_office/workflow.osw
index 2d194c6d..fbece8ee 100644
--- a/tests/integration/models/small_office/workflow.osw
+++ b/tests/integration/models/small_office/workflow.osw
@@ -14,10 +14,6 @@
"name" : "PythonEMS",
"description" : "Add python EMS to IDF",
"modeler_description" : "Add python EMS to IDF",
- "arguments":{
- "py_name" : "simple_plugin.py",
- "class_name" : "SimplePlugin"
- }
}
]
}
diff --git a/tests/integration/models/wrapped.fmu b/tests/integration/models/wrapped.fmu
new file mode 100644
index 00000000..cad402bd
Binary files /dev/null and b/tests/integration/models/wrapped.fmu differ
diff --git a/tests/integration/test_basic_operations.py b/tests/integration/test_basic_operations.py
index bb1ed4d7..c0091050 100644
--- a/tests/integration/test_basic_operations.py
+++ b/tests/integration/test_basic_operations.py
@@ -16,9 +16,12 @@ def test_simple_internal_clock(alfalfa: AlfalfaClient, ref_id: RunID):
end_datetime=end_datetime,
timescale=10
)
+ timescale_start = datetime.now()
# Wait for model to complete
alfalfa.wait(ref_id, "complete")
+ timescale_end = datetime.now()
+ assert timescale_end - timescale_start < timedelta(minutes=1), "Timescale simulation took too long to complete"
model_time = alfalfa.get_sim_time(ref_id)
assert end_datetime == model_time
@@ -26,20 +29,20 @@ def test_simple_internal_clock(alfalfa: AlfalfaClient, ref_id: RunID):
@pytest.mark.integration
def test_simple_external_clock(alfalfa: AlfalfaClient, ref_id: RunID):
alfalfa.wait(ref_id, "ready")
- start_dt = datetime(2019, 1, 2, 23, 55, 0)
+ start_dt = datetime(2019, 1, 2, 0, 0, 0)
alfalfa.start(
ref_id,
external_clock=True,
start_datetime=start_dt,
- end_datetime=datetime(2019, 1, 3, 1, 0, 0)
+ end_datetime=datetime(2019, 1, 2, 0, 2, 0)
)
alfalfa.wait(ref_id, "running")
# -- Assert model gets to expected start time
model_time = alfalfa.get_sim_time(ref_id)
- assert start_dt == model_time
- updated_dt = start_dt
+ # assert start_dt == model_time
+ updated_dt = model_time
for _ in range(2):
# -- Advance a single time step
diff --git a/tests/integration/test_broken_models.py b/tests/integration/test_broken_models.py
index febae7b0..7d8ca282 100644
--- a/tests/integration/test_broken_models.py
+++ b/tests/integration/test_broken_models.py
@@ -2,7 +2,7 @@
import pytest
from alfalfa_client.alfalfa_client import AlfalfaClient
-from alfalfa_client.lib import AlfalfaException
+from alfalfa_client.lib import AlfalfaException, create_zip
@pytest.mark.integration
@@ -20,3 +20,23 @@ def test_broken_models(broken_model_path):
alfalfa.advance(run_id)
alfalfa.stop(run_id)
+
+
+@pytest.mark.integration
+def test_broken_python_models(alfalfa: AlfalfaClient, broken_workflow_name):
+ model_zip_path = create_zip("tests/integration/broken_models/small_office/measures",
+ "tests/integration/broken_models/small_office/weather",
+ "tests/integration/broken_models/small_office/small_office.osm",
+ f"tests/integration/broken_models/small_office/{broken_workflow_name}")
+ with pytest.raises(AlfalfaException):
+ run_id = alfalfa.submit(model_zip_path)
+ alfalfa.start(
+ run_id,
+ external_clock=True,
+ start_datetime=datetime.datetime(2019, 1, 2, 0, 2, 0),
+ end_datetime=datetime.datetime(2019, 1, 3, 0, 0, 0))
+
+ for _ in range(5):
+ alfalfa.advance(run_id)
+
+ alfalfa.stop(run_id)
diff --git a/tests/integration/test_modelica.py b/tests/integration/test_modelica.py
new file mode 100644
index 00000000..fdeb753b
--- /dev/null
+++ b/tests/integration/test_modelica.py
@@ -0,0 +1,145 @@
+from datetime import datetime
+
+import pytest
+from alfalfa_client import AlfalfaClient
+
+from tests.integration.conftest import prepare_model
+
+
+@pytest.mark.integration
+def test_modelica_model(alfalfa: AlfalfaClient):
+ run_id = alfalfa.submit(prepare_model("wrapped.fmu"))
+
+ alfalfa.start(run_id, datetime(2019, 1, 1, 0, 0), datetime(2019, 1, 1, 0, 5), external_clock=True)
+ inputs = alfalfa.get_inputs(run_id)
+ outputs = alfalfa.get_outputs(run_id).keys()
+
+ assert "hvac_oveAhu_TSupSet_u" in inputs
+ assert "hvac_oveAhu_dpSet_u" in inputs
+ assert "hvac_oveAhu_yCoo_u" in inputs
+ assert "hvac_oveAhu_yFan_u" in inputs
+ assert "hvac_oveAhu_yHea_u" in inputs
+ assert "hvac_oveAhu_yOA_u" in inputs
+ assert "hvac_oveAhu_yPumCoo_u" in inputs
+ assert "hvac_oveAhu_yPumHea_u" in inputs
+ assert "hvac_oveAhu_yRet_u" in inputs
+ assert "hvac_oveZonActCor_yDam_u" in inputs
+ assert "hvac_oveZonActCor_yReaHea_u" in inputs
+ assert "hvac_oveZonActEas_yDam_u" in inputs
+ assert "hvac_oveZonActEas_yReaHea_u" in inputs
+ assert "hvac_oveZonActNor_yDam_u" in inputs
+ assert "hvac_oveZonActNor_yReaHea_u" in inputs
+ assert "hvac_oveZonActSou_yDam_u" in inputs
+ assert "hvac_oveZonActSou_yReaHea_u" in inputs
+ assert "hvac_oveZonActWes_yDam_u" in inputs
+ assert "hvac_oveZonActWes_yReaHea_u" in inputs
+ assert "hvac_oveZonSupCor_TZonCooSet_u" in inputs
+ assert "hvac_oveZonSupCor_TZonHeaSet_u" in inputs
+ assert "hvac_oveZonSupEas_TZonCooSet_u" in inputs
+ assert "hvac_oveZonSupEas_TZonHeaSet_u" in inputs
+ assert "hvac_oveZonSupNor_TZonCooSet_u" in inputs
+ assert "hvac_oveZonSupNor_TZonHeaSet_u" in inputs
+ assert "hvac_oveZonSupSou_TZonCooSet_u" in inputs
+ assert "hvac_oveZonSupSou_TZonHeaSet_u" in inputs
+ assert "hvac_oveZonSupWes_TZonCooSet_u" in inputs
+ assert "hvac_oveZonSupWes_TZonHeaSet_u" in inputs
+ assert "chi_reaFloSup_y" in outputs
+ assert "chi_reaPChi_y" in outputs
+ assert "chi_reaPPumDis_y" in outputs
+ assert "chi_reaTRet_y" in outputs
+ assert "chi_reaTSup_y" in outputs
+ assert "heaPum_reaFloSup_y" in outputs
+ assert "heaPum_reaPHeaPum_y" in outputs
+ assert "heaPum_reaPPumDis_y" in outputs
+ assert "heaPum_reaTRet_y" in outputs
+ assert "heaPum_reaTSup_y" in outputs
+ assert "hvac_oveAhu_TSupSet_y" in outputs
+ assert "hvac_oveAhu_dpSet_y" in outputs
+ assert "hvac_oveAhu_yCoo_y" in outputs
+ assert "hvac_oveAhu_yFan_y" in outputs
+ assert "hvac_oveAhu_yHea_y" in outputs
+ assert "hvac_oveAhu_yOA_y" in outputs
+ assert "hvac_oveAhu_yPumCoo_y" in outputs
+ assert "hvac_oveAhu_yPumHea_y" in outputs
+ assert "hvac_oveAhu_yRet_y" in outputs
+ assert "hvac_oveZonActCor_yDam_y" in outputs
+ assert "hvac_oveZonActCor_yReaHea_y" in outputs
+ assert "hvac_oveZonActEas_yDam_y" in outputs
+ assert "hvac_oveZonActEas_yReaHea_y" in outputs
+ assert "hvac_oveZonActNor_yDam_y" in outputs
+ assert "hvac_oveZonActNor_yReaHea_y" in outputs
+ assert "hvac_oveZonActSou_yDam_y" in outputs
+ assert "hvac_oveZonActSou_yReaHea_y" in outputs
+ assert "hvac_oveZonActWes_yDam_y" in outputs
+ assert "hvac_oveZonActWes_yReaHea_y" in outputs
+ assert "hvac_oveZonSupCor_TZonCooSet_y" in outputs
+ assert "hvac_oveZonSupCor_TZonHeaSet_y" in outputs
+ assert "hvac_oveZonSupEas_TZonCooSet_y" in outputs
+ assert "hvac_oveZonSupEas_TZonHeaSet_y" in outputs
+ assert "hvac_oveZonSupNor_TZonCooSet_y" in outputs
+ assert "hvac_oveZonSupNor_TZonHeaSet_y" in outputs
+ assert "hvac_oveZonSupSou_TZonCooSet_y" in outputs
+ assert "hvac_oveZonSupSou_TZonHeaSet_y" in outputs
+ assert "hvac_oveZonSupWes_TZonCooSet_y" in outputs
+ assert "hvac_oveZonSupWes_TZonHeaSet_y" in outputs
+ assert "hvac_reaAhu_PFanSup_y" in outputs
+ assert "hvac_reaAhu_PPumCoo_y" in outputs
+ assert "hvac_reaAhu_PPumHea_y" in outputs
+ assert "hvac_reaAhu_TCooCoiRet_y" in outputs
+ assert "hvac_reaAhu_TCooCoiSup_y" in outputs
+ assert "hvac_reaAhu_THeaCoiRet_y" in outputs
+ assert "hvac_reaAhu_THeaCoiSup_y" in outputs
+ assert "hvac_reaAhu_TMix_y" in outputs
+ assert "hvac_reaAhu_TRet_y" in outputs
+ assert "hvac_reaAhu_TSup_y" in outputs
+ assert "hvac_reaAhu_V_flow_ret_y" in outputs
+ assert "hvac_reaAhu_V_flow_sup_y" in outputs
+ assert "hvac_reaAhu_dp_sup_y" in outputs
+ assert "hvac_reaZonCor_CO2Zon_y" in outputs
+ assert "hvac_reaZonCor_TSup_y" in outputs
+ assert "hvac_reaZonCor_TZon_y" in outputs
+ assert "hvac_reaZonCor_V_flow_y" in outputs
+ assert "hvac_reaZonEas_CO2Zon_y" in outputs
+ assert "hvac_reaZonEas_TSup_y" in outputs
+ assert "hvac_reaZonEas_TZon_y" in outputs
+ assert "hvac_reaZonEas_V_flow_y" in outputs
+ assert "hvac_reaZonNor_CO2Zon_y" in outputs
+ assert "hvac_reaZonNor_TSup_y" in outputs
+ assert "hvac_reaZonNor_TZon_y" in outputs
+ assert "hvac_reaZonNor_V_flow_y" in outputs
+ assert "hvac_reaZonSou_CO2Zon_y" in outputs
+ assert "hvac_reaZonSou_TSup_y" in outputs
+ assert "hvac_reaZonSou_TZon_y" in outputs
+ assert "hvac_reaZonSou_V_flow_y" in outputs
+ assert "hvac_reaZonWes_CO2Zon_y" in outputs
+ assert "hvac_reaZonWes_TSup_y" in outputs
+ assert "hvac_reaZonWes_TZon_y" in outputs
+ assert "hvac_reaZonWes_V_flow_y" in outputs
+ assert "weaSta_reaWeaCeiHei_y" in outputs
+ assert "weaSta_reaWeaCloTim_y" in outputs
+ assert "weaSta_reaWeaHDifHor_y" in outputs
+ assert "weaSta_reaWeaHDirNor_y" in outputs
+ assert "weaSta_reaWeaHGloHor_y" in outputs
+ assert "weaSta_reaWeaHHorIR_y" in outputs
+ assert "weaSta_reaWeaLat_y" in outputs
+ assert "weaSta_reaWeaLon_y" in outputs
+ assert "weaSta_reaWeaNOpa_y" in outputs
+ assert "weaSta_reaWeaNTot_y" in outputs
+ assert "weaSta_reaWeaPAtm_y" in outputs
+ assert "weaSta_reaWeaRelHum_y" in outputs
+ assert "weaSta_reaWeaSolAlt_y" in outputs
+ assert "weaSta_reaWeaSolDec_y" in outputs
+ assert "weaSta_reaWeaSolHouAng_y" in outputs
+ assert "weaSta_reaWeaSolTim_y" in outputs
+ assert "weaSta_reaWeaSolZen_y" in outputs
+ assert "weaSta_reaWeaTBlaSky_y" in outputs
+ assert "weaSta_reaWeaTDewPoi_y" in outputs
+ assert "weaSta_reaWeaTDryBul_y" in outputs
+ assert "weaSta_reaWeaTWetBul_y" in outputs
+ assert "weaSta_reaWeaWinDir_y" in outputs
+ assert "weaSta_reaWeaWinSpe_y" in outputs
+
+ for _ in range(5):
+ alfalfa.advance(run_id)
+
+ alfalfa.stop(run_id)
diff --git a/tests/integration/test_refrig_case_osw.py b/tests/integration/test_refrig_case_osw.py
deleted file mode 100644
index 00890a77..00000000
--- a/tests/integration/test_refrig_case_osw.py
+++ /dev/null
@@ -1,60 +0,0 @@
-import datetime
-from unittest import TestCase
-
-import pytest
-from alfalfa_client.alfalfa_client import AlfalfaClient
-from alfalfa_client.lib import AlfalfaException
-
-from tests.integration.conftest import prepare_model
-
-
-@pytest.mark.integration
-class TestRefrigCaseOSW(TestCase):
-
- def test_invalid_start_conditions(self):
- zip_file_path = prepare_model('refrig_case_osw')
- alfalfa = AlfalfaClient(host='http://localhost')
- model_id = alfalfa.submit(zip_file_path)
- with pytest.raises(AlfalfaException):
- alfalfa.start(
- model_id,
- external_clock=False,
- start_datetime=datetime.datetime(2019, 1, 2, 0, 0, 0),
- end_datetime=datetime.datetime(2019, 1, 1, 0, 0, 0),
- timescale=5
- )
-
- def test_basic_io(self):
- zip_file_path = prepare_model('refrig_case_osw')
- alfalfa = AlfalfaClient(host='http://localhost')
- model_id = alfalfa.submit(zip_file_path)
-
- alfalfa.wait(model_id, "ready")
- alfalfa.start(
- model_id,
- external_clock=True,
- start_datetime=datetime.datetime(2019, 1, 2, 0, 2, 0),
- end_datetime=datetime.datetime(2019, 1, 3, 0, 0, 0)
- )
-
- alfalfa.wait(model_id, "running")
-
- inputs = alfalfa.get_inputs(model_id)
- assert "Test_Point_1" in inputs, "Test_Point_1 is in input points"
- inputs = {}
- inputs["Test_Point_1"] = 12
-
- alfalfa.set_inputs(model_id, inputs)
-
- outputs = alfalfa.get_outputs(model_id)
- assert "Test_Point_1" in outputs.keys(), "Echo point for Test_Point_1 is not in outputs"
-
- # -- Advance a single time step
- alfalfa.advance([model_id])
-
- outputs = alfalfa.get_outputs(model_id)
- assert outputs["Test_Point_1"] == pytest.approx(12), "Test_Point_1 value has not been processed by the model"
-
- # Shut down
- alfalfa.stop(model_id)
- alfalfa.wait(model_id, "complete")
diff --git a/tests/integration/test_schedule_override.py b/tests/integration/test_schedule_override.py
index 66c6706f..a3a5c6bd 100644
--- a/tests/integration/test_schedule_override.py
+++ b/tests/integration/test_schedule_override.py
@@ -7,12 +7,13 @@
@pytest.mark.integration
-def test_schedule_point_generation():
- alfalfa = AlfalfaClient('http://localhost')
- site_id = alfalfa.submit(prepare_model('schedule_model'))
+def test_schedule_point_generation(alfalfa: AlfalfaClient):
+ run_id = alfalfa.submit(prepare_model('schedule_model'))
- inputs = alfalfa.get_inputs(site_id)
- outputs = alfalfa.get_outputs(site_id)
+ alfalfa.start(run_id, datetime(2020, 1, 1, 0, 0), datetime(2020, 1, 1, 0, 1))
+
+ inputs = alfalfa.get_inputs(run_id)
+ outputs = alfalfa.get_outputs(run_id)
assert "CONSTANT HEATING" in inputs, "Constant Schedule input not generated"
assert "COMPACT COOLING" in inputs, "Compact Schedule input not generated"
assert "YEAR HEATING" in inputs, "Year Schedule input not generated"
@@ -25,6 +26,8 @@ def test_schedule_point_generation():
assert "RULESET COOLING" in outputs.keys(), "Rulseset Schedule output not generated"
assert "FIXEDINTERVAL HEATING" in outputs.keys(), "Fixed Interval Schedule output not generated"
+ alfalfa.stop(run_id)
+
@pytest.mark.integration
def test_schedule_override():
@@ -39,11 +42,11 @@ def test_schedule_override():
)
inputs = {
- "CONSTANT HEATING": 23.0,
- "COMPACT COOLING": 15.0,
- "YEAR HEATING": 23.0,
- "RULESET COOLING": 15.0,
- "FIXEDINTERVAL HEATING": 23.0
+ "CONSTANT HEATING": 15.0,
+ "COMPACT COOLING": 23.0,
+ "YEAR HEATING": 15.0,
+ "RULESET COOLING": 23.0,
+ "FIXEDINTERVAL HEATING": 15.0
}
alfalfa.set_inputs(site_id, inputs)
diff --git a/tests/integration/test_simple_thermostat_fmu.py b/tests/integration/test_simple_thermostat_fmu.py
deleted file mode 100644
index e7600576..00000000
--- a/tests/integration/test_simple_thermostat_fmu.py
+++ /dev/null
@@ -1,105 +0,0 @@
-from datetime import datetime, timedelta
-from unittest import TestCase
-
-import pytest
-from alfalfa_client.alfalfa_client import AlfalfaClient
-
-from tests.integration.conftest import prepare_model
-
-##################################################################################################
-# The is a test of the simple_thermostat.fmu,
-# which represents a simplified air temperature controller.
-#
-# The inputs oveWriMeasuredTemp_u and TsetPoint_u represent the measured air temperature,
-# and the desired control setpoint respectively.
-#
-# The output, rea, represents the control output signal.
-#
-# Modelica source code of the simple_thermostat.fmu is available here:
-##################################################################################################
-
-
-@pytest.mark.integration
-class TestSimpleThermostat(TestCase):
-
- def setUp(self):
- self.alfalfa = AlfalfaClient(host='http://localhost')
- fmu_path = prepare_model('simple_thermostat.fmu')
- self.model_id = self.alfalfa.submit(fmu_path)
-
- self.alfalfa.wait(self.model_id, "ready")
-
- self.current_datetime = datetime(2019, 1, 1)
-
- self.alfalfa.start(
- self.model_id,
- external_clock=True,
- start_datetime=self.current_datetime,
- end_datetime=datetime(2019, 1, 1, 0, 5),
- timescale=5
- )
- self.alfalfa.wait(self.model_id, "running")
-
- def test_io_with_external_clock(self):
- # Simulation is running, but time should still be at 0
- model_time = self.alfalfa.get_sim_time(self.model_id)
- assert self.current_datetime == model_time
-
- # If outputs are requested before the simulation is advanced,
- # there will be an error.
- # See issue https://github.com/NREL/alfalfa/issues/119
- self.current_datetime += timedelta(minutes=1)
- self.alfalfa.advance([self.model_id])
- model_time = self.alfalfa.get_sim_time(self.model_id)
- assert self.current_datetime == model_time
-
- # Having not set any inputs the fmu will be at the initial state.
- # The control signal output "rea" is at 0.0
- outputs = self.alfalfa.get_outputs(self.model_id)
- rea = outputs.get("rea")
- assert rea == pytest.approx(0.0)
-
- # Attempt to override the measured temp (ie zone temperature),
- # and the setpoint, such that zone temperature is over setpoint.
- self.alfalfa.set_inputs(self.model_id, {"oveWriMeasuredTemp_u": 303.15, "oveWriSetPoint_u": 294.15})
-
- # Advance time, outputs will not be updated until advance happens.
- # Should this limitation be considered a bug?
- # Note that boptest advance and set input apis are combined,
- # so that there is no method to set inputs without advancing
- self.current_datetime += timedelta(minutes=1)
- self.alfalfa.advance([self.model_id])
- model_time = self.alfalfa.get_sim_time(self.model_id)
- assert self.current_datetime == model_time
-
- # When temperature is over setpoint controller returns 0.0
- outputs = self.alfalfa.get_outputs(self.model_id)
- rea = outputs.get("rea")
- assert rea == pytest.approx(0.0)
-
- # Now override the measured (zone) temperature such that it is below setpoint
- self.alfalfa.set_inputs(self.model_id, {"oveWriMeasuredTemp_u": 283.15, "oveWriSetPoint_u": 294.15})
-
- self.current_datetime += timedelta(minutes=1)
- self.alfalfa.advance([self.model_id])
- model_time = self.alfalfa.get_sim_time(self.model_id)
- assert self.current_datetime == model_time
-
- # When temperature is below setpoint controller returns 1.0
- outputs = self.alfalfa.get_outputs(self.model_id)
- rea = outputs.get("rea")
- assert rea == pytest.approx(1.0)
-
- # Test the control signal override
- self.alfalfa.set_inputs(self.model_id, {"oveWriActuatorSignal_u": 0.0})
- self.current_datetime += timedelta(minutes=1)
- self.alfalfa.advance([self.model_id])
- model_time = self.alfalfa.get_sim_time(self.model_id)
- assert self.current_datetime == model_time
- outputs = self.alfalfa.get_outputs(self.model_id)
- rea = outputs.get("rea")
- assert rea == pytest.approx(0.0)
-
- def tearDown(self):
- self.alfalfa.stop(self.model_id)
- self.alfalfa.wait(self.model_id, "complete")
diff --git a/tests/integration/test_single_zone_vav_fmu.py b/tests/integration/test_single_zone_vav_fmu.py
deleted file mode 100644
index 308e1063..00000000
--- a/tests/integration/test_single_zone_vav_fmu.py
+++ /dev/null
@@ -1,35 +0,0 @@
-from datetime import datetime
-from time import sleep
-from unittest import TestCase
-
-import pytest
-from alfalfa_client.alfalfa_client import AlfalfaClient
-
-from tests.integration.conftest import prepare_model
-
-
-@pytest.mark.integration
-class TestSingleZoneVAVFMU(TestCase):
-
- def test_simple_internal_clock(self):
- alfalfa = AlfalfaClient(host='http://localhost')
- fmu_path = prepare_model('single_zone_vav.fmu')
- model_id = alfalfa.submit(fmu_path)
-
- alfalfa.wait(model_id, "ready")
-
- end_datetime = datetime(2019, 1, 1, 0, 5)
- alfalfa.start(
- model_id,
- external_clock=False,
- start_datetime=datetime(2019, 1, 1),
- end_datetime=end_datetime,
- timescale=5
- )
-
- alfalfa.wait(model_id, "running")
- # wait for model to advance for 1 minute at timescale 5
- sleep(60)
- alfalfa.wait(model_id, "complete")
- model_time = alfalfa.get_sim_time(model_id)
- assert end_datetime == model_time
diff --git a/tests/integration/test_small_office_osw.py b/tests/integration/test_small_office_osw.py
index 3b456bd5..230701d2 100644
--- a/tests/integration/test_small_office_osw.py
+++ b/tests/integration/test_small_office_osw.py
@@ -31,9 +31,8 @@ def test_python_environment():
@pytest.mark.integration
-def test_io_enable_disable():
+def test_io(alfalfa: AlfalfaClient):
zip_file_path = prepare_model('small_office')
- alfalfa = AlfalfaClient(host='http://localhost')
site_id = alfalfa.submit(zip_file_path)
alfalfa.wait(site_id, "ready")
@@ -49,10 +48,16 @@ def test_io_enable_disable():
inputs = alfalfa.get_inputs(site_id)
outputs = alfalfa.get_outputs(site_id)
+ # This is an Actuator
assert "OfficeSmall HTGSETP_SCH_NO_OPTIMUM" in inputs
+ # This is a Global Variable
+ assert "Python Input" in inputs, "'Python Input' not found in 'inputs'"
+ # This is an Output Variable
assert "OfficeSmall HTGSETP_SCH_NO_OPTIMUM" in outputs.keys()
+ # This is a Global Variable
+ assert "Python Output" in outputs.keys(), "'Python Output' not found in 'outputs'"
- inputs = {"OfficeSmall HTGSETP_SCH_NO_OPTIMUM": 0}
+ inputs = {"OfficeSmall HTGSETP_SCH_NO_OPTIMUM": 0, "Python Input": 20}
alfalfa.set_inputs(site_id, inputs)
for _ in range(5):
@@ -60,13 +65,15 @@ def test_io_enable_disable():
outputs = alfalfa.get_outputs(site_id)
assert outputs["OfficeSmall HTGSETP_SCH_NO_OPTIMUM"] == pytest.approx(0)
+ assert outputs["Python Output"] == pytest.approx(20), "'Python Output' has incorrect value"
- inputs = {"OfficeSmall HTGSETP_SCH_NO_OPTIMUM": None}
+ inputs = {"OfficeSmall HTGSETP_SCH_NO_OPTIMUM": None, "Python Input": 0}
alfalfa.set_inputs(site_id, inputs)
alfalfa.advance(site_id)
outputs = alfalfa.get_outputs(site_id)
assert outputs["OfficeSmall HTGSETP_SCH_NO_OPTIMUM"] != pytest.approx(0)
+ assert outputs["Python Output"] == pytest.approx(0)
alfalfa.stop(site_id)
alfalfa.wait(site_id, "complete")
diff --git a/tests/integration/test_worker_scale.py b/tests/integration/test_worker_scale.py
index a1f051e4..eb177908 100644
--- a/tests/integration/test_worker_scale.py
+++ b/tests/integration/test_worker_scale.py
@@ -16,9 +16,7 @@
def scale_models(alfalfa: AlfalfaClient):
MODEL_PATHS = []
- MODEL_PATHS.append('simple_thermostat.fmu')
- MODEL_PATHS.append('single_zone_vav.fmu')
- MODEL_PATHS.append('refrig_case_osw')
+ MODEL_PATHS.append('wrapped.fmu')
MODEL_PATHS.append('small_office')
model_ids = []
diff --git a/tests/jobs/conftest.py b/tests/jobs/conftest.py
index 97ee64ab..636dc7be 100644
--- a/tests/jobs/conftest.py
+++ b/tests/jobs/conftest.py
@@ -6,10 +6,8 @@ def pytest_generate_tests(metafunc):
model_dir = Path(os.path.dirname(__file__)) / '..' / 'integration' / 'models'
if "model_path" in metafunc.fixturenames:
model_paths = [
- model_dir / 'refrig_case_osw',
model_dir / 'small_office',
- model_dir / 'simple_thermostat.fmu',
- model_dir / 'single_zone_vav.fmu',
+ model_dir / 'wrapped.fmu',
model_dir / 'minimal_osw_resstock'
]
diff --git a/tests/jobs/test_workflow.py b/tests/jobs/test_workflow.py
index 7251b487..918156ca 100644
--- a/tests/jobs/test_workflow.py
+++ b/tests/jobs/test_workflow.py
@@ -3,6 +3,7 @@
import pytest
+from alfalfa_worker.jobs.step_run_base import ClockSource
from alfalfa_worker.lib.enums import RunStatus, SimType
from alfalfa_worker.lib.job import JobStatus
from tests.worker.lib.mock_dispatcher import MockDispatcher
@@ -18,9 +19,9 @@ def test_simple_internal_clock(mock_dispatcher: MockDispatcher, model_path: Path
model = mock_dispatcher.run_manager.create_model(model_path)
if model_path.is_dir():
- create_run_job = mock_dispatcher.start_job("alfalfa_worker.jobs.openstudio.CreateRun", {'model_id': model.ref_id})
+ create_run_job = mock_dispatcher.start_job("alfalfa_worker.jobs.openstudio.create_run.CreateRun", {'model_id': model.ref_id})
else:
- create_run_job = mock_dispatcher.start_job("alfalfa_worker.jobs.modelica.CreateRun", {'model_id': model.ref_id})
+ create_run_job = mock_dispatcher.start_job("alfalfa_worker.jobs.modelica.create_run.CreateRun", {'model_id': model.ref_id})
run = create_run_job.run
@@ -33,14 +34,14 @@ def test_simple_internal_clock(mock_dispatcher: MockDispatcher, model_path: Path
"start_datetime": str(datetime.datetime(2019, 1, 2, 0, 0, 0)),
"end_datetime": str(datetime.datetime(2019, 1, 3, 0, 0, 0)),
"timescale": "5",
- "realtime": None
+ "realtime": False
}
if run.sim_type == SimType.OPENSTUDIO:
- step_run_job = mock_dispatcher.start_job("alfalfa_worker.jobs.openstudio.StepRun", params)
+ step_run_job = mock_dispatcher.start_job("alfalfa_worker.jobs.openstudio.step_run.StepRun", params)
else:
- step_run_job = mock_dispatcher.start_job("alfalfa_worker.jobs.modelica.StepRun", params)
- assert step_run_job.step_sim_type == "timescale"
+ step_run_job = mock_dispatcher.start_job("alfalfa_worker.jobs.modelica.step_run.StepRun", params)
+ assert step_run_job.options.clock_source == ClockSource.INTERNAL
run = step_run_job.run
wait_for_job_status(step_run_job, JobStatus.RUNNING)
wait_for_run_status(run, RunStatus.RUNNING)
@@ -55,9 +56,9 @@ def test_simple_external_clock(mock_dispatcher: MockDispatcher, model_path: Path
model = mock_dispatcher.run_manager.create_model(model_path)
if model_path.is_dir():
- create_run_job = mock_dispatcher.start_job("alfalfa_worker.jobs.openstudio.CreateRun", {'model_id': model.ref_id})
+ create_run_job = mock_dispatcher.start_job("alfalfa_worker.jobs.openstudio.create_run.CreateRun", {'model_id': model.ref_id})
else:
- create_run_job = mock_dispatcher.start_job("alfalfa_worker.jobs.modelica.CreateRun", {'model_id': model.ref_id})
+ create_run_job = mock_dispatcher.start_job("alfalfa_worker.jobs.modelica.create_run.CreateRun", {'model_id': model.ref_id})
run = create_run_job.run
wait_for_run_status(run, RunStatus.READY)
@@ -68,16 +69,16 @@ def test_simple_external_clock(mock_dispatcher: MockDispatcher, model_path: Path
"start_datetime": str(start_dt),
"end_datetime": str(datetime.datetime(2019, 1, 3, 0, 0, 0)),
"timescale": "1",
- "realtime": None
+ "realtime": False
}
if run.sim_type == SimType.OPENSTUDIO:
- step_run_job = mock_dispatcher.start_job("alfalfa_worker.jobs.openstudio.StepRun", params)
+ step_run_job = mock_dispatcher.start_job("alfalfa_worker.jobs.openstudio.step_run.StepRun", params)
else:
- step_run_job = mock_dispatcher.start_job("alfalfa_worker.jobs.modelica.StepRun", params)
+ step_run_job = mock_dispatcher.start_job("alfalfa_worker.jobs.modelica.step_run.StepRun", params)
run = step_run_job.run
- wait_for_run_status(run, RunStatus.RUNNING, timeout=30)
+ wait_for_run_status(run, RunStatus.RUNNING, timeout=60)
wait_for_job_status(step_run_job, JobStatus.WAITING)
# -- Assert model gets to expected start time
diff --git a/tests/worker/conftest.py b/tests/worker/conftest.py
index 041cb88b..ff58a46c 100644
--- a/tests/worker/conftest.py
+++ b/tests/worker/conftest.py
@@ -4,8 +4,6 @@
@pytest.fixture(autouse=True)
def env_setup(monkeypatch):
- monkeypatch.setenv('WEB_REGISTRY_URI', '313781303390.dkr.ecr.us-east-1.amazonaws.com/queue/web')
- monkeypatch.setenv('WORKER_REGISTRY_URI', '313781303390.dkr.ecr.us-east-1.amazonaws.com/queue/worker')
monkeypatch.setenv('AWS_ACCESS_KEY_ID', 'user')
monkeypatch.setenv('AWS_SECRET_ACCESS_KEY', 'password')
monkeypatch.setenv('NODE_ENV', 'production')
diff --git a/tests/worker/jobs/step_run_mock_job.py b/tests/worker/jobs/step_run_mock_job.py
index 7089c370..cb6c074c 100644
--- a/tests/worker/jobs/step_run_mock_job.py
+++ b/tests/worker/jobs/step_run_mock_job.py
@@ -12,21 +12,23 @@ class StepRunMockJob(MockJob, StepRunBase):
def __init__(self, run_id, realtime, timescale, external_clock, start_datetime, end_datetime):
super().__init__()
self.checkout_run(run_id)
- StepRunBase.__init__(self, run_id, realtime, timescale, external_clock, start_datetime, end_datetime, skip_site_init=True, skip_stop_db_writes=True)
- self.first_step_warmup = True
+ StepRunBase.__init__(self, run_id, realtime, timescale, external_clock, start_datetime, end_datetime)
+ self.options.warmup_is_first_step = True
+ self.options.timestep_duration = timedelta(minutes=1)
self.simulation_step_duration = 1
- self.run.sim_time = self.start_datetime
-
- def step(self):
- sleep(self.simulation_step_duration)
- self.set_run_time(self.run.sim_time + self.time_per_step())
-
- def time_per_step(self) -> timedelta:
- return timedelta(seconds=60)
+ self.run.sim_time = self.options.start_datetime
def get_sim_time(self) -> datetime.datetime:
return self.run.sim_time
+ def initialize_simulation(self):
+ pass
+
@message
def set_simulation_step_duration(self, simulation_step_duration):
self.simulation_step_duration = simulation_step_duration
+
+ @message
+ def advance(self):
+ sleep(self.simulation_step_duration)
+ self.run.sim_time = self.run.sim_time + self.options.timestep_duration
diff --git a/tests/worker/test_dispatcher.py b/tests/worker/test_dispatcher.py
index fb2bf792..4bd70df4 100644
--- a/tests/worker/test_dispatcher.py
+++ b/tests/worker/test_dispatcher.py
@@ -1,6 +1,6 @@
from alfalfa_worker.dispatcher import Dispatcher
from alfalfa_worker.jobs.openstudio.create_run import CreateRun
-from alfalfa_worker.jobs.openstudio.step_run import StepRun
+# from alfalfa_worker.jobs.openstudio.step_run import StepRun
from alfalfa_worker.lib.job import JobStatus
from tests.worker.jobs.basic_mock_job import BasicMockJob
from tests.worker.utilities import wait_for_job_status
@@ -11,13 +11,13 @@ def test_valid_init(dispatcher):
def test_get_builtin_job(dispatcher):
- create_run_job = dispatcher.find_class('alfalfa_worker.jobs.openstudio.CreateRun')
+ create_run_job = dispatcher.find_class('alfalfa_worker.jobs.openstudio.create_run.CreateRun')
assert create_run_job == CreateRun
def test_get_from_job_get_path(dispatcher):
- step_run_job = dispatcher.find_class(StepRun.job_path())
- assert step_run_job == StepRun
+ create_run_job = dispatcher.find_class(CreateRun.job_path())
+ assert create_run_job == CreateRun
def test_test_job_create_with_params(dispatcher):
diff --git a/tests/worker/test_job_step_run.py b/tests/worker/test_job_step_run.py
index 29999a6a..9ce8b1e1 100644
--- a/tests/worker/test_job_step_run.py
+++ b/tests/worker/test_job_step_run.py
@@ -26,7 +26,7 @@ def step_run_mock_job(dispatcher: Dispatcher):
"start_datetime": str(datetime(2019, 1, 2, 0, 0, 0)),
"end_datetime": str(datetime(2019, 1, 3, 0, 0, 0)),
"timescale": "20",
- "realtime": None
+ "realtime": False
}
yield dispatcher.create_job(StepRunMockJob.job_path(), params)